Paid Memberships Pro - Version 1.8.11

Version Description

  • BUG: Fixed URL used when checking for addon updates.
  • BUG: Now enqueueing the jquery.creditCardValidator.js file in Billing preheader.
  • BUG: Fixed issues where PayPal IPN updates would sometimes log $0 instead of the actual billing amount.
  • BUG: Fixed warnings in the PayPal IPN handler.
  • BUG/ENHANCEMENT: Added pmpro_checkout_level filter and now using that filter to apply the_content filters to the level description at checkout. This allows you to turn off the the_content filters (e.g. processing shortcodes) by using remove_filter('pmpro_checkout_level', 'pmpro_pmpro_checkout_level'); in a custom plugin.
  • BUG/ENHANCEMENT: Using the pmpro_confirmation_message filter on the confirmation page whether there is an invoice or not. Now also adding the the_content filters to the confirmation message. You can disable this by using remove_filter('pmpro_confirmation_message', 'pmpro_pmpro_confirmation_message'); in a custom plugin.
  • ENHANCEMENT: Now tracking IPN event ids in order notes for recurring orders.
  • ENHANCEMENT: Added pmpro_subscription_ipn_event_processed hook to IPN handler.
  • ENHANCEMENT: Added pmpro_set_message filter to edit PMPro error messages. Passes the message and type.
  • ENHANCEMENT: Now listing categories in hierarchical format in the Content Settings section of Membership Levels.
  • ENHANCEMENT: Added pmpro_areLevelsFree() function to check if all levels in an array of levels are free.
  • ENHANCEMENT: Added pmpro_getLevelsCost() - with an s - function to get the combined cost of multiple levels in an array.
  • ENHANCEMENT: Added pmpro_getLevelsExpiration() - with an s - function to get the combined expiration text for multiple levels in array.
  • ENHANCEMENT: Created the pmpro_getLevelAtCheckout function that modularizes some of the logic of creating the pmpro_level global at checkout.
  • ENHANCEMENT: Added pmpro_members_list_user filter used on the admin members list and members list CSV export.
  • ENHANCEMENT: Added a 4th parameter $cancel_level to pmpro_changeMembershipLevel(). If set, that level will definitely be cancelled locally and at the gateway. This parameter is also passed to the pmpro_before_change_membership_level and pmpro_after_change_membership_level hook.
  • ENHANCEMENT: Added a new function pmpro_cancelMembershipLevel($level_id, $user_id, $old_level_status) that acts as a wrapper to pass the $cancel_level param to pmpro_changeMembershipLevel().
  • ENHANCEMENT: Updated the cancel page on the frontend to support the Multiple Memberships per User addon. All memberships are shown. You can cancel individual memberships separately. The language of the confirm button mentions memberships vs account.
  • ENHANCEMENT: Added pmpro_getMemberOrdersByCheckoutID($checkout_id) function to support Multiple Memberships per User and others using the checkout_id.
  • ENHANCEMENT: Added a refund($order, $transaction_id) method to the PMPro_stripe class. This will be used by the Multiple Memberships per User addon and eventually used in other areas by the core pluginn.
Download this release

Release Info

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

Code changes from version 1.8.10.4 to 1.8.11

adminpages/functions.php CHANGED
@@ -38,8 +38,8 @@ function pmpro_checkLevelForStripeCompatibility($level = NULL)
38
  foreach($levels as $level)
39
  {
40
  /*
41
- Stripe currently does not support:
42
- * Billing Limits.
43
  */
44
  if($level->billing_limit > 0)
45
  {
@@ -52,7 +52,7 @@ function pmpro_checkLevelForStripeCompatibility($level = NULL)
52
  {
53
  //need to look it up?
54
  if(is_numeric($level))
55
- $level = $wpdb->get_row("SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . esc_sql($level) . "' LIMIT 1");
56
 
57
  //check this level
58
  if($level->billing_limit > 0)
@@ -102,7 +102,7 @@ function pmpro_checkLevelForPayflowCompatibility($level = NULL)
102
  {
103
  //need to look it up?
104
  if(is_numeric($level))
105
- $level = $wpdb->get_row("SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . esc_sql($level) . "' LIMIT 1");
106
 
107
  //check this level
108
  if($level->trial_amount > 0 ||
@@ -153,7 +153,7 @@ function pmpro_checkLevelForBraintreeCompatibility($level = NULL)
153
  {
154
  //need to look it up?
155
  if(is_numeric($level))
156
- $level = $wpdb->get_row("SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . esc_sql($level) . "' LIMIT 1");
157
 
158
  //check this level
159
  if($level->trial_amount > 0 ||
@@ -201,7 +201,7 @@ function pmpro_checkLevelForTwoCheckoutCompatibility($level = NULL)
201
  {
202
  //need to look it up?
203
  if(is_numeric($level))
204
- $level = $wpdb->get_row("SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . esc_sql($level) . "' LIMIT 1");
205
 
206
  //check this level
207
  if(pmpro_isLevelTrial($level))
@@ -252,4 +252,4 @@ function pmpro_getClassesForPaymentSettingsField($field, $force = false)
252
 
253
  //return space separated string
254
  return implode(" ", $rgateways);
255
- }
38
  foreach($levels as $level)
39
  {
40
  /*
41
+ Stripe currently does not support:
42
+ * Billing Limits.
43
  */
44
  if($level->billing_limit > 0)
45
  {
52
  {
53
  //need to look it up?
54
  if(is_numeric($level))
55
+ $level = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = %d LIMIT 1" ), $level );
56
 
57
  //check this level
58
  if($level->billing_limit > 0)
102
  {
103
  //need to look it up?
104
  if(is_numeric($level))
105
+ $level = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = %d LIMIT 1" ), $level );
106
 
107
  //check this level
108
  if($level->trial_amount > 0 ||
153
  {
154
  //need to look it up?
155
  if(is_numeric($level))
156
+ $level = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = %d LIMIT 1" ), $level );
157
 
158
  //check this level
159
  if($level->trial_amount > 0 ||
201
  {
202
  //need to look it up?
203
  if(is_numeric($level))
204
+ $level = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = %d LIMIT 1" ), $level );
205
 
206
  //check this level
207
  if(pmpro_isLevelTrial($level))
252
 
253
  //return space separated string
254
  return implode(" ", $rgateways);
255
+ }
adminpages/membershiplevels.php CHANGED
@@ -495,20 +495,10 @@
495
  <h3 class="topborder"><?php _e('Content Settings', 'pmpro');?></h3>
496
  <table class="form-table">
497
  <tbody>
498
- <tr>
499
  <th scope="row" valign="top"><label><?php _e('Categories', 'pmpro');?>:</label></th>
500
  <td>
501
- <?php
502
- $categories = get_categories( array( 'hide_empty' => 0 ) );
503
- echo "<ul>";
504
- foreach ( $categories as $cat )
505
- {
506
- $checked = in_array( $cat->term_id, $level->categories ) ? "checked='checked'" : '';
507
- $catclass = empty( $cat->category_parent ) ? '' : 'membershipcategory_hasparent';
508
- echo "<li class='membershipcategory $catclass'><input id='membershipcategory_{$cat->term_id}' name='membershipcategory_{$cat->term_id}' type='checkbox' value='yes' $checked /> <label for='membershipcategory_{$cat->term_id}'>{$cat->name}</label></li>\n";
509
- }
510
- echo "</ul>";
511
- ?>
512
  </td>
513
  </tr>
514
  </tbody>
495
  <h3 class="topborder"><?php _e('Content Settings', 'pmpro');?></h3>
496
  <table class="form-table">
497
  <tbody>
498
+ <tr class="membership_categories">
499
  <th scope="row" valign="top"><label><?php _e('Categories', 'pmpro');?>:</label></th>
500
  <td>
501
+ <?php pmpro_listCategories(0, $level->categories); ?>
 
 
 
 
 
 
 
 
 
 
502
  </td>
503
  </tr>
504
  </tbody>
adminpages/memberslist.php CHANGED
@@ -186,6 +186,7 @@
186
  $count = 0;
187
  foreach($theusers as $auser)
188
  {
 
189
  //get meta
190
  $theuser = get_userdata($auser->ID);
191
  ?>
186
  $count = 0;
187
  foreach($theusers as $auser)
188
  {
189
+ $auser = apply_filters("pmpro_members_list_user", $auser);
190
  //get meta
191
  $theuser = get_userdata($auser->ID);
192
  ?>
classes/class.memberorder.php CHANGED
@@ -39,7 +39,6 @@
39
  $order->subtotal = "";
40
  $order->tax = "";
41
  $order->couponamount = "";
42
- $order->checkout_id = "";
43
  $order->total = "";
44
  $order->payment_type = "";
45
  $order->cardtype = "";
@@ -54,6 +53,7 @@
54
  $order->affiliate_id = "";
55
  $order->affiliate_subid = "";
56
  $order->notes = "";
 
57
 
58
  $order->billing = new stdClass();
59
  $order->billing->name = "";
@@ -117,7 +117,6 @@
117
  $this->subtotal = $dbobj->subtotal;
118
  $this->tax = $dbobj->tax;
119
  $this->couponamount = $dbobj->couponamount;
120
- $this->checkout_id = $dbobj->checkout_id;
121
  $this->certificate_id = $dbobj->certificate_id;
122
  $this->certificateamount = $dbobj->certificateamount;
123
  $this->total = $dbobj->total;
@@ -141,6 +140,7 @@
141
  $this->affiliate_subid = $dbobj->affiliate_subid;
142
 
143
  $this->notes = $dbobj->notes;
 
144
 
145
  //reset the gateway
146
  if(empty($this->nogateway))
@@ -444,7 +444,7 @@
444
  */
445
  function saveOrder()
446
  {
447
- global $current_user, $wpdb;
448
 
449
  //get a random code to use for the public ID
450
  if(empty($this->code))
@@ -523,6 +523,12 @@
523
 
524
  if(empty($this->notes))
525
  $this->notes = "";
 
 
 
 
 
 
526
 
527
  //build query
528
  if(!empty($this->id))
@@ -563,7 +569,8 @@
563
  `timestamp` = '" . esc_sql($this->datetime) . "',
564
  `affiliate_id` = '" . esc_sql($this->affiliate_id) . "',
565
  `affiliate_subid` = '" . esc_sql($this->affiliate_subid) . "',
566
- `notes` = '" . esc_sql($this->notes) . "'
 
567
  WHERE id = '" . $this->id . "'
568
  LIMIT 1";
569
  }
@@ -574,7 +581,7 @@
574
  $after_action = "pmpro_added_order";
575
  //insert
576
  $this->sqlQuery = "INSERT INTO $wpdb->pmpro_membership_orders
577
- (`code`, `session_id`, `user_id`, `membership_id`, `paypal_token`, `billing_name`, `billing_street`, `billing_city`, `billing_state`, `billing_zip`, `billing_country`, `billing_phone`, `subtotal`, `tax`, `couponamount`, `certificate_id`, `certificateamount`, `total`, `payment_type`, `cardtype`, `accountnumber`, `expirationmonth`, `expirationyear`, `status`, `gateway`, `gateway_environment`, `payment_transaction_id`, `subscription_transaction_id`, `timestamp`, `affiliate_id`, `affiliate_subid`, `notes`)
578
  VALUES('" . $this->code . "',
579
  '" . session_id() . "',
580
  " . intval($this->user_id) . ",
@@ -606,7 +613,8 @@
606
  '" . esc_sql($this->datetime) . "',
607
  '" . esc_sql($this->affiliate_id) . "',
608
  '" . esc_sql($this->affiliate_subid) . "',
609
- '" . esc_sql($this->notes) . "'
 
610
  )";
611
  }
612
 
39
  $order->subtotal = "";
40
  $order->tax = "";
41
  $order->couponamount = "";
 
42
  $order->total = "";
43
  $order->payment_type = "";
44
  $order->cardtype = "";
53
  $order->affiliate_id = "";
54
  $order->affiliate_subid = "";
55
  $order->notes = "";
56
+ $order->checkout_id = 0;
57
 
58
  $order->billing = new stdClass();
59
  $order->billing->name = "";
117
  $this->subtotal = $dbobj->subtotal;
118
  $this->tax = $dbobj->tax;
119
  $this->couponamount = $dbobj->couponamount;
 
120
  $this->certificate_id = $dbobj->certificate_id;
121
  $this->certificateamount = $dbobj->certificateamount;
122
  $this->total = $dbobj->total;
140
  $this->affiliate_subid = $dbobj->affiliate_subid;
141
 
142
  $this->notes = $dbobj->notes;
143
+ $this->checkout_id = $dbobj->checkout_id;
144
 
145
  //reset the gateway
146
  if(empty($this->nogateway))
444
  */
445
  function saveOrder()
446
  {
447
+ global $current_user, $wpdb, $pmpro_checkout_id;
448
 
449
  //get a random code to use for the public ID
450
  if(empty($this->code))
523
 
524
  if(empty($this->notes))
525
  $this->notes = "";
526
+
527
+ if(empty($this->checkout_id) || intval($this->checkout_id)<1) {
528
+ $highestval = $wpdb->get_var("SELECT MAX(checkout_id) FROM $wpdb->pmpro_membership_orders");
529
+ $this->checkout_id = intval($highestval)+1;
530
+ $pmpro_checkout_id = $this->checkout_id;
531
+ }
532
 
533
  //build query
534
  if(!empty($this->id))
569
  `timestamp` = '" . esc_sql($this->datetime) . "',
570
  `affiliate_id` = '" . esc_sql($this->affiliate_id) . "',
571
  `affiliate_subid` = '" . esc_sql($this->affiliate_subid) . "',
572
+ `notes` = '" . esc_sql($this->notes) . "',
573
+ `checkout_id` = " . intval($this->checkout_id) . "
574
  WHERE id = '" . $this->id . "'
575
  LIMIT 1";
576
  }
581
  $after_action = "pmpro_added_order";
582
  //insert
583
  $this->sqlQuery = "INSERT INTO $wpdb->pmpro_membership_orders
584
+ (`code`, `session_id`, `user_id`, `membership_id`, `paypal_token`, `billing_name`, `billing_street`, `billing_city`, `billing_state`, `billing_zip`, `billing_country`, `billing_phone`, `subtotal`, `tax`, `couponamount`, `certificate_id`, `certificateamount`, `total`, `payment_type`, `cardtype`, `accountnumber`, `expirationmonth`, `expirationyear`, `status`, `gateway`, `gateway_environment`, `payment_transaction_id`, `subscription_transaction_id`, `timestamp`, `affiliate_id`, `affiliate_subid`, `notes`, `checkout_id`)
585
  VALUES('" . $this->code . "',
586
  '" . session_id() . "',
587
  " . intval($this->user_id) . ",
613
  '" . esc_sql($this->datetime) . "',
614
  '" . esc_sql($this->affiliate_id) . "',
615
  '" . esc_sql($this->affiliate_subid) . "',
616
+ '" . esc_sql($this->notes) . "',
617
+ " . intval($this->checkout_id) . "
618
  )";
619
  }
620
 
classes/class.pmproemail.php CHANGED
@@ -121,9 +121,9 @@
121
  }
122
  }
123
 
124
- function sendCancelEmail($user = NULL)
125
  {
126
- global $current_user;
127
  if(!$user)
128
  $user = $current_user;
129
 
@@ -134,11 +134,21 @@
134
  $this->subject = sprintf(__("Your membership at %s has been CANCELLED", "pmpro"), get_option("blogname"));
135
  $this->template = "cancel";
136
  $this->data = array("name" => $user->display_name, "user_login" => $user->user_login, "sitename" => get_option("blogname"), "siteemail" => pmpro_getOption("from_email"));
 
 
 
 
 
 
 
 
 
 
137
 
138
  return $this->sendEmail();
139
  }
140
 
141
- function sendCancelAdminEmail($user = NULL, $old_level_id)
142
  {
143
  global $wpdb, $current_user;
144
  if(!$user)
@@ -156,21 +166,31 @@
156
  $this->subject = sprintf(__("Membership for %s at %s has been CANCELLED", "pmpro"), $user->user_login, get_option("blogname"));
157
  $this->template = "cancel_admin";
158
  $this->data = array("user_login" => $user->user_login, "user_email" => $user->user_email, "display_name" => $user->display_name, "sitename" => get_option("blogname"), "siteemail" => pmpro_getOption("from_email"), "login_link" => wp_login_url());
159
- $this->data['membership_id'] = $old_level_id;
160
- $this->data['membership_level_name'] = $wpdb->get_var("SELECT name FROM $wpdb->pmpro_membership_levels WHERE id = '" . $old_level_id . "' LIMIT 1");
161
 
162
- //start and end date
163
- $startdate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(startdate) as startdate FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND membership_id = '" . $old_level_id . "' AND status IN('inactive', 'cancelled', 'admin_cancelled') ORDER BY id DESC");
164
- if(!empty($startdate))
165
- $this->data['startdate'] = date_i18n(get_option('date_format'), $startdate);
166
- else
167
- $this->data['startdate'] = "";
168
- $enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(enddate) as enddate FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND membership_id = '" . $old_level_id . "' AND status IN('inactive', 'cancelled', 'admin_cancelled') ORDER BY id DESC");
169
- if(!empty($enddate))
170
- $this->data['enddate'] = date_i18n(get_option('date_format'), $enddate);
171
- else
172
- $this->data['enddate'] = "";
173
-
 
 
 
 
 
 
 
 
 
 
 
 
174
  return $this->sendEmail();
175
  }
176
 
121
  }
122
  }
123
 
124
+ function sendCancelEmail($user = NULL, $old_level_id = NULL)
125
  {
126
+ global $wpdb, $current_user;
127
  if(!$user)
128
  $user = $current_user;
129
 
134
  $this->subject = sprintf(__("Your membership at %s has been CANCELLED", "pmpro"), get_option("blogname"));
135
  $this->template = "cancel";
136
  $this->data = array("name" => $user->display_name, "user_login" => $user->user_login, "sitename" => get_option("blogname"), "siteemail" => pmpro_getOption("from_email"));
137
+
138
+ if(!empty($old_level_id)) {
139
+ if(!is_array($old_level_id))
140
+ $old_level_id = array($old_level_id);
141
+ $this->data['membership_id'] = $old_level_id[0]; //pass just the first as the level id
142
+ $this->data['membership_level_name'] = pmpro_implodeToEnglish($wpdb->get_col("SELECT name FROM $wpdb->pmpro_membership_levels WHERE id IN('" . implode("','", $old_level_id) . "')"));
143
+ } else {
144
+ $this->data['membership_id'] = '';
145
+ $this->data['membership_level_name'] = __('All Levels', 'pmpro');
146
+ }
147
 
148
  return $this->sendEmail();
149
  }
150
 
151
+ function sendCancelAdminEmail($user = NULL, $old_level_id = NULL)
152
  {
153
  global $wpdb, $current_user;
154
  if(!$user)
166
  $this->subject = sprintf(__("Membership for %s at %s has been CANCELLED", "pmpro"), $user->user_login, get_option("blogname"));
167
  $this->template = "cancel_admin";
168
  $this->data = array("user_login" => $user->user_login, "user_email" => $user->user_email, "display_name" => $user->display_name, "sitename" => get_option("blogname"), "siteemail" => pmpro_getOption("from_email"), "login_link" => wp_login_url());
 
 
169
 
170
+ if(!empty($old_level_id)) {
171
+ if(!is_array($old_level_id))
172
+ $old_level_id = array($old_level_id);
173
+ $this->data['membership_id'] = $old_level_id[0]; //pass just the first as the level id
174
+ $this->data['membership_level_name'] = pmpro_implodeToEnglish($wpdb->get_col("SELECT name FROM $wpdb->pmpro_membership_levels WHERE id IN('" . implode("','", $old_level_id) . "')"));
175
+
176
+ //start and end date
177
+ $startdate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(startdate) as startdate FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND membership_id = '" . $old_level_id[0] . "' AND status IN('inactive', 'cancelled', 'admin_cancelled') ORDER BY id DESC");
178
+ if(!empty($startdate))
179
+ $this->data['startdate'] = date_i18n(get_option('date_format'), $startdate);
180
+ else
181
+ $this->data['startdate'] = "";
182
+ $enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(enddate) as enddate FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND membership_id = '" . $old_level_id[0] . "' AND status IN('inactive', 'cancelled', 'admin_cancelled') ORDER BY id DESC");
183
+ if(!empty($enddate))
184
+ $this->data['enddate'] = date_i18n(get_option('date_format'), $enddate);
185
+ else
186
+ $this->data['enddate'] = "";
187
+ } else {
188
+ $this->data['membership_id'] = '';
189
+ $this->data['membership_level_name'] = __('All Levels', 'pmpro');
190
+ $this->data['startdate'] = '';
191
+ $this->data['enddate'] = '';
192
+ }
193
+
194
  return $this->sendEmail();
195
  }
196
 
classes/gateways/class.pmprogateway_stripe.php CHANGED
@@ -251,6 +251,8 @@
251
 
252
  pmpro_require_billing = true;
253
 
 
 
254
  jQuery(document).ready(function() {
255
  jQuery("#pmpro_form, .pmpro_form").submit(function(event) {
256
 
@@ -286,8 +288,11 @@
286
  if (jQuery('#bfirstname').length && jQuery('#blastname').length)
287
  args['name'] = jQuery.trim(jQuery('#bfirstname').val() + ' ' + jQuery('#blastname').val());
288
 
289
- //create token
290
- Stripe.createToken(args, stripeResponseHandler);
 
 
 
291
 
292
  // prevent the form from submitting with the default action
293
  return false;
@@ -313,8 +318,9 @@
313
  // token contains id, last4, and card type
314
  var token = response['id'];
315
  // insert the token into the form so it gets submitted to the server
316
- form$.append("<input type='hidden' name='stripeToken' value='" + token + "'/>");
317
-
 
318
  //console.log(response);
319
 
320
  //insert fields for other card fields
@@ -354,9 +360,21 @@
354
  static function pmpro_checkout_order($morder)
355
  {
356
  //load up token values
357
- if(isset($_REQUEST['stripeToken']))
358
  {
359
- $morder->stripeToken = $_REQUEST['stripeToken'];
 
 
 
 
 
 
 
 
 
 
 
 
360
  }
361
 
362
  //stripe lite code to get name from other sources if available
@@ -1320,12 +1338,14 @@
1320
  //user not registered yet, queue it up
1321
  global $pmpro_stripe_customer_id;
1322
  $pmpro_stripe_customer_id = $this->customer->id;
1323
- function pmpro_user_register_stripe_customerid($user_id)
1324
- {
1325
- global $pmpro_stripe_customer_id;
1326
- update_user_meta($user_id, "pmpro_stripe_customerid", $pmpro_stripe_customer_id);
 
 
 
1327
  }
1328
- add_action("user_register", "pmpro_user_register_stripe_customerid");
1329
  }
1330
 
1331
  return apply_filters('pmpro_stripe_create_customer', $this->customer);
@@ -1755,4 +1775,82 @@
1755
 
1756
  return $timestamp;
1757
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1758
  }
251
 
252
  pmpro_require_billing = true;
253
 
254
+ var tokenNum = 0;
255
+
256
  jQuery(document).ready(function() {
257
  jQuery("#pmpro_form, .pmpro_form").submit(function(event) {
258
 
288
  if (jQuery('#bfirstname').length && jQuery('#blastname').length)
289
  args['name'] = jQuery.trim(jQuery('#bfirstname').val() + ' ' + jQuery('#blastname').val());
290
 
291
+ //create token(s)
292
+ var levelnums = jQuery("#level").val().split(",");
293
+ for(var cnt = 0, len = levelnums.length; cnt < len; cnt++) {
294
+ Stripe.createToken(args, stripeResponseHandler);
295
+ }
296
 
297
  // prevent the form from submitting with the default action
298
  return false;
318
  // token contains id, last4, and card type
319
  var token = response['id'];
320
  // insert the token into the form so it gets submitted to the server
321
+ form$.append("<input type='hidden' name='stripeToken" + tokenNum + "' value='" + token + "'/>");
322
+ tokenNum++;
323
+
324
  //console.log(response);
325
 
326
  //insert fields for other card fields
360
  static function pmpro_checkout_order($morder)
361
  {
362
  //load up token values
363
+ if(isset($_REQUEST['stripeToken0']))
364
  {
365
+ // find the highest one still around, and use it - then remove it from $_REQUEST.
366
+ $thetoken = "";
367
+ $tokennum = -1;
368
+ foreach($_REQUEST as $key => $param) {
369
+ if(preg_match('/stripeToken(\d+)/', $key, $matches)) {
370
+ if(intval($matches[1])>$tokennum) {
371
+ $thetoken = $param;
372
+ $tokennum = intval($matches[1]);
373
+ }
374
+ }
375
+ }
376
+ $morder->stripeToken = $thetoken;
377
+ unset($_REQUEST['stripeToken'.$tokennum]);
378
  }
379
 
380
  //stripe lite code to get name from other sources if available
1338
  //user not registered yet, queue it up
1339
  global $pmpro_stripe_customer_id;
1340
  $pmpro_stripe_customer_id = $this->customer->id;
1341
+ if(! function_exists('pmpro_user_register_stripe_customerid')) {
1342
+ function pmpro_user_register_stripe_customerid($user_id)
1343
+ {
1344
+ global $pmpro_stripe_customer_id;
1345
+ update_user_meta($user_id, "pmpro_stripe_customerid", $pmpro_stripe_customer_id);
1346
+ }
1347
+ add_action("user_register", "pmpro_user_register_stripe_customerid");
1348
  }
 
1349
  }
1350
 
1351
  return apply_filters('pmpro_stripe_create_customer', $this->customer);
1775
 
1776
  return $timestamp;
1777
  }
1778
+
1779
+ /**
1780
+ * Refund a payment or invoice
1781
+ * @param object &$order Related PMPro order object.
1782
+ * @param string $transaction_id Payment or Invoice id to void.
1783
+ * @return bool True or false if the void worked
1784
+ */
1785
+ function void(&$order, $transaction_id = null)
1786
+ {
1787
+ //stripe doesn't differentiate between voids and refunds, so let's just pass on to the refund function
1788
+ return $this->refund($order, $transaction_id);
1789
+ }
1790
+
1791
+ /**
1792
+ * Refund a payment or invoice
1793
+ * @param object &$order Related PMPro order object.
1794
+ * @param string $transaction_id Payment or invoice id to void.
1795
+ * @return bool True or false if the refund worked.
1796
+ */
1797
+ function refund(&$order, $transaction_id = NULL)
1798
+ {
1799
+ //default to using the payment id from the order
1800
+ if(empty($transaction_id) && !empty($order->payment_transaction_id))
1801
+ $transaction_id = $order->payment_transaction_id;
1802
+
1803
+ //need a transaction id
1804
+ if(empty($transaction_id))
1805
+ return false;
1806
+
1807
+ //if an invoice ID is passed, get the charge/payment id
1808
+ if(strpos($transaction_id, "in_") !== false) {
1809
+ $invoice = Stripe_Invoice::retrieve($transaction_id);
1810
+
1811
+ if(!empty($invoice) && !empty($invoice->payment))
1812
+ $transaction_id = $invoice->payment;
1813
+ }
1814
+
1815
+ //get the charge
1816
+ $charge = Stripe_Charge::retrieve($transaction_id);
1817
+
1818
+ //can't find the charge?
1819
+ if(empty($charge)) {
1820
+ $order->status = "error";
1821
+ $order->errorcode = "";
1822
+ $order->error = "";
1823
+ $order->shorterror = "";
1824
+
1825
+ return false;
1826
+ }
1827
+
1828
+ //attempt refund
1829
+ try
1830
+ {
1831
+ $refund = $charge->refund();
1832
+ }
1833
+ catch (Exception $e)
1834
+ {
1835
+ //$order->status = "error";
1836
+ $order->errorcode = true;
1837
+ $order->error = __("Error: ", "pmpro") . $e->getMessage();
1838
+ $order->shorterror = $order->error;
1839
+ return false;
1840
+ }
1841
+
1842
+ if($refund->status == "succeeded") {
1843
+ $order->status = "refunded";
1844
+ $order->saveOrder();
1845
+
1846
+ return true;
1847
+ } else {
1848
+ $order->status = "error";
1849
+ $order->errorcode = true;
1850
+ $order->error = sprintf(__("Error: Unkown error while refunding charge #%s", "pmpro"), $transaction_id);
1851
+ $order->shorterror = $order->error;
1852
+
1853
+ return false;
1854
+ }
1855
+ }
1856
  }
css/admin.css CHANGED
@@ -38,7 +38,7 @@ tr td.level_name a {font-size: 115%; font-weight: bold; }
38
  .membership-levels tr.alternate {background: #f9f9f9;}
39
  .membership-levels tr.ui-sortable-helper {border: 1px solid #2997C8;}
40
  tr.testclass {border: 3px solid #2997C8; background: #2997C8;}
41
- .membershipcategory_hasparent {margin-left: 25px; }
42
 
43
  /* settings */
44
  tr.pmpro_settings_divider td {padding: 5px; margin: 0; color: #555; border-top: 1px solid #CCC; border-bottom: 1px solid #CCC;}
38
  .membership-levels tr.alternate {background: #f9f9f9;}
39
  .membership-levels tr.ui-sortable-helper {border: 1px solid #2997C8;}
40
  tr.testclass {border: 3px solid #2997C8; background: #2997C8;}
41
+ tr.membership_categories ul {margin-left: 25px;}
42
 
43
  /* settings */
44
  tr.pmpro_settings_divider td {padding: 5px; margin: 0; color: #555; border-top: 1px solid #CCC; border-bottom: 1px solid #CCC;}
email/cancel.html CHANGED
@@ -1,3 +1,6 @@
1
  <p>Your membership at !!sitename!! has been cancelled.</p>
2
 
 
 
 
3
  <p>If you did not request this cancellation and would like more information please contact us at !!siteemail!!</p>
1
  <p>Your membership at !!sitename!! has been cancelled.</p>
2
 
3
+ <p>Account: !!display_name!! (!!user_email!!)</p>
4
+ <p>Membership Level: !!membership_level_name!!</p>
5
+
6
  <p>If you did not request this cancellation and would like more information please contact us at !!siteemail!!</p>
includes/addons.php CHANGED
@@ -41,7 +41,7 @@ function pmpro_getAddons()
41
  $timeout = apply_filters("pmpro_get_addons_timeout", 5);
42
 
43
  //get em
44
- $remote_addons = wp_remote_get(PMPRO_LICENSE_SERVER . "/addons/", $timeout);
45
 
46
  //make sure we have at least an array to pass back
47
  if(empty($addons))
@@ -121,7 +121,7 @@ function pmpro_update_plugins_filter( $value ) {
121
 
122
  //get data for plugin
123
  $plugin_file = $addon['Slug'] . '/' . $addon['Slug'] . '.php';
124
- $plugin_file_abs = ABSPATH . 'wp-content/plugins/' . $plugin_file;
125
 
126
  //couldn't find plugin, skip
127
  if(!file_exists($plugin_file_abs))
41
  $timeout = apply_filters("pmpro_get_addons_timeout", 5);
42
 
43
  //get em
44
+ $remote_addons = wp_remote_get(PMPRO_LICENSE_SERVER . "addons/", $timeout);
45
 
46
  //make sure we have at least an array to pass back
47
  if(empty($addons))
121
 
122
  //get data for plugin
123
  $plugin_file = $addon['Slug'] . '/' . $addon['Slug'] . '.php';
124
+ $plugin_file_abs = WP_PLUGIN_DIR . "/" . $plugin_file;
125
 
126
  //couldn't find plugin, skip
127
  if(!file_exists($plugin_file_abs))
includes/content.php CHANGED
@@ -96,8 +96,13 @@ function pmpro_has_membership_access($post_id = NULL, $user_id = NULL, $return_m
96
  }
97
  elseif(!empty($myuser->ID))
98
  {
99
- $myuser->membership_level = pmpro_getMembershipLevelForUser($myuser->ID);
100
- if(!empty($myuser->membership_level->ID) && in_array($myuser->membership_level->ID, $post_membership_levels_ids))
 
 
 
 
 
101
  {
102
  //the users membership id is one that will grant access
103
  $hasaccess = true;
96
  }
97
  elseif(!empty($myuser->ID))
98
  {
99
+ $myuser->membership_level = pmpro_getMembershipLevelForUser($myuser->ID); // kept in for legacy filter users below.
100
+ $myuser->membership_levels = pmpro_getMembershipLevelsForUser($myuser->ID);
101
+ $mylevelids = array();
102
+ foreach($myuser->membership_levels as $curlevel) {
103
+ $mylevelids[] = $curlevel->id;
104
+ }
105
+ if(count($myuser->membership_levels)>0 && count(array_intersect($mylevelids, $post_membership_levels_ids))>0)
106
  {
107
  //the users membership id is one that will grant access
108
  $hasaccess = true;
includes/filters.php CHANGED
@@ -155,4 +155,16 @@ if(empty($_REQUEST['discount_code']) && !empty($_REQUEST['other_discount_code'])
155
  $_REQUEST['discount_code'] = $_REQUEST['other_discount_code'];
156
  $_POST['discount_code'] = $_POST['other_discount_code'];
157
  $_GET['discount_code'] = $_GET['other_discount_code'];
158
- }
 
 
 
 
 
 
 
 
 
 
 
 
155
  $_REQUEST['discount_code'] = $_REQUEST['other_discount_code'];
156
  $_POST['discount_code'] = $_POST['other_discount_code'];
157
  $_GET['discount_code'] = $_GET['other_discount_code'];
158
+ }
159
+
160
+ //apply all the_content filters to confirmation messages for levels
161
+ function pmpro_pmpro_confirmation_message($message) {
162
+ return apply_filters('the_content', $message);
163
+ }
164
+ add_filter('pmpro_confirmation_message', 'pmpro_pmpro_confirmation_message');
165
+
166
+ //apply all the_content filters to level descriptions
167
+ function pmpro_pmpro_level_description($description) {
168
+ return apply_filters('the_content', $description);
169
+ }
170
+ add_filter('pmpro_level_description', 'pmpro_pmpro_level_description');
includes/functions.php CHANGED
@@ -168,6 +168,17 @@ function pmpro_isLevelFree(&$level)
168
  return false;
169
  }
170
 
 
 
 
 
 
 
 
 
 
 
 
171
  function pmpro_isLevelRecurring(&$level)
172
  {
173
  if(!empty($level) && ($level->billing_amount > 0 || $level->trial_amount > 0))
@@ -406,6 +417,122 @@ function pmpro_getLevelCost(&$level, $tags = true, $short = false)
406
  return $r;
407
  }
408
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409
  function pmpro_getLevelExpiration(&$level)
410
  {
411
  if($level->expiration_number)
@@ -415,7 +542,41 @@ function pmpro_getLevelExpiration(&$level)
415
  else
416
  $expiration_text = "";
417
 
418
- $expiration_text = apply_filters("pmpro_level_expiration_text", $expiration_text, $level);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
419
  return $expiration_text;
420
  }
421
 
@@ -746,16 +907,30 @@ function pmpro_hasMembershipLevel($levels = NULL, $user_id = NULL)
746
  return $return;
747
  }
748
 
749
- /* pmpro_changeMembershipLevel() creates or updates the membership level of the given user to the given level.
 
 
 
 
 
 
 
 
 
750
  *
751
  * $level may either be the ID or name of the desired membership_level.
752
  * If $user_id is omitted, the value will be retrieved from $current_user.
753
  *
 
 
 
 
 
754
  * Return values:
755
  * Success returns boolean true.
756
  * Failure returns boolean false.
757
  */
758
- function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status = 'inactive')
759
  {
760
  global $wpdb;
761
  global $current_user, $pmpro_error;
@@ -807,7 +982,31 @@ function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status
807
  $old_levels = pmpro_getMembershipLevelsForUser($user_id);
808
 
809
  //deactivate old memberships based on the old_level_status passed in (updates pmpro_memberships_users table)
810
- if($old_levels)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
811
  {
812
  foreach($old_levels as $old_level) {
813
 
@@ -834,20 +1033,27 @@ function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status
834
  * @param int $level_id ID of the level changed to.
835
  * @param int $user_id ID of the user changed.
836
  * @param array $old_levels array of prior levels the user belonged to.
 
837
  */
838
- do_action("pmpro_before_change_membership_level", $level_id, $user_id, $old_levels);
839
 
840
  //should we cancel their gateway subscriptions?
841
- $pmpro_cancel_previous_subscriptions = true;
842
- if(isset($_REQUEST['cancel_membership']) && $_REQUEST['cancel_membership'] == false)
843
- $pmpro_cancel_previous_subscriptions = false;
844
- $pmpro_cancel_previous_subscriptions = apply_filters("pmpro_cancel_previous_subscriptions", $pmpro_cancel_previous_subscriptions);
845
-
846
- //cancel any other subscriptions they have (updates pmpro_membership_orders table)
847
- if($pmpro_cancel_previous_subscriptions)
848
- {
 
 
849
  $other_order_ids = $wpdb->get_col("SELECT id FROM $wpdb->pmpro_membership_orders WHERE user_id = '" . $user_id . "' AND status = 'success' ORDER BY id DESC");
850
-
 
 
 
 
851
  foreach($other_order_ids as $order_id)
852
  {
853
  $c_order = new MemberOrder($order_id);
@@ -931,11 +1137,45 @@ function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status
931
  *
932
  * @param int $level_id ID of the level changed to.
933
  * @param int $user_id ID of the user changed.
 
934
  */
935
- do_action("pmpro_after_change_membership_level", $level_id, $user_id);
936
  return true;
937
  }
938
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
939
  /* pmpro_toggleMembershipCategory() creates or deletes a linking entry between the membership level and post category tables.
940
  *
941
  * $level may either be the ID or name of the desired membership_level.
@@ -1352,15 +1592,13 @@ function pmpro_getDiscountCode($seed = NULL)
1352
  return strtoupper($code);
1353
  }
1354
 
1355
- //is a discount code valid
1356
  function pmpro_checkDiscountCode($code, $level_id = NULL, $return_errors = false)
1357
  {
1358
  global $wpdb;
1359
 
1360
  $error = false;
1361
-
1362
- //make sure level id is int for security
1363
- $level_id = intval($level_id);
1364
 
1365
  //no code, no code
1366
  if(empty($code))
@@ -1415,7 +1653,14 @@ function pmpro_checkDiscountCode($code, $level_id = NULL, $return_errors = false
1415
  $pmpro_check_discount_code_levels = apply_filters("pmpro_check_discount_code_levels", true, $dbcode->id);
1416
  if(!empty($level_id) && $pmpro_check_discount_code_levels)
1417
  {
1418
- $code_level = $wpdb->get_row("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 WHERE cl.code_id = '" . $dbcode->id . "' AND cl.level_id = '" . $level_id . "' LIMIT 1");
 
 
 
 
 
 
 
1419
 
1420
  if(empty($code_level))
1421
  $error = __("This discount code does not apply to this membership level.", "pmpro");
@@ -1707,6 +1952,63 @@ function pmpro_getAllLevels($include_hidden = false, $force = false)
1707
  return $pmpro_levels;
1708
  }
1709
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1710
  function pmpro_getCheckoutButton($level_id, $button_text = NULL, $classes = NULL)
1711
  {
1712
  if(empty($button_text))
@@ -1867,7 +2169,7 @@ function pmpro_setMessage($message, $type, $force = false)
1867
  //for now, we only show the first message generated
1868
  if($force || empty($pmpro_msg))
1869
  {
1870
- $pmpro_msg = $message;
1871
  $pmpro_msgt = $type;
1872
  }
1873
  }
@@ -1983,7 +2285,7 @@ function pmpro_formatAddress($name, $address1, $address2, $city, $state, $zip, $
1983
  if($nl2br)
1984
  $address = nl2br($address);
1985
 
1986
- return $address;
1987
  }
1988
 
1989
  /*
@@ -2288,3 +2590,22 @@ function pmpro_generatePages($pages) {
2288
  else
2289
  return false;
2290
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
168
  return false;
169
  }
170
 
171
+ // Given an array of levels, will return true if all of them are free.
172
+ function pmpro_areLevelsFree($levelarr) {
173
+ if(! is_array($levelarr)) { return false; }
174
+ foreach($levelarr as $curlevel) {
175
+ if(!empty($curlevel) && ($curlevel->initial_payment > 0 || $curlevel->billing_amount > 0 || $curlevel->trial_amount > 0)) {
176
+ return false;
177
+ }
178
+ }
179
+ return true;
180
+ }
181
+
182
  function pmpro_isLevelRecurring(&$level)
183
  {
184
  if(!empty($level) && ($level->billing_amount > 0 || $level->trial_amount > 0))
417
  return $r;
418
  }
419
 
420
+ // Similar to pmpro_getLevelCost, but loops through all levels in the incoming array and puts it all together.
421
+ function pmpro_getLevelsCost(&$levels, $tags = true, $short = false)
422
+ {
423
+ // let's build the array to work from to consolidate recurring info.
424
+ // recurpmts[cycle_period][cycle_number][billing_limit] = total_amount
425
+ $initpmt = 0;
426
+ $recurpmts = array();
427
+ $trialperiods = 0;
428
+ foreach($levels as $curlevel) {
429
+ $initpmt += $curlevel->initial_payment;
430
+ if($curlevel->billing_amount != '0.00') {
431
+ if(array_key_exists($curlevel->cycle_period, $recurpmts)) {
432
+ if(array_key_exists($curlevel->cycle_number, $recurpmts[$curlevel->cycle_period])) {
433
+ if(array_key_exists($curlevel->billing_limit, $recurpmts[$curlevel->cycle_period][$curlevel->cycle_number])) {
434
+ $recurpmts[$curlevel->cycle_period][$curlevel->cycle_number][$curlevel->billing_limit] += $curlevel->billing_amount;
435
+ } else {
436
+ $recurpmts[$curlevel->cycle_period][$curlevel->cycle_number][$curlevel->billing_limit] = $curlevel->billing_amount;
437
+ }
438
+ } else {
439
+ $recurpmts[$curlevel->cycle_period][$curlevel->cycle_number] = array();
440
+ $recurpmts[$curlevel->cycle_period][$curlevel->cycle_number][$curlevel->billing_limit] = $curlevel->billing_amount;
441
+ }
442
+ } else {
443
+ $recurpmts[$curlevel->cycle_period] = array();
444
+ $recurpmts[$curlevel->cycle_period][$curlevel->cycle_number] = array();
445
+ $recurpmts[$curlevel->cycle_period][$curlevel->cycle_number][$curlevel->billing_limit] = $curlevel->billing_amount;
446
+ }
447
+ }
448
+ if($curlevel->trial_limit && intval($curlevel->trial_limit)>$trialperiods) {
449
+ $trialperiods = intval($curlevel->trial_limit);
450
+ }
451
+ }
452
+
453
+ // initial payment
454
+ if(!$short)
455
+ $r = sprintf(__('The price for membership is <strong>%s</strong> now', 'pmpro'), pmpro_formatPrice($initpmt));
456
+ else
457
+ $r = sprintf(__('<strong>%s</strong> now', 'pmpro'), pmpro_formatPrice($initpmt));
458
+
459
+ //recurring part
460
+ $billtextparts = array();
461
+ if(count($recurpmts)>0) {
462
+ foreach($recurpmts as $curperiod => $curpddata) {
463
+ foreach($curpddata as $curcyclenum => $curcycledata) {
464
+ foreach($curcycledata as $curbilllimit => $curtotal) {
465
+ if($curbilllimit > 1)
466
+ {
467
+ if($curcyclenum == '1')
468
+ {
469
+ $billtextparts[] = sprintf(__('<strong>%s per %s for %d more %s</strong>', 'pmpro'), pmpro_formatPrice($curtotal), pmpro_translate_billing_period($curperiod), $curbilllimit, pmpro_translate_billing_period($curperiod, $curbilllimit));
470
+ }
471
+ else
472
+ {
473
+ $billtextparts[] = sprintf(__('<strong>%s every %d %s for %d more payments</strong>', 'pmpro'), pmpro_formatPrice($curtotal), $curcyclenum, pmpro_translate_billing_period($curperiod, $curcyclenum), $curbilllimit);
474
+ }
475
+ }
476
+ elseif($curbilllimit == 1)
477
+ {
478
+ $billtextparts[] = sprintf(__('<strong>%s after %d %s</strong>', 'pmpro'), pmpro_formatPrice($curtotal), $curcyclenum, pmpro_translate_billing_period($curperiod, $curcyclenum));
479
+ }
480
+ else
481
+ {
482
+ if($curcyclenum == '1')
483
+ {
484
+ $billtextparts[] = sprintf(__('<strong>%s every %s</strong>', 'pmpro'), pmpro_formatPrice($curtotal), pmpro_translate_billing_period($curperiod));
485
+ }
486
+ else
487
+ {
488
+ $billtextparts[] = sprintf(__('<strong>%s every %d %s</strong>', 'pmpro'), pmpro_formatPrice($curtotal), $curcyclenum, pmpro_translate_billing_period($curperiod, $curcyclenum));
489
+ }
490
+ }
491
+ }
492
+ }
493
+ }
494
+ $laststanza = array_pop($billtextparts);
495
+ if(count($billtextparts)>0) {
496
+ $r .= ", ";
497
+ $r .= implode(', ', $billtextparts);
498
+ }
499
+ $r .= ", and ".$laststanza.".";
500
+ } else {
501
+ $r .= ".";
502
+ }
503
+
504
+
505
+ //add a space
506
+ $r .= ' ';
507
+
508
+ //trial part - not as detailed as the single-level counterpart. Could be improved in the future.
509
+ if($trialperiods>0) {
510
+ if($trialperiods==1) {
511
+ $r .= __('Trial pricing has been applied to the first payment.', 'mmpu');
512
+ } else {
513
+ $r .= sprintf(__('Trial pricing has been applied to the first %d payments.', 'mmpu'), $trialperiods);
514
+ }
515
+ }
516
+
517
+ //taxes part
518
+ $tax_state = pmpro_getOption("tax_state");
519
+ $tax_rate = pmpro_getOption("tax_rate");
520
+
521
+ if($tax_state && $tax_rate && !pmpro_areLevelsFree($levels))
522
+ {
523
+ $r .= sprintf(__('Customers in %s will be charged %s%% tax.', 'pmpro'), $tax_state, round($tax_rate * 100, 2));
524
+ }
525
+
526
+ if(!$tags)
527
+ $r = strip_tags($r);
528
+
529
+ /**
530
+ * Filter the levels cost text. Note the s in levels. Similar to pmpro_levels_cost_text
531
+ */
532
+ $r = apply_filters("pmpro_levels_cost_text", $r, $levels, $tags, $short);
533
+ return $r;
534
+ }
535
+
536
  function pmpro_getLevelExpiration(&$level)
537
  {
538
  if($level->expiration_number)
542
  else
543
  $expiration_text = "";
544
 
545
+ $expiration_text = apply_filters("pmpro_levels_expiration_text", $expiration_text, $level);
546
+ return $expiration_text;
547
+ }
548
+
549
+ function pmpro_getLevelsExpiration(&$levels)
550
+ {
551
+ $expirystrings = array();
552
+ $ongoinglevelnum = 0;
553
+ if(!empty($levels) && !is_array($levels)) { $levels = array($levels); } elseif(empty($levels)) { $levels = array(); }
554
+ foreach($levels as $curlevel) {
555
+ if($curlevel->expiration_number) {
556
+ $expirystrings[] = sprintf(__("%s membership expires after %d %s", "pmpro"), $curlevel->name, $curlevel->expiration_number, pmpro_translate_billing_period($curlevel->expiration_period, $curlevel->expiration_number));
557
+ } else {
558
+ $ongoinglevelnum++;
559
+ }
560
+ }
561
+
562
+ $expiration_text = "";
563
+ if(count($expirystrings)>0) {
564
+ $laststanza = array_pop($expirystrings);
565
+ $expiration_text = implode(', ', $expirystrings);
566
+ if(count($expirystrings)>0) { $expiration_text .= ", and "; }
567
+ $expiration_text .= $laststanza;
568
+ $expiration_text .= ". ";
569
+ if($ongoinglevelnum>0) {
570
+ $expiration_text .= "The remaining membership";
571
+ if($ongoinglevelnum>1) { $expiration_text .= "s are"; } else { $expiration_text .= " is"; }
572
+ $expiration_text .= " ongoing.";
573
+ }
574
+ }
575
+
576
+ /**
577
+ * Filter the levels expiration text. Note the s in levels. Similar to pmpro_levels_expiration_text
578
+ */
579
+ $expiration_text = apply_filters("pmpro_levels_expiration_text", $expiration_text, $levels);
580
  return $expiration_text;
581
  }
582
 
907
  return $return;
908
  }
909
 
910
+ /**
911
+ * Wrapper for pmpro_changeMembershipLevel to cancel one level.
912
+ * @since 1.8.11
913
+ */
914
+ function pmpro_cancelMembershipLevel($cancel_level, $user_id = NULL, $old_level_status = 'inactive') {
915
+ return pmpro_changeMembershipLevel(0, $user_id, $old_level_status, $cancel_level);
916
+ }
917
+
918
+ /**
919
+ * Create, add, remove or updates the membership level of the given user to the given level.
920
  *
921
  * $level may either be the ID or name of the desired membership_level.
922
  * If $user_id is omitted, the value will be retrieved from $current_user.
923
  *
924
+ * @param int $level ID of level to set as new level, use 0 to cancel membership
925
+ * @param int $user_id ID of the user to change levels for
926
+ * @param string $old_level_status The status to set for the row in the memberships users table. (e.g. inactive, cancelled, admin_cancelled, expired) Defaults to 'inactive'.
927
+ * $param int $cancel_level If set cancel just this one level instead of all active levels (to support Multiple Memberships per User)
928
+ *
929
  * Return values:
930
  * Success returns boolean true.
931
  * Failure returns boolean false.
932
  */
933
+ function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status = 'inactive', $cancel_level = NULL)
934
  {
935
  global $wpdb;
936
  global $current_user, $pmpro_error;
982
  $old_levels = pmpro_getMembershipLevelsForUser($user_id);
983
 
984
  //deactivate old memberships based on the old_level_status passed in (updates pmpro_memberships_users table)
985
+ $pmpro_deactivate_old_levels = true;
986
+ /**
987
+ * Filter whether old levels should be deactivated or not. This supports the MMPU addon.
988
+ * Typically you'll want to hook into pmpro_before_change_membership_level
989
+ * or pmpro_after_change_membership_level later to run your own deactivation logic.
990
+ *
991
+ * @since 1.8.11
992
+ * @var $pmpro_deactivate_old_levels bool True or false if levels should be deactivated. Defaults to true.
993
+ */
994
+ $pmpro_deactivate_old_levels = apply_filters("pmpro_deactivate_old_levels", $pmpro_deactivate_old_levels);
995
+
996
+ //make sure we deactivate the specified level if it's passed in
997
+ if(!empty($cancel_level)) {
998
+ $pmpro_deactivate_old_levels = true;
999
+ $new_old_levels = array();
1000
+ foreach($old_levels as $key => $old_level) {
1001
+ if($old_level->id == $cancel_level) {
1002
+ $new_old_levels[] = $old_levels[$key];
1003
+ break;
1004
+ }
1005
+ }
1006
+ $old_levels = $new_old_levels;
1007
+ }
1008
+
1009
+ if($old_levels && $pmpro_deactivate_old_levels)
1010
  {
1011
  foreach($old_levels as $old_level) {
1012
 
1033
  * @param int $level_id ID of the level changed to.
1034
  * @param int $user_id ID of the user changed.
1035
  * @param array $old_levels array of prior levels the user belonged to.
1036
+ * $param int $cancel_level ID of the level being cancelled if specified
1037
  */
1038
+ do_action("pmpro_before_change_membership_level", $level_id, $user_id, $old_levels, $cancel_level);
1039
 
1040
  //should we cancel their gateway subscriptions?
1041
+ if(!empty($cancel_level)) {
1042
+ $pmpro_cancel_previous_subscriptions = true; //don't filter cause we're doing just the one
1043
+
1044
+ $other_order_ids = $wpdb->get_col("SELECT id FROM $wpdb->pmpro_membership_orders WHERE user_id = '" . $user_id . "' AND status = 'success' AND membership_id = '" . esc_sql($cancel_level) . "' ORDER BY id DESC");
1045
+ } else {
1046
+ $pmpro_cancel_previous_subscriptions = true;
1047
+ if(isset($_REQUEST['cancel_membership']) && $_REQUEST['cancel_membership'] == false)
1048
+ $pmpro_cancel_previous_subscriptions = false;
1049
+ $pmpro_cancel_previous_subscriptions = apply_filters("pmpro_cancel_previous_subscriptions", $pmpro_cancel_previous_subscriptions);
1050
+
1051
  $other_order_ids = $wpdb->get_col("SELECT id FROM $wpdb->pmpro_membership_orders WHERE user_id = '" . $user_id . "' AND status = 'success' ORDER BY id DESC");
1052
+ }
1053
+
1054
+ //cancel any other subscriptions they have (updates pmpro_membership_orders table)
1055
+ if($pmpro_cancel_previous_subscriptions && !empty($other_order_ids))
1056
+ {
1057
  foreach($other_order_ids as $order_id)
1058
  {
1059
  $c_order = new MemberOrder($order_id);
1137
  *
1138
  * @param int $level_id ID of the level changed to.
1139
  * @param int $user_id ID of the user changed.
1140
+ * $param int $cancel_level ID of the level being cancelled if specified.
1141
  */
1142
+ do_action("pmpro_after_change_membership_level", $level_id, $user_id, $cancel_level);
1143
  return true;
1144
  }
1145
 
1146
+ /**
1147
+ * Function to list WordPress categories in hierarchical format.
1148
+ *
1149
+ * This is a helper function for the Membership Categories section in adminpages/membershiplevels.php
1150
+ *
1151
+ * @since 1.8.11
1152
+ *
1153
+ * @param int $parent_id
1154
+ * @param array $level_categories
1155
+ */
1156
+ function pmpro_listCategories($parent_id = 0, $level_categories = array()) {
1157
+
1158
+ $args = array(
1159
+ 'parent' => $parent_id,
1160
+ 'hide_empty' => false,
1161
+ );
1162
+
1163
+ $cats = get_categories(apply_filters('pmpro_list_categories_args', $args));
1164
+
1165
+ if($cats) {
1166
+ foreach($cats as $cat) {
1167
+ $name = 'membershipcategory_' . $cat->term_id;
1168
+ if(!empty($level_categories))
1169
+ $checked = checked(in_array($cat->term_id, $level_categories), true, false);
1170
+ else
1171
+ $checked = "";
1172
+ echo "<ul><li class=membershipcategory><input type=checkbox name={$name} id={$name} value=yes {$checked}><label for={$name}>{$cat->name}</label>";
1173
+ pmpro_listCategories($cat->term_id, $level_categories);
1174
+ echo '</li></ul>';
1175
+ }
1176
+ }
1177
+ }
1178
+
1179
  /* pmpro_toggleMembershipCategory() creates or deletes a linking entry between the membership level and post category tables.
1180
  *
1181
  * $level may either be the ID or name of the desired membership_level.
1592
  return strtoupper($code);
1593
  }
1594
 
1595
+ //is a discount code valid - level_id could be a scalar or an array (or unset)
1596
  function pmpro_checkDiscountCode($code, $level_id = NULL, $return_errors = false)
1597
  {
1598
  global $wpdb;
1599
 
1600
  $error = false;
1601
+ $dbcode = false;
 
 
1602
 
1603
  //no code, no code
1604
  if(empty($code))
1653
  $pmpro_check_discount_code_levels = apply_filters("pmpro_check_discount_code_levels", true, $dbcode->id);
1654
  if(!empty($level_id) && $pmpro_check_discount_code_levels)
1655
  {
1656
+ // clean up level id for security before the database call
1657
+ if(is_array($level_id)) {
1658
+ $levelnums = array_map('intval', $level_id);
1659
+ $level_id = implode(',', $levelnums);
1660
+ } else {
1661
+ $level_id = intval($level_id);
1662
+ }
1663
+ $code_level = $wpdb->get_row("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 WHERE cl.code_id = '" . $dbcode->id . "' AND cl.level_id IN (" . $level_id . ") LIMIT 1");
1664
 
1665
  if(empty($code_level))
1666
  $error = __("This discount code does not apply to this membership level.", "pmpro");
1952
  return $pmpro_levels;
1953
  }
1954
 
1955
+ /**
1956
+ * Get level at checkout and place into $pmpro_level global.
1957
+ */
1958
+ function pmpro_getLevelAtCheckout($level_id = NULL, $discount_code = NULL) {
1959
+ global $pmpro_level, $wpdb;
1960
+
1961
+ //reset pmpro_level
1962
+ $pmpro_level = NULL;
1963
+
1964
+ //default to level passed in via URL
1965
+ if(empty($level_id) && !empty($_REQUEST['level'])) {
1966
+ $level_id = intval($_REQUEST['level']);
1967
+ }
1968
+
1969
+ //default to discount code passed in
1970
+ if(empty($discount_code) && !empty($_REQUEST['discount_code'])) {
1971
+ $discount_code = preg_replace( "/[^A-Za-z0-9\-]/", "", $_REQUEST['discount_code'] );
1972
+ }
1973
+
1974
+ //what level are they purchasing? (discount code passed)
1975
+ if (!empty($level_id) && !empty($discount_code)) {
1976
+ $discount_code_id = $wpdb->get_var( "SELECT id FROM $wpdb->pmpro_discount_codes WHERE code = '" . $discount_code . "' LIMIT 1" );
1977
+
1978
+ //check code
1979
+ $code_check = pmpro_checkDiscountCode( $discount_code, $level_id, true );
1980
+ if ( $code_check[0] != false ) {
1981
+ $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";
1982
+ $pmpro_level = $wpdb->get_row( $sqlQuery );
1983
+
1984
+ //if the discount code doesn't adjust the level, let's just get the straight level
1985
+ if ( empty( $pmpro_level ) ) {
1986
+ $pmpro_level = $wpdb->get_row( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . $level_id . "' LIMIT 1" );
1987
+ }
1988
+
1989
+ //filter adjustments to the level
1990
+ $pmpro_level->code_id = $discount_code_id;
1991
+ $pmpro_level = apply_filters( "pmpro_discount_code_level", $pmpro_level, $discount_code_id );
1992
+ }
1993
+ }
1994
+
1995
+ //what level are they purchasing? (no discount code)
1996
+ if ( empty( $pmpro_level ) && ! empty( $level_id ) ) {
1997
+ $pmpro_level = $wpdb->get_row( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . esc_sql( $level_id ) . "' AND allow_signups = 1 LIMIT 1" );
1998
+ } elseif ( empty( $pmpro_level ) ) {
1999
+ //check if a level is defined in custom fields
2000
+ $default_level = get_post_meta( $post->ID, "pmpro_default_level", true );
2001
+ if ( ! empty( $default_level ) ) {
2002
+ $pmpro_level = $wpdb->get_row( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . esc_sql( $default_level ) . "' AND allow_signups = 1 LIMIT 1" );
2003
+ }
2004
+ }
2005
+
2006
+ //filter the level (for upgrades, etc)
2007
+ $pmpro_level = apply_filters( "pmpro_checkout_level", $pmpro_level );
2008
+
2009
+ return $pmpro_level;
2010
+ }
2011
+
2012
  function pmpro_getCheckoutButton($level_id, $button_text = NULL, $classes = NULL)
2013
  {
2014
  if(empty($button_text))
2169
  //for now, we only show the first message generated
2170
  if($force || empty($pmpro_msg))
2171
  {
2172
+ $pmpro_msg = apply_filters('pmpro_set_message', $message, $type);
2173
  $pmpro_msgt = $type;
2174
  }
2175
  }
2285
  if($nl2br)
2286
  $address = nl2br($address);
2287
 
2288
+ return apply_filters('pmpro_formatted_address', $address, $name, $address1, $address2, $city, $state, $zip, $country, $phone, $nl2br );
2289
  }
2290
 
2291
  /*
2590
  else
2591
  return false;
2592
  }
2593
+
2594
+ /**
2595
+ * Get an array of orders for a specific checkout ID
2596
+ *
2597
+ * @param int $checkout_id Checkout ID
2598
+ * @since 1.8.11
2599
+ */
2600
+ function pmpro_getMemberOrdersByCheckoutID($checkout_id) {
2601
+ global $wpdb;
2602
+
2603
+ $order_ids = $wpdb->get_col($wpdb->prepare("SELECT id FROM $wpdb->pmpro_membership_orders WHERE checkout_id = %d", $checkout_id));
2604
+
2605
+ $r = array();
2606
+ foreach($order_ids as $order_id) {
2607
+ $r[] = new MemberOrder($order_id);
2608
+ }
2609
+
2610
+ return $r;
2611
+ }
languages/pmpro.mo CHANGED
Binary file
languages/pmpro.po CHANGED
@@ -5,7 +5,7 @@
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: pmpro\n"
8
- "POT-Creation-Date: 2016-07-20 12:40-0400\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
@@ -34,7 +34,7 @@ msgstr ""
34
 
35
  #: adminpages/addons.php:67 adminpages/admin_header.php:170
36
  #: includes/adminpages.php:53 includes/adminpages.php:151
37
- #: adminpages/addons.php:64 adminpages/addons.php:80
38
  #: adminpages/admin_header.php:133 adminpages/admin_header.php:154
39
  #: adminpages/admin_header.php:170 includes/adminpages.php:14
40
  #: includes/adminpages.php:52 includes/adminpages.php:53
@@ -44,165 +44,178 @@ msgstr ""
44
  msgid "Add Ons"
45
  msgstr ""
46
 
47
- #: adminpages/addons.php:74 adminpages/addons.php:71 adminpages/addons.php:87
 
48
  #, php-format
49
  msgid "Last checked on %s at %s."
50
  msgstr ""
51
 
52
- #: adminpages/addons.php:75 adminpages/addons.php:72 adminpages/addons.php:88
 
53
  msgid "Check Again"
54
  msgstr ""
55
 
56
  #: adminpages/addons.php:79 adminpages/orders.php:881 adminpages/addons.php:76
57
- #: adminpages/addons.php:92 adminpages/orders.php:605
58
  #: adminpages/orders.php:712 adminpages/orders.php:741
59
- #: adminpages/orders.php:850
60
  msgid "All"
61
  msgstr ""
62
 
63
- #: adminpages/addons.php:80 adminpages/addons.php:77 adminpages/addons.php:93
 
64
  msgid "Active"
65
  msgstr ""
66
 
67
- #: adminpages/addons.php:81 adminpages/addons.php:78 adminpages/addons.php:94
 
68
  msgid "Inactive"
69
  msgstr ""
70
 
71
- #: adminpages/addons.php:82 adminpages/addons.php:79 adminpages/addons.php:95
 
72
  msgid "Update Available"
73
  msgstr ""
74
 
75
- #: adminpages/addons.php:83 adminpages/addons.php:80 adminpages/addons.php:96
 
76
  msgid "Not Installed"
77
  msgstr ""
78
 
79
- #: adminpages/addons.php:96 adminpages/addons.php:93 adminpages/addons.php:109
 
80
  msgid "Add On Name"
81
  msgstr ""
82
 
83
- #: adminpages/addons.php:97 adminpages/addons.php:94 adminpages/addons.php:110
 
84
  msgid "Type"
85
  msgstr ""
86
 
87
  #: adminpages/addons.php:98 adminpages/membershiplevels.php:300
88
- #: adminpages/addons.php:95 adminpages/addons.php:111
89
  #: adminpages/membershiplevels.php:296 adminpages/membershiplevels.php:298
90
  #: adminpages/membershiplevels.php:300
91
  msgid "Description"
92
  msgstr ""
93
 
94
  #: adminpages/addons.php:121 adminpages/addons.php:118
95
- #: adminpages/addons.php:134
96
  msgid "No Add Ons found."
97
  msgstr ""
98
 
99
  #: adminpages/addons.php:182 adminpages/addons.php:187
100
  #: adminpages/addons.php:199 adminpages/addons.php:179
101
- #: adminpages/addons.php:184 adminpages/addons.php:195
102
- #: adminpages/addons.php:196 adminpages/addons.php:200
103
- #: adminpages/addons.php:212
 
104
  msgid "Install Now"
105
  msgstr ""
106
 
107
  #: adminpages/addons.php:188 adminpages/addons.php:194
108
  #: adminpages/addons.php:200 adminpages/addons.php:206
109
- #: adminpages/addons.php:185 adminpages/addons.php:191
110
- #: adminpages/addons.php:197 adminpages/addons.php:201
111
- #: adminpages/addons.php:203 adminpages/addons.php:207
 
 
112
  #: adminpages/addons.php:213 adminpages/addons.php:219
113
  msgid "Download"
114
  msgstr ""
115
 
116
  #: adminpages/addons.php:193 adminpages/addons.php:205
117
- #: adminpages/addons.php:190 adminpages/addons.php:202
 
118
  #: adminpages/addons.php:206 adminpages/addons.php:218
119
  msgid "Update License"
120
  msgstr ""
121
 
122
  #: adminpages/addons.php:211 adminpages/addons.php:208
123
- #: adminpages/addons.php:224
124
  msgid "Deactivate"
125
  msgstr ""
126
 
127
  #: adminpages/addons.php:211 adminpages/addons.php:208
128
- #: adminpages/addons.php:224
129
  #, php-format
130
  msgid "Deactivate %s"
131
  msgstr ""
132
 
133
  #: adminpages/addons.php:215 adminpages/addons.php:212
134
- #: adminpages/addons.php:228
135
  msgid "Activate"
136
  msgstr ""
137
 
138
  #: adminpages/addons.php:215 adminpages/addons.php:212
139
- #: adminpages/addons.php:228
140
  #, php-format
141
  msgid "Activate %s"
142
  msgstr ""
143
 
144
  #: adminpages/addons.php:216 adminpages/addons.php:213
145
- #: adminpages/addons.php:229
146
  msgid "Delete"
147
  msgstr ""
148
 
149
  #: adminpages/addons.php:216 adminpages/addons.php:213
150
- #: adminpages/addons.php:229
151
  #, php-format
152
  msgid "Delete %s"
153
  msgstr ""
154
 
155
  #: adminpages/addons.php:226 adminpages/addons.php:223
156
- #: adminpages/addons.php:239
157
  msgid "PMPro Free"
158
  msgstr ""
159
 
160
  #: adminpages/addons.php:228 adminpages/addons.php:225
161
- #: adminpages/addons.php:241
162
  msgid "PMPro Core"
163
  msgstr ""
164
 
165
  #: adminpages/addons.php:230 adminpages/addons.php:227
166
- #: adminpages/addons.php:243
167
  msgid "PMPro Plus"
168
  msgstr ""
169
 
170
  #: adminpages/addons.php:232 adminpages/addons.php:229
171
- #: adminpages/addons.php:245
172
  msgid "WordPress.org"
173
  msgstr ""
174
 
175
- #: adminpages/addons.php:234 shortcodes/pmpro_account.php:145
176
- #: adminpages/addons.php:231 adminpages/addons.php:247
 
177
  #: shortcodes/pmpro_account.php:146
178
  msgid "N/A"
179
  msgstr ""
180
 
181
  #: adminpages/addons.php:243 adminpages/addons.php:240
182
- #: adminpages/addons.php:256
183
  #, php-format
184
  msgid "Version %s"
185
  msgstr ""
186
 
187
  #: adminpages/addons.php:248 adminpages/addons.php:245
188
- #: adminpages/addons.php:261
189
  #, php-format
190
  msgid "By %s"
191
  msgstr ""
192
 
193
  #: adminpages/addons.php:255 adminpages/addons.php:252
194
- #: adminpages/addons.php:268
195
  #, php-format
196
  msgid "More information about %s"
197
  msgstr ""
198
 
199
  #: adminpages/addons.php:257 adminpages/addons.php:254
200
- #: adminpages/addons.php:270
201
  msgid "View details"
202
  msgstr ""
203
 
204
  #: adminpages/addons.php:262 adminpages/addons.php:259
205
- #: adminpages/addons.php:275
206
  msgid "Visit plugin site"
207
  msgstr ""
208
 
@@ -290,7 +303,7 @@ msgstr ""
290
  msgid "User Forum"
291
  msgstr ""
292
 
293
- #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:619
294
  #: adminpages/pagesettings.php:70 includes/adminpages.php:69
295
  #: includes/adminpages.php:70 includes/adminpages.php:116
296
  #: includes/metaboxes.php:131 adminpages/admin_header.php:128
@@ -322,12 +335,13 @@ msgid "Payment Gateway &amp; SSL"
322
  msgstr ""
323
 
324
  #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
325
- #: shortcodes/pmpro_account.php:108 adminpages/admin_header.php:131
326
  #: adminpages/admin_header.php:152 adminpages/admin_header.php:162
327
  #: adminpages/memberslist.php:115 adminpages/memberslist.php:148
328
  #: adminpages/memberslist.php:158 adminpages/memberslist.php:168
329
  #: pages/account.php:52 pages/account.php:56 pages/account.php:77
330
- #: shortcodes/pmpro_account.php:106 shortcodes/pmpro_account.php:109
 
331
  msgid "Email"
332
  msgstr ""
333
 
@@ -438,7 +452,7 @@ msgid "Hide Ads From Members?"
438
  msgstr ""
439
 
440
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
441
- #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:672
442
  #: adminpages/paymentsettings.php:210
443
  #: classes/gateways/class.pmprogateway_stripe.php:209 includes/profile.php:110
444
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
@@ -449,16 +463,17 @@ msgstr ""
449
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
450
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
451
  #: adminpages/membershiplevels.php:658 adminpages/membershiplevels.php:667
452
- #: adminpages/membershiplevels.php:668 adminpages/paymentsettings.php:210
453
- #: adminpages/paymentsettings.php:414 adminpages/paymentsettings.php:429
454
- #: adminpages/paymentsettings.php:434 adminpages/paymentsettings.php:436
455
- #: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:459
456
- #: adminpages/paymentsettings.php:461
457
  #: classes/gateways/class.pmprogateway_stripe.php:173
458
  #: classes/gateways/class.pmprogateway_stripe.php:174
459
  #: classes/gateways/class.pmprogateway_stripe.php:184
460
  #: classes/gateways/class.pmprogateway_stripe.php:206
461
- #: classes/gateways/class.pmprogateway_stripe.php:208 includes/profile.php:101
 
462
  #: includes/profile.php:105 includes/profile.php:110 includes/profile.php:121
463
  #: includes/profile.php:123
464
  msgid "No"
@@ -499,7 +514,7 @@ msgstr ""
499
  msgid "multisite only"
500
  msgstr ""
501
 
502
- #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:672
503
  #: adminpages/paymentsettings.php:211
504
  #: classes/gateways/class.pmprogateway_stripe.php:210 includes/profile.php:111
505
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
@@ -507,16 +522,18 @@ msgstr ""
507
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
508
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
509
  #: adminpages/membershiplevels.php:658 adminpages/membershiplevels.php:667
510
- #: adminpages/membershiplevels.php:668 adminpages/paymentsettings.php:211
511
- #: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
512
- #: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:435
513
- #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:455
514
- #: adminpages/paymentsettings.php:460 adminpages/paymentsettings.php:462
 
515
  #: classes/gateways/class.pmprogateway_stripe.php:174
516
  #: classes/gateways/class.pmprogateway_stripe.php:175
517
  #: classes/gateways/class.pmprogateway_stripe.php:185
518
  #: classes/gateways/class.pmprogateway_stripe.php:207
519
- #: classes/gateways/class.pmprogateway_stripe.php:209 includes/profile.php:102
 
520
  #: includes/profile.php:106 includes/profile.php:111 includes/profile.php:122
521
  #: includes/profile.php:124
522
  msgid "Yes"
@@ -659,7 +676,7 @@ msgid "Add New Discount Code"
659
  msgstr ""
660
 
661
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:587
662
- #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:641
663
  #: adminpages/memberslist.php:164 adminpages/orders.php:1134
664
  #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
665
  #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
@@ -672,12 +689,13 @@ msgstr ""
672
  #: adminpages/membershiplevels.php:511 adminpages/membershiplevels.php:513
673
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:541
674
  #: adminpages/membershiplevels.php:583 adminpages/membershiplevels.php:636
675
- #: adminpages/membershiplevels.php:637 adminpages/memberslist.php:111
676
- #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
677
- #: adminpages/memberslist.php:164 adminpages/orders.php:597
678
- #: adminpages/orders.php:900 adminpages/orders.php:910
679
- #: adminpages/orders.php:937 adminpages/orders.php:966
680
- #: adminpages/orders.php:1103 adminpages/reports/login.php:140
 
681
  #: adminpages/reports/login.php:142 adminpages/reports/login.php:158
682
  #: adminpages/templates/orders-email.php:46
683
  #: adminpages/templates/orders-print.php:75
@@ -689,7 +707,7 @@ msgstr ""
689
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
690
  #: adminpages/orders.php:211 adminpages/orders.php:261
691
  #: adminpages/orders.php:333 adminpages/orders.php:344
692
- #: adminpages/orders.php:362
693
  msgid "This will be generated when you save."
694
  msgstr ""
695
 
@@ -702,9 +720,10 @@ msgstr ""
702
  #: adminpages/discountcodes.php:588 adminpages/orders.php:215
703
  #: adminpages/orders.php:265 adminpages/orders.php:337
704
  #: adminpages/orders.php:349 adminpages/orders.php:366
705
- #: adminpages/orders.php:598 adminpages/orders.php:901
706
- #: adminpages/orders.php:911 adminpages/orders.php:938
707
- #: adminpages/orders.php:967 adminpages/orders.php:1104
 
708
  msgid "Code"
709
  msgstr ""
710
 
@@ -716,25 +735,28 @@ msgstr ""
716
 
717
  #: adminpages/discountcodes.php:372
718
  #: classes/gateways/class.pmprogateway_braintree.php:327
719
- #: classes/gateways/class.pmprogateway_stripe.php:503 pages/billing.php:310
720
- #: pages/checkout.php:575 adminpages/discountcodes.php:367
721
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
722
  #: adminpages/discountcodes.php:372
723
  #: classes/gateways/class.pmprogateway_braintree.php:308
724
  #: classes/gateways/class.pmprogateway_braintree.php:321
725
  #: classes/gateways/class.pmprogateway_braintree.php:323
726
  #: classes/gateways/class.pmprogateway_braintree.php:326
 
727
  #: classes/gateways/class.pmprogateway_stripe.php:454
728
  #: classes/gateways/class.pmprogateway_stripe.php:455
729
  #: classes/gateways/class.pmprogateway_stripe.php:465
730
  #: classes/gateways/class.pmprogateway_stripe.php:469
731
  #: classes/gateways/class.pmprogateway_stripe.php:495
732
  #: classes/gateways/class.pmprogateway_stripe.php:498
733
- #: classes/gateways/class.pmprogateway_stripe.php:500 pages/billing.php:249
 
734
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
735
- #: pages/billing.php:268 pages/checkout.php:508 pages/checkout.php:524
736
- #: pages/checkout.php:525 pages/checkout.php:532 pages/checkout.php:553
737
- #: pages/checkout.php:562 pages/checkout.php:571 pages/checkout.php:575
 
738
  msgid "Expiration Date"
739
  msgstr ""
740
 
@@ -807,7 +829,7 @@ msgstr ""
807
 
808
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
809
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
810
- #: classes/gateways/class.pmprogateway_stripe.php:570
811
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
812
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
813
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -824,12 +846,13 @@ msgstr ""
824
  #: classes/gateways/class.pmprogateway_stripe.php:562
825
  #: classes/gateways/class.pmprogateway_stripe.php:566
826
  #: classes/gateways/class.pmprogateway_stripe.php:567
 
827
  msgid "Day(s)"
828
  msgstr ""
829
 
830
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
831
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
832
- #: classes/gateways/class.pmprogateway_stripe.php:570
833
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
834
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
835
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -846,12 +869,13 @@ msgstr ""
846
  #: classes/gateways/class.pmprogateway_stripe.php:562
847
  #: classes/gateways/class.pmprogateway_stripe.php:566
848
  #: classes/gateways/class.pmprogateway_stripe.php:567
 
849
  msgid "Month(s)"
850
  msgstr ""
851
 
852
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
853
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
854
- #: classes/gateways/class.pmprogateway_stripe.php:570
855
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
856
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
857
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -868,12 +892,13 @@ msgstr ""
868
  #: classes/gateways/class.pmprogateway_stripe.php:562
869
  #: classes/gateways/class.pmprogateway_stripe.php:566
870
  #: classes/gateways/class.pmprogateway_stripe.php:567
 
871
  msgid "Week(s)"
872
  msgstr ""
873
 
874
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
875
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
876
- #: classes/gateways/class.pmprogateway_stripe.php:570
877
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
878
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
879
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -890,6 +915,7 @@ msgstr ""
890
  #: classes/gateways/class.pmprogateway_stripe.php:562
891
  #: classes/gateways/class.pmprogateway_stripe.php:566
892
  #: classes/gateways/class.pmprogateway_stripe.php:567
 
893
  msgid "Year(s)"
894
  msgstr ""
895
 
@@ -1074,7 +1100,7 @@ msgid ""
1074
  "select customers."
1075
  msgstr ""
1076
 
1077
- #: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:674
1078
  #: adminpages/orders.php:1239 adminpages/discountcodes.php:614
1079
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
1080
  #: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
@@ -1082,11 +1108,12 @@ msgstr ""
1082
  #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
1083
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
1084
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
1085
- #: adminpages/membershiplevels.php:670 adminpages/orders.php:658
1086
- #: adminpages/orders.php:961 adminpages/orders.php:979
1087
- #: adminpages/orders.php:989 adminpages/orders.php:992
1088
- #: adminpages/orders.php:1021 adminpages/orders.php:1050
1089
- #: adminpages/orders.php:1205
 
1090
  msgid "edit"
1091
  msgstr ""
1092
 
@@ -1101,7 +1128,7 @@ msgid ""
1101
  "code anymore."
1102
  msgstr ""
1103
 
1104
- #: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:674
1105
  #: adminpages/orders.php:1245 adminpages/discountcodes.php:617
1106
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
1107
  #: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
@@ -1109,11 +1136,12 @@ msgstr ""
1109
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1110
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1111
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
1112
- #: adminpages/membershiplevels.php:670 adminpages/orders.php:664
1113
- #: adminpages/orders.php:967 adminpages/orders.php:985
1114
- #: adminpages/orders.php:995 adminpages/orders.php:998
1115
- #: adminpages/orders.php:1027 adminpages/orders.php:1056
1116
- #: adminpages/orders.php:1211
 
1117
  msgid "delete"
1118
  msgstr ""
1119
 
@@ -1286,15 +1314,15 @@ msgstr ""
1286
  msgid "Add New Membership Level"
1287
  msgstr ""
1288
 
1289
- #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:642
1290
  #: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
1291
  #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
1292
  #: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
1293
  #: adminpages/membershiplevels.php:514 adminpages/membershiplevels.php:541
1294
  #: adminpages/membershiplevels.php:542 adminpages/membershiplevels.php:584
1295
  #: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:638
1296
- #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
1297
- #: adminpages/reports/login.php:160
1298
  msgid "Name"
1299
  msgstr ""
1300
 
@@ -1303,16 +1331,17 @@ msgstr ""
1303
  msgid "Confirmation Message"
1304
  msgstr ""
1305
 
1306
- #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:643
1307
  #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1308
  #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:338
1309
  #: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:585
1310
  #: adminpages/membershiplevels.php:638 adminpages/membershiplevels.php:639
 
1311
  msgid "Billing Details"
1312
  msgstr ""
1313
 
1314
  #: adminpages/membershiplevels.php:372
1315
- #: classes/gateways/class.pmprogateway_stripe.php:668
1316
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1317
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1318
  #: adminpages/membershiplevels.php:373
@@ -1323,6 +1352,7 @@ msgstr ""
1323
  #: classes/gateways/class.pmprogateway_stripe.php:660
1324
  #: classes/gateways/class.pmprogateway_stripe.php:664
1325
  #: classes/gateways/class.pmprogateway_stripe.php:665
 
1326
  msgid "per"
1327
  msgstr ""
1328
 
@@ -1372,8 +1402,10 @@ msgstr ""
1372
  #: adminpages/paymentsettings.php:179
1373
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1374
  #: classes/gateways/class.pmprogateway_paypal.php:118
 
1375
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1376
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
 
1377
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1378
  msgid "Note"
1379
  msgstr ""
@@ -1464,25 +1496,26 @@ msgstr ""
1464
  msgid "Categories"
1465
  msgstr ""
1466
 
1467
- #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:516
1468
  #: adminpages/membershiplevels.php:517
1469
  msgid "Save Level"
1470
  msgstr ""
1471
 
1472
- #: adminpages/membershiplevels.php:518 adminpages/orders.php:796
1473
- #: pages/billing.php:392 pages/cancel.php:71 shortcodes/pmpro_account.php:72
1474
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1475
  #: adminpages/orders.php:511 adminpages/orders.php:561
1476
  #: adminpages/orders.php:633 adminpages/orders.php:662
1477
- #: adminpages/orders.php:765 pages/account.php:44 pages/billing.php:295
1478
- #: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
1479
- #: pages/billing.php:342 pages/billing.php:344 pages/billing.php:348
1480
- #: pages/cancel.php:71 shortcodes/pmpro_account.php:70
 
1481
  #: shortcodes/pmpro_account.php:73
1482
  msgid "Cancel"
1483
  msgstr ""
1484
 
1485
- #: adminpages/membershiplevels.php:619 adminpages/membershiplevels.php:490
1486
  #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1487
  #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
1488
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:618
@@ -1490,7 +1523,7 @@ msgstr ""
1490
  msgid "Add New Level"
1491
  msgstr ""
1492
 
1493
- #: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
1494
  #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1495
  #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1496
  #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
@@ -1502,67 +1535,69 @@ msgstr ""
1502
  msgid "Search Levels"
1503
  msgstr ""
1504
 
1505
- #: adminpages/membershiplevels.php:631 adminpages/membershiplevels.php:579
1506
  #: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:631
1507
  msgid "Drag and drop membership levels to reorder them on the Levels page."
1508
  msgstr ""
1509
 
1510
- #: adminpages/membershiplevels.php:644 pages/cancel.php:53
1511
- #: pages/confirmation.php:83 pages/invoice.php:70
1512
- #: shortcodes/pmpro_account.php:45 adminpages/membershiplevels.php:510
1513
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1514
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1515
  #: adminpages/membershiplevels.php:586 adminpages/membershiplevels.php:639
1516
- #: adminpages/membershiplevels.php:640 pages/account.php:20
1517
- #: pages/cancel.php:53 pages/confirmation.php:81 pages/confirmation.php:83
1518
- #: pages/invoice.php:68 pages/invoice.php:70 shortcodes/pmpro_account.php:46
 
1519
  msgid "Expiration"
1520
  msgstr ""
1521
 
1522
- #: adminpages/membershiplevels.php:645 adminpages/membershiplevels.php:511
1523
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1524
  #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1525
  #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:640
1526
- #: adminpages/membershiplevels.php:641
1527
  msgid "Allow Signups"
1528
  msgstr ""
1529
 
1530
- #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:534
1531
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1532
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1533
  #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:655
1534
- #: adminpages/membershiplevels.php:656
1535
  msgid "FREE"
1536
  msgstr ""
1537
 
1538
- #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:560
1539
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1540
  #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1541
  #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:664
1542
- #: adminpages/membershiplevels.php:665
1543
  msgid "After"
1544
  msgstr ""
1545
 
1546
- #: adminpages/membershiplevels.php:674 adminpages/membershiplevels.php:566
1547
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1548
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1549
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
1550
- #: adminpages/membershiplevels.php:670
1551
  #, php-format
1552
  msgid ""
1553
  "Are you sure you want to delete membership level %s? All subscriptions will "
1554
  "be cancelled."
1555
  msgstr ""
1556
 
1557
- #: adminpages/membershiplevels.php:674 adminpages/orders.php:1242
1558
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1559
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1560
  #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1561
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1562
- #: adminpages/orders.php:661 adminpages/orders.php:964
1563
- #: adminpages/orders.php:982 adminpages/orders.php:992
1564
- #: adminpages/orders.php:995 adminpages/orders.php:1024
1565
- #: adminpages/orders.php:1053 adminpages/orders.php:1208
 
1566
  msgid "copy"
1567
  msgstr ""
1568
 
@@ -1579,6 +1614,7 @@ msgstr ""
1579
  #: adminpages/memberslist.php:26 adminpages/orders.php:522
1580
  #: adminpages/orders.php:591 adminpages/orders.php:698
1581
  #: adminpages/orders.php:727 adminpages/orders.php:833
 
1582
  msgid "Export to CSV"
1583
  msgstr ""
1584
 
@@ -1587,8 +1623,9 @@ msgstr ""
1587
  #: adminpages/reports/sales.php:202 adminpages/memberslist.php:30
1588
  #: adminpages/orders.php:603 adminpages/orders.php:710
1589
  #: adminpages/orders.php:739 adminpages/orders.php:848
1590
- #: adminpages/reports/login.php:65 adminpages/reports/login.php:67
1591
- #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:256
 
1592
  #: adminpages/reports/memberships.php:263
1593
  #: adminpages/reports/memberships.php:276
1594
  #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
@@ -1599,6 +1636,7 @@ msgstr ""
1599
 
1600
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1601
  #: adminpages/reports/memberships.php:303 adminpages/reports/sales.php:225
 
1602
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:67
1603
  #: adminpages/reports/login.php:69 adminpages/reports/login.php:85
1604
  #: adminpages/reports/memberships.php:281
@@ -1637,14 +1675,14 @@ msgstr ""
1637
  msgid "%d members found."
1638
  msgstr ""
1639
 
1640
- #: adminpages/memberslist.php:165 pages/checkout.php:184
1641
- #: shortcodes/pmpro_account.php:107 adminpages/memberslist.php:112
1642
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1643
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1644
  #: pages/account.php:76 pages/checkout.php:168 pages/checkout.php:171
1645
  #: pages/checkout.php:173 pages/checkout.php:180 pages/checkout.php:182
1646
  #: pages/checkout.php:184 shortcodes/pmpro_account.php:105
1647
- #: shortcodes/pmpro_account.php:108
1648
  msgid "Username"
1649
  msgstr ""
1650
 
@@ -1660,16 +1698,17 @@ msgstr ""
1660
  msgid "Last&nbsp;Name"
1661
  msgstr ""
1662
 
1663
- #: adminpages/memberslist.php:170 pages/billing.php:76 pages/checkout.php:319
1664
- #: pages/confirmation.php:61 pages/invoice.php:48
1665
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1666
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
1667
  #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
1668
  #: pages/billing.php:62 pages/billing.php:71 pages/billing.php:74
1669
- #: pages/checkout.php:298 pages/checkout.php:300 pages/checkout.php:302
1670
- #: pages/checkout.php:311 pages/checkout.php:314 pages/checkout.php:317
1671
- #: pages/checkout.php:319 pages/checkout.php:321 pages/confirmation.php:59
1672
- #: pages/confirmation.php:61 pages/invoice.php:46 pages/invoice.php:48
 
1673
  msgid "Billing Address"
1674
  msgstr ""
1675
 
@@ -1703,7 +1742,7 @@ msgstr ""
1703
  msgid "Ended"
1704
  msgstr ""
1705
 
1706
- #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1707
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1708
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1709
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
@@ -1711,7 +1750,7 @@ msgstr ""
1711
  msgid "No members found."
1712
  msgstr ""
1713
 
1714
- #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1715
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1716
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1717
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
@@ -1741,97 +1780,110 @@ msgstr ""
1741
 
1742
  #: adminpages/orders.php:285 adminpages/orders.php:119
1743
  #: adminpages/orders.php:169 adminpages/orders.php:270
1744
- #: adminpages/orders.php:284
1745
  msgid "Order saved successfully."
1746
  msgstr ""
1747
 
1748
  #: adminpages/orders.php:288 adminpages/orders.php:124
1749
  #: adminpages/orders.php:174 adminpages/orders.php:275
1750
- #: adminpages/orders.php:287
1751
  msgid "Error updating order timestamp."
1752
  msgstr ""
1753
 
1754
  #: adminpages/orders.php:292 adminpages/orders.php:130
1755
  #: adminpages/orders.php:180 adminpages/orders.php:281
1756
- #: adminpages/orders.php:291
1757
  msgid "Error saving order."
1758
  msgstr ""
1759
 
1760
  #: adminpages/orders.php:352 adminpages/orders.php:195
1761
  #: adminpages/orders.php:245 adminpages/orders.php:317
1762
  #: adminpages/orders.php:321 adminpages/orders.php:346
 
1763
  msgid "Order"
1764
  msgstr ""
1765
 
1766
  #: adminpages/orders.php:354 adminpages/orders.php:197
1767
  #: adminpages/orders.php:247 adminpages/orders.php:319
1768
  #: adminpages/orders.php:323 adminpages/orders.php:348
 
1769
  msgid "New Order"
1770
  msgstr ""
1771
 
1772
  #: adminpages/orders.php:390 adminpages/orders.php:220
1773
  #: adminpages/orders.php:270 adminpages/orders.php:342
1774
  #: adminpages/orders.php:359 adminpages/orders.php:371
 
1775
  msgid "Randomly generated for you."
1776
  msgstr ""
1777
 
1778
  #: adminpages/orders.php:395 adminpages/orders.php:225
1779
  #: adminpages/orders.php:275 adminpages/orders.php:347
1780
  #: adminpages/orders.php:364 adminpages/orders.php:376
 
1781
  msgid "User ID"
1782
  msgstr ""
1783
 
1784
  #: adminpages/orders.php:407 adminpages/orders.php:234
1785
  #: adminpages/orders.php:284 adminpages/orders.php:356
1786
  #: adminpages/orders.php:376 adminpages/orders.php:385
 
1787
  msgid "Membership Level ID"
1788
  msgstr ""
1789
 
1790
  #: adminpages/orders.php:420 adminpages/orders.php:243
1791
  #: adminpages/orders.php:293 adminpages/orders.php:365
1792
  #: adminpages/orders.php:389 adminpages/orders.php:394
 
1793
  msgid "Billing Name"
1794
  msgstr ""
1795
 
1796
  #: adminpages/orders.php:432 adminpages/orders.php:251
1797
  #: adminpages/orders.php:301 adminpages/orders.php:373
1798
  #: adminpages/orders.php:401 adminpages/orders.php:402
 
1799
  msgid "Billing Street"
1800
  msgstr ""
1801
 
1802
  #: adminpages/orders.php:443 adminpages/orders.php:258
1803
  #: adminpages/orders.php:308 adminpages/orders.php:380
1804
  #: adminpages/orders.php:409 adminpages/orders.php:412
 
1805
  msgid "Billing City"
1806
  msgstr ""
1807
 
1808
  #: adminpages/orders.php:454 adminpages/orders.php:265
1809
  #: adminpages/orders.php:315 adminpages/orders.php:387
1810
  #: adminpages/orders.php:416 adminpages/orders.php:423
 
1811
  msgid "Billing State"
1812
  msgstr ""
1813
 
1814
  #: adminpages/orders.php:465 adminpages/orders.php:272
1815
  #: adminpages/orders.php:322 adminpages/orders.php:394
1816
  #: adminpages/orders.php:423 adminpages/orders.php:434
 
1817
  msgid "Billing Postal Code"
1818
  msgstr ""
1819
 
1820
  #: adminpages/orders.php:476 adminpages/orders.php:279
1821
  #: adminpages/orders.php:329 adminpages/orders.php:401
1822
  #: adminpages/orders.php:430 adminpages/orders.php:445
 
1823
  msgid "Billing Country"
1824
  msgstr ""
1825
 
1826
  #: adminpages/orders.php:488 adminpages/orders.php:287
1827
  #: adminpages/orders.php:337 adminpages/orders.php:409
1828
  #: adminpages/orders.php:438 adminpages/orders.php:457
 
1829
  msgid "Billing Phone"
1830
  msgstr ""
1831
 
1832
  #: adminpages/orders.php:501 adminpages/orders.php:296
1833
  #: adminpages/orders.php:346 adminpages/orders.php:418
1834
  #: adminpages/orders.php:447 adminpages/orders.php:470
 
1835
  msgid "Sub Total"
1836
  msgstr ""
1837
 
@@ -1839,7 +1891,8 @@ msgstr ""
1839
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1840
  #: adminpages/orders.php:304 adminpages/orders.php:354
1841
  #: adminpages/orders.php:426 adminpages/orders.php:455
1842
- #: adminpages/orders.php:481 adminpages/templates/orders-email.php:60
 
1843
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:78
1844
  #: pages/invoice.php:80
1845
  msgid "Tax"
@@ -1848,6 +1901,7 @@ msgstr ""
1848
  #: adminpages/orders.php:523 adminpages/orders.php:312
1849
  #: adminpages/orders.php:362 adminpages/orders.php:434
1850
  #: adminpages/orders.php:463 adminpages/orders.php:492
 
1851
  msgid "Coupon Amount"
1852
  msgstr ""
1853
 
@@ -1856,10 +1910,11 @@ msgstr ""
1856
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1857
  #: adminpages/orders.php:320 adminpages/orders.php:370
1858
  #: adminpages/orders.php:442 adminpages/orders.php:471
1859
- #: adminpages/orders.php:504 adminpages/orders.php:602
1860
- #: adminpages/orders.php:905 adminpages/orders.php:915
1861
- #: adminpages/orders.php:942 adminpages/orders.php:971
1862
- #: adminpages/orders.php:1108 adminpages/templates/orders-email.php:64
 
1863
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:82
1864
  #: pages/invoice.php:84
1865
  msgid "Total"
@@ -1868,48 +1923,54 @@ msgstr ""
1868
  #: adminpages/orders.php:544 adminpages/orders.php:325
1869
  #: adminpages/orders.php:375 adminpages/orders.php:447
1870
  #: adminpages/orders.php:476 adminpages/orders.php:513
 
1871
  msgid "Should be subtotal + tax - couponamount."
1872
  msgstr ""
1873
 
1874
  #: adminpages/orders.php:549 adminpages/orders.php:330
1875
  #: adminpages/orders.php:380 adminpages/orders.php:452
1876
  #: adminpages/orders.php:481 adminpages/orders.php:518
 
1877
  msgid "Payment Type"
1878
  msgstr ""
1879
 
1880
  #: adminpages/orders.php:559 adminpages/orders.php:335
1881
  #: adminpages/orders.php:385 adminpages/orders.php:457
1882
  #: adminpages/orders.php:486 adminpages/orders.php:528
 
1883
  msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1884
  msgstr ""
1885
 
1886
  #: adminpages/orders.php:563
1887
  #: classes/gateways/class.pmprogateway_braintree.php:310
1888
- #: classes/gateways/class.pmprogateway_stripe.php:455 pages/billing.php:262
1889
- #: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
1890
  #: adminpages/orders.php:461 adminpages/orders.php:490
1891
- #: adminpages/orders.php:532
1892
  #: classes/gateways/class.pmprogateway_braintree.php:291
1893
  #: classes/gateways/class.pmprogateway_braintree.php:304
1894
  #: classes/gateways/class.pmprogateway_braintree.php:306
1895
  #: classes/gateways/class.pmprogateway_braintree.php:309
 
1896
  #: classes/gateways/class.pmprogateway_stripe.php:408
1897
  #: classes/gateways/class.pmprogateway_stripe.php:409
1898
  #: classes/gateways/class.pmprogateway_stripe.php:419
1899
  #: classes/gateways/class.pmprogateway_stripe.php:423
1900
  #: classes/gateways/class.pmprogateway_stripe.php:447
1901
  #: classes/gateways/class.pmprogateway_stripe.php:450
1902
- #: classes/gateways/class.pmprogateway_stripe.php:452 pages/billing.php:234
 
1903
  #: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
1904
- #: pages/billing.php:253 pages/checkout.php:493 pages/checkout.php:507
1905
- #: pages/checkout.php:510 pages/checkout.php:516 pages/checkout.php:517
1906
- #: pages/checkout.php:525 pages/checkout.php:527
1907
  msgid "Card Type"
1908
  msgstr ""
1909
 
1910
  #: adminpages/orders.php:571 adminpages/orders.php:344
1911
  #: adminpages/orders.php:394 adminpages/orders.php:466
1912
  #: adminpages/orders.php:495 adminpages/orders.php:540
 
1913
  msgid "e.g. Visa, MasterCard, AMEX, etc"
1914
  msgstr ""
1915
 
@@ -1917,8 +1978,8 @@ msgstr ""
1917
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
1918
  #: adminpages/orders.php:348 adminpages/orders.php:398
1919
  #: adminpages/orders.php:470 adminpages/orders.php:499
1920
- #: adminpages/orders.php:544 adminpages/paymentsettings.php:347
1921
- #: adminpages/paymentsettings.php:352
1922
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
1923
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
1924
  #: classes/gateways/class.pmprogateway_twocheckout.php:148
@@ -1928,18 +1989,21 @@ msgstr ""
1928
  #: adminpages/orders.php:584 adminpages/orders.php:353
1929
  #: adminpages/orders.php:403 adminpages/orders.php:475
1930
  #: adminpages/orders.php:504 adminpages/orders.php:553
 
1931
  msgid "Obscure all but last 4 digits."
1932
  msgstr ""
1933
 
1934
  #: adminpages/orders.php:592 adminpages/orders.php:358
1935
  #: adminpages/orders.php:408 adminpages/orders.php:480
1936
  #: adminpages/orders.php:509 adminpages/orders.php:561
 
1937
  msgid "Expiration Month"
1938
  msgstr ""
1939
 
1940
  #: adminpages/orders.php:600 adminpages/orders.php:365
1941
  #: adminpages/orders.php:415 adminpages/orders.php:487
1942
  #: adminpages/orders.php:516 adminpages/orders.php:569
 
1943
  msgid "Expiration Year"
1944
  msgstr ""
1945
 
@@ -1947,9 +2011,10 @@ msgstr ""
1947
  #: adminpages/orders.php:373 adminpages/orders.php:423
1948
  #: adminpages/orders.php:495 adminpages/orders.php:524
1949
  #: adminpages/orders.php:579 adminpages/orders.php:606
1950
- #: adminpages/orders.php:909 adminpages/orders.php:919
1951
- #: adminpages/orders.php:946 adminpages/orders.php:975
1952
- #: adminpages/orders.php:1112
 
1953
  msgid "Status"
1954
  msgstr ""
1955
 
@@ -1957,9 +2022,10 @@ msgstr ""
1957
  #: adminpages/orders.php:394 adminpages/orders.php:444
1958
  #: adminpages/orders.php:516 adminpages/orders.php:545
1959
  #: adminpages/orders.php:604 adminpages/orders.php:612
1960
- #: adminpages/orders.php:907 adminpages/orders.php:917
1961
- #: adminpages/orders.php:944 adminpages/orders.php:973
1962
- #: adminpages/orders.php:1110
 
1963
  msgid "Gateway"
1964
  msgstr ""
1965
 
@@ -1967,8 +2033,9 @@ msgstr ""
1967
  #: adminpages/orders.php:411 adminpages/orders.php:461
1968
  #: adminpages/orders.php:462 adminpages/orders.php:534
1969
  #: adminpages/orders.php:563 adminpages/orders.php:633
1970
- #: adminpages/paymentsettings.php:124 adminpages/paymentsettings.php:175
1971
- #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:184
 
1972
  msgid "Gateway Environment"
1973
  msgstr ""
1974
 
@@ -1976,8 +2043,9 @@ msgstr ""
1976
  #: adminpages/orders.php:415 adminpages/orders.php:465
1977
  #: adminpages/orders.php:466 adminpages/orders.php:538
1978
  #: adminpages/orders.php:567 adminpages/orders.php:640
1979
- #: adminpages/paymentsettings.php:128 adminpages/paymentsettings.php:179
1980
- #: adminpages/paymentsettings.php:183 adminpages/paymentsettings.php:188
 
1981
  msgid "Sandbox/Testing"
1982
  msgstr ""
1983
 
@@ -1985,88 +2053,97 @@ msgstr ""
1985
  #: adminpages/orders.php:416 adminpages/orders.php:466
1986
  #: adminpages/orders.php:467 adminpages/orders.php:539
1987
  #: adminpages/orders.php:568 adminpages/orders.php:642
1988
- #: adminpages/paymentsettings.php:129 adminpages/paymentsettings.php:180
1989
- #: adminpages/paymentsettings.php:184 adminpages/paymentsettings.php:189
 
1990
  msgid "Live/Production"
1991
  msgstr ""
1992
 
1993
  #: adminpages/orders.php:681 adminpages/orders.php:423
1994
  #: adminpages/orders.php:473 adminpages/orders.php:474
1995
  #: adminpages/orders.php:546 adminpages/orders.php:575
1996
- #: adminpages/orders.php:650
1997
  msgid "Payment Transaction ID"
1998
  msgstr ""
1999
 
2000
  #: adminpages/orders.php:690 adminpages/orders.php:428
2001
  #: adminpages/orders.php:478 adminpages/orders.php:479
2002
  #: adminpages/orders.php:551 adminpages/orders.php:580
2003
- #: adminpages/orders.php:659
2004
  msgid "Generated by the gateway. Useful to cross reference orders."
2005
  msgstr ""
2006
 
2007
  #: adminpages/orders.php:695 adminpages/orders.php:432
2008
  #: adminpages/orders.php:482 adminpages/orders.php:483
2009
  #: adminpages/orders.php:555 adminpages/orders.php:584
2010
- #: adminpages/orders.php:664
2011
  msgid "Subscription Transaction ID"
2012
  msgstr ""
2013
 
2014
  #: adminpages/orders.php:705 adminpages/orders.php:437
2015
  #: adminpages/orders.php:487 adminpages/orders.php:488
2016
  #: adminpages/orders.php:560 adminpages/orders.php:589
2017
- #: adminpages/orders.php:674
2018
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
2019
  msgstr ""
2020
 
2021
  #: adminpages/orders.php:710 adminpages/orders.php:1144 pages/invoice.php:107
2022
- #: shortcodes/pmpro_account.php:124 adminpages/orders.php:442
2023
  #: adminpages/orders.php:492 adminpages/orders.php:493
2024
  #: adminpages/orders.php:565 adminpages/orders.php:594
2025
  #: adminpages/orders.php:607 adminpages/orders.php:679
2026
- #: adminpages/orders.php:910 adminpages/orders.php:920
2027
- #: adminpages/orders.php:947 adminpages/orders.php:976
2028
- #: adminpages/orders.php:1113 pages/account.php:91 pages/invoice.php:105
 
2029
  #: pages/invoice.php:107 shortcodes/pmpro_account.php:122
2030
- #: shortcodes/pmpro_account.php:125
2031
  msgid "Date"
2032
  msgstr ""
2033
 
2034
  #: adminpages/orders.php:747 adminpages/orders.php:477
2035
  #: adminpages/orders.php:527 adminpages/orders.php:599
2036
  #: adminpages/orders.php:628 adminpages/orders.php:716
 
2037
  msgid "Affiliate ID"
2038
  msgstr ""
2039
 
2040
  #: adminpages/orders.php:759 adminpages/orders.php:485
2041
  #: adminpages/orders.php:535 adminpages/orders.php:607
2042
  #: adminpages/orders.php:636 adminpages/orders.php:728
 
2043
  msgid "Affiliate SubID"
2044
  msgstr ""
2045
 
2046
  #: adminpages/orders.php:773 adminpages/orders.php:495
2047
  #: adminpages/orders.php:545 adminpages/orders.php:617
2048
  #: adminpages/orders.php:646 adminpages/orders.php:742
 
2049
  msgid "Notes"
2050
  msgstr ""
2051
 
2052
  #: adminpages/orders.php:795 adminpages/orders.php:510
2053
  #: adminpages/orders.php:560 adminpages/orders.php:632
2054
  #: adminpages/orders.php:661 adminpages/orders.php:764
 
2055
  msgid "Save Order"
2056
  msgstr ""
2057
 
2058
  #: adminpages/orders.php:831 adminpages/orders.php:667
2059
  #: adminpages/orders.php:696 adminpages/orders.php:800
 
2060
  msgid "Email Invoice"
2061
  msgstr ""
2062
 
2063
  #: adminpages/orders.php:834 adminpages/orders.php:670
2064
  #: adminpages/orders.php:699 adminpages/orders.php:803
 
2065
  msgid "Send an invoice for this order to: "
2066
  msgstr ""
2067
 
2068
  #: adminpages/orders.php:836 adminpages/orders.php:672
2069
  #: adminpages/orders.php:701 adminpages/orders.php:805
 
2070
  msgid "Send Email"
2071
  msgstr ""
2072
 
@@ -2074,64 +2151,66 @@ msgstr ""
2074
  #: includes/adminpages.php:172 adminpages/orders.php:520
2075
  #: adminpages/orders.php:570 adminpages/orders.php:677
2076
  #: adminpages/orders.php:706 adminpages/orders.php:810
2077
- #: includes/adminpages.php:17 includes/adminpages.php:55
2078
- #: includes/adminpages.php:56 includes/adminpages.php:84
2079
- #: includes/adminpages.php:156 includes/adminpages.php:163
2080
- #: includes/adminpages.php:167 includes/adminpages.php:172
 
2081
  msgid "Orders"
2082
  msgstr ""
2083
 
2084
  #: adminpages/orders.php:843 adminpages/orders.php:521
2085
  #: adminpages/orders.php:571 adminpages/orders.php:678
2086
  #: adminpages/orders.php:707 adminpages/orders.php:812
 
2087
  msgid "Add New Order"
2088
  msgstr ""
2089
 
2090
  #: adminpages/orders.php:883 adminpages/orders.php:606
2091
  #: adminpages/orders.php:713 adminpages/orders.php:742
2092
- #: adminpages/orders.php:852
2093
  msgid "Within a Date Range"
2094
  msgstr ""
2095
 
2096
  #: adminpages/orders.php:885 adminpages/orders.php:607
2097
  #: adminpages/orders.php:714 adminpages/orders.php:743
2098
- #: adminpages/orders.php:854
2099
  msgid "Predefined Date Range"
2100
  msgstr ""
2101
 
2102
  #: adminpages/orders.php:887 adminpages/orders.php:608
2103
  #: adminpages/orders.php:715 adminpages/orders.php:744
2104
- #: adminpages/orders.php:856
2105
  msgid "Within a Level"
2106
  msgstr ""
2107
 
2108
  #: adminpages/orders.php:889 adminpages/orders.php:609
2109
  #: adminpages/orders.php:716 adminpages/orders.php:745
2110
- #: adminpages/orders.php:858
2111
  msgid "Within a Status"
2112
  msgstr ""
2113
 
2114
  #: adminpages/orders.php:892 adminpages/orders.php:612
2115
  #: adminpages/orders.php:719 adminpages/orders.php:748
2116
- #: adminpages/orders.php:861
2117
  msgid "From"
2118
  msgstr ""
2119
 
2120
  #: adminpages/orders.php:907 adminpages/orders.php:624
2121
  #: adminpages/orders.php:731 adminpages/orders.php:760
2122
- #: adminpages/orders.php:876
2123
  msgid "To"
2124
  msgstr ""
2125
 
2126
  #: adminpages/orders.php:920 adminpages/orders.php:636
2127
  #: adminpages/orders.php:743 adminpages/orders.php:772
2128
- #: adminpages/orders.php:889
2129
  msgid "filter by "
2130
  msgstr ""
2131
 
2132
  #: adminpages/orders.php:963 adminpages/orders.php:674
2133
  #: adminpages/orders.php:780 adminpages/orders.php:809
2134
- #: adminpages/orders.php:932
2135
  msgid "Filter"
2136
  msgstr ""
2137
 
@@ -2141,13 +2220,14 @@ msgstr ""
2141
  #: adminpages/orders.php:883 adminpages/orders.php:886
2142
  #: adminpages/orders.php:912 adminpages/orders.php:915
2143
  #: adminpages/orders.php:1029 adminpages/orders.php:1032
 
2144
  msgid "Search Orders"
2145
  msgstr ""
2146
 
2147
  #: adminpages/orders.php:1127 adminpages/orders.php:590
2148
  #: adminpages/orders.php:893 adminpages/orders.php:903
2149
  #: adminpages/orders.php:930 adminpages/orders.php:959
2150
- #: adminpages/orders.php:1096
2151
  #, php-format
2152
  msgid "%d orders found."
2153
  msgstr ""
@@ -2157,24 +2237,26 @@ msgstr ""
2157
  #: adminpages/orders.php:599 adminpages/orders.php:902
2158
  #: adminpages/orders.php:912 adminpages/orders.php:939
2159
  #: adminpages/orders.php:968 adminpages/orders.php:1105
2160
- #: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:215
2161
- #: adminpages/paymentsettings.php:220 adminpages/reports/login.php:141
2162
- #: adminpages/reports/login.php:143 adminpages/reports/login.php:159
 
2163
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
2164
  msgid "User"
2165
  msgstr ""
2166
 
2167
  #: adminpages/orders.php:1138 includes/init.php:243 includes/profile.php:27
2168
- #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
2169
- #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
2170
  #: adminpages/orders.php:601 adminpages/orders.php:904
2171
  #: adminpages/orders.php:914 adminpages/orders.php:941
2172
- #: adminpages/orders.php:970 adminpages/orders.php:1107 includes/init.php:214
2173
- #: includes/init.php:217 includes/init.php:218 includes/init.php:220
2174
- #: includes/init.php:222 includes/init.php:230 includes/init.php:238
2175
- #: includes/init.php:243 includes/profile.php:25 includes/profile.php:27
2176
- #: pages/checkout.php:33 pages/checkout.php:34 pages/checkout.php:35
2177
- #: pages/checkout.php:42 pages/confirmation.php:46 pages/confirmation.php:47
 
2178
  #: pages/confirmation.php:62 pages/confirmation.php:64
2179
  #: pages/confirmation.php:103 pages/confirmation.php:105 pages/invoice.php:27
2180
  #: pages/invoice.php:28 pages/invoice.php:49 pages/invoice.php:51
@@ -2187,21 +2269,22 @@ msgstr ""
2187
  #: adminpages/orders.php:943 adminpages/orders.php:954
2188
  #: adminpages/orders.php:972 adminpages/orders.php:982
2189
  #: adminpages/orders.php:1011 adminpages/orders.php:1040
2190
- #: adminpages/orders.php:1109 adminpages/orders.php:1186
 
2191
  msgid "Payment"
2192
  msgstr ""
2193
 
2194
  #: adminpages/orders.php:1142 adminpages/orders.php:605
2195
  #: adminpages/orders.php:908 adminpages/orders.php:918
2196
  #: adminpages/orders.php:945 adminpages/orders.php:974
2197
- #: adminpages/orders.php:1111
2198
  msgid "Transaction IDs"
2199
  msgstr ""
2200
 
2201
  #: adminpages/orders.php:1172 adminpages/orders.php:630
2202
  #: adminpages/orders.php:933 adminpages/orders.php:943
2203
  #: adminpages/orders.php:972 adminpages/orders.php:1001
2204
- #: adminpages/orders.php:1141
2205
  msgid "deleted"
2206
  msgstr ""
2207
 
@@ -2209,6 +2292,7 @@ msgstr ""
2209
  #: adminpages/orders.php:956 adminpages/orders.php:974
2210
  #: adminpages/orders.php:984 adminpages/orders.php:1013
2211
  #: adminpages/orders.php:1042 adminpages/orders.php:1192
 
2212
  msgid "Subscription"
2213
  msgstr ""
2214
 
@@ -2216,7 +2300,7 @@ msgstr ""
2216
  #: adminpages/orders.php:967 adminpages/orders.php:985
2217
  #: adminpages/orders.php:995 adminpages/orders.php:998
2218
  #: adminpages/orders.php:1027 adminpages/orders.php:1056
2219
- #: adminpages/orders.php:1211
2220
  #, php-format
2221
  msgid ""
2222
  "Deleting orders is permanent and can affect active users. Are you sure you "
@@ -2225,11 +2309,13 @@ msgstr ""
2225
 
2226
  #: adminpages/orders.php:1249 adminpages/orders.php:1030
2227
  #: adminpages/orders.php:1059 adminpages/orders.php:1215
 
2228
  msgid "print"
2229
  msgstr ""
2230
 
2231
  #: adminpages/orders.php:1253 adminpages/orders.php:1033
2232
  #: adminpages/orders.php:1062 adminpages/orders.php:1219
 
2233
  msgid "email"
2234
  msgstr ""
2235
 
@@ -2237,7 +2323,7 @@ msgstr ""
2237
  #: adminpages/orders.php:977 adminpages/orders.php:995
2238
  #: adminpages/orders.php:1005 adminpages/orders.php:1008
2239
  #: adminpages/orders.php:1043 adminpages/orders.php:1072
2240
- #: adminpages/orders.php:1228
2241
  msgid "No orders found."
2242
  msgstr ""
2243
 
@@ -2494,11 +2580,12 @@ msgstr ""
2494
  msgid "Sales Tax"
2495
  msgstr ""
2496
 
2497
- #: adminpages/paymentsettings.php:188 pages/billing.php:96
2498
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2499
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2500
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
2501
  #: pages/billing.php:82 pages/billing.php:91 pages/billing.php:94
 
2502
  msgid "optional"
2503
  msgstr ""
2504
 
@@ -2862,7 +2949,7 @@ msgstr ""
2862
  msgid "Update complete."
2863
  msgstr ""
2864
 
2865
- #: classes/class.memberorder.php:706 classes/class.memberorder.php:553
2866
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2867
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2868
  #: classes/class.memberorder.php:697 classes/class.memberorder.php:699
@@ -2886,26 +2973,26 @@ msgstr ""
2886
  msgid "Your membership at %s has been CANCELLED"
2887
  msgstr ""
2888
 
2889
- #: classes/class.pmproemail.php:156 classes/class.pmproemail.php:142
2890
  #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
2891
  #: classes/class.pmproemail.php:156
2892
  #, php-format
2893
  msgid "Membership for %s at %s has been CANCELLED"
2894
  msgstr ""
2895
 
2896
- #: classes/class.pmproemail.php:187 classes/class.pmproemail.php:172
2897
  #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2898
  #: classes/class.pmproemail.php:178 classes/class.pmproemail.php:187
2899
  #, php-format
2900
  msgid "Your membership confirmation for %s"
2901
  msgstr ""
2902
 
2903
- #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2904
- #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2905
- #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:659
2906
  #: classes/gateways/class.pmprogateway_braintree.php:368
2907
- #: classes/gateways/class.pmprogateway_stripe.php:544 pages/checkout.php:76
2908
- #: pages/checkout.php:86 pages/checkout.php:612 pages/confirmation.php:52
2909
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2910
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2911
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
@@ -2932,7 +3019,8 @@ msgstr ""
2932
  #: classes/gateways/class.pmprogateway_stripe.php:510
2933
  #: classes/gateways/class.pmprogateway_stripe.php:536
2934
  #: classes/gateways/class.pmprogateway_stripe.php:540
2935
- #: classes/gateways/class.pmprogateway_stripe.php:541 pages/checkout.php:66
 
2936
  #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2937
  #: pages/checkout.php:76 pages/checkout.php:77 pages/checkout.php:78
2938
  #: pages/checkout.php:85 pages/checkout.php:86 pages/checkout.php:549
@@ -2943,8 +3031,8 @@ msgstr ""
2943
  msgid "Discount Code"
2944
  msgstr ""
2945
 
2946
- #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
2947
- #: classes/class.pmproemail.php:665 classes/class.pmproemail.php:241
2948
  #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
2949
  #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
2950
  #: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
@@ -2957,45 +3045,45 @@ msgstr ""
2957
  msgid "This membership will expire on %s."
2958
  msgstr ""
2959
 
2960
- #: classes/class.pmproemail.php:287 classes/class.pmproemail.php:263
2961
  #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
2962
  #: classes/class.pmproemail.php:278 classes/class.pmproemail.php:287
2963
  #, php-format
2964
  msgid "Member Checkout for %s at %s"
2965
  msgstr ""
2966
 
2967
- #: classes/class.pmproemail.php:375 classes/class.pmproemail.php:375
2968
  #, php-format
2969
  msgid "Your billing information has been updated at %s"
2970
  msgstr ""
2971
 
2972
- #: classes/class.pmproemail.php:428 classes/class.pmproemail.php:428
2973
  #, php-format
2974
  msgid "Billing information has been updated for %s at %s"
2975
  msgstr ""
2976
 
2977
- #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
2978
  #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
2979
  #: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
2980
  #, php-format
2981
  msgid "Membership Payment Failed at %s"
2982
  msgstr ""
2983
 
2984
- #: classes/class.pmproemail.php:522 classes/class.pmproemail.php:462
2985
  #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
2986
  #: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
2987
  #, php-format
2988
  msgid "Membership Payment Failed For %s at %s"
2989
  msgstr ""
2990
 
2991
- #: classes/class.pmproemail.php:569 classes/class.pmproemail.php:508
2992
  #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
2993
  #: classes/class.pmproemail.php:569
2994
  #, php-format
2995
  msgid "Credit Card on File Expiring Soon at %s"
2996
  msgstr ""
2997
 
2998
- #: classes/class.pmproemail.php:619 classes/class.pmproemail.php:501
2999
  #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
3000
  #: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
3001
  #: classes/class.pmproemail.php:619
@@ -3003,7 +3091,7 @@ msgstr ""
3003
  msgid "INVOICE for %s membership"
3004
  msgstr ""
3005
 
3006
- #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:563
3007
  #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
3008
  #: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
3009
  #: classes/class.pmproemail.php:690
@@ -3011,7 +3099,7 @@ msgstr ""
3011
  msgid "Your trial at %s is ending soon"
3012
  msgstr ""
3013
 
3014
- #: classes/class.pmproemail.php:724 classes/class.pmproemail.php:596
3015
  #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
3016
  #: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
3017
  #: classes/class.pmproemail.php:724
@@ -3019,7 +3107,7 @@ msgstr ""
3019
  msgid "Your membership at %s has ended"
3020
  msgstr ""
3021
 
3022
- #: classes/class.pmproemail.php:749 classes/class.pmproemail.php:621
3023
  #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
3024
  #: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
3025
  #: classes/class.pmproemail.php:749
@@ -3027,7 +3115,7 @@ msgstr ""
3027
  msgid "Your membership at %s will end soon"
3028
  msgstr ""
3029
 
3030
- #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:641
3031
  #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
3032
  #: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
3033
  #: classes/class.pmproemail.php:769
@@ -3035,7 +3123,7 @@ msgstr ""
3035
  msgid "Your membership at %s has been changed"
3036
  msgstr ""
3037
 
3038
- #: classes/class.pmproemail.php:773 classes/class.pmproemail.php:810
3039
  #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
3040
  #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
3041
  #: classes/class.pmproemail.php:800 classes/class.pmproemail.php:809
@@ -3044,14 +3132,14 @@ msgstr ""
3044
  msgid "The new level is %s"
3045
  msgstr ""
3046
 
3047
- #: classes/class.pmproemail.php:775 classes/class.pmproemail.php:647
3048
  #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
3049
  #: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
3050
  #: classes/class.pmproemail.php:775
3051
  msgid "Your membership has been cancelled"
3052
  msgstr ""
3053
 
3054
- #: classes/class.pmproemail.php:778 classes/class.pmproemail.php:816
3055
  #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
3056
  #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
3057
  #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
@@ -3063,7 +3151,7 @@ msgstr ""
3063
  msgid "This membership will expire on %s"
3064
  msgstr ""
3065
 
3066
- #: classes/class.pmproemail.php:782 classes/class.pmproemail.php:820
3067
  #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
3068
  #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
3069
  #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
@@ -3074,7 +3162,7 @@ msgstr ""
3074
  msgid "This membership does not expire"
3075
  msgstr ""
3076
 
3077
- #: classes/class.pmproemail.php:806 classes/class.pmproemail.php:679
3078
  #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
3079
  #: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
3080
  #: classes/class.pmproemail.php:806 classes/class.pmproemail.php:807
@@ -3082,13 +3170,13 @@ msgstr ""
3082
  msgid "Membership for %s at %s has been changed"
3083
  msgstr ""
3084
 
3085
- #: classes/class.pmproemail.php:812 classes/class.pmproemail.php:799
3086
  #: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
3087
  #: classes/class.pmproemail.php:812 classes/class.pmproemail.php:813
3088
  msgid "Membership has been cancelled"
3089
  msgstr ""
3090
 
3091
- #: classes/class.pmproemail.php:849 classes/class.pmproemail.php:848
3092
  #: classes/class.pmproemail.php:849 classes/class.pmproemail.php:850
3093
  msgid "Invoice for Order #: "
3094
  msgstr ""
@@ -3104,6 +3192,7 @@ msgstr ""
3104
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
3105
  #: classes/gateways/class.pmprogateway_check.php:60
3106
  #: classes/gateways/class.pmprogateway_check.php:193
 
3107
  #: classes/gateways/class.pmprogateway_cybersource.php:57
3108
  #: classes/gateways/class.pmprogateway_cybersource.php:171
3109
  #: classes/gateways/class.pmprogateway_payflowpro.php:27
@@ -3111,6 +3200,7 @@ msgstr ""
3111
  #: classes/gateways/class.pmprogateway_paypal.php:27
3112
  #: classes/gateways/class.pmprogateway_paypal.php:247
3113
  #: classes/gateways/class.pmprogateway_paypal.php:249
 
3114
  msgid "Unknown error: Authorization failed."
3115
  msgstr ""
3116
 
@@ -3145,8 +3235,10 @@ msgstr ""
3145
  #: classes/gateways/class.pmprogateway_check.php:245
3146
  #: classes/gateways/class.pmprogateway_check.php:249
3147
  #: classes/gateways/class.pmprogateway_check.php:250
 
3148
  #: classes/gateways/class.pmprogateway_check.php:267
3149
  #: classes/gateways/class.pmprogateway_check.php:268
 
3150
  #: classes/gateways/class.pmprogateway_cybersource.php:108
3151
  #: classes/gateways/class.pmprogateway_cybersource.php:113
3152
  #: classes/gateways/class.pmprogateway_cybersource.php:131
@@ -3160,6 +3252,7 @@ msgstr ""
3160
  #: classes/gateways/class.pmprogateway_paypal.php:50
3161
  #: classes/gateways/class.pmprogateway_paypal.php:270
3162
  #: classes/gateways/class.pmprogateway_paypal.php:272
 
3163
  msgid "Unknown error: Payment failed."
3164
  msgstr ""
3165
 
@@ -3173,6 +3266,7 @@ msgstr ""
3173
  #: classes/gateways/class.pmprogateway_check.php:118
3174
  #: classes/gateways/class.pmprogateway_check.php:251
3175
  #: classes/gateways/class.pmprogateway_check.php:252
 
3176
  #: classes/gateways/class.pmprogateway_cybersource.php:115
3177
  #: classes/gateways/class.pmprogateway_cybersource.php:229
3178
  msgid ""
@@ -3181,7 +3275,7 @@ msgid ""
3181
  msgstr ""
3182
 
3183
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3184
- #: paid-memberships-pro.php:133
3185
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3186
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
3187
  #: paid-memberships-pro.php:130 paid-memberships-pro.php:131
@@ -3237,9 +3331,10 @@ msgid "Could not connect to Authorize.net"
3237
  msgstr ""
3238
 
3239
  #: classes/gateways/class.pmprogateway_braintree.php:77
3240
- #: paid-memberships-pro.php:134
3241
  #: classes/gateways/class.pmprogateway_braintree.php:63
3242
  #: classes/gateways/class.pmprogateway_braintree.php:76
 
3243
  #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
3244
  #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
3245
  #: paid-memberships-pro.php:133 paid-memberships-pro.php:134
@@ -3249,6 +3344,7 @@ msgstr ""
3249
  #: classes/gateways/class.pmprogateway_braintree.php:133
3250
  #: classes/gateways/class.pmprogateway_braintree.php:119
3251
  #: classes/gateways/class.pmprogateway_braintree.php:132
 
3252
  msgid "Braintree Settings"
3253
  msgstr ""
3254
 
@@ -3259,6 +3355,7 @@ msgstr ""
3259
  #: adminpages/paymentsettings.php:369
3260
  #: classes/gateways/class.pmprogateway_braintree.php:124
3261
  #: classes/gateways/class.pmprogateway_braintree.php:137
 
3262
  #: classes/gateways/class.pmprogateway_cybersource.php:106
3263
  msgid "Merchant ID"
3264
  msgstr ""
@@ -3268,6 +3365,7 @@ msgstr ""
3268
  #: adminpages/paymentsettings.php:311
3269
  #: classes/gateways/class.pmprogateway_braintree.php:132
3270
  #: classes/gateways/class.pmprogateway_braintree.php:145
 
3271
  msgid "Public Key"
3272
  msgstr ""
3273
 
@@ -3276,6 +3374,7 @@ msgstr ""
3276
  #: adminpages/paymentsettings.php:319
3277
  #: classes/gateways/class.pmprogateway_braintree.php:140
3278
  #: classes/gateways/class.pmprogateway_braintree.php:153
 
3279
  msgid "Private Key"
3280
  msgstr ""
3281
 
@@ -3284,6 +3383,7 @@ msgstr ""
3284
  #: adminpages/paymentsettings.php:327
3285
  #: classes/gateways/class.pmprogateway_braintree.php:148
3286
  #: classes/gateways/class.pmprogateway_braintree.php:161
 
3287
  msgid "Client-Side Encryption Key"
3288
  msgstr ""
3289
 
@@ -3295,11 +3395,13 @@ msgstr ""
3295
  #: adminpages/paymentsettings.php:519
3296
  #: classes/gateways/class.pmprogateway_braintree.php:156
3297
  #: classes/gateways/class.pmprogateway_braintree.php:169
 
3298
  #: classes/gateways/class.pmprogateway_stripe.php:181
3299
  #: classes/gateways/class.pmprogateway_stripe.php:182
3300
  #: classes/gateways/class.pmprogateway_stripe.php:192
3301
  #: classes/gateways/class.pmprogateway_stripe.php:214
3302
  #: classes/gateways/class.pmprogateway_stripe.php:216
 
3303
  msgid "Web Hook URL"
3304
  msgstr ""
3305
 
@@ -3308,22 +3410,25 @@ msgstr ""
3308
  #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
3309
  #: classes/gateways/class.pmprogateway_braintree.php:160
3310
  #: classes/gateways/class.pmprogateway_braintree.php:173
 
3311
  msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
3312
  msgstr ""
3313
 
3314
  #: classes/gateways/class.pmprogateway_braintree.php:287
3315
- #: classes/gateways/class.pmprogateway_stripe.php:432 pages/checkout.php:503
3316
  #: classes/gateways/class.pmprogateway_braintree.php:270
3317
  #: classes/gateways/class.pmprogateway_braintree.php:283
3318
  #: classes/gateways/class.pmprogateway_braintree.php:285
3319
  #: classes/gateways/class.pmprogateway_braintree.php:286
 
3320
  #: classes/gateways/class.pmprogateway_stripe.php:387
3321
  #: classes/gateways/class.pmprogateway_stripe.php:388
3322
  #: classes/gateways/class.pmprogateway_stripe.php:398
3323
  #: classes/gateways/class.pmprogateway_stripe.php:402
3324
  #: classes/gateways/class.pmprogateway_stripe.php:426
3325
  #: classes/gateways/class.pmprogateway_stripe.php:427
3326
- #: classes/gateways/class.pmprogateway_stripe.php:429 pages/checkout.php:476
 
3327
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3328
  #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
3329
  #: pages/checkout.php:503
@@ -3331,18 +3436,20 @@ msgid "Payment Information"
3331
  msgstr ""
3332
 
3333
  #: classes/gateways/class.pmprogateway_braintree.php:288
3334
- #: classes/gateways/class.pmprogateway_stripe.php:433 pages/checkout.php:504
3335
  #: classes/gateways/class.pmprogateway_braintree.php:270
3336
  #: classes/gateways/class.pmprogateway_braintree.php:283
3337
  #: classes/gateways/class.pmprogateway_braintree.php:285
3338
  #: classes/gateways/class.pmprogateway_braintree.php:287
 
3339
  #: classes/gateways/class.pmprogateway_stripe.php:387
3340
  #: classes/gateways/class.pmprogateway_stripe.php:388
3341
  #: classes/gateways/class.pmprogateway_stripe.php:398
3342
  #: classes/gateways/class.pmprogateway_stripe.php:402
3343
  #: classes/gateways/class.pmprogateway_stripe.php:426
3344
  #: classes/gateways/class.pmprogateway_stripe.php:428
3345
- #: classes/gateways/class.pmprogateway_stripe.php:430 pages/checkout.php:476
 
3346
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3347
  #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
3348
  #: pages/checkout.php:504
@@ -3351,29 +3458,32 @@ msgid "We Accept %s"
3351
  msgstr ""
3352
 
3353
  #: classes/gateways/class.pmprogateway_braintree.php:322
3354
- #: classes/gateways/class.pmprogateway_stripe.php:498 pages/billing.php:305
3355
- #: pages/checkout.php:570
3356
  #: classes/gateways/class.pmprogateway_braintree.php:303
3357
  #: classes/gateways/class.pmprogateway_braintree.php:316
3358
  #: classes/gateways/class.pmprogateway_braintree.php:318
3359
  #: classes/gateways/class.pmprogateway_braintree.php:321
 
3360
  #: classes/gateways/class.pmprogateway_stripe.php:449
3361
  #: classes/gateways/class.pmprogateway_stripe.php:450
3362
  #: classes/gateways/class.pmprogateway_stripe.php:460
3363
  #: classes/gateways/class.pmprogateway_stripe.php:464
3364
  #: classes/gateways/class.pmprogateway_stripe.php:490
3365
  #: classes/gateways/class.pmprogateway_stripe.php:493
3366
- #: classes/gateways/class.pmprogateway_stripe.php:495 pages/billing.php:244
 
3367
  #: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
3368
- #: pages/billing.php:263 pages/checkout.php:503 pages/checkout.php:519
3369
- #: pages/checkout.php:520 pages/checkout.php:527 pages/checkout.php:548
3370
- #: pages/checkout.php:557 pages/checkout.php:566 pages/checkout.php:570
 
3371
  msgid "Card Number"
3372
  msgstr ""
3373
 
3374
  #: classes/gateways/class.pmprogateway_braintree.php:359
3375
- #: classes/gateways/class.pmprogateway_stripe.php:535 pages/billing.php:343
3376
- #: pages/checkout.php:605
3377
  #: classes/gateways/class.pmprogateway_braintree.php:340
3378
  #: classes/gateways/class.pmprogateway_braintree.php:353
3379
  #: classes/gateways/class.pmprogateway_braintree.php:355
@@ -3385,18 +3495,19 @@ msgstr ""
3385
  #: classes/gateways/class.pmprogateway_stripe.php:501
3386
  #: classes/gateways/class.pmprogateway_stripe.php:527
3387
  #: classes/gateways/class.pmprogateway_stripe.php:531
3388
- #: classes/gateways/class.pmprogateway_stripe.php:532 pages/billing.php:281
 
3389
  #: pages/billing.php:285 pages/billing.php:294 pages/billing.php:297
3390
- #: pages/billing.php:301 pages/checkout.php:540 pages/checkout.php:556
3391
- #: pages/checkout.php:557 pages/checkout.php:564 pages/checkout.php:585
3392
- #: pages/checkout.php:594 pages/checkout.php:603 pages/checkout.php:605
3393
- #: pages/checkout.php:607 pages/checkout.php:608
3394
  msgid "CVV"
3395
  msgstr ""
3396
 
3397
  #: classes/gateways/class.pmprogateway_braintree.php:360
3398
- #: classes/gateways/class.pmprogateway_stripe.php:536 pages/billing.php:344
3399
- #: pages/checkout.php:606
3400
  #: classes/gateways/class.pmprogateway_braintree.php:341
3401
  #: classes/gateways/class.pmprogateway_braintree.php:354
3402
  #: classes/gateways/class.pmprogateway_braintree.php:356
@@ -3408,18 +3519,19 @@ msgstr ""
3408
  #: classes/gateways/class.pmprogateway_stripe.php:502
3409
  #: classes/gateways/class.pmprogateway_stripe.php:528
3410
  #: classes/gateways/class.pmprogateway_stripe.php:532
3411
- #: classes/gateways/class.pmprogateway_stripe.php:533 pages/billing.php:282
 
3412
  #: pages/billing.php:286 pages/billing.php:295 pages/billing.php:298
3413
- #: pages/billing.php:302 pages/checkout.php:541 pages/checkout.php:557
3414
- #: pages/checkout.php:558 pages/checkout.php:565 pages/checkout.php:586
3415
- #: pages/checkout.php:595 pages/checkout.php:604 pages/checkout.php:606
3416
- #: pages/checkout.php:608 pages/checkout.php:609
3417
  msgid "what's this?"
3418
  msgstr ""
3419
 
3420
  #: classes/gateways/class.pmprogateway_braintree.php:370
3421
- #: classes/gateways/class.pmprogateway_stripe.php:546 pages/checkout.php:88
3422
- #: pages/checkout.php:614
3423
  #: classes/gateways/class.pmprogateway_braintree.php:351
3424
  #: classes/gateways/class.pmprogateway_braintree.php:364
3425
  #: classes/gateways/class.pmprogateway_braintree.php:366
@@ -3431,7 +3543,8 @@ msgstr ""
3431
  #: classes/gateways/class.pmprogateway_stripe.php:512
3432
  #: classes/gateways/class.pmprogateway_stripe.php:538
3433
  #: classes/gateways/class.pmprogateway_stripe.php:542
3434
- #: classes/gateways/class.pmprogateway_stripe.php:543 pages/checkout.php:78
 
3435
  #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3436
  #: pages/checkout.php:88 pages/checkout.php:551 pages/checkout.php:567
3437
  #: pages/checkout.php:568 pages/checkout.php:575 pages/checkout.php:596
@@ -3441,7 +3554,7 @@ msgid "Apply"
3441
  msgstr ""
3442
 
3443
  #: classes/gateways/class.pmprogateway_braintree.php:425
3444
- #: classes/gateways/class.pmprogateway_stripe.php:1076
3445
  #: classes/gateways/class.pmprogateway_braintree.php:61
3446
  #: classes/gateways/class.pmprogateway_braintree.php:406
3447
  #: classes/gateways/class.pmprogateway_braintree.php:419
@@ -3457,6 +3570,7 @@ msgstr ""
3457
  #: classes/gateways/class.pmprogateway_stripe.php:1068
3458
  #: classes/gateways/class.pmprogateway_stripe.php:1072
3459
  #: classes/gateways/class.pmprogateway_stripe.php:1073
 
3460
  msgid "Unknown error: Initial payment failed."
3461
  msgstr ""
3462
 
@@ -3576,10 +3690,11 @@ msgid "Could not find the subscription."
3576
  msgstr ""
3577
 
3578
  #: classes/gateways/class.pmprogateway_check.php:49
3579
- #: paid-memberships-pro.php:127 adminpages/orders.php:399
3580
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3581
  #: adminpages/paymentsettings.php:159
3582
  #: classes/gateways/class.pmprogateway_check.php:48
 
3583
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:117
3584
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3585
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
@@ -3588,6 +3703,7 @@ msgstr ""
3588
 
3589
  #: classes/gateways/class.pmprogateway_check.php:101
3590
  #: classes/gateways/class.pmprogateway_check.php:100
 
3591
  msgid "Pay by Check Settings"
3592
  msgstr ""
3593
 
@@ -3595,6 +3711,7 @@ msgstr ""
3595
  #: adminpages/paymentsettings.php:389 adminpages/paymentsettings.php:415
3596
  #: adminpages/paymentsettings.php:420 adminpages/paymentsettings.php:422
3597
  #: classes/gateways/class.pmprogateway_check.php:105
 
3598
  msgid "Instructions"
3599
  msgstr ""
3600
 
@@ -3602,6 +3719,7 @@ msgstr ""
3602
  #: adminpages/paymentsettings.php:393 adminpages/paymentsettings.php:419
3603
  #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:426
3604
  #: classes/gateways/class.pmprogateway_check.php:109
 
3605
  msgid ""
3606
  "Who to write the check out to. Where to mail it. Shown on checkout, "
3607
  "confirmation, and invoice pages."
@@ -3658,7 +3776,7 @@ msgid "Vendor"
3658
  msgstr ""
3659
 
3660
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3661
- #: pages/checkout.php:193 adminpages/paymentsettings.php:219
3662
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3663
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3664
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
@@ -3686,14 +3804,16 @@ msgstr ""
3686
  #: classes/gateways/class.pmprogateway_paypal.php:57
3687
  #: classes/gateways/class.pmprogateway_paypal.php:277
3688
  #: classes/gateways/class.pmprogateway_paypal.php:279
 
3689
  msgid ""
3690
  "A partial payment was made that we could not refund. Please contact the site "
3691
  "owner immediately to correct this."
3692
  msgstr ""
3693
 
3694
  #: classes/gateways/class.pmprogateway_paypal.php:68
3695
- #: paid-memberships-pro.php:130
3696
  #: classes/gateways/class.pmprogateway_paypal.php:57
 
3697
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
3698
  #: paid-memberships-pro.php:127 paid-memberships-pro.php:128
3699
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
@@ -3704,8 +3824,10 @@ msgstr ""
3704
  #: classes/gateways/class.pmprogateway_paypalexpress.php:140
3705
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3706
  #: classes/gateways/class.pmprogateway_paypal.php:113
 
3707
  #: classes/gateways/class.pmprogateway_paypalexpress.php:118
3708
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
 
3709
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3710
  msgid "PayPal Settings"
3711
  msgstr ""
@@ -3715,8 +3837,10 @@ msgstr ""
3715
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3716
  #: adminpages/paymentsettings.php:179
3717
  #: classes/gateways/class.pmprogateway_paypal.php:118
 
3718
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
3719
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
 
3720
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3721
  msgid ""
3722
  "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
@@ -3732,8 +3856,10 @@ msgstr ""
3732
  #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3733
  #: adminpages/paymentsettings.php:236
3734
  #: classes/gateways/class.pmprogateway_paypal.php:123
 
3735
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3736
  #: classes/gateways/class.pmprogateway_paypalexpress.php:138
 
3737
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3738
  msgid "Gateway Account Email"
3739
  msgstr ""
@@ -3746,8 +3872,10 @@ msgstr ""
3746
  #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
3747
  #: adminpages/paymentsettings.php:336
3748
  #: classes/gateways/class.pmprogateway_paypal.php:131
 
3749
  #: classes/gateways/class.pmprogateway_paypalexpress.php:136
3750
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
 
3751
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3752
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
3753
  #: classes/gateways/class.pmprogateway_twocheckout.php:119
@@ -3763,8 +3891,10 @@ msgstr ""
3763
  #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
3764
  #: adminpages/paymentsettings.php:344
3765
  #: classes/gateways/class.pmprogateway_paypal.php:139
 
3766
  #: classes/gateways/class.pmprogateway_paypalexpress.php:144
3767
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
 
3768
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3769
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3770
  #: classes/gateways/class.pmprogateway_twocheckout.php:128
@@ -3778,12 +3908,16 @@ msgstr ""
3778
  #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3779
  #: adminpages/paymentsettings.php:260
3780
  #: classes/gateways/class.pmprogateway_paypal.php:147
 
3781
  #: classes/gateways/class.pmprogateway_paypalexpress.php:152
3782
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
 
3783
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3784
  msgid "API Signature"
3785
  msgstr ""
3786
 
 
 
3787
  #: classes/gateways/class.pmprogateway_paypal.php:167
3788
  #: classes/gateways/class.pmprogateway_paypalexpress.php:182
3789
  msgid "Confirmation Step"
@@ -3795,14 +3929,17 @@ msgstr ""
3795
  #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3796
  #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
3797
  #: classes/gateways/class.pmprogateway_paypal.php:155
 
3798
  #: classes/gateways/class.pmprogateway_paypalexpress.php:160
3799
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
 
3800
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3801
  msgid "IPN Handler URL"
3802
  msgstr ""
3803
 
3804
  #: classes/gateways/class.pmprogateway_paypal.php:181
3805
  #: classes/gateways/class.pmprogateway_paypal.php:158
 
3806
  msgid ""
3807
  "This URL is passed to PayPal for all new charges and subscriptions. You "
3808
  "SHOULD NOT set this in your PayPal account settings."
@@ -3811,9 +3948,12 @@ msgstr ""
3811
  #: classes/gateways/class.pmprogateway_paypal.php:201
3812
  #: classes/gateways/class.pmprogateway_paypalexpress.php:438
3813
  #: classes/gateways/class.pmprogateway_paypalstandard.php:201
3814
- #: pages/checkout.php:302 classes/gateways/class.pmprogateway_paypal.php:178
 
3815
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3816
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
 
 
3817
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3818
  #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3819
  #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:309
@@ -3825,14 +3965,17 @@ msgstr ""
3825
  #: classes/gateways/class.pmprogateway_paypal.php:207
3826
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
3827
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
3828
- #: pages/checkout.php:718 classes/gateways/class.pmprogateway_paypal.php:184
 
3829
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3830
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
 
 
3831
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3832
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3833
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3834
- #: pages/checkout.php:722 pages/checkout.php:724 pages/checkout.php:728
3835
- #: pages/checkout.php:729
3836
  msgid "Submit and Check Out"
3837
  msgstr ""
3838
 
@@ -3840,17 +3983,20 @@ msgstr ""
3840
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
3841
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
3842
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
3843
- #: pages/checkout.php:718 classes/gateways/class.pmprogateway_paypal.php:184
 
3844
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3845
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
 
 
3846
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3847
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
3848
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
3849
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3850
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3851
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3852
- #: pages/checkout.php:722 pages/checkout.php:724 pages/checkout.php:728
3853
- #: pages/checkout.php:729
3854
  msgid "Submit and Confirm"
3855
  msgstr ""
3856
 
@@ -3861,6 +4007,7 @@ msgstr ""
3861
  #: classes/gateways/class.pmprogateway_paypal.php:605
3862
  #: classes/gateways/class.pmprogateway_paypal.php:607
3863
  #: classes/gateways/class.pmprogateway_paypal.php:608
 
3864
  #: classes/gateways/class.pmprogateway_paypalexpress.php:301
3865
  #: classes/gateways/class.pmprogateway_paypalexpress.php:303
3866
  #: classes/gateways/class.pmprogateway_paypalexpress.php:305
@@ -3868,10 +4015,12 @@ msgstr ""
3868
  #: classes/gateways/class.pmprogateway_paypalexpress.php:740
3869
  #: classes/gateways/class.pmprogateway_paypalexpress.php:750
3870
  #: classes/gateways/class.pmprogateway_paypalexpress.php:752
 
3871
  #: classes/gateways/class.pmprogateway_paypalstandard.php:216
3872
  #: classes/gateways/class.pmprogateway_paypalstandard.php:220
3873
  #: classes/gateways/class.pmprogateway_paypalstandard.php:230
3874
  #: classes/gateways/class.pmprogateway_paypalstandard.php:231
 
3875
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3876
  msgid ""
3877
  "Please contact the site owner or cancel your subscription from within PayPal "
@@ -3879,9 +4028,10 @@ msgid ""
3879
  msgstr ""
3880
 
3881
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
3882
- #: paid-memberships-pro.php:129
3883
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3884
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
 
3885
  #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3886
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
3887
  #: paid-memberships-pro.php:128 paid-memberships-pro.php:129
@@ -3893,6 +4043,7 @@ msgstr ""
3893
  #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3894
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3895
  #: classes/gateways/class.pmprogateway_paypalexpress.php:173
 
3896
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3897
  msgstr ""
3898
 
@@ -3900,8 +4051,10 @@ msgstr ""
3900
  #: classes/gateways/class.pmprogateway_paypalexpress.php:357
3901
  #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3902
  #: classes/gateways/class.pmprogateway_paypalexpress.php:278
 
3903
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3904
  #: classes/gateways/class.pmprogateway_paypalexpress.php:330
 
3905
  #: preheaders/checkout.php:690 preheaders/checkout.php:697
3906
  #: preheaders/checkout.php:702 preheaders/checkout.php:735
3907
  #: preheaders/checkout.php:750 preheaders/checkout.php:753
@@ -3912,7 +4065,7 @@ msgid "The PayPal Token was lost."
3912
  msgstr ""
3913
 
3914
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3915
- #: paid-memberships-pro.php:132
3916
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3917
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
3918
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
@@ -3937,12 +4090,13 @@ msgid ""
3937
  msgstr ""
3938
 
3939
  #: classes/gateways/class.pmprogateway_stripe.php:129
3940
- #: paid-memberships-pro.php:128
3941
  #: classes/gateways/class.pmprogateway_stripe.php:93
3942
  #: classes/gateways/class.pmprogateway_stripe.php:94
3943
  #: classes/gateways/class.pmprogateway_stripe.php:104
3944
  #: classes/gateways/class.pmprogateway_stripe.php:126
3945
  #: classes/gateways/class.pmprogateway_stripe.php:128
 
3946
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3947
  #: paid-memberships-pro.php:125 paid-memberships-pro.php:126
3948
  #: paid-memberships-pro.php:127 paid-memberships-pro.php:128
@@ -3955,6 +4109,7 @@ msgstr ""
3955
  #: classes/gateways/class.pmprogateway_stripe.php:159
3956
  #: classes/gateways/class.pmprogateway_stripe.php:181
3957
  #: classes/gateways/class.pmprogateway_stripe.php:183
 
3958
  msgid "Stripe Settings"
3959
  msgstr ""
3960
 
@@ -3966,6 +4121,7 @@ msgstr ""
3966
  #: classes/gateways/class.pmprogateway_stripe.php:164
3967
  #: classes/gateways/class.pmprogateway_stripe.php:186
3968
  #: classes/gateways/class.pmprogateway_stripe.php:188
 
3969
  msgid "Secret Key"
3970
  msgstr ""
3971
 
@@ -3977,6 +4133,7 @@ msgstr ""
3977
  #: classes/gateways/class.pmprogateway_stripe.php:172
3978
  #: classes/gateways/class.pmprogateway_stripe.php:194
3979
  #: classes/gateways/class.pmprogateway_stripe.php:196
 
3980
  msgid "Publishable Key"
3981
  msgstr ""
3982
 
@@ -3988,6 +4145,7 @@ msgstr ""
3988
  #: classes/gateways/class.pmprogateway_stripe.php:180
3989
  #: classes/gateways/class.pmprogateway_stripe.php:202
3990
  #: classes/gateways/class.pmprogateway_stripe.php:204
 
3991
  msgid "Show Billing Address Fields"
3992
  msgstr ""
3993
 
@@ -3998,6 +4156,7 @@ msgstr ""
3998
  #: classes/gateways/class.pmprogateway_stripe.php:187
3999
  #: classes/gateways/class.pmprogateway_stripe.php:209
4000
  #: classes/gateways/class.pmprogateway_stripe.php:211
 
4001
  msgid ""
4002
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
4003
  "the checkout page.<br /><strong>If No, make sure you disable address "
@@ -4012,10 +4171,11 @@ msgstr ""
4012
  #: classes/gateways/class.pmprogateway_stripe.php:195
4013
  #: classes/gateways/class.pmprogateway_stripe.php:217
4014
  #: classes/gateways/class.pmprogateway_stripe.php:219
 
4015
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
4016
  msgstr ""
4017
 
4018
- #: classes/gateways/class.pmprogateway_stripe.php:616
4019
  #: classes/gateways/class.pmprogateway_stripe.php:567
4020
  #: classes/gateways/class.pmprogateway_stripe.php:568
4021
  #: classes/gateways/class.pmprogateway_stripe.php:578
@@ -4023,10 +4183,11 @@ msgstr ""
4023
  #: classes/gateways/class.pmprogateway_stripe.php:608
4024
  #: classes/gateways/class.pmprogateway_stripe.php:612
4025
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
4026
  msgid "Subscription Updates"
4027
  msgstr ""
4028
 
4029
- #: classes/gateways/class.pmprogateway_stripe.php:620
4030
  #: classes/gateways/class.pmprogateway_stripe.php:571
4031
  #: classes/gateways/class.pmprogateway_stripe.php:572
4032
  #: classes/gateways/class.pmprogateway_stripe.php:582
@@ -4034,12 +4195,13 @@ msgstr ""
4034
  #: classes/gateways/class.pmprogateway_stripe.php:612
4035
  #: classes/gateways/class.pmprogateway_stripe.php:616
4036
  #: classes/gateways/class.pmprogateway_stripe.php:617
 
4037
  msgid ""
4038
  "Subscription updates, allow you to change the member's subscription values "
4039
  "at predefined times. Be sure to click Update Profile after making changes."
4040
  msgstr ""
4041
 
4042
- #: classes/gateways/class.pmprogateway_stripe.php:622
4043
  #: classes/gateways/class.pmprogateway_stripe.php:573
4044
  #: classes/gateways/class.pmprogateway_stripe.php:574
4045
  #: classes/gateways/class.pmprogateway_stripe.php:584
@@ -4047,25 +4209,28 @@ msgstr ""
4047
  #: classes/gateways/class.pmprogateway_stripe.php:614
4048
  #: classes/gateways/class.pmprogateway_stripe.php:618
4049
  #: classes/gateways/class.pmprogateway_stripe.php:619
 
4050
  msgid ""
4051
  "Subscription updates, allow you to change the member's subscription values "
4052
  "at predefined times. Be sure to click Update User after making changes."
4053
  msgstr ""
4054
 
4055
- #: classes/gateways/class.pmprogateway_stripe.php:627 pages/billing.php:391
4056
  #: classes/gateways/class.pmprogateway_stripe.php:578
4057
  #: classes/gateways/class.pmprogateway_stripe.php:579
4058
  #: classes/gateways/class.pmprogateway_stripe.php:589
4059
  #: classes/gateways/class.pmprogateway_stripe.php:593
4060
  #: classes/gateways/class.pmprogateway_stripe.php:619
4061
  #: classes/gateways/class.pmprogateway_stripe.php:623
4062
- #: classes/gateways/class.pmprogateway_stripe.php:624 pages/billing.php:294
 
4063
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
4064
  #: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
 
4065
  msgid "Update"
4066
  msgstr ""
4067
 
4068
- #: classes/gateways/class.pmprogateway_stripe.php:820
4069
  #: classes/gateways/class.pmprogateway_stripe.php:769
4070
  #: classes/gateways/class.pmprogateway_stripe.php:770
4071
  #: classes/gateways/class.pmprogateway_stripe.php:780
@@ -4073,10 +4238,11 @@ msgstr ""
4073
  #: classes/gateways/class.pmprogateway_stripe.php:812
4074
  #: classes/gateways/class.pmprogateway_stripe.php:816
4075
  #: classes/gateways/class.pmprogateway_stripe.php:817
 
4076
  msgid "Could not cancel the old subscription. Updates have not been processed."
4077
  msgstr ""
4078
 
4079
- #: classes/gateways/class.pmprogateway_stripe.php:1303
4080
  #: classes/gateways/class.pmprogateway_stripe.php:190
4081
  #: classes/gateways/class.pmprogateway_stripe.php:192
4082
  #: classes/gateways/class.pmprogateway_stripe.php:199
@@ -4092,19 +4258,21 @@ msgstr ""
4092
  #: classes/gateways/class.pmprogateway_stripe.php:1256
4093
  #: classes/gateways/class.pmprogateway_stripe.php:1260
4094
  #: classes/gateways/class.pmprogateway_stripe.php:1300
 
4095
  msgid "Error creating customer record with Stripe:"
4096
  msgstr ""
4097
 
4098
- #: classes/gateways/class.pmprogateway_stripe.php:1360
4099
  #: classes/gateways/class.pmprogateway_stripe.php:1275
4100
  #: classes/gateways/class.pmprogateway_stripe.php:1303
4101
  #: classes/gateways/class.pmprogateway_stripe.php:1313
4102
  #: classes/gateways/class.pmprogateway_stripe.php:1317
4103
  #: classes/gateways/class.pmprogateway_stripe.php:1357
 
4104
  msgid "Error getting subscription with Stripe:"
4105
  msgstr ""
4106
 
4107
- #: classes/gateways/class.pmprogateway_stripe.php:1510
4108
  #: classes/gateways/class.pmprogateway_stripe.php:278
4109
  #: classes/gateways/class.pmprogateway_stripe.php:279
4110
  #: classes/gateways/class.pmprogateway_stripe.php:286
@@ -4128,10 +4296,11 @@ msgstr ""
4128
  #: classes/gateways/class.pmprogateway_stripe.php:1463
4129
  #: classes/gateways/class.pmprogateway_stripe.php:1467
4130
  #: classes/gateways/class.pmprogateway_stripe.php:1507
 
4131
  msgid "Error creating plan with Stripe:"
4132
  msgstr ""
4133
 
4134
- #: classes/gateways/class.pmprogateway_stripe.php:1541
4135
  #: classes/gateways/class.pmprogateway_stripe.php:294
4136
  #: classes/gateways/class.pmprogateway_stripe.php:295
4137
  #: classes/gateways/class.pmprogateway_stripe.php:302
@@ -4150,10 +4319,11 @@ msgstr ""
4150
  #: classes/gateways/class.pmprogateway_stripe.php:1494
4151
  #: classes/gateways/class.pmprogateway_stripe.php:1498
4152
  #: classes/gateways/class.pmprogateway_stripe.php:1538
 
4153
  msgid "Error subscribing customer to plan with Stripe:"
4154
  msgstr ""
4155
 
4156
- #: classes/gateways/class.pmprogateway_stripe.php:1637
4157
  #: classes/gateways/class.pmprogateway_stripe.php:383
4158
  #: classes/gateways/class.pmprogateway_stripe.php:389
4159
  #: classes/gateways/class.pmprogateway_stripe.php:410
@@ -4169,10 +4339,11 @@ msgstr ""
4169
  #: classes/gateways/class.pmprogateway_stripe.php:1590
4170
  #: classes/gateways/class.pmprogateway_stripe.php:1594
4171
  #: classes/gateways/class.pmprogateway_stripe.php:1634
 
4172
  msgid "Could not cancel old subscription."
4173
  msgstr ""
4174
 
4175
- #: classes/gateways/class.pmprogateway_stripe.php:1654
4176
  #: classes/gateways/class.pmprogateway_stripe.php:1533
4177
  #: classes/gateways/class.pmprogateway_stripe.php:1534
4178
  #: classes/gateways/class.pmprogateway_stripe.php:1535
@@ -4185,11 +4356,21 @@ msgstr ""
4185
  #: classes/gateways/class.pmprogateway_stripe.php:1607
4186
  #: classes/gateways/class.pmprogateway_stripe.php:1611
4187
  #: classes/gateways/class.pmprogateway_stripe.php:1651
 
4188
  msgid "Could not find the customer."
4189
  msgstr ""
4190
 
 
 
 
 
 
 
 
 
 
4191
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4192
- #: paid-memberships-pro.php:135
4193
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
4194
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4195
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
@@ -4339,7 +4520,7 @@ msgstr ""
4339
  #: includes/currencies.php:37 includes/currencies.php:44
4340
  #: includes/currencies.php:64 includes/currencies.php:68
4341
  #: includes/currencies.php:75 includes/currencies.php:85
4342
- #: includes/currencies.php:87
4343
  msgid "US Dollars (&#36;)"
4344
  msgstr ""
4345
 
@@ -4349,6 +4530,7 @@ msgstr ""
4349
  #: includes/currencies.php:47 includes/currencies.php:67
4350
  #: includes/currencies.php:71 includes/currencies.php:78
4351
  #: includes/currencies.php:88 includes/currencies.php:90
 
4352
  msgid "Euros (&euro;)"
4353
  msgstr ""
4354
 
@@ -4358,6 +4540,7 @@ msgstr ""
4358
  #: includes/currencies.php:46 includes/currencies.php:66
4359
  #: includes/currencies.php:70 includes/currencies.php:77
4360
  #: includes/currencies.php:87 includes/currencies.php:89
 
4361
  msgid "Pounds Sterling (&pound;)"
4362
  msgstr ""
4363
 
@@ -4382,7 +4565,7 @@ msgstr ""
4382
  #: includes/currencies.php:38 includes/currencies.php:45
4383
  #: includes/currencies.php:65 includes/currencies.php:69
4384
  #: includes/currencies.php:76 includes/currencies.php:86
4385
- #: includes/currencies.php:88
4386
  msgid "Canadian Dollars (&#36;)"
4387
  msgstr ""
4388
 
@@ -4449,66 +4632,67 @@ msgstr ""
4449
  #: includes/currencies.php:57 includes/currencies.php:19
4450
  #: includes/currencies.php:22 includes/currencies.php:38
4451
  #: includes/currencies.php:45 includes/currencies.php:55
4452
- #: includes/currencies.php:56
4453
  msgid "Malaysian Ringgits"
4454
  msgstr ""
4455
 
4456
  #: includes/currencies.php:58 includes/currencies.php:20
4457
  #: includes/currencies.php:23 includes/currencies.php:39
4458
  #: includes/currencies.php:46 includes/currencies.php:56
4459
- #: includes/currencies.php:57
4460
  msgid "Mexican Peso (&#36;)"
4461
  msgstr ""
4462
 
4463
  #: includes/currencies.php:59 includes/currencies.php:58
 
4464
  msgid "Nigerian Naira (&#8358;)"
4465
  msgstr ""
4466
 
4467
  #: includes/currencies.php:60 includes/currencies.php:21
4468
  #: includes/currencies.php:24 includes/currencies.php:40
4469
  #: includes/currencies.php:47 includes/currencies.php:57
4470
- #: includes/currencies.php:59
4471
  msgid "New Zealand Dollar (&#36;)"
4472
  msgstr ""
4473
 
4474
  #: includes/currencies.php:61 includes/currencies.php:22
4475
  #: includes/currencies.php:25 includes/currencies.php:41
4476
  #: includes/currencies.php:48 includes/currencies.php:58
4477
- #: includes/currencies.php:60
4478
  msgid "Norwegian Krone"
4479
  msgstr ""
4480
 
4481
  #: includes/currencies.php:62 includes/currencies.php:23
4482
  #: includes/currencies.php:26 includes/currencies.php:42
4483
  #: includes/currencies.php:49 includes/currencies.php:59
4484
- #: includes/currencies.php:61
4485
  msgid "Philippine Pesos"
4486
  msgstr ""
4487
 
4488
  #: includes/currencies.php:63 includes/currencies.php:24
4489
  #: includes/currencies.php:27 includes/currencies.php:43
4490
  #: includes/currencies.php:50 includes/currencies.php:60
4491
- #: includes/currencies.php:62
4492
  msgid "Polish Zloty"
4493
  msgstr ""
4494
 
4495
  #: includes/currencies.php:65 includes/currencies.php:25
4496
  #: includes/currencies.php:28 includes/currencies.php:45
4497
  #: includes/currencies.php:52 includes/currencies.php:62
4498
- #: includes/currencies.php:64
4499
  msgid "Singapore Dollar (&#36;)"
4500
  msgstr ""
4501
 
4502
  #: includes/currencies.php:70 includes/currencies.php:50
4503
  #: includes/currencies.php:57 includes/currencies.php:67
4504
- #: includes/currencies.php:69
4505
  msgid "South African Rand (R)"
4506
  msgstr ""
4507
 
4508
  #: includes/currencies.php:75 includes/currencies.php:30
4509
  #: includes/currencies.php:50 includes/currencies.php:54
4510
  #: includes/currencies.php:61 includes/currencies.php:71
4511
- #: includes/currencies.php:73
4512
  msgid "South Korean Won"
4513
  msgstr ""
4514
 
@@ -4516,6 +4700,7 @@ msgstr ""
4516
  #: includes/currencies.php:31 includes/currencies.php:51
4517
  #: includes/currencies.php:55 includes/currencies.php:62
4518
  #: includes/currencies.php:72 includes/currencies.php:74
 
4519
  msgid "Swedish Krona"
4520
  msgstr ""
4521
 
@@ -4523,6 +4708,7 @@ msgstr ""
4523
  #: includes/currencies.php:32 includes/currencies.php:52
4524
  #: includes/currencies.php:56 includes/currencies.php:63
4525
  #: includes/currencies.php:73 includes/currencies.php:75
 
4526
  msgid "Swiss Franc"
4527
  msgstr ""
4528
 
@@ -4530,6 +4716,7 @@ msgstr ""
4530
  #: includes/currencies.php:33 includes/currencies.php:53
4531
  #: includes/currencies.php:57 includes/currencies.php:64
4532
  #: includes/currencies.php:74 includes/currencies.php:76
 
4533
  msgid "Taiwan New Dollars"
4534
  msgstr ""
4535
 
@@ -4537,43 +4724,44 @@ msgstr ""
4537
  #: includes/currencies.php:34 includes/currencies.php:54
4538
  #: includes/currencies.php:58 includes/currencies.php:65
4539
  #: includes/currencies.php:75 includes/currencies.php:77
 
4540
  msgid "Thai Baht"
4541
  msgstr ""
4542
 
4543
  #: includes/currencies.php:82 includes/currencies.php:35
4544
  #: includes/currencies.php:55 includes/currencies.php:59
4545
  #: includes/currencies.php:66 includes/currencies.php:76
4546
- #: includes/currencies.php:78
4547
  msgid "Turkish Lira"
4548
  msgstr ""
4549
 
4550
  #: includes/currencies.php:84 includes/currencies.php:36
4551
  #: includes/currencies.php:56 includes/currencies.php:60
4552
  #: includes/currencies.php:67 includes/currencies.php:77
4553
- #: includes/currencies.php:79
4554
  msgid "Vietnamese Dong"
4555
  msgstr ""
4556
 
4557
- #: includes/functions.php:309 includes/functions.php:160
4558
- #: includes/functions.php:196 includes/functions.php:200
4559
- #: includes/functions.php:202 includes/functions.php:203
4560
- #: includes/functions.php:204 includes/functions.php:207
4561
- #: includes/functions.php:243 includes/functions.php:309
4562
- #: includes/functions.php:315
4563
  #, php-format
4564
  msgid "The price for membership is <strong>%s</strong> now"
4565
  msgstr ""
4566
 
4567
- #: includes/functions.php:311 includes/functions.php:202
4568
- #: includes/functions.php:204 includes/functions.php:205
4569
- #: includes/functions.php:206 includes/functions.php:209
4570
- #: includes/functions.php:245 includes/functions.php:311
4571
- #: includes/functions.php:317
4572
  #, php-format
4573
  msgid "<strong>%s</strong> now"
4574
  msgstr ""
4575
 
4576
- #: includes/functions.php:320 includes/functions.php:169
4577
  #: includes/functions.php:205 includes/functions.php:211
4578
  #: includes/functions.php:213 includes/functions.php:214
4579
  #: includes/functions.php:215 includes/functions.php:218
@@ -4583,13 +4771,13 @@ msgstr ""
4583
  msgid " and then <strong>%s per %s for %d more %s</strong>."
4584
  msgstr ""
4585
 
4586
- #: includes/functions.php:324 includes/functions.php:258
4587
  #: includes/functions.php:324 includes/functions.php:330
4588
  #, php-format
4589
  msgid " and then <strong>%s every %d %s for %d more payments</strong>."
4590
  msgstr ""
4591
 
4592
- #: includes/functions.php:329 includes/functions.php:178
4593
  #: includes/functions.php:214 includes/functions.php:220
4594
  #: includes/functions.php:222 includes/functions.php:223
4595
  #: includes/functions.php:224 includes/functions.php:227
@@ -4599,7 +4787,7 @@ msgstr ""
4599
  msgid " and then <strong>%s after %d %s</strong>."
4600
  msgstr ""
4601
 
4602
- #: includes/functions.php:337 includes/functions.php:228
4603
  #: includes/functions.php:229 includes/functions.php:230
4604
  #: includes/functions.php:231 includes/functions.php:235
4605
  #: includes/functions.php:271 includes/functions.php:337
@@ -4608,7 +4796,7 @@ msgstr ""
4608
  msgid "The price for membership is <strong>%s per %s</strong>."
4609
  msgstr ""
4610
 
4611
- #: includes/functions.php:339 includes/functions.php:230
4612
  #: includes/functions.php:233 includes/functions.php:237
4613
  #: includes/functions.php:273 includes/functions.php:339
4614
  #: includes/functions.php:345
@@ -4616,7 +4804,7 @@ msgstr ""
4616
  msgid "<strong>%s per %s</strong>."
4617
  msgstr ""
4618
 
4619
- #: includes/functions.php:344 includes/functions.php:233
4620
  #: includes/functions.php:234 includes/functions.php:235
4621
  #: includes/functions.php:238 includes/functions.php:242
4622
  #: includes/functions.php:278 includes/functions.php:344
@@ -4625,7 +4813,7 @@ msgstr ""
4625
  msgid "The price for membership is <strong>%s every %d %s</strong>."
4626
  msgstr ""
4627
 
4628
- #: includes/functions.php:346 includes/functions.php:237
4629
  #: includes/functions.php:240 includes/functions.php:244
4630
  #: includes/functions.php:280 includes/functions.php:346
4631
  #: includes/functions.php:352
@@ -4633,7 +4821,7 @@ msgstr ""
4633
  msgid "<strong>%s every %d %s</strong>."
4634
  msgstr ""
4635
 
4636
- #: includes/functions.php:351 includes/functions.php:184
4637
  #: includes/functions.php:220 includes/functions.php:228
4638
  #: includes/functions.php:238 includes/functions.php:239
4639
  #: includes/functions.php:240 includes/functions.php:242
@@ -4644,7 +4832,7 @@ msgstr ""
4644
  msgid " and then <strong>%s per %s</strong>."
4645
  msgstr ""
4646
 
4647
- #: includes/functions.php:355 includes/functions.php:188
4648
  #: includes/functions.php:224 includes/functions.php:232
4649
  #: includes/functions.php:242 includes/functions.php:243
4650
  #: includes/functions.php:244 includes/functions.php:246
@@ -4655,7 +4843,7 @@ msgstr ""
4655
  msgid " and then <strong>%s every %d %s</strong>."
4656
  msgstr ""
4657
 
4658
- #: includes/functions.php:373 includes/functions.php:202
4659
  #: includes/functions.php:238 includes/functions.php:249
4660
  #: includes/functions.php:260 includes/functions.php:261
4661
  #: includes/functions.php:262 includes/functions.php:264
@@ -4665,7 +4853,7 @@ msgstr ""
4665
  msgid "After your initial payment, your first payment is Free."
4666
  msgstr ""
4667
 
4668
- #: includes/functions.php:377 includes/functions.php:206
4669
  #: includes/functions.php:242 includes/functions.php:253
4670
  #: includes/functions.php:264 includes/functions.php:265
4671
  #: includes/functions.php:266 includes/functions.php:268
@@ -4676,7 +4864,7 @@ msgstr ""
4676
  msgid "After your initial payment, your first %d payments are Free."
4677
  msgstr ""
4678
 
4679
- #: includes/functions.php:384 includes/functions.php:213
4680
  #: includes/functions.php:249 includes/functions.php:260
4681
  #: includes/functions.php:271 includes/functions.php:272
4682
  #: includes/functions.php:273 includes/functions.php:275
@@ -4687,7 +4875,7 @@ msgstr ""
4687
  msgid "After your initial payment, your first payment will cost %s."
4688
  msgstr ""
4689
 
4690
- #: includes/functions.php:388 includes/functions.php:217
4691
  #: includes/functions.php:253 includes/functions.php:264
4692
  #: includes/functions.php:275 includes/functions.php:276
4693
  #: includes/functions.php:277 includes/functions.php:279
@@ -4698,18 +4886,52 @@ msgstr ""
4698
  msgid "After your initial payment, your first %d payments will cost %s."
4699
  msgstr ""
4700
 
4701
- #: includes/functions.php:399 includes/functions.php:228
4702
- #: includes/functions.php:264 includes/functions.php:275
4703
- #: includes/functions.php:286 includes/functions.php:287
4704
- #: includes/functions.php:288 includes/functions.php:290
4705
- #: includes/functions.php:293 includes/functions.php:297
4706
- #: includes/functions.php:333 includes/functions.php:399
4707
- #: includes/functions.php:405
4708
  #, php-format
4709
  msgid "Customers in %s will be charged %s%% tax."
4710
  msgstr ""
4711
 
4712
- #: includes/functions.php:413 includes/functions.php:242
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4713
  #: includes/functions.php:278 includes/functions.php:289
4714
  #: includes/functions.php:300 includes/functions.php:301
4715
  #: includes/functions.php:302 includes/functions.php:304
@@ -4720,7 +4942,12 @@ msgstr ""
4720
  msgid "Membership expires after %d %s."
4721
  msgstr ""
4722
 
4723
- #: includes/functions.php:760 includes/functions.php:491
 
 
 
 
 
4724
  #: includes/functions.php:514 includes/functions.php:525
4725
  #: includes/functions.php:536 includes/functions.php:537
4726
  #: includes/functions.php:538 includes/functions.php:545
@@ -4731,7 +4958,7 @@ msgstr ""
4731
  msgid "User ID not found."
4732
  msgstr ""
4733
 
4734
- #: includes/functions.php:780 includes/functions.php:508
4735
  #: includes/functions.php:531 includes/functions.php:542
4736
  #: includes/functions.php:553 includes/functions.php:554
4737
  #: includes/functions.php:555 includes/functions.php:562
@@ -4743,7 +4970,7 @@ msgstr ""
4743
  msgid "Invalid level."
4744
  msgstr ""
4745
 
4746
- #: includes/functions.php:791 includes/functions.php:520
4747
  #: includes/functions.php:542 includes/functions.php:553
4748
  #: includes/functions.php:564 includes/functions.php:565
4749
  #: includes/functions.php:566 includes/functions.php:573
@@ -4755,7 +4982,7 @@ msgstr ""
4755
  msgid "not changing?"
4756
  msgstr ""
4757
 
4758
- #: includes/functions.php:808 includes/functions.php:537
4759
  #: includes/functions.php:559 includes/functions.php:570
4760
  #: includes/functions.php:581 includes/functions.php:582
4761
  #: includes/functions.php:583 includes/functions.php:590
@@ -4781,12 +5008,12 @@ msgstr ""
4781
  msgid "Error interacting with database"
4782
  msgstr ""
4783
 
4784
- #: includes/functions.php:907
4785
  #, php-format
4786
  msgid "Error interacting with database: %s"
4787
  msgstr ""
4788
 
4789
- #: includes/functions.php:948 includes/functions.php:987
4790
  #: includes/functions.php:629 includes/functions.php:651
4791
  #: includes/functions.php:667 includes/functions.php:668
4792
  #: includes/functions.php:678 includes/functions.php:681
@@ -4802,22 +5029,23 @@ msgstr ""
4802
  #: includes/functions.php:787 includes/functions.php:803
4803
  #: includes/functions.php:826 includes/functions.php:881
4804
  #: includes/functions.php:920 includes/functions.php:947
4805
- #: includes/functions.php:953 includes/functions.php:986
 
4806
  #: includes/functions.php:992
4807
  msgid "Membership level not found."
4808
  msgstr ""
4809
 
4810
- #: includes/functions.php:1357 includes/functions.php:1100
4811
  #: includes/functions.php:1101 includes/functions.php:1118
4812
  #: includes/functions.php:1142 includes/functions.php:1143
4813
  #: includes/functions.php:1150 includes/functions.php:1157
4814
  #: includes/functions.php:1173 includes/functions.php:1196
4815
  #: includes/functions.php:1290 includes/functions.php:1356
4816
- #: includes/functions.php:1362
4817
  msgid "No code was given to check."
4818
  msgstr ""
4819
 
4820
- #: includes/functions.php:1366 includes/functions.php:1050
4821
  #: includes/functions.php:1072 includes/functions.php:1088
4822
  #: includes/functions.php:1099 includes/functions.php:1102
4823
  #: includes/functions.php:1109 includes/functions.php:1110
@@ -4826,11 +5054,12 @@ msgstr ""
4826
  #: includes/functions.php:1152 includes/functions.php:1159
4827
  #: includes/functions.php:1166 includes/functions.php:1182
4828
  #: includes/functions.php:1205 includes/functions.php:1299
4829
- #: includes/functions.php:1365 includes/functions.php:1371
 
4830
  msgid "The discount code could not be found."
4831
  msgstr ""
4832
 
4833
- #: includes/functions.php:1381 includes/functions.php:1066
4834
  #: includes/functions.php:1088 includes/functions.php:1104
4835
  #: includes/functions.php:1115 includes/functions.php:1118
4836
  #: includes/functions.php:1124 includes/functions.php:1125
@@ -4839,12 +5068,13 @@ msgstr ""
4839
  #: includes/functions.php:1167 includes/functions.php:1174
4840
  #: includes/functions.php:1181 includes/functions.php:1197
4841
  #: includes/functions.php:1220 includes/functions.php:1314
4842
- #: includes/functions.php:1380 includes/functions.php:1386
 
4843
  #, php-format
4844
  msgid "This discount code goes into effect on %s."
4845
  msgstr ""
4846
 
4847
- #: includes/functions.php:1388 includes/functions.php:1075
4848
  #: includes/functions.php:1097 includes/functions.php:1113
4849
  #: includes/functions.php:1124 includes/functions.php:1127
4850
  #: includes/functions.php:1131 includes/functions.php:1132
@@ -4853,12 +5083,13 @@ msgstr ""
4853
  #: includes/functions.php:1174 includes/functions.php:1181
4854
  #: includes/functions.php:1188 includes/functions.php:1204
4855
  #: includes/functions.php:1227 includes/functions.php:1321
4856
- #: includes/functions.php:1387 includes/functions.php:1393
 
4857
  #, php-format
4858
  msgid "This discount code expired on %s."
4859
  msgstr ""
4860
 
4861
- #: includes/functions.php:1398 includes/functions.php:1087
4862
  #: includes/functions.php:1109 includes/functions.php:1125
4863
  #: includes/functions.php:1136 includes/functions.php:1139
4864
  #: includes/functions.php:1141 includes/functions.php:1142
@@ -4867,11 +5098,12 @@ msgstr ""
4867
  #: includes/functions.php:1184 includes/functions.php:1191
4868
  #: includes/functions.php:1198 includes/functions.php:1214
4869
  #: includes/functions.php:1237 includes/functions.php:1331
4870
- #: includes/functions.php:1397 includes/functions.php:1403
 
4871
  msgid "This discount code is no longer valid."
4872
  msgstr ""
4873
 
4874
- #: includes/functions.php:1411 includes/functions.php:1102
4875
  #: includes/functions.php:1124 includes/functions.php:1140
4876
  #: includes/functions.php:1151 includes/functions.php:1154
4877
  #: includes/functions.php:1155 includes/functions.php:1164
@@ -4880,11 +5112,11 @@ msgstr ""
4880
  #: includes/functions.php:1204 includes/functions.php:1211
4881
  #: includes/functions.php:1227 includes/functions.php:1250
4882
  #: includes/functions.php:1344 includes/functions.php:1410
4883
- #: includes/functions.php:1416
4884
  msgid "This discount code does not apply to this membership level."
4885
  msgstr ""
4886
 
4887
- #: includes/functions.php:1448 includes/functions.php:1110
4888
  #: includes/functions.php:1132 includes/functions.php:1148
4889
  #: includes/functions.php:1159 includes/functions.php:1162
4890
  #: includes/functions.php:1172 includes/functions.php:1180
@@ -4894,10 +5126,11 @@ msgstr ""
4894
  #: includes/functions.php:1237 includes/functions.php:1253
4895
  #: includes/functions.php:1276 includes/functions.php:1370
4896
  #: includes/functions.php:1436 includes/functions.php:1442
 
4897
  msgid "This discount code is okay."
4898
  msgstr ""
4899
 
4900
- #: includes/functions.php:1475 includes/functions.php:1134
4901
  #: includes/functions.php:1156 includes/functions.php:1172
4902
  #: includes/functions.php:1183 includes/functions.php:1186
4903
  #: includes/functions.php:1196 includes/functions.php:1205
@@ -4907,10 +5140,11 @@ msgstr ""
4907
  #: includes/functions.php:1278 includes/functions.php:1301
4908
  #: includes/functions.php:1395 includes/functions.php:1397
4909
  #: includes/functions.php:1463 includes/functions.php:1469
 
4910
  msgid "and"
4911
  msgstr ""
4912
 
4913
- #: includes/functions.php:1703 includes/functions.php:1319
4914
  #: includes/functions.php:1341 includes/functions.php:1361
4915
  #: includes/functions.php:1372 includes/functions.php:1375
4916
  #: includes/functions.php:1385 includes/functions.php:1394
@@ -4920,11 +5154,11 @@ msgstr ""
4920
  #: includes/functions.php:1473 includes/functions.php:1496
4921
  #: includes/functions.php:1501 includes/functions.php:1620
4922
  #: includes/functions.php:1624 includes/functions.php:1691
4923
- #: includes/functions.php:1697
4924
  msgid "Sign Up for !!name!! Now"
4925
  msgstr ""
4926
 
4927
- #: includes/functions.php:1709 includes/functions.php:1325
4928
  #: includes/functions.php:1347 includes/functions.php:1367
4929
  #: includes/functions.php:1378 includes/functions.php:1381
4930
  #: includes/functions.php:1391 includes/functions.php:1400
@@ -4934,7 +5168,7 @@ msgstr ""
4934
  #: includes/functions.php:1479 includes/functions.php:1502
4935
  #: includes/functions.php:1507 includes/functions.php:1626
4936
  #: includes/functions.php:1630 includes/functions.php:1697
4937
- #: includes/functions.php:1703
4938
  msgid "Please specify a level id."
4939
  msgstr ""
4940
 
@@ -5128,200 +5362,208 @@ msgid ""
5128
  msgstr ""
5129
 
5130
  #: pages/billing.php:28 pages/billing.php:14 pages/billing.php:23
5131
- #: pages/billing.php:26
5132
  #, php-format
5133
  msgid "Logged in as <strong>%s</strong>."
5134
  msgstr ""
5135
 
5136
  #: pages/billing.php:28 pages/billing.php:14 pages/billing.php:23
5137
- #: pages/billing.php:26
5138
  msgid "logout"
5139
  msgstr ""
5140
 
5141
- #: pages/billing.php:30 pages/cancel.php:52 pages/invoice.php:109
5142
- #: pages/levels.php:35 shortcodes/pmpro_account.php:43
5143
- #: shortcodes/pmpro_account.php:125 pages/account.php:12 pages/account.php:18
5144
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
5145
- #: pages/billing.php:28 pages/cancel.php:52 pages/invoice.php:109
5146
- #: pages/levels.php:13 pages/levels.php:35 shortcodes/pmpro_account.php:44
5147
- #: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:126
 
 
5148
  msgid "Level"
5149
  msgstr ""
5150
 
5151
  #: pages/billing.php:32 pages/account.php:14 pages/billing.php:18
5152
- #: pages/billing.php:27 pages/billing.php:30
5153
  msgid "Membership Fee"
5154
  msgstr ""
5155
 
5156
  #: pages/billing.php:36 pages/account.php:18 pages/billing.php:22
5157
- #: pages/billing.php:31 pages/billing.php:34 pages/levels.php:70
 
5158
  #, php-format
5159
  msgid "%s every %d %s."
5160
  msgstr ""
5161
 
5162
  #: pages/billing.php:38 pages/account.php:20 pages/billing.php:24
5163
- #: pages/billing.php:33 pages/billing.php:36 pages/levels.php:66
 
5164
  #, php-format
5165
  msgid "%s per %s."
5166
  msgstr ""
5167
 
5168
  #: pages/billing.php:47 pages/account.php:25 pages/account.php:29
5169
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
5170
- #: pages/billing.php:45
5171
  msgid "Duration"
5172
  msgstr ""
5173
 
5174
  #: pages/billing.php:57 pages/billing.php:39 pages/billing.php:43
5175
- #: pages/billing.php:52 pages/billing.php:55
5176
  msgid ""
5177
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
5178
  "paypal.com\">login to PayPal here</a> to update your billing information."
5179
  msgstr ""
5180
 
5181
- #: pages/billing.php:83 pages/checkout.php:326 pages/billing.php:65
5182
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
5183
- #: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
5184
- #: pages/checkout.php:318 pages/checkout.php:321 pages/checkout.php:324
5185
- #: pages/checkout.php:326 pages/checkout.php:328
5186
  msgid "First Name"
5187
  msgstr ""
5188
 
5189
- #: pages/billing.php:87 pages/checkout.php:330 pages/billing.php:69
5190
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
5191
- #: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
5192
- #: pages/checkout.php:322 pages/checkout.php:325 pages/checkout.php:328
5193
- #: pages/checkout.php:330 pages/checkout.php:332
5194
  msgid "Last Name"
5195
  msgstr ""
5196
 
5197
- #: pages/billing.php:91 pages/checkout.php:334 pages/billing.php:73
5198
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
5199
- #: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
5200
- #: pages/checkout.php:326 pages/checkout.php:329 pages/checkout.php:332
5201
- #: pages/checkout.php:334 pages/checkout.php:336
5202
  msgid "Address 1"
5203
  msgstr ""
5204
 
5205
- #: pages/billing.php:95 pages/checkout.php:338 pages/billing.php:77
5206
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
5207
- #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
5208
- #: pages/checkout.php:330 pages/checkout.php:333 pages/checkout.php:336
5209
- #: pages/checkout.php:338 pages/checkout.php:340
5210
  msgid "Address 2"
5211
  msgstr ""
5212
 
5213
- #: pages/billing.php:105 pages/checkout.php:348 pages/billing.php:87
5214
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
5215
- #: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:331
5216
- #: pages/checkout.php:340 pages/checkout.php:343 pages/checkout.php:346
5217
- #: pages/checkout.php:348 pages/checkout.php:350
5218
  msgid "City"
5219
  msgstr ""
5220
 
5221
- #: pages/billing.php:109 pages/checkout.php:352 pages/billing.php:91
5222
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
5223
- #: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:335
5224
- #: pages/checkout.php:344 pages/checkout.php:347 pages/checkout.php:350
5225
- #: pages/checkout.php:352 pages/checkout.php:354
5226
  msgid "State"
5227
  msgstr ""
5228
 
5229
- #: pages/billing.php:113 pages/checkout.php:356 pages/billing.php:95
5230
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
5231
- #: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:339
5232
- #: pages/checkout.php:348 pages/checkout.php:351 pages/checkout.php:354
5233
- #: pages/checkout.php:356 pages/checkout.php:358
5234
  msgid "Postal Code"
5235
  msgstr ""
5236
 
5237
- #: pages/billing.php:122 pages/checkout.php:365 pages/billing.php:104
5238
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
5239
- #: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:348
5240
- #: pages/checkout.php:357 pages/checkout.php:360 pages/checkout.php:363
5241
- #: pages/checkout.php:365 pages/checkout.php:367
5242
  msgid "City, State Zip"
5243
  msgstr ""
5244
 
5245
- #: pages/billing.php:175 pages/checkout.php:418 pages/billing.php:157
5246
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
5247
- #: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:401
5248
- #: pages/checkout.php:410 pages/checkout.php:413 pages/checkout.php:416
5249
- #: pages/checkout.php:418 pages/checkout.php:420
5250
  msgid "Country"
5251
  msgstr ""
5252
 
5253
- #: pages/billing.php:200 pages/checkout.php:443 pages/billing.php:182
5254
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
5255
- #: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:426
5256
- #: pages/checkout.php:435 pages/checkout.php:438 pages/checkout.php:441
5257
- #: pages/checkout.php:443 pages/checkout.php:445
5258
  msgid "Phone"
5259
  msgstr ""
5260
 
5261
- #: pages/billing.php:211 pages/checkout.php:220 pages/checkout.php:457
5262
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
5263
- #: pages/billing.php:209 pages/checkout.php:204 pages/checkout.php:207
5264
- #: pages/checkout.php:209 pages/checkout.php:216 pages/checkout.php:218
5265
- #: pages/checkout.php:220 pages/checkout.php:436 pages/checkout.php:438
5266
- #: pages/checkout.php:440 pages/checkout.php:449 pages/checkout.php:453
5267
- #: pages/checkout.php:455 pages/checkout.php:457 pages/checkout.php:460
 
5268
  msgid "E-mail Address"
5269
  msgstr ""
5270
 
5271
- #: pages/billing.php:215 pages/checkout.php:466 pages/billing.php:197
5272
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
5273
- #: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:449
5274
- #: pages/checkout.php:458 pages/checkout.php:462 pages/checkout.php:464
5275
- #: pages/checkout.php:466 pages/checkout.php:469
5276
  msgid "Confirm E-mail"
5277
  msgstr ""
5278
 
5279
- #: pages/billing.php:238 pages/billing.php:217 pages/billing.php:221
5280
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
 
5281
  msgid "Credit Card Information"
5282
  msgstr ""
5283
 
5284
- #: pages/billing.php:239 pages/billing.php:217 pages/billing.php:221
5285
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
 
5286
  #, php-format
5287
  msgid "We accept %s"
5288
  msgstr ""
5289
 
5290
- #: pages/billing.php:408 pages/billing.php:309 pages/billing.php:313
5291
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
5292
- #: pages/billing.php:360 pages/billing.php:364
5293
  msgid ""
5294
  "This subscription is not recurring. So you don't need to update your billing "
5295
  "information."
5296
  msgstr ""
5297
 
5298
- #: pages/cancel.php:26 pages/cancel.php:14 pages/cancel.php:26
5299
  msgid "Are you sure you want to cancel your membership?"
5300
  msgstr ""
5301
 
5302
- #: pages/cancel.php:32 pages/cancel.php:32
5303
  #, php-format
5304
  msgid "Are you sure you want to cancel your %s membership?"
5305
  msgstr ""
5306
 
5307
- #: pages/cancel.php:37 pages/cancel.php:17 pages/cancel.php:37
5308
- msgid "Yes, cancel my account"
5309
  msgstr ""
5310
 
5311
- #: pages/cancel.php:38 pages/cancel.php:19 pages/cancel.php:38
5312
- msgid "No, keep my account"
5313
  msgstr ""
5314
 
5315
- #: pages/cancel.php:48 shortcodes/pmpro_account.php:39 pages/account.php:14
5316
- #: pages/cancel.php:48 shortcodes/pmpro_account.php:40
 
5317
  msgid "My Memberships"
5318
  msgstr ""
5319
 
5320
- #: pages/cancel.php:77 pages/cancel.php:77
5321
  msgid "Cancel All Memberships"
5322
  msgstr ""
5323
 
5324
- #: pages/cancel.php:86 pages/cancel.php:22 pages/cancel.php:86
5325
  msgid "Click here to go to the home page."
5326
  msgstr ""
5327
 
@@ -5343,7 +5585,7 @@ msgstr ""
5343
  msgid "You have selected the <strong>%s</strong> membership level."
5344
  msgstr ""
5345
 
5346
- #: pages/checkout.php:61 pages/checkout.php:51 pages/checkout.php:53
5347
  #: pages/checkout.php:60 pages/checkout.php:61
5348
  #, php-format
5349
  msgid ""
@@ -5351,7 +5593,7 @@ msgid ""
5351
  "been applied to your order.</p>"
5352
  msgstr ""
5353
 
5354
- #: pages/checkout.php:72 services/applydiscountcode.php:89
5355
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
5356
  #: pages/checkout.php:71 pages/checkout.php:72
5357
  #: services/applydiscountcode.php:74 services/applydiscountcode.php:75
@@ -5359,59 +5601,59 @@ msgstr ""
5359
  msgid "Click here to change your discount code"
5360
  msgstr ""
5361
 
5362
- #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
5363
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
5364
  msgid "Click here to enter your discount code"
5365
  msgstr ""
5366
 
5367
- #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
5368
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
5369
  msgid "Do you have a discount code?"
5370
  msgstr ""
5371
 
5372
- #: pages/checkout.php:175 pages/checkout.php:160 pages/checkout.php:163
5373
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
5374
  #: pages/checkout.php:175
5375
  msgid "Account Information"
5376
  msgstr ""
5377
 
5378
- #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
5379
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
5380
  #: pages/checkout.php:176
5381
  msgid "Already have an account?"
5382
  msgstr ""
5383
 
5384
- #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
5385
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
5386
  #: pages/checkout.php:176
5387
  msgid "Log in here"
5388
  msgstr ""
5389
 
5390
- #: pages/checkout.php:202 pages/checkout.php:186 pages/checkout.php:189
5391
  #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
5392
  #: pages/checkout.php:202
5393
  msgid "Confirm Password"
5394
  msgstr ""
5395
 
5396
- #: pages/checkout.php:229 pages/checkout.php:213 pages/checkout.php:216
5397
  #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
5398
  #: pages/checkout.php:229
5399
  msgid "Confirm E-mail Address"
5400
  msgstr ""
5401
 
5402
- #: pages/checkout.php:248 pages/checkout.php:232 pages/checkout.php:235
5403
  #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
5404
  #: pages/checkout.php:248
5405
  msgid "Full Name"
5406
  msgstr ""
5407
 
5408
- #: pages/checkout.php:249 pages/checkout.php:233 pages/checkout.php:236
5409
  #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
5410
  #: pages/checkout.php:249
5411
  msgid "LEAVE THIS BLANK"
5412
  msgstr ""
5413
 
5414
- #: pages/checkout.php:273 pages/checkout.php:257 pages/checkout.php:260
5415
  #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
5416
  #: pages/checkout.php:273
5417
  #, php-format
@@ -5420,37 +5662,37 @@ msgid ""
5420
  "different account for this membership, <a href=\"%s\">log out now</a>."
5421
  msgstr ""
5422
 
5423
- #: pages/checkout.php:289 pages/checkout.php:276 pages/checkout.php:278
5424
  #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:289
5425
  #: pages/checkout.php:292 pages/checkout.php:299
5426
  msgid "Choose your Payment Method"
5427
  msgstr ""
5428
 
5429
- #: pages/checkout.php:298 pages/checkout.php:284 pages/checkout.php:286
5430
  #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:298
5431
  #: pages/checkout.php:300 pages/checkout.php:307
5432
  msgid "Check Out with a Credit Card Here"
5433
  msgstr ""
5434
 
5435
- #: pages/checkout.php:686 pages/checkout.php:277 pages/checkout.php:284
5436
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
5437
- #: pages/checkout.php:681 pages/checkout.php:690 pages/checkout.php:692
5438
- #: pages/checkout.php:696 pages/checkout.php:697
5439
  #, php-format
5440
  msgid "I agree to the %s"
5441
  msgstr ""
5442
 
5443
- #: pages/checkout.php:706 pages/checkout.php:667 pages/checkout.php:674
5444
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
5445
- #: pages/checkout.php:701 pages/checkout.php:710 pages/checkout.php:712
5446
- #: pages/checkout.php:716 pages/checkout.php:717
5447
  msgid "Complete Payment"
5448
  msgstr ""
5449
 
5450
- #: pages/checkout.php:728 pages/checkout.php:687 pages/checkout.php:694
5451
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
5452
- #: pages/checkout.php:723 pages/checkout.php:732 pages/checkout.php:734
5453
- #: pages/checkout.php:738 pages/checkout.php:739
5454
  msgid "Processing..."
5455
  msgstr ""
5456
 
@@ -5472,66 +5714,66 @@ msgid ""
5472
  "membership invoice has been sent to %s."
5473
  msgstr ""
5474
 
5475
- #: pages/confirmation.php:41 pages/invoice.php:22 pages/confirmation.php:41
5476
  #: pages/invoice.php:22
5477
  #, php-format
5478
  msgid "Invoice #%s on %s"
5479
  msgstr ""
5480
 
5481
- #: pages/confirmation.php:43 pages/invoice.php:24 pages/confirmation.php:43
5482
  #: pages/invoice.php:24
5483
  msgid "Print"
5484
  msgstr ""
5485
 
5486
- #: pages/confirmation.php:46 pages/confirmation.php:104 pages/invoice.php:27
5487
  #: pages/confirmation.php:45 pages/confirmation.php:46
5488
  #: pages/confirmation.php:102 pages/confirmation.php:104 pages/invoice.php:26
5489
  #: pages/invoice.php:27
5490
  msgid "Account"
5491
  msgstr ""
5492
 
5493
- #: pages/confirmation.php:49 pages/invoice.php:30 pages/account.php:29
5494
  #: pages/account.php:33 pages/confirmation.php:48 pages/confirmation.php:49
5495
  #: pages/invoice.php:29 pages/invoice.php:30
5496
  msgid "Membership Expires"
5497
  msgstr ""
5498
 
5499
- #: pages/confirmation.php:63 pages/invoice.php:50 pages/account.php:105
5500
  #: pages/account.php:109 pages/confirmation.php:61 pages/confirmation.php:63
5501
  #: pages/invoice.php:48 pages/invoice.php:50
5502
  msgid "Payment Method"
5503
  msgstr ""
5504
 
5505
- #: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
5506
  #: pages/confirmation.php:63 pages/confirmation.php:65 pages/invoice.php:50
5507
  #: pages/invoice.php:52 pages/invoice.php:107 pages/invoice.php:109
5508
  #: pages/invoice.php:110
5509
  msgid "Total Billed"
5510
  msgstr ""
5511
 
5512
- #: pages/confirmation.php:82 pages/invoice.php:69 pages/confirmation.php:80
5513
  #: pages/confirmation.php:82 pages/invoice.php:67 pages/invoice.php:69
5514
  msgid "ending in"
5515
  msgstr ""
5516
 
5517
- #: pages/confirmation.php:97 pages/confirmation.php:97
5518
  #, php-format
5519
  msgid ""
5520
  "Below are details about your membership account. A welcome email has been "
5521
  "sent to %s."
5522
  msgstr ""
5523
 
5524
- #: pages/confirmation.php:105 pages/confirmation.php:103
5525
  #: pages/confirmation.php:105
5526
  msgid "Pending"
5527
  msgstr ""
5528
 
5529
- #: pages/confirmation.php:113 pages/invoice.php:141 pages/confirmation.php:111
5530
  #: pages/confirmation.php:113 pages/invoice.php:139 pages/invoice.php:141
5531
  msgid "View Your Membership Account &rarr;"
5532
  msgstr ""
5533
 
5534
- #: pages/confirmation.php:115 pages/confirmation.php:113
5535
  #: pages/confirmation.php:115
5536
  msgid ""
5537
  "If your account is not activated within a few minutes, please contact the "
@@ -5567,7 +5809,8 @@ msgstr ""
5567
 
5568
  #: pages/levels.php:78 shortcodes/pmpro_account.php:60 pages/account.php:33
5569
  #: pages/levels.php:57 pages/levels.php:78 pages/levels.php:123
5570
- #: shortcodes/pmpro_account.php:59 shortcodes/pmpro_account.php:61
 
5571
  msgid "Renew"
5572
  msgstr ""
5573
 
@@ -5586,7 +5829,7 @@ msgstr ""
5586
  msgid "&larr; Return to Home"
5587
  msgstr ""
5588
 
5589
- #: paid-memberships-pro.php:126 adminpages/orders.php:398
5590
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
5591
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
5592
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
@@ -5594,21 +5837,21 @@ msgstr ""
5594
  msgid "Testing Only"
5595
  msgstr ""
5596
 
5597
- #: paid-memberships-pro.php:131 paid-memberships-pro.php:120
5598
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
5599
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
5600
  #: paid-memberships-pro.php:131
5601
  msgid "PayPal Payflow Pro/PayPal Pro"
5602
  msgstr ""
5603
 
5604
- #: paid-memberships-pro.php:136 paid-memberships-pro.php:125
5605
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
5606
  #: paid-memberships-pro.php:134 paid-memberships-pro.php:135
5607
  #: paid-memberships-pro.php:136
5608
  msgid "Cybersource"
5609
  msgstr ""
5610
 
5611
- #: paid-memberships-pro.php:157 paid-memberships-pro.php:156
5612
  #: paid-memberships-pro.php:157
5613
  msgid "Once a month"
5614
  msgstr ""
@@ -5627,7 +5870,7 @@ msgid ""
5627
  "moments."
5628
  msgstr ""
5629
 
5630
- #: preheaders/billing.php:270 preheaders/checkout.php:364
5631
  #: preheaders/billing.php:258 preheaders/billing.php:265
5632
  #: preheaders/billing.php:266 preheaders/billing.php:270
5633
  #: preheaders/billing.php:279 preheaders/checkout.php:332
@@ -5638,7 +5881,7 @@ msgstr ""
5638
  msgid "Please complete all required fields."
5639
  msgstr ""
5640
 
5641
- #: preheaders/billing.php:273 preheaders/checkout.php:372
5642
  #: preheaders/billing.php:263 preheaders/billing.php:268
5643
  #: preheaders/billing.php:269 preheaders/billing.php:273
5644
  #: preheaders/billing.php:284 preheaders/checkout.php:340
@@ -5649,7 +5892,7 @@ msgstr ""
5649
  msgid "Your email addresses do not match. Please try again."
5650
  msgstr ""
5651
 
5652
- #: preheaders/billing.php:276 preheaders/checkout.php:377
5653
  #: preheaders/billing.php:268 preheaders/billing.php:271
5654
  #: preheaders/billing.php:272 preheaders/billing.php:276
5655
  #: preheaders/billing.php:289 preheaders/checkout.php:345
@@ -5660,32 +5903,32 @@ msgstr ""
5660
  msgid "The email address entered is in an invalid format. Please try again."
5661
  msgstr ""
5662
 
5663
- #: preheaders/billing.php:280 preheaders/billing.php:274
5664
  #: preheaders/billing.php:275 preheaders/billing.php:276
5665
  #: preheaders/billing.php:280 preheaders/billing.php:295
5666
  msgid "All good!"
5667
  msgstr ""
5668
 
5669
- #: preheaders/billing.php:350 preheaders/billing.php:340
5670
  #: preheaders/billing.php:345 preheaders/billing.php:346
5671
  #: preheaders/billing.php:350 preheaders/billing.php:370
5672
  #, php-format
5673
  msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
5674
  msgstr ""
5675
 
5676
- #: preheaders/billing.php:356 preheaders/billing.php:347
5677
  #: preheaders/billing.php:351 preheaders/billing.php:352
5678
  #: preheaders/billing.php:356 preheaders/billing.php:378
5679
  #: preheaders/billing.php:380
5680
  msgid "Error updating billing information."
5681
  msgstr ""
5682
 
5683
- #: preheaders/cancel.php:28 preheaders/cancel.php:24 preheaders/cancel.php:25
5684
  #: preheaders/cancel.php:28
5685
  msgid "Your membership has been cancelled."
5686
  msgstr ""
5687
 
5688
- #: preheaders/checkout.php:34 preheaders/checkout.php:386
5689
  #: preheaders/checkout.php:28 preheaders/checkout.php:30
5690
  #: preheaders/checkout.php:31 preheaders/checkout.php:32
5691
  #: preheaders/checkout.php:34 preheaders/checkout.php:354
@@ -5696,24 +5939,24 @@ msgstr ""
5696
  msgid "Invalid gateway."
5697
  msgstr ""
5698
 
5699
- #: preheaders/checkout.php:96 preheaders/checkout.php:88
5700
  #: preheaders/checkout.php:89 preheaders/checkout.php:91
5701
  #: preheaders/checkout.php:95 preheaders/checkout.php:96
5702
  msgid "Checkout: Payment Information"
5703
  msgstr ""
5704
 
5705
- #: preheaders/checkout.php:101 preheaders/checkout.php:100
5706
  #: preheaders/checkout.php:101
5707
  msgid "Set Up Your Account"
5708
  msgstr ""
5709
 
5710
- #: preheaders/checkout.php:331 preheaders/checkout.php:300
5711
  #: preheaders/checkout.php:304 preheaders/checkout.php:331
5712
  #: preheaders/checkout.php:416 preheaders/checkout.php:421
5713
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
5714
  msgstr ""
5715
 
5716
- #: preheaders/checkout.php:367 preheaders/checkout.php:335
5717
  #: preheaders/checkout.php:339 preheaders/checkout.php:367
5718
  #: preheaders/checkout.php:461 preheaders/checkout.php:468
5719
  #: preheaders/checkout.php:473 preheaders/checkout.php:485
@@ -5721,7 +5964,7 @@ msgstr ""
5721
  msgid "Your passwords do not match. Please try again."
5722
  msgstr ""
5723
 
5724
- #: preheaders/checkout.php:382 preheaders/checkout.php:350
5725
  #: preheaders/checkout.php:354 preheaders/checkout.php:382
5726
  #: preheaders/checkout.php:476 preheaders/checkout.php:483
5727
  #: preheaders/checkout.php:486 preheaders/checkout.php:488
@@ -5730,7 +5973,7 @@ msgstr ""
5730
  msgid "Please check the box to agree to the %s."
5731
  msgstr ""
5732
 
5733
- #: preheaders/checkout.php:389 preheaders/checkout.php:357
5734
  #: preheaders/checkout.php:361 preheaders/checkout.php:389
5735
  #: preheaders/checkout.php:483 preheaders/checkout.php:490
5736
  #: preheaders/checkout.php:495 preheaders/checkout.php:512
@@ -5738,7 +5981,7 @@ msgstr ""
5738
  msgid "Are you a spammer?"
5739
  msgstr ""
5740
 
5741
- #: preheaders/checkout.php:410 preheaders/checkout.php:377
5742
  #: preheaders/checkout.php:381 preheaders/checkout.php:410
5743
  #: preheaders/checkout.php:503 preheaders/checkout.php:510
5744
  #: preheaders/checkout.php:515 preheaders/checkout.php:518
@@ -5746,7 +5989,7 @@ msgstr ""
5746
  msgid "That username is already taken. Please try another."
5747
  msgstr ""
5748
 
5749
- #: preheaders/checkout.php:415 preheaders/checkout.php:382
5750
  #: preheaders/checkout.php:386 preheaders/checkout.php:415
5751
  #: preheaders/checkout.php:508 preheaders/checkout.php:515
5752
  #: preheaders/checkout.php:520 preheaders/checkout.php:524
@@ -5754,7 +5997,7 @@ msgstr ""
5754
  msgid "That email address is already taken. Please try another."
5755
  msgstr ""
5756
 
5757
- #: preheaders/checkout.php:446 preheaders/checkout.php:397
5758
  #: preheaders/checkout.php:399 preheaders/checkout.php:416
5759
  #: preheaders/checkout.php:420 preheaders/checkout.php:446
5760
  #: preheaders/checkout.php:525 preheaders/checkout.php:532
@@ -5764,7 +6007,7 @@ msgstr ""
5764
  msgid "reCAPTCHA failed. (%s) Please try again."
5765
  msgstr ""
5766
 
5767
- #: preheaders/checkout.php:533 preheaders/checkout.php:482
5768
  #: preheaders/checkout.php:484 preheaders/checkout.php:501
5769
  #: preheaders/checkout.php:505 preheaders/checkout.php:533
5770
  #: preheaders/checkout.php:647 preheaders/checkout.php:654
@@ -5773,7 +6016,7 @@ msgstr ""
5773
  msgid "Payment accepted."
5774
  msgstr ""
5775
 
5776
- #: preheaders/checkout.php:539 preheaders/checkout.php:490
5777
  #: preheaders/checkout.php:492 preheaders/checkout.php:509
5778
  #: preheaders/checkout.php:513 preheaders/checkout.php:539
5779
  #: preheaders/checkout.php:653 preheaders/checkout.php:660
@@ -5784,7 +6027,7 @@ msgid ""
5784
  "membership."
5785
  msgstr ""
5786
 
5787
- #: preheaders/checkout.php:614 preheaders/checkout.php:550
5788
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
5789
  #: preheaders/checkout.php:571 preheaders/checkout.php:575
5790
  #: preheaders/checkout.php:581 preheaders/checkout.php:614
@@ -5797,7 +6040,7 @@ msgid ""
5797
  "Please contact us."
5798
  msgstr ""
5799
 
5800
- #: preheaders/checkout.php:826 preheaders/checkout.php:691
5801
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
5802
  #: preheaders/checkout.php:712 preheaders/checkout.php:722
5803
  #: preheaders/checkout.php:730 preheaders/checkout.php:754
@@ -5811,7 +6054,7 @@ msgid ""
5811
  "submit this form again. Please contact the site owner to fix this issue."
5812
  msgstr ""
5813
 
5814
- #: preheaders/checkout.php:829 preheaders/checkout.php:694
5815
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
5816
  #: preheaders/checkout.php:715 preheaders/checkout.php:725
5817
  #: preheaders/checkout.php:733 preheaders/checkout.php:757
@@ -5825,7 +6068,7 @@ msgid ""
5825
  "this form again. Please contact the site owner to fix this issue."
5826
  msgstr ""
5827
 
5828
- #: preheaders/checkout.php:840 preheaders/checkout.php:705
5829
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
5830
  #: preheaders/checkout.php:726 preheaders/checkout.php:736
5831
  #: preheaders/checkout.php:744 preheaders/checkout.php:768
@@ -5839,7 +6082,7 @@ msgid ""
5839
  "will be processed."
5840
  msgstr ""
5841
 
5842
- #: preheaders/checkout.php:842 preheaders/checkout.php:707
5843
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
5844
  #: preheaders/checkout.php:728 preheaders/checkout.php:738
5845
  #: preheaders/checkout.php:746 preheaders/checkout.php:770
@@ -5856,33 +6099,33 @@ msgstr ""
5856
  msgid "Membership expired email sent to %s. "
5857
  msgstr ""
5858
 
5859
- #: scheduled/crons.php:99 scheduled/crons.php:27 scheduled/crons.php:74
5860
  #: scheduled/crons.php:80 scheduled/crons.php:84 scheduled/crons.php:88
5861
  #: scheduled/crons.php:99
5862
  #, php-format
5863
  msgid "Membership expiring email sent to %s. "
5864
  msgstr ""
5865
 
5866
- #: scheduled/crons.php:175 scheduled/crons.php:143 scheduled/crons.php:152
5867
  #: scheduled/crons.php:157 scheduled/crons.php:164 scheduled/crons.php:175
5868
  #, php-format
5869
  msgid "Credit card expiring email sent to %s. "
5870
  msgstr ""
5871
 
5872
- #: scheduled/crons.php:231 scheduled/crons.php:104 scheduled/crons.php:196
5873
  #: scheduled/crons.php:208 scheduled/crons.php:210 scheduled/crons.php:220
5874
  #: scheduled/crons.php:231
5875
  #, php-format
5876
  msgid "Trial ending email sent to %s. "
5877
  msgstr ""
5878
 
5879
- #: services/applydiscountcode.php:67 services/applydiscountcode.php:64
5880
  #: services/applydiscountcode.php:67
5881
  #, php-format
5882
  msgid "The %s code has been applied to your order. "
5883
  msgstr ""
5884
 
5885
- #: services/applydiscountcode.php:97 services/applydiscountcode.php:82
5886
  #: services/applydiscountcode.php:83 services/applydiscountcode.php:86
5887
  #: services/applydiscountcode.php:97
5888
  #, php-format
@@ -5909,64 +6152,70 @@ msgid ""
5909
  "this user's membership is cancelled on your site if it should be."
5910
  msgstr ""
5911
 
5912
- #: shortcodes/pmpro_account.php:44 pages/account.php:19
5913
- #: shortcodes/pmpro_account.php:45
5914
  msgid "Billing"
5915
  msgstr ""
5916
 
5917
  #: shortcodes/pmpro_account.php:64 pages/account.php:36
5918
- #: shortcodes/pmpro_account.php:62 shortcodes/pmpro_account.php:65
 
5919
  msgid "Update Billing Info"
5920
  msgstr ""
5921
 
5922
  #: shortcodes/pmpro_account.php:70 pages/account.php:42
5923
- #: shortcodes/pmpro_account.php:68 shortcodes/pmpro_account.php:71
 
5924
  msgid "Change"
5925
  msgstr ""
5926
 
5927
- #: shortcodes/pmpro_account.php:92 pages/account.php:64
5928
- #: shortcodes/pmpro_account.php:90 shortcodes/pmpro_account.php:93
 
5929
  msgid "View all Membership Options"
5930
  msgstr ""
5931
 
5932
- #: shortcodes/pmpro_account.php:101 pages/account.php:46 pages/account.php:50
5933
  #: pages/account.php:71 shortcodes/pmpro_account.php:99
5934
- #: shortcodes/pmpro_account.php:102
5935
  msgid "My Account"
5936
  msgstr ""
5937
 
5938
- #: shortcodes/pmpro_account.php:112 pages/account.php:55 pages/account.php:59
5939
  #: pages/account.php:80 shortcodes/pmpro_account.php:110
5940
- #: shortcodes/pmpro_account.php:113
5941
  msgid "Edit Profile"
5942
  msgstr ""
5943
 
5944
- #: shortcodes/pmpro_account.php:113 pages/account.php:56 pages/account.php:60
5945
  #: pages/account.php:81 shortcodes/pmpro_account.php:111
5946
- #: shortcodes/pmpro_account.php:114
5947
  msgid "Change Password"
5948
  msgstr ""
5949
 
5950
- #: shortcodes/pmpro_account.php:120 pages/account.php:87 pages/account.php:125
5951
  #: pages/account.php:129 shortcodes/pmpro_account.php:118
5952
- #: shortcodes/pmpro_account.php:121
5953
  msgid "Past Invoices"
5954
  msgstr ""
5955
 
5956
- #: shortcodes/pmpro_account.php:126 pages/account.php:93
5957
- #: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:127
 
5958
  msgid "Amount"
5959
  msgstr ""
5960
 
5961
- #: shortcodes/pmpro_account.php:154 pages/account.php:121
5962
  #: pages/account.php:140 pages/account.php:144
5963
- #: shortcodes/pmpro_account.php:152 shortcodes/pmpro_account.php:155
 
5964
  msgid "View All Invoices"
5965
  msgstr ""
5966
 
5967
- #: shortcodes/pmpro_account.php:161 pages/account.php:128
5968
  #: pages/account.php:146 pages/account.php:150
5969
- #: shortcodes/pmpro_account.php:159 shortcodes/pmpro_account.php:162
 
5970
  msgid "Member Links"
5971
  msgstr ""
5972
 
@@ -6209,6 +6458,14 @@ msgstr ""
6209
  msgid "Cancel Membership"
6210
  msgstr ""
6211
 
 
 
 
 
 
 
 
 
6212
  #: pages/checkout.php:51 pages/checkout.php:52
6213
  #, php-format
6214
  msgid "<p>The <strong>%s</strong> code has been applied to your order.</p>"
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: pmpro\n"
8
+ "POT-Creation-Date: 2016-09-13 10:10-0400\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
34
 
35
  #: adminpages/addons.php:67 adminpages/admin_header.php:170
36
  #: includes/adminpages.php:53 includes/adminpages.php:151
37
+ #: adminpages/addons.php:64 adminpages/addons.php:67 adminpages/addons.php:80
38
  #: adminpages/admin_header.php:133 adminpages/admin_header.php:154
39
  #: adminpages/admin_header.php:170 includes/adminpages.php:14
40
  #: includes/adminpages.php:52 includes/adminpages.php:53
44
  msgid "Add Ons"
45
  msgstr ""
46
 
47
+ #: adminpages/addons.php:74 adminpages/addons.php:71 adminpages/addons.php:74
48
+ #: adminpages/addons.php:87
49
  #, php-format
50
  msgid "Last checked on %s at %s."
51
  msgstr ""
52
 
53
+ #: adminpages/addons.php:75 adminpages/addons.php:72 adminpages/addons.php:75
54
+ #: adminpages/addons.php:88
55
  msgid "Check Again"
56
  msgstr ""
57
 
58
  #: adminpages/addons.php:79 adminpages/orders.php:881 adminpages/addons.php:76
59
+ #: adminpages/addons.php:79 adminpages/addons.php:92 adminpages/orders.php:605
60
  #: adminpages/orders.php:712 adminpages/orders.php:741
61
+ #: adminpages/orders.php:850 adminpages/orders.php:881
62
  msgid "All"
63
  msgstr ""
64
 
65
+ #: adminpages/addons.php:80 adminpages/addons.php:77 adminpages/addons.php:80
66
+ #: adminpages/addons.php:93
67
  msgid "Active"
68
  msgstr ""
69
 
70
+ #: adminpages/addons.php:81 adminpages/addons.php:78 adminpages/addons.php:81
71
+ #: adminpages/addons.php:94
72
  msgid "Inactive"
73
  msgstr ""
74
 
75
+ #: adminpages/addons.php:82 adminpages/addons.php:79 adminpages/addons.php:82
76
+ #: adminpages/addons.php:95
77
  msgid "Update Available"
78
  msgstr ""
79
 
80
+ #: adminpages/addons.php:83 adminpages/addons.php:80 adminpages/addons.php:83
81
+ #: adminpages/addons.php:96
82
  msgid "Not Installed"
83
  msgstr ""
84
 
85
+ #: adminpages/addons.php:96 adminpages/addons.php:93 adminpages/addons.php:96
86
+ #: adminpages/addons.php:109
87
  msgid "Add On Name"
88
  msgstr ""
89
 
90
+ #: adminpages/addons.php:97 adminpages/addons.php:94 adminpages/addons.php:97
91
+ #: adminpages/addons.php:110
92
  msgid "Type"
93
  msgstr ""
94
 
95
  #: adminpages/addons.php:98 adminpages/membershiplevels.php:300
96
+ #: adminpages/addons.php:95 adminpages/addons.php:98 adminpages/addons.php:111
97
  #: adminpages/membershiplevels.php:296 adminpages/membershiplevels.php:298
98
  #: adminpages/membershiplevels.php:300
99
  msgid "Description"
100
  msgstr ""
101
 
102
  #: adminpages/addons.php:121 adminpages/addons.php:118
103
+ #: adminpages/addons.php:121 adminpages/addons.php:134
104
  msgid "No Add Ons found."
105
  msgstr ""
106
 
107
  #: adminpages/addons.php:182 adminpages/addons.php:187
108
  #: adminpages/addons.php:199 adminpages/addons.php:179
109
+ #: adminpages/addons.php:182 adminpages/addons.php:184
110
+ #: adminpages/addons.php:187 adminpages/addons.php:195
111
+ #: adminpages/addons.php:196 adminpages/addons.php:199
112
+ #: adminpages/addons.php:200 adminpages/addons.php:212
113
  msgid "Install Now"
114
  msgstr ""
115
 
116
  #: adminpages/addons.php:188 adminpages/addons.php:194
117
  #: adminpages/addons.php:200 adminpages/addons.php:206
118
+ #: adminpages/addons.php:185 adminpages/addons.php:188
119
+ #: adminpages/addons.php:191 adminpages/addons.php:194
120
+ #: adminpages/addons.php:197 adminpages/addons.php:200
121
+ #: adminpages/addons.php:201 adminpages/addons.php:203
122
+ #: adminpages/addons.php:206 adminpages/addons.php:207
123
  #: adminpages/addons.php:213 adminpages/addons.php:219
124
  msgid "Download"
125
  msgstr ""
126
 
127
  #: adminpages/addons.php:193 adminpages/addons.php:205
128
+ #: adminpages/addons.php:190 adminpages/addons.php:193
129
+ #: adminpages/addons.php:202 adminpages/addons.php:205
130
  #: adminpages/addons.php:206 adminpages/addons.php:218
131
  msgid "Update License"
132
  msgstr ""
133
 
134
  #: adminpages/addons.php:211 adminpages/addons.php:208
135
+ #: adminpages/addons.php:211 adminpages/addons.php:224
136
  msgid "Deactivate"
137
  msgstr ""
138
 
139
  #: adminpages/addons.php:211 adminpages/addons.php:208
140
+ #: adminpages/addons.php:211 adminpages/addons.php:224
141
  #, php-format
142
  msgid "Deactivate %s"
143
  msgstr ""
144
 
145
  #: adminpages/addons.php:215 adminpages/addons.php:212
146
+ #: adminpages/addons.php:215 adminpages/addons.php:228
147
  msgid "Activate"
148
  msgstr ""
149
 
150
  #: adminpages/addons.php:215 adminpages/addons.php:212
151
+ #: adminpages/addons.php:215 adminpages/addons.php:228
152
  #, php-format
153
  msgid "Activate %s"
154
  msgstr ""
155
 
156
  #: adminpages/addons.php:216 adminpages/addons.php:213
157
+ #: adminpages/addons.php:216 adminpages/addons.php:229
158
  msgid "Delete"
159
  msgstr ""
160
 
161
  #: adminpages/addons.php:216 adminpages/addons.php:213
162
+ #: adminpages/addons.php:216 adminpages/addons.php:229
163
  #, php-format
164
  msgid "Delete %s"
165
  msgstr ""
166
 
167
  #: adminpages/addons.php:226 adminpages/addons.php:223
168
+ #: adminpages/addons.php:226 adminpages/addons.php:239
169
  msgid "PMPro Free"
170
  msgstr ""
171
 
172
  #: adminpages/addons.php:228 adminpages/addons.php:225
173
+ #: adminpages/addons.php:228 adminpages/addons.php:241
174
  msgid "PMPro Core"
175
  msgstr ""
176
 
177
  #: adminpages/addons.php:230 adminpages/addons.php:227
178
+ #: adminpages/addons.php:230 adminpages/addons.php:243
179
  msgid "PMPro Plus"
180
  msgstr ""
181
 
182
  #: adminpages/addons.php:232 adminpages/addons.php:229
183
+ #: adminpages/addons.php:232 adminpages/addons.php:245
184
  msgid "WordPress.org"
185
  msgstr ""
186
 
187
+ #: adminpages/addons.php:234 shortcodes/pmpro_account.php:146
188
+ #: adminpages/addons.php:231 adminpages/addons.php:234
189
+ #: adminpages/addons.php:247 shortcodes/pmpro_account.php:145
190
  #: shortcodes/pmpro_account.php:146
191
  msgid "N/A"
192
  msgstr ""
193
 
194
  #: adminpages/addons.php:243 adminpages/addons.php:240
195
+ #: adminpages/addons.php:243 adminpages/addons.php:256
196
  #, php-format
197
  msgid "Version %s"
198
  msgstr ""
199
 
200
  #: adminpages/addons.php:248 adminpages/addons.php:245
201
+ #: adminpages/addons.php:248 adminpages/addons.php:261
202
  #, php-format
203
  msgid "By %s"
204
  msgstr ""
205
 
206
  #: adminpages/addons.php:255 adminpages/addons.php:252
207
+ #: adminpages/addons.php:255 adminpages/addons.php:268
208
  #, php-format
209
  msgid "More information about %s"
210
  msgstr ""
211
 
212
  #: adminpages/addons.php:257 adminpages/addons.php:254
213
+ #: adminpages/addons.php:257 adminpages/addons.php:270
214
  msgid "View details"
215
  msgstr ""
216
 
217
  #: adminpages/addons.php:262 adminpages/addons.php:259
218
+ #: adminpages/addons.php:262 adminpages/addons.php:275
219
  msgid "Visit plugin site"
220
  msgstr ""
221
 
303
  msgid "User Forum"
304
  msgstr ""
305
 
306
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:609
307
  #: adminpages/pagesettings.php:70 includes/adminpages.php:69
308
  #: includes/adminpages.php:70 includes/adminpages.php:116
309
  #: includes/metaboxes.php:131 adminpages/admin_header.php:128
335
  msgstr ""
336
 
337
  #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
338
+ #: shortcodes/pmpro_account.php:109 adminpages/admin_header.php:131
339
  #: adminpages/admin_header.php:152 adminpages/admin_header.php:162
340
  #: adminpages/memberslist.php:115 adminpages/memberslist.php:148
341
  #: adminpages/memberslist.php:158 adminpages/memberslist.php:168
342
  #: pages/account.php:52 pages/account.php:56 pages/account.php:77
343
+ #: shortcodes/pmpro_account.php:106 shortcodes/pmpro_account.php:108
344
+ #: shortcodes/pmpro_account.php:109
345
  msgid "Email"
346
  msgstr ""
347
 
452
  msgstr ""
453
 
454
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
455
+ #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:662
456
  #: adminpages/paymentsettings.php:210
457
  #: classes/gateways/class.pmprogateway_stripe.php:209 includes/profile.php:110
458
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
463
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
464
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
465
  #: adminpages/membershiplevels.php:658 adminpages/membershiplevels.php:667
466
+ #: adminpages/membershiplevels.php:668 adminpages/membershiplevels.php:672
467
+ #: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:414
468
+ #: adminpages/paymentsettings.php:429 adminpages/paymentsettings.php:434
469
+ #: adminpages/paymentsettings.php:436 adminpages/paymentsettings.php:454
470
+ #: adminpages/paymentsettings.php:459 adminpages/paymentsettings.php:461
471
  #: classes/gateways/class.pmprogateway_stripe.php:173
472
  #: classes/gateways/class.pmprogateway_stripe.php:174
473
  #: classes/gateways/class.pmprogateway_stripe.php:184
474
  #: classes/gateways/class.pmprogateway_stripe.php:206
475
+ #: classes/gateways/class.pmprogateway_stripe.php:208
476
+ #: classes/gateways/class.pmprogateway_stripe.php:209 includes/profile.php:101
477
  #: includes/profile.php:105 includes/profile.php:110 includes/profile.php:121
478
  #: includes/profile.php:123
479
  msgid "No"
514
  msgid "multisite only"
515
  msgstr ""
516
 
517
+ #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:662
518
  #: adminpages/paymentsettings.php:211
519
  #: classes/gateways/class.pmprogateway_stripe.php:210 includes/profile.php:111
520
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
522
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
523
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
524
  #: adminpages/membershiplevels.php:658 adminpages/membershiplevels.php:667
525
+ #: adminpages/membershiplevels.php:668 adminpages/membershiplevels.php:672
526
+ #: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:415
527
+ #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:430
528
+ #: adminpages/paymentsettings.php:435 adminpages/paymentsettings.php:437
529
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:460
530
+ #: adminpages/paymentsettings.php:462
531
  #: classes/gateways/class.pmprogateway_stripe.php:174
532
  #: classes/gateways/class.pmprogateway_stripe.php:175
533
  #: classes/gateways/class.pmprogateway_stripe.php:185
534
  #: classes/gateways/class.pmprogateway_stripe.php:207
535
+ #: classes/gateways/class.pmprogateway_stripe.php:209
536
+ #: classes/gateways/class.pmprogateway_stripe.php:210 includes/profile.php:102
537
  #: includes/profile.php:106 includes/profile.php:111 includes/profile.php:122
538
  #: includes/profile.php:124
539
  msgid "Yes"
676
  msgstr ""
677
 
678
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:587
679
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:631
680
  #: adminpages/memberslist.php:164 adminpages/orders.php:1134
681
  #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
682
  #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
689
  #: adminpages/membershiplevels.php:511 adminpages/membershiplevels.php:513
690
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:541
691
  #: adminpages/membershiplevels.php:583 adminpages/membershiplevels.php:636
692
+ #: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:641
693
+ #: adminpages/memberslist.php:111 adminpages/memberslist.php:144
694
+ #: adminpages/memberslist.php:154 adminpages/memberslist.php:164
695
+ #: adminpages/orders.php:597 adminpages/orders.php:900
696
+ #: adminpages/orders.php:910 adminpages/orders.php:937
697
+ #: adminpages/orders.php:966 adminpages/orders.php:1103
698
+ #: adminpages/orders.php:1134 adminpages/reports/login.php:140
699
  #: adminpages/reports/login.php:142 adminpages/reports/login.php:158
700
  #: adminpages/templates/orders-email.php:46
701
  #: adminpages/templates/orders-print.php:75
707
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
708
  #: adminpages/orders.php:211 adminpages/orders.php:261
709
  #: adminpages/orders.php:333 adminpages/orders.php:344
710
+ #: adminpages/orders.php:362 adminpages/orders.php:375
711
  msgid "This will be generated when you save."
712
  msgstr ""
713
 
720
  #: adminpages/discountcodes.php:588 adminpages/orders.php:215
721
  #: adminpages/orders.php:265 adminpages/orders.php:337
722
  #: adminpages/orders.php:349 adminpages/orders.php:366
723
+ #: adminpages/orders.php:380 adminpages/orders.php:598
724
+ #: adminpages/orders.php:901 adminpages/orders.php:911
725
+ #: adminpages/orders.php:938 adminpages/orders.php:967
726
+ #: adminpages/orders.php:1104 adminpages/orders.php:1135
727
  msgid "Code"
728
  msgstr ""
729
 
735
 
736
  #: adminpages/discountcodes.php:372
737
  #: classes/gateways/class.pmprogateway_braintree.php:327
738
+ #: classes/gateways/class.pmprogateway_stripe.php:521 pages/billing.php:319
739
+ #: pages/checkout.php:582 adminpages/discountcodes.php:367
740
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
741
  #: adminpages/discountcodes.php:372
742
  #: classes/gateways/class.pmprogateway_braintree.php:308
743
  #: classes/gateways/class.pmprogateway_braintree.php:321
744
  #: classes/gateways/class.pmprogateway_braintree.php:323
745
  #: classes/gateways/class.pmprogateway_braintree.php:326
746
+ #: classes/gateways/class.pmprogateway_braintree.php:327
747
  #: classes/gateways/class.pmprogateway_stripe.php:454
748
  #: classes/gateways/class.pmprogateway_stripe.php:455
749
  #: classes/gateways/class.pmprogateway_stripe.php:465
750
  #: classes/gateways/class.pmprogateway_stripe.php:469
751
  #: classes/gateways/class.pmprogateway_stripe.php:495
752
  #: classes/gateways/class.pmprogateway_stripe.php:498
753
+ #: classes/gateways/class.pmprogateway_stripe.php:500
754
+ #: classes/gateways/class.pmprogateway_stripe.php:503 pages/billing.php:249
755
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
756
+ #: pages/billing.php:268 pages/billing.php:310 pages/checkout.php:508
757
+ #: pages/checkout.php:524 pages/checkout.php:525 pages/checkout.php:532
758
+ #: pages/checkout.php:553 pages/checkout.php:562 pages/checkout.php:571
759
+ #: pages/checkout.php:575
760
  msgid "Expiration Date"
761
  msgstr ""
762
 
829
 
830
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
831
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
832
+ #: classes/gateways/class.pmprogateway_stripe.php:588
833
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
834
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
835
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
846
  #: classes/gateways/class.pmprogateway_stripe.php:562
847
  #: classes/gateways/class.pmprogateway_stripe.php:566
848
  #: classes/gateways/class.pmprogateway_stripe.php:567
849
+ #: classes/gateways/class.pmprogateway_stripe.php:570
850
  msgid "Day(s)"
851
  msgstr ""
852
 
853
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
854
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
855
+ #: classes/gateways/class.pmprogateway_stripe.php:588
856
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
857
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
858
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
869
  #: classes/gateways/class.pmprogateway_stripe.php:562
870
  #: classes/gateways/class.pmprogateway_stripe.php:566
871
  #: classes/gateways/class.pmprogateway_stripe.php:567
872
+ #: classes/gateways/class.pmprogateway_stripe.php:570
873
  msgid "Month(s)"
874
  msgstr ""
875
 
876
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
877
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
878
+ #: classes/gateways/class.pmprogateway_stripe.php:588
879
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
880
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
881
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
892
  #: classes/gateways/class.pmprogateway_stripe.php:562
893
  #: classes/gateways/class.pmprogateway_stripe.php:566
894
  #: classes/gateways/class.pmprogateway_stripe.php:567
895
+ #: classes/gateways/class.pmprogateway_stripe.php:570
896
  msgid "Week(s)"
897
  msgstr ""
898
 
899
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
900
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
901
+ #: classes/gateways/class.pmprogateway_stripe.php:588
902
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
903
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
904
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
915
  #: classes/gateways/class.pmprogateway_stripe.php:562
916
  #: classes/gateways/class.pmprogateway_stripe.php:566
917
  #: classes/gateways/class.pmprogateway_stripe.php:567
918
+ #: classes/gateways/class.pmprogateway_stripe.php:570
919
  msgid "Year(s)"
920
  msgstr ""
921
 
1100
  "select customers."
1101
  msgstr ""
1102
 
1103
+ #: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:664
1104
  #: adminpages/orders.php:1239 adminpages/discountcodes.php:614
1105
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
1106
  #: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
1108
  #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
1109
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
1110
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
1111
+ #: adminpages/membershiplevels.php:670 adminpages/membershiplevels.php:674
1112
+ #: adminpages/orders.php:658 adminpages/orders.php:961
1113
+ #: adminpages/orders.php:979 adminpages/orders.php:989
1114
+ #: adminpages/orders.php:992 adminpages/orders.php:1021
1115
+ #: adminpages/orders.php:1050 adminpages/orders.php:1205
1116
+ #: adminpages/orders.php:1239
1117
  msgid "edit"
1118
  msgstr ""
1119
 
1128
  "code anymore."
1129
  msgstr ""
1130
 
1131
+ #: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:664
1132
  #: adminpages/orders.php:1245 adminpages/discountcodes.php:617
1133
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
1134
  #: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
1136
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1137
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1138
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
1139
+ #: adminpages/membershiplevels.php:670 adminpages/membershiplevels.php:674
1140
+ #: adminpages/orders.php:664 adminpages/orders.php:967
1141
+ #: adminpages/orders.php:985 adminpages/orders.php:995
1142
+ #: adminpages/orders.php:998 adminpages/orders.php:1027
1143
+ #: adminpages/orders.php:1056 adminpages/orders.php:1211
1144
+ #: adminpages/orders.php:1245
1145
  msgid "delete"
1146
  msgstr ""
1147
 
1314
  msgid "Add New Membership Level"
1315
  msgstr ""
1316
 
1317
+ #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:632
1318
  #: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
1319
  #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
1320
  #: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
1321
  #: adminpages/membershiplevels.php:514 adminpages/membershiplevels.php:541
1322
  #: adminpages/membershiplevels.php:542 adminpages/membershiplevels.php:584
1323
  #: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:638
1324
+ #: adminpages/membershiplevels.php:642 adminpages/reports/login.php:142
1325
+ #: adminpages/reports/login.php:144 adminpages/reports/login.php:160
1326
  msgid "Name"
1327
  msgstr ""
1328
 
1331
  msgid "Confirmation Message"
1332
  msgstr ""
1333
 
1334
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:633
1335
  #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1336
  #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:338
1337
  #: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:585
1338
  #: adminpages/membershiplevels.php:638 adminpages/membershiplevels.php:639
1339
+ #: adminpages/membershiplevels.php:643
1340
  msgid "Billing Details"
1341
  msgstr ""
1342
 
1343
  #: adminpages/membershiplevels.php:372
1344
+ #: classes/gateways/class.pmprogateway_stripe.php:686
1345
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1346
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1347
  #: adminpages/membershiplevels.php:373
1352
  #: classes/gateways/class.pmprogateway_stripe.php:660
1353
  #: classes/gateways/class.pmprogateway_stripe.php:664
1354
  #: classes/gateways/class.pmprogateway_stripe.php:665
1355
+ #: classes/gateways/class.pmprogateway_stripe.php:668
1356
  msgid "per"
1357
  msgstr ""
1358
 
1402
  #: adminpages/paymentsettings.php:179
1403
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1404
  #: classes/gateways/class.pmprogateway_paypal.php:118
1405
+ #: classes/gateways/class.pmprogateway_paypal.php:130
1406
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1407
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1408
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:145
1409
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1410
  msgid "Note"
1411
  msgstr ""
1496
  msgid "Categories"
1497
  msgstr ""
1498
 
1499
+ #: adminpages/membershiplevels.php:507 adminpages/membershiplevels.php:516
1500
  #: adminpages/membershiplevels.php:517
1501
  msgid "Save Level"
1502
  msgstr ""
1503
 
1504
+ #: adminpages/membershiplevels.php:508 adminpages/orders.php:796
1505
+ #: pages/billing.php:401 pages/cancel.php:83 shortcodes/pmpro_account.php:72
1506
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1507
  #: adminpages/orders.php:511 adminpages/orders.php:561
1508
  #: adminpages/orders.php:633 adminpages/orders.php:662
1509
+ #: adminpages/orders.php:765 adminpages/orders.php:796 pages/account.php:44
1510
+ #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1511
+ #: pages/billing.php:339 pages/billing.php:342 pages/billing.php:344
1512
+ #: pages/billing.php:348 pages/billing.php:392 pages/cancel.php:71
1513
+ #: shortcodes/pmpro_account.php:70 shortcodes/pmpro_account.php:72
1514
  #: shortcodes/pmpro_account.php:73
1515
  msgid "Cancel"
1516
  msgstr ""
1517
 
1518
+ #: adminpages/membershiplevels.php:609 adminpages/membershiplevels.php:490
1519
  #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1520
  #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
1521
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:618
1523
  msgid "Add New Level"
1524
  msgstr ""
1525
 
1526
+ #: adminpages/membershiplevels.php:612 adminpages/membershiplevels.php:615
1527
  #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1528
  #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1529
  #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
1535
  msgid "Search Levels"
1536
  msgstr ""
1537
 
1538
+ #: adminpages/membershiplevels.php:621 adminpages/membershiplevels.php:579
1539
  #: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:631
1540
  msgid "Drag and drop membership levels to reorder them on the Levels page."
1541
  msgstr ""
1542
 
1543
+ #: adminpages/membershiplevels.php:634 pages/cancel.php:61
1544
+ #: pages/confirmation.php:89 pages/invoice.php:70
1545
+ #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1546
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1547
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1548
  #: adminpages/membershiplevels.php:586 adminpages/membershiplevels.php:639
1549
+ #: adminpages/membershiplevels.php:640 adminpages/membershiplevels.php:644
1550
+ #: pages/account.php:20 pages/cancel.php:53 pages/confirmation.php:81
1551
+ #: pages/confirmation.php:83 pages/invoice.php:68 pages/invoice.php:70
1552
+ #: shortcodes/pmpro_account.php:45 shortcodes/pmpro_account.php:46
1553
  msgid "Expiration"
1554
  msgstr ""
1555
 
1556
+ #: adminpages/membershiplevels.php:635 adminpages/membershiplevels.php:511
1557
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1558
  #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1559
  #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:640
1560
+ #: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:645
1561
  msgid "Allow Signups"
1562
  msgstr ""
1563
 
1564
+ #: adminpages/membershiplevels.php:650 adminpages/membershiplevels.php:534
1565
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1566
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1567
  #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:655
1568
+ #: adminpages/membershiplevels.php:656 adminpages/membershiplevels.php:660
1569
  msgid "FREE"
1570
  msgstr ""
1571
 
1572
+ #: adminpages/membershiplevels.php:659 adminpages/membershiplevels.php:560
1573
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1574
  #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1575
  #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:664
1576
+ #: adminpages/membershiplevels.php:665 adminpages/membershiplevels.php:669
1577
  msgid "After"
1578
  msgstr ""
1579
 
1580
+ #: adminpages/membershiplevels.php:664 adminpages/membershiplevels.php:566
1581
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1582
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1583
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
1584
+ #: adminpages/membershiplevels.php:670 adminpages/membershiplevels.php:674
1585
  #, php-format
1586
  msgid ""
1587
  "Are you sure you want to delete membership level %s? All subscriptions will "
1588
  "be cancelled."
1589
  msgstr ""
1590
 
1591
+ #: adminpages/membershiplevels.php:664 adminpages/orders.php:1242
1592
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1593
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1594
  #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1595
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1596
+ #: adminpages/membershiplevels.php:674 adminpages/orders.php:661
1597
+ #: adminpages/orders.php:964 adminpages/orders.php:982
1598
+ #: adminpages/orders.php:992 adminpages/orders.php:995
1599
+ #: adminpages/orders.php:1024 adminpages/orders.php:1053
1600
+ #: adminpages/orders.php:1208 adminpages/orders.php:1242
1601
  msgid "copy"
1602
  msgstr ""
1603
 
1614
  #: adminpages/memberslist.php:26 adminpages/orders.php:522
1615
  #: adminpages/orders.php:591 adminpages/orders.php:698
1616
  #: adminpages/orders.php:727 adminpages/orders.php:833
1617
+ #: adminpages/orders.php:864
1618
  msgid "Export to CSV"
1619
  msgstr ""
1620
 
1623
  #: adminpages/reports/sales.php:202 adminpages/memberslist.php:30
1624
  #: adminpages/orders.php:603 adminpages/orders.php:710
1625
  #: adminpages/orders.php:739 adminpages/orders.php:848
1626
+ #: adminpages/orders.php:879 adminpages/reports/login.php:65
1627
+ #: adminpages/reports/login.php:67 adminpages/reports/login.php:83
1628
+ #: adminpages/reports/memberships.php:256
1629
  #: adminpages/reports/memberships.php:263
1630
  #: adminpages/reports/memberships.php:276
1631
  #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
1636
 
1637
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1638
  #: adminpages/reports/memberships.php:303 adminpages/reports/sales.php:225
1639
+ #: classes/class.pmproemail.php:145 classes/class.pmproemail.php:189
1640
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:67
1641
  #: adminpages/reports/login.php:69 adminpages/reports/login.php:85
1642
  #: adminpages/reports/memberships.php:281
1675
  msgid "%d members found."
1676
  msgstr ""
1677
 
1678
+ #: adminpages/memberslist.php:165 pages/checkout.php:191
1679
+ #: shortcodes/pmpro_account.php:108 adminpages/memberslist.php:112
1680
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1681
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1682
  #: pages/account.php:76 pages/checkout.php:168 pages/checkout.php:171
1683
  #: pages/checkout.php:173 pages/checkout.php:180 pages/checkout.php:182
1684
  #: pages/checkout.php:184 shortcodes/pmpro_account.php:105
1685
+ #: shortcodes/pmpro_account.php:107 shortcodes/pmpro_account.php:108
1686
  msgid "Username"
1687
  msgstr ""
1688
 
1698
  msgid "Last&nbsp;Name"
1699
  msgstr ""
1700
 
1701
+ #: adminpages/memberslist.php:170 pages/billing.php:80 pages/checkout.php:326
1702
+ #: pages/confirmation.php:67 pages/invoice.php:48
1703
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1704
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
1705
  #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
1706
  #: pages/billing.php:62 pages/billing.php:71 pages/billing.php:74
1707
+ #: pages/billing.php:76 pages/checkout.php:298 pages/checkout.php:300
1708
+ #: pages/checkout.php:302 pages/checkout.php:311 pages/checkout.php:314
1709
+ #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
1710
+ #: pages/confirmation.php:59 pages/confirmation.php:61 pages/invoice.php:46
1711
+ #: pages/invoice.php:48
1712
  msgid "Billing Address"
1713
  msgstr ""
1714
 
1742
  msgid "Ended"
1743
  msgstr ""
1744
 
1745
+ #: adminpages/memberslist.php:262 adminpages/reports/login.php:228
1746
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1747
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1748
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
1750
  msgid "No members found."
1751
  msgstr ""
1752
 
1753
+ #: adminpages/memberslist.php:262 adminpages/reports/login.php:228
1754
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1755
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1756
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
1780
 
1781
  #: adminpages/orders.php:285 adminpages/orders.php:119
1782
  #: adminpages/orders.php:169 adminpages/orders.php:270
1783
+ #: adminpages/orders.php:284 adminpages/orders.php:285
1784
  msgid "Order saved successfully."
1785
  msgstr ""
1786
 
1787
  #: adminpages/orders.php:288 adminpages/orders.php:124
1788
  #: adminpages/orders.php:174 adminpages/orders.php:275
1789
+ #: adminpages/orders.php:287 adminpages/orders.php:288
1790
  msgid "Error updating order timestamp."
1791
  msgstr ""
1792
 
1793
  #: adminpages/orders.php:292 adminpages/orders.php:130
1794
  #: adminpages/orders.php:180 adminpages/orders.php:281
1795
+ #: adminpages/orders.php:291 adminpages/orders.php:292
1796
  msgid "Error saving order."
1797
  msgstr ""
1798
 
1799
  #: adminpages/orders.php:352 adminpages/orders.php:195
1800
  #: adminpages/orders.php:245 adminpages/orders.php:317
1801
  #: adminpages/orders.php:321 adminpages/orders.php:346
1802
+ #: adminpages/orders.php:352
1803
  msgid "Order"
1804
  msgstr ""
1805
 
1806
  #: adminpages/orders.php:354 adminpages/orders.php:197
1807
  #: adminpages/orders.php:247 adminpages/orders.php:319
1808
  #: adminpages/orders.php:323 adminpages/orders.php:348
1809
+ #: adminpages/orders.php:354
1810
  msgid "New Order"
1811
  msgstr ""
1812
 
1813
  #: adminpages/orders.php:390 adminpages/orders.php:220
1814
  #: adminpages/orders.php:270 adminpages/orders.php:342
1815
  #: adminpages/orders.php:359 adminpages/orders.php:371
1816
+ #: adminpages/orders.php:390
1817
  msgid "Randomly generated for you."
1818
  msgstr ""
1819
 
1820
  #: adminpages/orders.php:395 adminpages/orders.php:225
1821
  #: adminpages/orders.php:275 adminpages/orders.php:347
1822
  #: adminpages/orders.php:364 adminpages/orders.php:376
1823
+ #: adminpages/orders.php:395
1824
  msgid "User ID"
1825
  msgstr ""
1826
 
1827
  #: adminpages/orders.php:407 adminpages/orders.php:234
1828
  #: adminpages/orders.php:284 adminpages/orders.php:356
1829
  #: adminpages/orders.php:376 adminpages/orders.php:385
1830
+ #: adminpages/orders.php:407
1831
  msgid "Membership Level ID"
1832
  msgstr ""
1833
 
1834
  #: adminpages/orders.php:420 adminpages/orders.php:243
1835
  #: adminpages/orders.php:293 adminpages/orders.php:365
1836
  #: adminpages/orders.php:389 adminpages/orders.php:394
1837
+ #: adminpages/orders.php:420
1838
  msgid "Billing Name"
1839
  msgstr ""
1840
 
1841
  #: adminpages/orders.php:432 adminpages/orders.php:251
1842
  #: adminpages/orders.php:301 adminpages/orders.php:373
1843
  #: adminpages/orders.php:401 adminpages/orders.php:402
1844
+ #: adminpages/orders.php:432
1845
  msgid "Billing Street"
1846
  msgstr ""
1847
 
1848
  #: adminpages/orders.php:443 adminpages/orders.php:258
1849
  #: adminpages/orders.php:308 adminpages/orders.php:380
1850
  #: adminpages/orders.php:409 adminpages/orders.php:412
1851
+ #: adminpages/orders.php:443
1852
  msgid "Billing City"
1853
  msgstr ""
1854
 
1855
  #: adminpages/orders.php:454 adminpages/orders.php:265
1856
  #: adminpages/orders.php:315 adminpages/orders.php:387
1857
  #: adminpages/orders.php:416 adminpages/orders.php:423
1858
+ #: adminpages/orders.php:454
1859
  msgid "Billing State"
1860
  msgstr ""
1861
 
1862
  #: adminpages/orders.php:465 adminpages/orders.php:272
1863
  #: adminpages/orders.php:322 adminpages/orders.php:394
1864
  #: adminpages/orders.php:423 adminpages/orders.php:434
1865
+ #: adminpages/orders.php:465
1866
  msgid "Billing Postal Code"
1867
  msgstr ""
1868
 
1869
  #: adminpages/orders.php:476 adminpages/orders.php:279
1870
  #: adminpages/orders.php:329 adminpages/orders.php:401
1871
  #: adminpages/orders.php:430 adminpages/orders.php:445
1872
+ #: adminpages/orders.php:476
1873
  msgid "Billing Country"
1874
  msgstr ""
1875
 
1876
  #: adminpages/orders.php:488 adminpages/orders.php:287
1877
  #: adminpages/orders.php:337 adminpages/orders.php:409
1878
  #: adminpages/orders.php:438 adminpages/orders.php:457
1879
+ #: adminpages/orders.php:488
1880
  msgid "Billing Phone"
1881
  msgstr ""
1882
 
1883
  #: adminpages/orders.php:501 adminpages/orders.php:296
1884
  #: adminpages/orders.php:346 adminpages/orders.php:418
1885
  #: adminpages/orders.php:447 adminpages/orders.php:470
1886
+ #: adminpages/orders.php:501
1887
  msgid "Sub Total"
1888
  msgstr ""
1889
 
1891
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1892
  #: adminpages/orders.php:304 adminpages/orders.php:354
1893
  #: adminpages/orders.php:426 adminpages/orders.php:455
1894
+ #: adminpages/orders.php:481 adminpages/orders.php:512
1895
+ #: adminpages/templates/orders-email.php:60
1896
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:78
1897
  #: pages/invoice.php:80
1898
  msgid "Tax"
1901
  #: adminpages/orders.php:523 adminpages/orders.php:312
1902
  #: adminpages/orders.php:362 adminpages/orders.php:434
1903
  #: adminpages/orders.php:463 adminpages/orders.php:492
1904
+ #: adminpages/orders.php:523
1905
  msgid "Coupon Amount"
1906
  msgstr ""
1907
 
1910
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1911
  #: adminpages/orders.php:320 adminpages/orders.php:370
1912
  #: adminpages/orders.php:442 adminpages/orders.php:471
1913
+ #: adminpages/orders.php:504 adminpages/orders.php:535
1914
+ #: adminpages/orders.php:602 adminpages/orders.php:905
1915
+ #: adminpages/orders.php:915 adminpages/orders.php:942
1916
+ #: adminpages/orders.php:971 adminpages/orders.php:1108
1917
+ #: adminpages/orders.php:1139 adminpages/templates/orders-email.php:64
1918
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:82
1919
  #: pages/invoice.php:84
1920
  msgid "Total"
1923
  #: adminpages/orders.php:544 adminpages/orders.php:325
1924
  #: adminpages/orders.php:375 adminpages/orders.php:447
1925
  #: adminpages/orders.php:476 adminpages/orders.php:513
1926
+ #: adminpages/orders.php:544
1927
  msgid "Should be subtotal + tax - couponamount."
1928
  msgstr ""
1929
 
1930
  #: adminpages/orders.php:549 adminpages/orders.php:330
1931
  #: adminpages/orders.php:380 adminpages/orders.php:452
1932
  #: adminpages/orders.php:481 adminpages/orders.php:518
1933
+ #: adminpages/orders.php:549
1934
  msgid "Payment Type"
1935
  msgstr ""
1936
 
1937
  #: adminpages/orders.php:559 adminpages/orders.php:335
1938
  #: adminpages/orders.php:385 adminpages/orders.php:457
1939
  #: adminpages/orders.php:486 adminpages/orders.php:528
1940
+ #: adminpages/orders.php:559
1941
  msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1942
  msgstr ""
1943
 
1944
  #: adminpages/orders.php:563
1945
  #: classes/gateways/class.pmprogateway_braintree.php:310
1946
+ #: classes/gateways/class.pmprogateway_stripe.php:473 pages/billing.php:271
1947
+ #: pages/checkout.php:534 adminpages/orders.php:339 adminpages/orders.php:389
1948
  #: adminpages/orders.php:461 adminpages/orders.php:490
1949
+ #: adminpages/orders.php:532 adminpages/orders.php:563
1950
  #: classes/gateways/class.pmprogateway_braintree.php:291
1951
  #: classes/gateways/class.pmprogateway_braintree.php:304
1952
  #: classes/gateways/class.pmprogateway_braintree.php:306
1953
  #: classes/gateways/class.pmprogateway_braintree.php:309
1954
+ #: classes/gateways/class.pmprogateway_braintree.php:310
1955
  #: classes/gateways/class.pmprogateway_stripe.php:408
1956
  #: classes/gateways/class.pmprogateway_stripe.php:409
1957
  #: classes/gateways/class.pmprogateway_stripe.php:419
1958
  #: classes/gateways/class.pmprogateway_stripe.php:423
1959
  #: classes/gateways/class.pmprogateway_stripe.php:447
1960
  #: classes/gateways/class.pmprogateway_stripe.php:450
1961
+ #: classes/gateways/class.pmprogateway_stripe.php:452
1962
+ #: classes/gateways/class.pmprogateway_stripe.php:455 pages/billing.php:234
1963
  #: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
1964
+ #: pages/billing.php:253 pages/billing.php:262 pages/checkout.php:493
1965
+ #: pages/checkout.php:507 pages/checkout.php:510 pages/checkout.php:516
1966
+ #: pages/checkout.php:517 pages/checkout.php:525 pages/checkout.php:527
1967
  msgid "Card Type"
1968
  msgstr ""
1969
 
1970
  #: adminpages/orders.php:571 adminpages/orders.php:344
1971
  #: adminpages/orders.php:394 adminpages/orders.php:466
1972
  #: adminpages/orders.php:495 adminpages/orders.php:540
1973
+ #: adminpages/orders.php:571
1974
  msgid "e.g. Visa, MasterCard, AMEX, etc"
1975
  msgstr ""
1976
 
1978
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
1979
  #: adminpages/orders.php:348 adminpages/orders.php:398
1980
  #: adminpages/orders.php:470 adminpages/orders.php:499
1981
+ #: adminpages/orders.php:544 adminpages/orders.php:575
1982
+ #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
1983
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
1984
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
1985
  #: classes/gateways/class.pmprogateway_twocheckout.php:148
1989
  #: adminpages/orders.php:584 adminpages/orders.php:353
1990
  #: adminpages/orders.php:403 adminpages/orders.php:475
1991
  #: adminpages/orders.php:504 adminpages/orders.php:553
1992
+ #: adminpages/orders.php:584
1993
  msgid "Obscure all but last 4 digits."
1994
  msgstr ""
1995
 
1996
  #: adminpages/orders.php:592 adminpages/orders.php:358
1997
  #: adminpages/orders.php:408 adminpages/orders.php:480
1998
  #: adminpages/orders.php:509 adminpages/orders.php:561
1999
+ #: adminpages/orders.php:592
2000
  msgid "Expiration Month"
2001
  msgstr ""
2002
 
2003
  #: adminpages/orders.php:600 adminpages/orders.php:365
2004
  #: adminpages/orders.php:415 adminpages/orders.php:487
2005
  #: adminpages/orders.php:516 adminpages/orders.php:569
2006
+ #: adminpages/orders.php:600
2007
  msgid "Expiration Year"
2008
  msgstr ""
2009
 
2011
  #: adminpages/orders.php:373 adminpages/orders.php:423
2012
  #: adminpages/orders.php:495 adminpages/orders.php:524
2013
  #: adminpages/orders.php:579 adminpages/orders.php:606
2014
+ #: adminpages/orders.php:610 adminpages/orders.php:909
2015
+ #: adminpages/orders.php:919 adminpages/orders.php:946
2016
+ #: adminpages/orders.php:975 adminpages/orders.php:1112
2017
+ #: adminpages/orders.php:1143
2018
  msgid "Status"
2019
  msgstr ""
2020
 
2022
  #: adminpages/orders.php:394 adminpages/orders.php:444
2023
  #: adminpages/orders.php:516 adminpages/orders.php:545
2024
  #: adminpages/orders.php:604 adminpages/orders.php:612
2025
+ #: adminpages/orders.php:643 adminpages/orders.php:907
2026
+ #: adminpages/orders.php:917 adminpages/orders.php:944
2027
+ #: adminpages/orders.php:973 adminpages/orders.php:1110
2028
+ #: adminpages/orders.php:1141
2029
  msgid "Gateway"
2030
  msgstr ""
2031
 
2033
  #: adminpages/orders.php:411 adminpages/orders.php:461
2034
  #: adminpages/orders.php:462 adminpages/orders.php:534
2035
  #: adminpages/orders.php:563 adminpages/orders.php:633
2036
+ #: adminpages/orders.php:664 adminpages/paymentsettings.php:124
2037
+ #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
2038
+ #: adminpages/paymentsettings.php:184
2039
  msgid "Gateway Environment"
2040
  msgstr ""
2041
 
2043
  #: adminpages/orders.php:415 adminpages/orders.php:465
2044
  #: adminpages/orders.php:466 adminpages/orders.php:538
2045
  #: adminpages/orders.php:567 adminpages/orders.php:640
2046
+ #: adminpages/orders.php:671 adminpages/paymentsettings.php:128
2047
+ #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
2048
+ #: adminpages/paymentsettings.php:188
2049
  msgid "Sandbox/Testing"
2050
  msgstr ""
2051
 
2053
  #: adminpages/orders.php:416 adminpages/orders.php:466
2054
  #: adminpages/orders.php:467 adminpages/orders.php:539
2055
  #: adminpages/orders.php:568 adminpages/orders.php:642
2056
+ #: adminpages/orders.php:673 adminpages/paymentsettings.php:129
2057
+ #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
2058
+ #: adminpages/paymentsettings.php:189
2059
  msgid "Live/Production"
2060
  msgstr ""
2061
 
2062
  #: adminpages/orders.php:681 adminpages/orders.php:423
2063
  #: adminpages/orders.php:473 adminpages/orders.php:474
2064
  #: adminpages/orders.php:546 adminpages/orders.php:575
2065
+ #: adminpages/orders.php:650 adminpages/orders.php:681
2066
  msgid "Payment Transaction ID"
2067
  msgstr ""
2068
 
2069
  #: adminpages/orders.php:690 adminpages/orders.php:428
2070
  #: adminpages/orders.php:478 adminpages/orders.php:479
2071
  #: adminpages/orders.php:551 adminpages/orders.php:580
2072
+ #: adminpages/orders.php:659 adminpages/orders.php:690
2073
  msgid "Generated by the gateway. Useful to cross reference orders."
2074
  msgstr ""
2075
 
2076
  #: adminpages/orders.php:695 adminpages/orders.php:432
2077
  #: adminpages/orders.php:482 adminpages/orders.php:483
2078
  #: adminpages/orders.php:555 adminpages/orders.php:584
2079
+ #: adminpages/orders.php:664 adminpages/orders.php:695
2080
  msgid "Subscription Transaction ID"
2081
  msgstr ""
2082
 
2083
  #: adminpages/orders.php:705 adminpages/orders.php:437
2084
  #: adminpages/orders.php:487 adminpages/orders.php:488
2085
  #: adminpages/orders.php:560 adminpages/orders.php:589
2086
+ #: adminpages/orders.php:674 adminpages/orders.php:705
2087
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
2088
  msgstr ""
2089
 
2090
  #: adminpages/orders.php:710 adminpages/orders.php:1144 pages/invoice.php:107
2091
+ #: shortcodes/pmpro_account.php:125 adminpages/orders.php:442
2092
  #: adminpages/orders.php:492 adminpages/orders.php:493
2093
  #: adminpages/orders.php:565 adminpages/orders.php:594
2094
  #: adminpages/orders.php:607 adminpages/orders.php:679
2095
+ #: adminpages/orders.php:710 adminpages/orders.php:910
2096
+ #: adminpages/orders.php:920 adminpages/orders.php:947
2097
+ #: adminpages/orders.php:976 adminpages/orders.php:1113
2098
+ #: adminpages/orders.php:1144 pages/account.php:91 pages/invoice.php:105
2099
  #: pages/invoice.php:107 shortcodes/pmpro_account.php:122
2100
+ #: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:125
2101
  msgid "Date"
2102
  msgstr ""
2103
 
2104
  #: adminpages/orders.php:747 adminpages/orders.php:477
2105
  #: adminpages/orders.php:527 adminpages/orders.php:599
2106
  #: adminpages/orders.php:628 adminpages/orders.php:716
2107
+ #: adminpages/orders.php:747
2108
  msgid "Affiliate ID"
2109
  msgstr ""
2110
 
2111
  #: adminpages/orders.php:759 adminpages/orders.php:485
2112
  #: adminpages/orders.php:535 adminpages/orders.php:607
2113
  #: adminpages/orders.php:636 adminpages/orders.php:728
2114
+ #: adminpages/orders.php:759
2115
  msgid "Affiliate SubID"
2116
  msgstr ""
2117
 
2118
  #: adminpages/orders.php:773 adminpages/orders.php:495
2119
  #: adminpages/orders.php:545 adminpages/orders.php:617
2120
  #: adminpages/orders.php:646 adminpages/orders.php:742
2121
+ #: adminpages/orders.php:773
2122
  msgid "Notes"
2123
  msgstr ""
2124
 
2125
  #: adminpages/orders.php:795 adminpages/orders.php:510
2126
  #: adminpages/orders.php:560 adminpages/orders.php:632
2127
  #: adminpages/orders.php:661 adminpages/orders.php:764
2128
+ #: adminpages/orders.php:795
2129
  msgid "Save Order"
2130
  msgstr ""
2131
 
2132
  #: adminpages/orders.php:831 adminpages/orders.php:667
2133
  #: adminpages/orders.php:696 adminpages/orders.php:800
2134
+ #: adminpages/orders.php:831
2135
  msgid "Email Invoice"
2136
  msgstr ""
2137
 
2138
  #: adminpages/orders.php:834 adminpages/orders.php:670
2139
  #: adminpages/orders.php:699 adminpages/orders.php:803
2140
+ #: adminpages/orders.php:834
2141
  msgid "Send an invoice for this order to: "
2142
  msgstr ""
2143
 
2144
  #: adminpages/orders.php:836 adminpages/orders.php:672
2145
  #: adminpages/orders.php:701 adminpages/orders.php:805
2146
+ #: adminpages/orders.php:836
2147
  msgid "Send Email"
2148
  msgstr ""
2149
 
2151
  #: includes/adminpages.php:172 adminpages/orders.php:520
2152
  #: adminpages/orders.php:570 adminpages/orders.php:677
2153
  #: adminpages/orders.php:706 adminpages/orders.php:810
2154
+ #: adminpages/orders.php:841 includes/adminpages.php:17
2155
+ #: includes/adminpages.php:55 includes/adminpages.php:56
2156
+ #: includes/adminpages.php:84 includes/adminpages.php:156
2157
+ #: includes/adminpages.php:163 includes/adminpages.php:167
2158
+ #: includes/adminpages.php:172
2159
  msgid "Orders"
2160
  msgstr ""
2161
 
2162
  #: adminpages/orders.php:843 adminpages/orders.php:521
2163
  #: adminpages/orders.php:571 adminpages/orders.php:678
2164
  #: adminpages/orders.php:707 adminpages/orders.php:812
2165
+ #: adminpages/orders.php:843
2166
  msgid "Add New Order"
2167
  msgstr ""
2168
 
2169
  #: adminpages/orders.php:883 adminpages/orders.php:606
2170
  #: adminpages/orders.php:713 adminpages/orders.php:742
2171
+ #: adminpages/orders.php:852 adminpages/orders.php:883
2172
  msgid "Within a Date Range"
2173
  msgstr ""
2174
 
2175
  #: adminpages/orders.php:885 adminpages/orders.php:607
2176
  #: adminpages/orders.php:714 adminpages/orders.php:743
2177
+ #: adminpages/orders.php:854 adminpages/orders.php:885
2178
  msgid "Predefined Date Range"
2179
  msgstr ""
2180
 
2181
  #: adminpages/orders.php:887 adminpages/orders.php:608
2182
  #: adminpages/orders.php:715 adminpages/orders.php:744
2183
+ #: adminpages/orders.php:856 adminpages/orders.php:887
2184
  msgid "Within a Level"
2185
  msgstr ""
2186
 
2187
  #: adminpages/orders.php:889 adminpages/orders.php:609
2188
  #: adminpages/orders.php:716 adminpages/orders.php:745
2189
+ #: adminpages/orders.php:858 adminpages/orders.php:889
2190
  msgid "Within a Status"
2191
  msgstr ""
2192
 
2193
  #: adminpages/orders.php:892 adminpages/orders.php:612
2194
  #: adminpages/orders.php:719 adminpages/orders.php:748
2195
+ #: adminpages/orders.php:861 adminpages/orders.php:892
2196
  msgid "From"
2197
  msgstr ""
2198
 
2199
  #: adminpages/orders.php:907 adminpages/orders.php:624
2200
  #: adminpages/orders.php:731 adminpages/orders.php:760
2201
+ #: adminpages/orders.php:876 adminpages/orders.php:907
2202
  msgid "To"
2203
  msgstr ""
2204
 
2205
  #: adminpages/orders.php:920 adminpages/orders.php:636
2206
  #: adminpages/orders.php:743 adminpages/orders.php:772
2207
+ #: adminpages/orders.php:889 adminpages/orders.php:920
2208
  msgid "filter by "
2209
  msgstr ""
2210
 
2211
  #: adminpages/orders.php:963 adminpages/orders.php:674
2212
  #: adminpages/orders.php:780 adminpages/orders.php:809
2213
+ #: adminpages/orders.php:932 adminpages/orders.php:963
2214
  msgid "Filter"
2215
  msgstr ""
2216
 
2220
  #: adminpages/orders.php:883 adminpages/orders.php:886
2221
  #: adminpages/orders.php:912 adminpages/orders.php:915
2222
  #: adminpages/orders.php:1029 adminpages/orders.php:1032
2223
+ #: adminpages/orders.php:1060 adminpages/orders.php:1063
2224
  msgid "Search Orders"
2225
  msgstr ""
2226
 
2227
  #: adminpages/orders.php:1127 adminpages/orders.php:590
2228
  #: adminpages/orders.php:893 adminpages/orders.php:903
2229
  #: adminpages/orders.php:930 adminpages/orders.php:959
2230
+ #: adminpages/orders.php:1096 adminpages/orders.php:1127
2231
  #, php-format
2232
  msgid "%d orders found."
2233
  msgstr ""
2237
  #: adminpages/orders.php:599 adminpages/orders.php:902
2238
  #: adminpages/orders.php:912 adminpages/orders.php:939
2239
  #: adminpages/orders.php:968 adminpages/orders.php:1105
2240
+ #: adminpages/orders.php:1136 adminpages/paymentsettings.php:211
2241
+ #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
2242
+ #: adminpages/reports/login.php:141 adminpages/reports/login.php:143
2243
+ #: adminpages/reports/login.php:159
2244
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
2245
  msgid "User"
2246
  msgstr ""
2247
 
2248
  #: adminpages/orders.php:1138 includes/init.php:243 includes/profile.php:27
2249
+ #: pages/checkout.php:42 pages/confirmation.php:53 pages/confirmation.php:70
2250
+ #: pages/confirmation.php:116 pages/invoice.php:28 pages/invoice.php:51
2251
  #: adminpages/orders.php:601 adminpages/orders.php:904
2252
  #: adminpages/orders.php:914 adminpages/orders.php:941
2253
+ #: adminpages/orders.php:970 adminpages/orders.php:1107
2254
+ #: adminpages/orders.php:1138 includes/init.php:214 includes/init.php:217
2255
+ #: includes/init.php:218 includes/init.php:220 includes/init.php:222
2256
+ #: includes/init.php:230 includes/init.php:238 includes/init.php:243
2257
+ #: includes/profile.php:25 includes/profile.php:27 pages/checkout.php:33
2258
+ #: pages/checkout.php:34 pages/checkout.php:35 pages/checkout.php:42
2259
+ #: pages/confirmation.php:46 pages/confirmation.php:47
2260
  #: pages/confirmation.php:62 pages/confirmation.php:64
2261
  #: pages/confirmation.php:103 pages/confirmation.php:105 pages/invoice.php:27
2262
  #: pages/invoice.php:28 pages/invoice.php:49 pages/invoice.php:51
2269
  #: adminpages/orders.php:943 adminpages/orders.php:954
2270
  #: adminpages/orders.php:972 adminpages/orders.php:982
2271
  #: adminpages/orders.php:1011 adminpages/orders.php:1040
2272
+ #: adminpages/orders.php:1109 adminpages/orders.php:1140
2273
+ #: adminpages/orders.php:1186 adminpages/orders.php:1220
2274
  msgid "Payment"
2275
  msgstr ""
2276
 
2277
  #: adminpages/orders.php:1142 adminpages/orders.php:605
2278
  #: adminpages/orders.php:908 adminpages/orders.php:918
2279
  #: adminpages/orders.php:945 adminpages/orders.php:974
2280
+ #: adminpages/orders.php:1111 adminpages/orders.php:1142
2281
  msgid "Transaction IDs"
2282
  msgstr ""
2283
 
2284
  #: adminpages/orders.php:1172 adminpages/orders.php:630
2285
  #: adminpages/orders.php:933 adminpages/orders.php:943
2286
  #: adminpages/orders.php:972 adminpages/orders.php:1001
2287
+ #: adminpages/orders.php:1141 adminpages/orders.php:1172
2288
  msgid "deleted"
2289
  msgstr ""
2290
 
2292
  #: adminpages/orders.php:956 adminpages/orders.php:974
2293
  #: adminpages/orders.php:984 adminpages/orders.php:1013
2294
  #: adminpages/orders.php:1042 adminpages/orders.php:1192
2295
+ #: adminpages/orders.php:1226
2296
  msgid "Subscription"
2297
  msgstr ""
2298
 
2300
  #: adminpages/orders.php:967 adminpages/orders.php:985
2301
  #: adminpages/orders.php:995 adminpages/orders.php:998
2302
  #: adminpages/orders.php:1027 adminpages/orders.php:1056
2303
+ #: adminpages/orders.php:1211 adminpages/orders.php:1245
2304
  #, php-format
2305
  msgid ""
2306
  "Deleting orders is permanent and can affect active users. Are you sure you "
2309
 
2310
  #: adminpages/orders.php:1249 adminpages/orders.php:1030
2311
  #: adminpages/orders.php:1059 adminpages/orders.php:1215
2312
+ #: adminpages/orders.php:1249
2313
  msgid "print"
2314
  msgstr ""
2315
 
2316
  #: adminpages/orders.php:1253 adminpages/orders.php:1033
2317
  #: adminpages/orders.php:1062 adminpages/orders.php:1219
2318
+ #: adminpages/orders.php:1253
2319
  msgid "email"
2320
  msgstr ""
2321
 
2323
  #: adminpages/orders.php:977 adminpages/orders.php:995
2324
  #: adminpages/orders.php:1005 adminpages/orders.php:1008
2325
  #: adminpages/orders.php:1043 adminpages/orders.php:1072
2326
+ #: adminpages/orders.php:1228 adminpages/orders.php:1262
2327
  msgid "No orders found."
2328
  msgstr ""
2329
 
2580
  msgid "Sales Tax"
2581
  msgstr ""
2582
 
2583
+ #: adminpages/paymentsettings.php:188 pages/billing.php:100
2584
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2585
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2586
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
2587
  #: pages/billing.php:82 pages/billing.php:91 pages/billing.php:94
2588
+ #: pages/billing.php:96
2589
  msgid "optional"
2590
  msgstr ""
2591
 
2949
  msgid "Update complete."
2950
  msgstr ""
2951
 
2952
+ #: classes/class.memberorder.php:716 classes/class.memberorder.php:553
2953
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2954
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2955
  #: classes/class.memberorder.php:697 classes/class.memberorder.php:699
2973
  msgid "Your membership at %s has been CANCELLED"
2974
  msgstr ""
2975
 
2976
+ #: classes/class.pmproemail.php:166 classes/class.pmproemail.php:142
2977
  #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
2978
  #: classes/class.pmproemail.php:156
2979
  #, php-format
2980
  msgid "Membership for %s at %s has been CANCELLED"
2981
  msgstr ""
2982
 
2983
+ #: classes/class.pmproemail.php:207 classes/class.pmproemail.php:172
2984
  #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2985
  #: classes/class.pmproemail.php:178 classes/class.pmproemail.php:187
2986
  #, php-format
2987
  msgid "Your membership confirmation for %s"
2988
  msgstr ""
2989
 
2990
+ #: classes/class.pmproemail.php:260 classes/class.pmproemail.php:269
2991
+ #: classes/class.pmproemail.php:278 classes/class.pmproemail.php:357
2992
+ #: classes/class.pmproemail.php:366 classes/class.pmproemail.php:679
2993
  #: classes/gateways/class.pmprogateway_braintree.php:368
2994
+ #: classes/gateways/class.pmprogateway_stripe.php:562 pages/checkout.php:83
2995
+ #: pages/checkout.php:93 pages/checkout.php:619 pages/confirmation.php:58
2996
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2997
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2998
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
3019
  #: classes/gateways/class.pmprogateway_stripe.php:510
3020
  #: classes/gateways/class.pmprogateway_stripe.php:536
3021
  #: classes/gateways/class.pmprogateway_stripe.php:540
3022
+ #: classes/gateways/class.pmprogateway_stripe.php:541
3023
+ #: classes/gateways/class.pmprogateway_stripe.php:544 pages/checkout.php:66
3024
  #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
3025
  #: pages/checkout.php:76 pages/checkout.php:77 pages/checkout.php:78
3026
  #: pages/checkout.php:85 pages/checkout.php:86 pages/checkout.php:549
3031
  msgid "Discount Code"
3032
  msgstr ""
3033
 
3034
+ #: classes/class.pmproemail.php:285 classes/class.pmproemail.php:378
3035
+ #: classes/class.pmproemail.php:685 classes/class.pmproemail.php:241
3036
  #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
3037
  #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
3038
  #: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
3045
  msgid "This membership will expire on %s."
3046
  msgstr ""
3047
 
3048
+ #: classes/class.pmproemail.php:307 classes/class.pmproemail.php:263
3049
  #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
3050
  #: classes/class.pmproemail.php:278 classes/class.pmproemail.php:287
3051
  #, php-format
3052
  msgid "Member Checkout for %s at %s"
3053
  msgstr ""
3054
 
3055
+ #: classes/class.pmproemail.php:395 classes/class.pmproemail.php:375
3056
  #, php-format
3057
  msgid "Your billing information has been updated at %s"
3058
  msgstr ""
3059
 
3060
+ #: classes/class.pmproemail.php:448 classes/class.pmproemail.php:428
3061
  #, php-format
3062
  msgid "Billing information has been updated for %s at %s"
3063
  msgstr ""
3064
 
3065
+ #: classes/class.pmproemail.php:496 classes/class.pmproemail.php:425
3066
  #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
3067
  #: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
3068
  #, php-format
3069
  msgid "Membership Payment Failed at %s"
3070
  msgstr ""
3071
 
3072
+ #: classes/class.pmproemail.php:542 classes/class.pmproemail.php:462
3073
  #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
3074
  #: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
3075
  #, php-format
3076
  msgid "Membership Payment Failed For %s at %s"
3077
  msgstr ""
3078
 
3079
+ #: classes/class.pmproemail.php:589 classes/class.pmproemail.php:508
3080
  #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
3081
  #: classes/class.pmproemail.php:569
3082
  #, php-format
3083
  msgid "Credit Card on File Expiring Soon at %s"
3084
  msgstr ""
3085
 
3086
+ #: classes/class.pmproemail.php:639 classes/class.pmproemail.php:501
3087
  #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
3088
  #: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
3089
  #: classes/class.pmproemail.php:619
3091
  msgid "INVOICE for %s membership"
3092
  msgstr ""
3093
 
3094
+ #: classes/class.pmproemail.php:710 classes/class.pmproemail.php:563
3095
  #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
3096
  #: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
3097
  #: classes/class.pmproemail.php:690
3099
  msgid "Your trial at %s is ending soon"
3100
  msgstr ""
3101
 
3102
+ #: classes/class.pmproemail.php:744 classes/class.pmproemail.php:596
3103
  #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
3104
  #: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
3105
  #: classes/class.pmproemail.php:724
3107
  msgid "Your membership at %s has ended"
3108
  msgstr ""
3109
 
3110
+ #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:621
3111
  #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
3112
  #: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
3113
  #: classes/class.pmproemail.php:749
3115
  msgid "Your membership at %s will end soon"
3116
  msgstr ""
3117
 
3118
+ #: classes/class.pmproemail.php:789 classes/class.pmproemail.php:641
3119
  #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
3120
  #: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
3121
  #: classes/class.pmproemail.php:769
3123
  msgid "Your membership at %s has been changed"
3124
  msgstr ""
3125
 
3126
+ #: classes/class.pmproemail.php:793 classes/class.pmproemail.php:830
3127
  #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
3128
  #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
3129
  #: classes/class.pmproemail.php:800 classes/class.pmproemail.php:809
3132
  msgid "The new level is %s"
3133
  msgstr ""
3134
 
3135
+ #: classes/class.pmproemail.php:795 classes/class.pmproemail.php:647
3136
  #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
3137
  #: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
3138
  #: classes/class.pmproemail.php:775
3139
  msgid "Your membership has been cancelled"
3140
  msgstr ""
3141
 
3142
+ #: classes/class.pmproemail.php:798 classes/class.pmproemail.php:836
3143
  #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
3144
  #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
3145
  #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
3151
  msgid "This membership will expire on %s"
3152
  msgstr ""
3153
 
3154
+ #: classes/class.pmproemail.php:802 classes/class.pmproemail.php:840
3155
  #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
3156
  #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
3157
  #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
3162
  msgid "This membership does not expire"
3163
  msgstr ""
3164
 
3165
+ #: classes/class.pmproemail.php:826 classes/class.pmproemail.php:679
3166
  #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
3167
  #: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
3168
  #: classes/class.pmproemail.php:806 classes/class.pmproemail.php:807
3170
  msgid "Membership for %s at %s has been changed"
3171
  msgstr ""
3172
 
3173
+ #: classes/class.pmproemail.php:832 classes/class.pmproemail.php:799
3174
  #: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
3175
  #: classes/class.pmproemail.php:812 classes/class.pmproemail.php:813
3176
  msgid "Membership has been cancelled"
3177
  msgstr ""
3178
 
3179
+ #: classes/class.pmproemail.php:869 classes/class.pmproemail.php:848
3180
  #: classes/class.pmproemail.php:849 classes/class.pmproemail.php:850
3181
  msgid "Invoice for Order #: "
3182
  msgstr ""
3192
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
3193
  #: classes/gateways/class.pmprogateway_check.php:60
3194
  #: classes/gateways/class.pmprogateway_check.php:193
3195
+ #: classes/gateways/class.pmprogateway_check.php:210
3196
  #: classes/gateways/class.pmprogateway_cybersource.php:57
3197
  #: classes/gateways/class.pmprogateway_cybersource.php:171
3198
  #: classes/gateways/class.pmprogateway_payflowpro.php:27
3200
  #: classes/gateways/class.pmprogateway_paypal.php:27
3201
  #: classes/gateways/class.pmprogateway_paypal.php:247
3202
  #: classes/gateways/class.pmprogateway_paypal.php:249
3203
+ #: classes/gateways/class.pmprogateway_paypal.php:272
3204
  msgid "Unknown error: Authorization failed."
3205
  msgstr ""
3206
 
3235
  #: classes/gateways/class.pmprogateway_check.php:245
3236
  #: classes/gateways/class.pmprogateway_check.php:249
3237
  #: classes/gateways/class.pmprogateway_check.php:250
3238
+ #: classes/gateways/class.pmprogateway_check.php:262
3239
  #: classes/gateways/class.pmprogateway_check.php:267
3240
  #: classes/gateways/class.pmprogateway_check.php:268
3241
+ #: classes/gateways/class.pmprogateway_check.php:285
3242
  #: classes/gateways/class.pmprogateway_cybersource.php:108
3243
  #: classes/gateways/class.pmprogateway_cybersource.php:113
3244
  #: classes/gateways/class.pmprogateway_cybersource.php:131
3252
  #: classes/gateways/class.pmprogateway_paypal.php:50
3253
  #: classes/gateways/class.pmprogateway_paypal.php:270
3254
  #: classes/gateways/class.pmprogateway_paypal.php:272
3255
+ #: classes/gateways/class.pmprogateway_paypal.php:295
3256
  msgid "Unknown error: Payment failed."
3257
  msgstr ""
3258
 
3266
  #: classes/gateways/class.pmprogateway_check.php:118
3267
  #: classes/gateways/class.pmprogateway_check.php:251
3268
  #: classes/gateways/class.pmprogateway_check.php:252
3269
+ #: classes/gateways/class.pmprogateway_check.php:269
3270
  #: classes/gateways/class.pmprogateway_cybersource.php:115
3271
  #: classes/gateways/class.pmprogateway_cybersource.php:229
3272
  msgid ""
3275
  msgstr ""
3276
 
3277
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3278
+ #: paid-memberships-pro.php:135
3279
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3280
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
3281
  #: paid-memberships-pro.php:130 paid-memberships-pro.php:131
3331
  msgstr ""
3332
 
3333
  #: classes/gateways/class.pmprogateway_braintree.php:77
3334
+ #: paid-memberships-pro.php:136
3335
  #: classes/gateways/class.pmprogateway_braintree.php:63
3336
  #: classes/gateways/class.pmprogateway_braintree.php:76
3337
+ #: classes/gateways/class.pmprogateway_braintree.php:77
3338
  #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
3339
  #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
3340
  #: paid-memberships-pro.php:133 paid-memberships-pro.php:134
3344
  #: classes/gateways/class.pmprogateway_braintree.php:133
3345
  #: classes/gateways/class.pmprogateway_braintree.php:119
3346
  #: classes/gateways/class.pmprogateway_braintree.php:132
3347
+ #: classes/gateways/class.pmprogateway_braintree.php:133
3348
  msgid "Braintree Settings"
3349
  msgstr ""
3350
 
3355
  #: adminpages/paymentsettings.php:369
3356
  #: classes/gateways/class.pmprogateway_braintree.php:124
3357
  #: classes/gateways/class.pmprogateway_braintree.php:137
3358
+ #: classes/gateways/class.pmprogateway_braintree.php:138
3359
  #: classes/gateways/class.pmprogateway_cybersource.php:106
3360
  msgid "Merchant ID"
3361
  msgstr ""
3365
  #: adminpages/paymentsettings.php:311
3366
  #: classes/gateways/class.pmprogateway_braintree.php:132
3367
  #: classes/gateways/class.pmprogateway_braintree.php:145
3368
+ #: classes/gateways/class.pmprogateway_braintree.php:146
3369
  msgid "Public Key"
3370
  msgstr ""
3371
 
3374
  #: adminpages/paymentsettings.php:319
3375
  #: classes/gateways/class.pmprogateway_braintree.php:140
3376
  #: classes/gateways/class.pmprogateway_braintree.php:153
3377
+ #: classes/gateways/class.pmprogateway_braintree.php:154
3378
  msgid "Private Key"
3379
  msgstr ""
3380
 
3383
  #: adminpages/paymentsettings.php:327
3384
  #: classes/gateways/class.pmprogateway_braintree.php:148
3385
  #: classes/gateways/class.pmprogateway_braintree.php:161
3386
+ #: classes/gateways/class.pmprogateway_braintree.php:162
3387
  msgid "Client-Side Encryption Key"
3388
  msgstr ""
3389
 
3395
  #: adminpages/paymentsettings.php:519
3396
  #: classes/gateways/class.pmprogateway_braintree.php:156
3397
  #: classes/gateways/class.pmprogateway_braintree.php:169
3398
+ #: classes/gateways/class.pmprogateway_braintree.php:170
3399
  #: classes/gateways/class.pmprogateway_stripe.php:181
3400
  #: classes/gateways/class.pmprogateway_stripe.php:182
3401
  #: classes/gateways/class.pmprogateway_stripe.php:192
3402
  #: classes/gateways/class.pmprogateway_stripe.php:214
3403
  #: classes/gateways/class.pmprogateway_stripe.php:216
3404
+ #: classes/gateways/class.pmprogateway_stripe.php:217
3405
  msgid "Web Hook URL"
3406
  msgstr ""
3407
 
3410
  #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
3411
  #: classes/gateways/class.pmprogateway_braintree.php:160
3412
  #: classes/gateways/class.pmprogateway_braintree.php:173
3413
+ #: classes/gateways/class.pmprogateway_braintree.php:174
3414
  msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
3415
  msgstr ""
3416
 
3417
  #: classes/gateways/class.pmprogateway_braintree.php:287
3418
+ #: classes/gateways/class.pmprogateway_stripe.php:450 pages/checkout.php:510
3419
  #: classes/gateways/class.pmprogateway_braintree.php:270
3420
  #: classes/gateways/class.pmprogateway_braintree.php:283
3421
  #: classes/gateways/class.pmprogateway_braintree.php:285
3422
  #: classes/gateways/class.pmprogateway_braintree.php:286
3423
+ #: classes/gateways/class.pmprogateway_braintree.php:287
3424
  #: classes/gateways/class.pmprogateway_stripe.php:387
3425
  #: classes/gateways/class.pmprogateway_stripe.php:388
3426
  #: classes/gateways/class.pmprogateway_stripe.php:398
3427
  #: classes/gateways/class.pmprogateway_stripe.php:402
3428
  #: classes/gateways/class.pmprogateway_stripe.php:426
3429
  #: classes/gateways/class.pmprogateway_stripe.php:427
3430
+ #: classes/gateways/class.pmprogateway_stripe.php:429
3431
+ #: classes/gateways/class.pmprogateway_stripe.php:432 pages/checkout.php:476
3432
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3433
  #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
3434
  #: pages/checkout.php:503
3436
  msgstr ""
3437
 
3438
  #: classes/gateways/class.pmprogateway_braintree.php:288
3439
+ #: classes/gateways/class.pmprogateway_stripe.php:451 pages/checkout.php:511
3440
  #: classes/gateways/class.pmprogateway_braintree.php:270
3441
  #: classes/gateways/class.pmprogateway_braintree.php:283
3442
  #: classes/gateways/class.pmprogateway_braintree.php:285
3443
  #: classes/gateways/class.pmprogateway_braintree.php:287
3444
+ #: classes/gateways/class.pmprogateway_braintree.php:288
3445
  #: classes/gateways/class.pmprogateway_stripe.php:387
3446
  #: classes/gateways/class.pmprogateway_stripe.php:388
3447
  #: classes/gateways/class.pmprogateway_stripe.php:398
3448
  #: classes/gateways/class.pmprogateway_stripe.php:402
3449
  #: classes/gateways/class.pmprogateway_stripe.php:426
3450
  #: classes/gateways/class.pmprogateway_stripe.php:428
3451
+ #: classes/gateways/class.pmprogateway_stripe.php:430
3452
+ #: classes/gateways/class.pmprogateway_stripe.php:433 pages/checkout.php:476
3453
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3454
  #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
3455
  #: pages/checkout.php:504
3458
  msgstr ""
3459
 
3460
  #: classes/gateways/class.pmprogateway_braintree.php:322
3461
+ #: classes/gateways/class.pmprogateway_stripe.php:516 pages/billing.php:314
3462
+ #: pages/checkout.php:577
3463
  #: classes/gateways/class.pmprogateway_braintree.php:303
3464
  #: classes/gateways/class.pmprogateway_braintree.php:316
3465
  #: classes/gateways/class.pmprogateway_braintree.php:318
3466
  #: classes/gateways/class.pmprogateway_braintree.php:321
3467
+ #: classes/gateways/class.pmprogateway_braintree.php:322
3468
  #: classes/gateways/class.pmprogateway_stripe.php:449
3469
  #: classes/gateways/class.pmprogateway_stripe.php:450
3470
  #: classes/gateways/class.pmprogateway_stripe.php:460
3471
  #: classes/gateways/class.pmprogateway_stripe.php:464
3472
  #: classes/gateways/class.pmprogateway_stripe.php:490
3473
  #: classes/gateways/class.pmprogateway_stripe.php:493
3474
+ #: classes/gateways/class.pmprogateway_stripe.php:495
3475
+ #: classes/gateways/class.pmprogateway_stripe.php:498 pages/billing.php:244
3476
  #: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
3477
+ #: pages/billing.php:263 pages/billing.php:305 pages/checkout.php:503
3478
+ #: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
3479
+ #: pages/checkout.php:548 pages/checkout.php:557 pages/checkout.php:566
3480
+ #: pages/checkout.php:570
3481
  msgid "Card Number"
3482
  msgstr ""
3483
 
3484
  #: classes/gateways/class.pmprogateway_braintree.php:359
3485
+ #: classes/gateways/class.pmprogateway_stripe.php:553 pages/billing.php:352
3486
+ #: pages/checkout.php:612
3487
  #: classes/gateways/class.pmprogateway_braintree.php:340
3488
  #: classes/gateways/class.pmprogateway_braintree.php:353
3489
  #: classes/gateways/class.pmprogateway_braintree.php:355
3495
  #: classes/gateways/class.pmprogateway_stripe.php:501
3496
  #: classes/gateways/class.pmprogateway_stripe.php:527
3497
  #: classes/gateways/class.pmprogateway_stripe.php:531
3498
+ #: classes/gateways/class.pmprogateway_stripe.php:532
3499
+ #: classes/gateways/class.pmprogateway_stripe.php:535 pages/billing.php:281
3500
  #: pages/billing.php:285 pages/billing.php:294 pages/billing.php:297
3501
+ #: pages/billing.php:301 pages/billing.php:343 pages/checkout.php:540
3502
+ #: pages/checkout.php:556 pages/checkout.php:557 pages/checkout.php:564
3503
+ #: pages/checkout.php:585 pages/checkout.php:594 pages/checkout.php:603
3504
+ #: pages/checkout.php:605 pages/checkout.php:607 pages/checkout.php:608
3505
  msgid "CVV"
3506
  msgstr ""
3507
 
3508
  #: classes/gateways/class.pmprogateway_braintree.php:360
3509
+ #: classes/gateways/class.pmprogateway_stripe.php:554 pages/billing.php:353
3510
+ #: pages/checkout.php:613
3511
  #: classes/gateways/class.pmprogateway_braintree.php:341
3512
  #: classes/gateways/class.pmprogateway_braintree.php:354
3513
  #: classes/gateways/class.pmprogateway_braintree.php:356
3519
  #: classes/gateways/class.pmprogateway_stripe.php:502
3520
  #: classes/gateways/class.pmprogateway_stripe.php:528
3521
  #: classes/gateways/class.pmprogateway_stripe.php:532
3522
+ #: classes/gateways/class.pmprogateway_stripe.php:533
3523
+ #: classes/gateways/class.pmprogateway_stripe.php:536 pages/billing.php:282
3524
  #: pages/billing.php:286 pages/billing.php:295 pages/billing.php:298
3525
+ #: pages/billing.php:302 pages/billing.php:344 pages/checkout.php:541
3526
+ #: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
3527
+ #: pages/checkout.php:586 pages/checkout.php:595 pages/checkout.php:604
3528
+ #: pages/checkout.php:606 pages/checkout.php:608 pages/checkout.php:609
3529
  msgid "what's this?"
3530
  msgstr ""
3531
 
3532
  #: classes/gateways/class.pmprogateway_braintree.php:370
3533
+ #: classes/gateways/class.pmprogateway_stripe.php:564 pages/checkout.php:95
3534
+ #: pages/checkout.php:621
3535
  #: classes/gateways/class.pmprogateway_braintree.php:351
3536
  #: classes/gateways/class.pmprogateway_braintree.php:364
3537
  #: classes/gateways/class.pmprogateway_braintree.php:366
3543
  #: classes/gateways/class.pmprogateway_stripe.php:512
3544
  #: classes/gateways/class.pmprogateway_stripe.php:538
3545
  #: classes/gateways/class.pmprogateway_stripe.php:542
3546
+ #: classes/gateways/class.pmprogateway_stripe.php:543
3547
+ #: classes/gateways/class.pmprogateway_stripe.php:546 pages/checkout.php:78
3548
  #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3549
  #: pages/checkout.php:88 pages/checkout.php:551 pages/checkout.php:567
3550
  #: pages/checkout.php:568 pages/checkout.php:575 pages/checkout.php:596
3554
  msgstr ""
3555
 
3556
  #: classes/gateways/class.pmprogateway_braintree.php:425
3557
+ #: classes/gateways/class.pmprogateway_stripe.php:1094
3558
  #: classes/gateways/class.pmprogateway_braintree.php:61
3559
  #: classes/gateways/class.pmprogateway_braintree.php:406
3560
  #: classes/gateways/class.pmprogateway_braintree.php:419
3570
  #: classes/gateways/class.pmprogateway_stripe.php:1068
3571
  #: classes/gateways/class.pmprogateway_stripe.php:1072
3572
  #: classes/gateways/class.pmprogateway_stripe.php:1073
3573
+ #: classes/gateways/class.pmprogateway_stripe.php:1076
3574
  msgid "Unknown error: Initial payment failed."
3575
  msgstr ""
3576
 
3690
  msgstr ""
3691
 
3692
  #: classes/gateways/class.pmprogateway_check.php:49
3693
+ #: paid-memberships-pro.php:129 adminpages/orders.php:399
3694
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3695
  #: adminpages/paymentsettings.php:159
3696
  #: classes/gateways/class.pmprogateway_check.php:48
3697
+ #: classes/gateways/class.pmprogateway_check.php:49
3698
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:117
3699
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3700
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
3703
 
3704
  #: classes/gateways/class.pmprogateway_check.php:101
3705
  #: classes/gateways/class.pmprogateway_check.php:100
3706
+ #: classes/gateways/class.pmprogateway_check.php:101
3707
  msgid "Pay by Check Settings"
3708
  msgstr ""
3709
 
3711
  #: adminpages/paymentsettings.php:389 adminpages/paymentsettings.php:415
3712
  #: adminpages/paymentsettings.php:420 adminpages/paymentsettings.php:422
3713
  #: classes/gateways/class.pmprogateway_check.php:105
3714
+ #: classes/gateways/class.pmprogateway_check.php:106
3715
  msgid "Instructions"
3716
  msgstr ""
3717
 
3719
  #: adminpages/paymentsettings.php:393 adminpages/paymentsettings.php:419
3720
  #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:426
3721
  #: classes/gateways/class.pmprogateway_check.php:109
3722
+ #: classes/gateways/class.pmprogateway_check.php:110
3723
  msgid ""
3724
  "Who to write the check out to. Where to mail it. Shown on checkout, "
3725
  "confirmation, and invoice pages."
3776
  msgstr ""
3777
 
3778
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3779
+ #: pages/checkout.php:200 adminpages/paymentsettings.php:219
3780
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3781
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3782
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
3804
  #: classes/gateways/class.pmprogateway_paypal.php:57
3805
  #: classes/gateways/class.pmprogateway_paypal.php:277
3806
  #: classes/gateways/class.pmprogateway_paypal.php:279
3807
+ #: classes/gateways/class.pmprogateway_paypal.php:302
3808
  msgid ""
3809
  "A partial payment was made that we could not refund. Please contact the site "
3810
  "owner immediately to correct this."
3811
  msgstr ""
3812
 
3813
  #: classes/gateways/class.pmprogateway_paypal.php:68
3814
+ #: paid-memberships-pro.php:132
3815
  #: classes/gateways/class.pmprogateway_paypal.php:57
3816
+ #: classes/gateways/class.pmprogateway_paypal.php:68
3817
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
3818
  #: paid-memberships-pro.php:127 paid-memberships-pro.php:128
3819
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
3824
  #: classes/gateways/class.pmprogateway_paypalexpress.php:140
3825
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3826
  #: classes/gateways/class.pmprogateway_paypal.php:113
3827
+ #: classes/gateways/class.pmprogateway_paypal.php:125
3828
  #: classes/gateways/class.pmprogateway_paypalexpress.php:118
3829
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3830
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:140
3831
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3832
  msgid "PayPal Settings"
3833
  msgstr ""
3837
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3838
  #: adminpages/paymentsettings.php:179
3839
  #: classes/gateways/class.pmprogateway_paypal.php:118
3840
+ #: classes/gateways/class.pmprogateway_paypal.php:130
3841
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
3842
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
3843
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:145
3844
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3845
  msgid ""
3846
  "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
3856
  #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3857
  #: adminpages/paymentsettings.php:236
3858
  #: classes/gateways/class.pmprogateway_paypal.php:123
3859
+ #: classes/gateways/class.pmprogateway_paypal.php:135
3860
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3861
  #: classes/gateways/class.pmprogateway_paypalexpress.php:138
3862
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:150
3863
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3864
  msgid "Gateway Account Email"
3865
  msgstr ""
3872
  #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
3873
  #: adminpages/paymentsettings.php:336
3874
  #: classes/gateways/class.pmprogateway_paypal.php:131
3875
+ #: classes/gateways/class.pmprogateway_paypal.php:143
3876
  #: classes/gateways/class.pmprogateway_paypalexpress.php:136
3877
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3878
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:158
3879
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3880
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
3881
  #: classes/gateways/class.pmprogateway_twocheckout.php:119
3891
  #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
3892
  #: adminpages/paymentsettings.php:344
3893
  #: classes/gateways/class.pmprogateway_paypal.php:139
3894
+ #: classes/gateways/class.pmprogateway_paypal.php:151
3895
  #: classes/gateways/class.pmprogateway_paypalexpress.php:144
3896
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3897
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:166
3898
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3899
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3900
  #: classes/gateways/class.pmprogateway_twocheckout.php:128
3908
  #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3909
  #: adminpages/paymentsettings.php:260
3910
  #: classes/gateways/class.pmprogateway_paypal.php:147
3911
+ #: classes/gateways/class.pmprogateway_paypal.php:159
3912
  #: classes/gateways/class.pmprogateway_paypalexpress.php:152
3913
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
3914
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:174
3915
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3916
  msgid "API Signature"
3917
  msgstr ""
3918
 
3919
+ #: classes/gateways/class.pmprogateway_paypal.php:167
3920
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:182
3921
  #: classes/gateways/class.pmprogateway_paypal.php:167
3922
  #: classes/gateways/class.pmprogateway_paypalexpress.php:182
3923
  msgid "Confirmation Step"
3929
  #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3930
  #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
3931
  #: classes/gateways/class.pmprogateway_paypal.php:155
3932
+ #: classes/gateways/class.pmprogateway_paypal.php:178
3933
  #: classes/gateways/class.pmprogateway_paypalexpress.php:160
3934
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
3935
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:193
3936
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3937
  msgid "IPN Handler URL"
3938
  msgstr ""
3939
 
3940
  #: classes/gateways/class.pmprogateway_paypal.php:181
3941
  #: classes/gateways/class.pmprogateway_paypal.php:158
3942
+ #: classes/gateways/class.pmprogateway_paypal.php:181
3943
  msgid ""
3944
  "This URL is passed to PayPal for all new charges and subscriptions. You "
3945
  "SHOULD NOT set this in your PayPal account settings."
3948
  #: classes/gateways/class.pmprogateway_paypal.php:201
3949
  #: classes/gateways/class.pmprogateway_paypalexpress.php:438
3950
  #: classes/gateways/class.pmprogateway_paypalstandard.php:201
3951
+ #: pages/checkout.php:309 classes/gateways/class.pmprogateway_paypal.php:178
3952
+ #: classes/gateways/class.pmprogateway_paypal.php:201
3953
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3954
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3955
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:438
3956
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:201
3957
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3958
  #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3959
  #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:309
3965
  #: classes/gateways/class.pmprogateway_paypal.php:207
3966
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
3967
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
3968
+ #: pages/checkout.php:725 classes/gateways/class.pmprogateway_paypal.php:184
3969
+ #: classes/gateways/class.pmprogateway_paypal.php:207
3970
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3971
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3972
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:443
3973
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:206
3974
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3975
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3976
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3977
+ #: pages/checkout.php:718 pages/checkout.php:722 pages/checkout.php:724
3978
+ #: pages/checkout.php:728 pages/checkout.php:729
3979
  msgid "Submit and Check Out"
3980
  msgstr ""
3981
 
3983
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
3984
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
3985
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
3986
+ #: pages/checkout.php:725 classes/gateways/class.pmprogateway_paypal.php:184
3987
+ #: classes/gateways/class.pmprogateway_paypal.php:207
3988
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3989
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3990
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:443
3991
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:206
3992
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3993
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
3994
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
3995
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3996
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3997
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3998
+ #: pages/checkout.php:718 pages/checkout.php:722 pages/checkout.php:724
3999
+ #: pages/checkout.php:728 pages/checkout.php:729
4000
  msgid "Submit and Confirm"
4001
  msgstr ""
4002
 
4007
  #: classes/gateways/class.pmprogateway_paypal.php:605
4008
  #: classes/gateways/class.pmprogateway_paypal.php:607
4009
  #: classes/gateways/class.pmprogateway_paypal.php:608
4010
+ #: classes/gateways/class.pmprogateway_paypal.php:631
4011
  #: classes/gateways/class.pmprogateway_paypalexpress.php:301
4012
  #: classes/gateways/class.pmprogateway_paypalexpress.php:303
4013
  #: classes/gateways/class.pmprogateway_paypalexpress.php:305
4015
  #: classes/gateways/class.pmprogateway_paypalexpress.php:740
4016
  #: classes/gateways/class.pmprogateway_paypalexpress.php:750
4017
  #: classes/gateways/class.pmprogateway_paypalexpress.php:752
4018
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:777
4019
  #: classes/gateways/class.pmprogateway_paypalstandard.php:216
4020
  #: classes/gateways/class.pmprogateway_paypalstandard.php:220
4021
  #: classes/gateways/class.pmprogateway_paypalstandard.php:230
4022
  #: classes/gateways/class.pmprogateway_paypalstandard.php:231
4023
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:464
4024
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
4025
  msgid ""
4026
  "Please contact the site owner or cancel your subscription from within PayPal "
4028
  msgstr ""
4029
 
4030
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4031
+ #: paid-memberships-pro.php:131
4032
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
4033
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
4034
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4035
  #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
4036
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
4037
  #: paid-memberships-pro.php:128 paid-memberships-pro.php:129
4043
  #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
4044
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
4045
  #: classes/gateways/class.pmprogateway_paypalexpress.php:173
4046
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
4047
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
4048
  msgstr ""
4049
 
4051
  #: classes/gateways/class.pmprogateway_paypalexpress.php:357
4052
  #: classes/gateways/class.pmprogateway_paypalexpress.php:268
4053
  #: classes/gateways/class.pmprogateway_paypalexpress.php:278
4054
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:301
4055
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
4056
  #: classes/gateways/class.pmprogateway_paypalexpress.php:330
4057
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:357
4058
  #: preheaders/checkout.php:690 preheaders/checkout.php:697
4059
  #: preheaders/checkout.php:702 preheaders/checkout.php:735
4060
  #: preheaders/checkout.php:750 preheaders/checkout.php:753
4065
  msgstr ""
4066
 
4067
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4068
+ #: paid-memberships-pro.php:134
4069
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4070
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
4071
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
4090
  msgstr ""
4091
 
4092
  #: classes/gateways/class.pmprogateway_stripe.php:129
4093
+ #: paid-memberships-pro.php:130
4094
  #: classes/gateways/class.pmprogateway_stripe.php:93
4095
  #: classes/gateways/class.pmprogateway_stripe.php:94
4096
  #: classes/gateways/class.pmprogateway_stripe.php:104
4097
  #: classes/gateways/class.pmprogateway_stripe.php:126
4098
  #: classes/gateways/class.pmprogateway_stripe.php:128
4099
+ #: classes/gateways/class.pmprogateway_stripe.php:129
4100
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
4101
  #: paid-memberships-pro.php:125 paid-memberships-pro.php:126
4102
  #: paid-memberships-pro.php:127 paid-memberships-pro.php:128
4109
  #: classes/gateways/class.pmprogateway_stripe.php:159
4110
  #: classes/gateways/class.pmprogateway_stripe.php:181
4111
  #: classes/gateways/class.pmprogateway_stripe.php:183
4112
+ #: classes/gateways/class.pmprogateway_stripe.php:184
4113
  msgid "Stripe Settings"
4114
  msgstr ""
4115
 
4121
  #: classes/gateways/class.pmprogateway_stripe.php:164
4122
  #: classes/gateways/class.pmprogateway_stripe.php:186
4123
  #: classes/gateways/class.pmprogateway_stripe.php:188
4124
+ #: classes/gateways/class.pmprogateway_stripe.php:189
4125
  msgid "Secret Key"
4126
  msgstr ""
4127
 
4133
  #: classes/gateways/class.pmprogateway_stripe.php:172
4134
  #: classes/gateways/class.pmprogateway_stripe.php:194
4135
  #: classes/gateways/class.pmprogateway_stripe.php:196
4136
+ #: classes/gateways/class.pmprogateway_stripe.php:197
4137
  msgid "Publishable Key"
4138
  msgstr ""
4139
 
4145
  #: classes/gateways/class.pmprogateway_stripe.php:180
4146
  #: classes/gateways/class.pmprogateway_stripe.php:202
4147
  #: classes/gateways/class.pmprogateway_stripe.php:204
4148
+ #: classes/gateways/class.pmprogateway_stripe.php:205
4149
  msgid "Show Billing Address Fields"
4150
  msgstr ""
4151
 
4156
  #: classes/gateways/class.pmprogateway_stripe.php:187
4157
  #: classes/gateways/class.pmprogateway_stripe.php:209
4158
  #: classes/gateways/class.pmprogateway_stripe.php:211
4159
+ #: classes/gateways/class.pmprogateway_stripe.php:212
4160
  msgid ""
4161
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
4162
  "the checkout page.<br /><strong>If No, make sure you disable address "
4171
  #: classes/gateways/class.pmprogateway_stripe.php:195
4172
  #: classes/gateways/class.pmprogateway_stripe.php:217
4173
  #: classes/gateways/class.pmprogateway_stripe.php:219
4174
+ #: classes/gateways/class.pmprogateway_stripe.php:220
4175
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
4176
  msgstr ""
4177
 
4178
+ #: classes/gateways/class.pmprogateway_stripe.php:634
4179
  #: classes/gateways/class.pmprogateway_stripe.php:567
4180
  #: classes/gateways/class.pmprogateway_stripe.php:568
4181
  #: classes/gateways/class.pmprogateway_stripe.php:578
4183
  #: classes/gateways/class.pmprogateway_stripe.php:608
4184
  #: classes/gateways/class.pmprogateway_stripe.php:612
4185
  #: classes/gateways/class.pmprogateway_stripe.php:613
4186
+ #: classes/gateways/class.pmprogateway_stripe.php:616
4187
  msgid "Subscription Updates"
4188
  msgstr ""
4189
 
4190
+ #: classes/gateways/class.pmprogateway_stripe.php:638
4191
  #: classes/gateways/class.pmprogateway_stripe.php:571
4192
  #: classes/gateways/class.pmprogateway_stripe.php:572
4193
  #: classes/gateways/class.pmprogateway_stripe.php:582
4195
  #: classes/gateways/class.pmprogateway_stripe.php:612
4196
  #: classes/gateways/class.pmprogateway_stripe.php:616
4197
  #: classes/gateways/class.pmprogateway_stripe.php:617
4198
+ #: classes/gateways/class.pmprogateway_stripe.php:620
4199
  msgid ""
4200
  "Subscription updates, allow you to change the member's subscription values "
4201
  "at predefined times. Be sure to click Update Profile after making changes."
4202
  msgstr ""
4203
 
4204
+ #: classes/gateways/class.pmprogateway_stripe.php:640
4205
  #: classes/gateways/class.pmprogateway_stripe.php:573
4206
  #: classes/gateways/class.pmprogateway_stripe.php:574
4207
  #: classes/gateways/class.pmprogateway_stripe.php:584
4209
  #: classes/gateways/class.pmprogateway_stripe.php:614
4210
  #: classes/gateways/class.pmprogateway_stripe.php:618
4211
  #: classes/gateways/class.pmprogateway_stripe.php:619
4212
+ #: classes/gateways/class.pmprogateway_stripe.php:622
4213
  msgid ""
4214
  "Subscription updates, allow you to change the member's subscription values "
4215
  "at predefined times. Be sure to click Update User after making changes."
4216
  msgstr ""
4217
 
4218
+ #: classes/gateways/class.pmprogateway_stripe.php:645 pages/billing.php:400
4219
  #: classes/gateways/class.pmprogateway_stripe.php:578
4220
  #: classes/gateways/class.pmprogateway_stripe.php:579
4221
  #: classes/gateways/class.pmprogateway_stripe.php:589
4222
  #: classes/gateways/class.pmprogateway_stripe.php:593
4223
  #: classes/gateways/class.pmprogateway_stripe.php:619
4224
  #: classes/gateways/class.pmprogateway_stripe.php:623
4225
+ #: classes/gateways/class.pmprogateway_stripe.php:624
4226
+ #: classes/gateways/class.pmprogateway_stripe.php:627 pages/billing.php:294
4227
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
4228
  #: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
4229
+ #: pages/billing.php:391
4230
  msgid "Update"
4231
  msgstr ""
4232
 
4233
+ #: classes/gateways/class.pmprogateway_stripe.php:838
4234
  #: classes/gateways/class.pmprogateway_stripe.php:769
4235
  #: classes/gateways/class.pmprogateway_stripe.php:770
4236
  #: classes/gateways/class.pmprogateway_stripe.php:780
4238
  #: classes/gateways/class.pmprogateway_stripe.php:812
4239
  #: classes/gateways/class.pmprogateway_stripe.php:816
4240
  #: classes/gateways/class.pmprogateway_stripe.php:817
4241
+ #: classes/gateways/class.pmprogateway_stripe.php:820
4242
  msgid "Could not cancel the old subscription. Updates have not been processed."
4243
  msgstr ""
4244
 
4245
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
4246
  #: classes/gateways/class.pmprogateway_stripe.php:190
4247
  #: classes/gateways/class.pmprogateway_stripe.php:192
4248
  #: classes/gateways/class.pmprogateway_stripe.php:199
4258
  #: classes/gateways/class.pmprogateway_stripe.php:1256
4259
  #: classes/gateways/class.pmprogateway_stripe.php:1260
4260
  #: classes/gateways/class.pmprogateway_stripe.php:1300
4261
+ #: classes/gateways/class.pmprogateway_stripe.php:1303
4262
  msgid "Error creating customer record with Stripe:"
4263
  msgstr ""
4264
 
4265
+ #: classes/gateways/class.pmprogateway_stripe.php:1385
4266
  #: classes/gateways/class.pmprogateway_stripe.php:1275
4267
  #: classes/gateways/class.pmprogateway_stripe.php:1303
4268
  #: classes/gateways/class.pmprogateway_stripe.php:1313
4269
  #: classes/gateways/class.pmprogateway_stripe.php:1317
4270
  #: classes/gateways/class.pmprogateway_stripe.php:1357
4271
+ #: classes/gateways/class.pmprogateway_stripe.php:1360
4272
  msgid "Error getting subscription with Stripe:"
4273
  msgstr ""
4274
 
4275
+ #: classes/gateways/class.pmprogateway_stripe.php:1541
4276
  #: classes/gateways/class.pmprogateway_stripe.php:278
4277
  #: classes/gateways/class.pmprogateway_stripe.php:279
4278
  #: classes/gateways/class.pmprogateway_stripe.php:286
4296
  #: classes/gateways/class.pmprogateway_stripe.php:1463
4297
  #: classes/gateways/class.pmprogateway_stripe.php:1467
4298
  #: classes/gateways/class.pmprogateway_stripe.php:1507
4299
+ #: classes/gateways/class.pmprogateway_stripe.php:1510
4300
  msgid "Error creating plan with Stripe:"
4301
  msgstr ""
4302
 
4303
+ #: classes/gateways/class.pmprogateway_stripe.php:1572
4304
  #: classes/gateways/class.pmprogateway_stripe.php:294
4305
  #: classes/gateways/class.pmprogateway_stripe.php:295
4306
  #: classes/gateways/class.pmprogateway_stripe.php:302
4319
  #: classes/gateways/class.pmprogateway_stripe.php:1494
4320
  #: classes/gateways/class.pmprogateway_stripe.php:1498
4321
  #: classes/gateways/class.pmprogateway_stripe.php:1538
4322
+ #: classes/gateways/class.pmprogateway_stripe.php:1541
4323
  msgid "Error subscribing customer to plan with Stripe:"
4324
  msgstr ""
4325
 
4326
+ #: classes/gateways/class.pmprogateway_stripe.php:1668
4327
  #: classes/gateways/class.pmprogateway_stripe.php:383
4328
  #: classes/gateways/class.pmprogateway_stripe.php:389
4329
  #: classes/gateways/class.pmprogateway_stripe.php:410
4339
  #: classes/gateways/class.pmprogateway_stripe.php:1590
4340
  #: classes/gateways/class.pmprogateway_stripe.php:1594
4341
  #: classes/gateways/class.pmprogateway_stripe.php:1634
4342
+ #: classes/gateways/class.pmprogateway_stripe.php:1637
4343
  msgid "Could not cancel old subscription."
4344
  msgstr ""
4345
 
4346
+ #: classes/gateways/class.pmprogateway_stripe.php:1685
4347
  #: classes/gateways/class.pmprogateway_stripe.php:1533
4348
  #: classes/gateways/class.pmprogateway_stripe.php:1534
4349
  #: classes/gateways/class.pmprogateway_stripe.php:1535
4356
  #: classes/gateways/class.pmprogateway_stripe.php:1607
4357
  #: classes/gateways/class.pmprogateway_stripe.php:1611
4358
  #: classes/gateways/class.pmprogateway_stripe.php:1651
4359
+ #: classes/gateways/class.pmprogateway_stripe.php:1654
4360
  msgid "Could not find the customer."
4361
  msgstr ""
4362
 
4363
+ #: classes/gateways/class.pmprogateway_stripe.php:1837
4364
+ msgid "Error: "
4365
+ msgstr ""
4366
+
4367
+ #: classes/gateways/class.pmprogateway_stripe.php:1850
4368
+ #, php-format
4369
+ msgid "Error: Unkown error while refunding charge #%s"
4370
+ msgstr ""
4371
+
4372
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4373
+ #: paid-memberships-pro.php:137
4374
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
4375
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4376
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
4520
  #: includes/currencies.php:37 includes/currencies.php:44
4521
  #: includes/currencies.php:64 includes/currencies.php:68
4522
  #: includes/currencies.php:75 includes/currencies.php:85
4523
+ #: includes/currencies.php:87 includes/currencies.php:94
4524
  msgid "US Dollars (&#36;)"
4525
  msgstr ""
4526
 
4530
  #: includes/currencies.php:47 includes/currencies.php:67
4531
  #: includes/currencies.php:71 includes/currencies.php:78
4532
  #: includes/currencies.php:88 includes/currencies.php:90
4533
+ #: includes/currencies.php:97
4534
  msgid "Euros (&euro;)"
4535
  msgstr ""
4536
 
4540
  #: includes/currencies.php:46 includes/currencies.php:66
4541
  #: includes/currencies.php:70 includes/currencies.php:77
4542
  #: includes/currencies.php:87 includes/currencies.php:89
4543
+ #: includes/currencies.php:96
4544
  msgid "Pounds Sterling (&pound;)"
4545
  msgstr ""
4546
 
4565
  #: includes/currencies.php:38 includes/currencies.php:45
4566
  #: includes/currencies.php:65 includes/currencies.php:69
4567
  #: includes/currencies.php:76 includes/currencies.php:86
4568
+ #: includes/currencies.php:88 includes/currencies.php:95
4569
  msgid "Canadian Dollars (&#36;)"
4570
  msgstr ""
4571
 
4632
  #: includes/currencies.php:57 includes/currencies.php:19
4633
  #: includes/currencies.php:22 includes/currencies.php:38
4634
  #: includes/currencies.php:45 includes/currencies.php:55
4635
+ #: includes/currencies.php:56 includes/currencies.php:57
4636
  msgid "Malaysian Ringgits"
4637
  msgstr ""
4638
 
4639
  #: includes/currencies.php:58 includes/currencies.php:20
4640
  #: includes/currencies.php:23 includes/currencies.php:39
4641
  #: includes/currencies.php:46 includes/currencies.php:56
4642
+ #: includes/currencies.php:57 includes/currencies.php:58
4643
  msgid "Mexican Peso (&#36;)"
4644
  msgstr ""
4645
 
4646
  #: includes/currencies.php:59 includes/currencies.php:58
4647
+ #: includes/currencies.php:59
4648
  msgid "Nigerian Naira (&#8358;)"
4649
  msgstr ""
4650
 
4651
  #: includes/currencies.php:60 includes/currencies.php:21
4652
  #: includes/currencies.php:24 includes/currencies.php:40
4653
  #: includes/currencies.php:47 includes/currencies.php:57
4654
+ #: includes/currencies.php:59 includes/currencies.php:60
4655
  msgid "New Zealand Dollar (&#36;)"
4656
  msgstr ""
4657
 
4658
  #: includes/currencies.php:61 includes/currencies.php:22
4659
  #: includes/currencies.php:25 includes/currencies.php:41
4660
  #: includes/currencies.php:48 includes/currencies.php:58
4661
+ #: includes/currencies.php:60 includes/currencies.php:61
4662
  msgid "Norwegian Krone"
4663
  msgstr ""
4664
 
4665
  #: includes/currencies.php:62 includes/currencies.php:23
4666
  #: includes/currencies.php:26 includes/currencies.php:42
4667
  #: includes/currencies.php:49 includes/currencies.php:59
4668
+ #: includes/currencies.php:61 includes/currencies.php:62
4669
  msgid "Philippine Pesos"
4670
  msgstr ""
4671
 
4672
  #: includes/currencies.php:63 includes/currencies.php:24
4673
  #: includes/currencies.php:27 includes/currencies.php:43
4674
  #: includes/currencies.php:50 includes/currencies.php:60
4675
+ #: includes/currencies.php:62 includes/currencies.php:63
4676
  msgid "Polish Zloty"
4677
  msgstr ""
4678
 
4679
  #: includes/currencies.php:65 includes/currencies.php:25
4680
  #: includes/currencies.php:28 includes/currencies.php:45
4681
  #: includes/currencies.php:52 includes/currencies.php:62
4682
+ #: includes/currencies.php:64 includes/currencies.php:65
4683
  msgid "Singapore Dollar (&#36;)"
4684
  msgstr ""
4685
 
4686
  #: includes/currencies.php:70 includes/currencies.php:50
4687
  #: includes/currencies.php:57 includes/currencies.php:67
4688
+ #: includes/currencies.php:69 includes/currencies.php:70
4689
  msgid "South African Rand (R)"
4690
  msgstr ""
4691
 
4692
  #: includes/currencies.php:75 includes/currencies.php:30
4693
  #: includes/currencies.php:50 includes/currencies.php:54
4694
  #: includes/currencies.php:61 includes/currencies.php:71
4695
+ #: includes/currencies.php:73 includes/currencies.php:75
4696
  msgid "South Korean Won"
4697
  msgstr ""
4698
 
4700
  #: includes/currencies.php:31 includes/currencies.php:51
4701
  #: includes/currencies.php:55 includes/currencies.php:62
4702
  #: includes/currencies.php:72 includes/currencies.php:74
4703
+ #: includes/currencies.php:78
4704
  msgid "Swedish Krona"
4705
  msgstr ""
4706
 
4708
  #: includes/currencies.php:32 includes/currencies.php:52
4709
  #: includes/currencies.php:56 includes/currencies.php:63
4710
  #: includes/currencies.php:73 includes/currencies.php:75
4711
+ #: includes/currencies.php:79
4712
  msgid "Swiss Franc"
4713
  msgstr ""
4714
 
4716
  #: includes/currencies.php:33 includes/currencies.php:53
4717
  #: includes/currencies.php:57 includes/currencies.php:64
4718
  #: includes/currencies.php:74 includes/currencies.php:76
4719
+ #: includes/currencies.php:80
4720
  msgid "Taiwan New Dollars"
4721
  msgstr ""
4722
 
4724
  #: includes/currencies.php:34 includes/currencies.php:54
4725
  #: includes/currencies.php:58 includes/currencies.php:65
4726
  #: includes/currencies.php:75 includes/currencies.php:77
4727
+ #: includes/currencies.php:81
4728
  msgid "Thai Baht"
4729
  msgstr ""
4730
 
4731
  #: includes/currencies.php:82 includes/currencies.php:35
4732
  #: includes/currencies.php:55 includes/currencies.php:59
4733
  #: includes/currencies.php:66 includes/currencies.php:76
4734
+ #: includes/currencies.php:78 includes/currencies.php:82
4735
  msgid "Turkish Lira"
4736
  msgstr ""
4737
 
4738
  #: includes/currencies.php:84 includes/currencies.php:36
4739
  #: includes/currencies.php:56 includes/currencies.php:60
4740
  #: includes/currencies.php:67 includes/currencies.php:77
4741
+ #: includes/currencies.php:79 includes/currencies.php:84
4742
  msgid "Vietnamese Dong"
4743
  msgstr ""
4744
 
4745
+ #: includes/functions.php:320 includes/functions.php:455
4746
+ #: includes/functions.php:160 includes/functions.php:196
4747
+ #: includes/functions.php:200 includes/functions.php:202
4748
+ #: includes/functions.php:203 includes/functions.php:204
4749
+ #: includes/functions.php:207 includes/functions.php:243
4750
+ #: includes/functions.php:309 includes/functions.php:315
4751
  #, php-format
4752
  msgid "The price for membership is <strong>%s</strong> now"
4753
  msgstr ""
4754
 
4755
+ #: includes/functions.php:322 includes/functions.php:457
4756
+ #: includes/functions.php:202 includes/functions.php:204
4757
+ #: includes/functions.php:205 includes/functions.php:206
4758
+ #: includes/functions.php:209 includes/functions.php:245
4759
+ #: includes/functions.php:311 includes/functions.php:317
4760
  #, php-format
4761
  msgid "<strong>%s</strong> now"
4762
  msgstr ""
4763
 
4764
+ #: includes/functions.php:331 includes/functions.php:169
4765
  #: includes/functions.php:205 includes/functions.php:211
4766
  #: includes/functions.php:213 includes/functions.php:214
4767
  #: includes/functions.php:215 includes/functions.php:218
4771
  msgid " and then <strong>%s per %s for %d more %s</strong>."
4772
  msgstr ""
4773
 
4774
+ #: includes/functions.php:335 includes/functions.php:258
4775
  #: includes/functions.php:324 includes/functions.php:330
4776
  #, php-format
4777
  msgid " and then <strong>%s every %d %s for %d more payments</strong>."
4778
  msgstr ""
4779
 
4780
+ #: includes/functions.php:340 includes/functions.php:178
4781
  #: includes/functions.php:214 includes/functions.php:220
4782
  #: includes/functions.php:222 includes/functions.php:223
4783
  #: includes/functions.php:224 includes/functions.php:227
4787
  msgid " and then <strong>%s after %d %s</strong>."
4788
  msgstr ""
4789
 
4790
+ #: includes/functions.php:348 includes/functions.php:228
4791
  #: includes/functions.php:229 includes/functions.php:230
4792
  #: includes/functions.php:231 includes/functions.php:235
4793
  #: includes/functions.php:271 includes/functions.php:337
4796
  msgid "The price for membership is <strong>%s per %s</strong>."
4797
  msgstr ""
4798
 
4799
+ #: includes/functions.php:350 includes/functions.php:230
4800
  #: includes/functions.php:233 includes/functions.php:237
4801
  #: includes/functions.php:273 includes/functions.php:339
4802
  #: includes/functions.php:345
4804
  msgid "<strong>%s per %s</strong>."
4805
  msgstr ""
4806
 
4807
+ #: includes/functions.php:355 includes/functions.php:233
4808
  #: includes/functions.php:234 includes/functions.php:235
4809
  #: includes/functions.php:238 includes/functions.php:242
4810
  #: includes/functions.php:278 includes/functions.php:344
4813
  msgid "The price for membership is <strong>%s every %d %s</strong>."
4814
  msgstr ""
4815
 
4816
+ #: includes/functions.php:357 includes/functions.php:237
4817
  #: includes/functions.php:240 includes/functions.php:244
4818
  #: includes/functions.php:280 includes/functions.php:346
4819
  #: includes/functions.php:352
4821
  msgid "<strong>%s every %d %s</strong>."
4822
  msgstr ""
4823
 
4824
+ #: includes/functions.php:362 includes/functions.php:184
4825
  #: includes/functions.php:220 includes/functions.php:228
4826
  #: includes/functions.php:238 includes/functions.php:239
4827
  #: includes/functions.php:240 includes/functions.php:242
4832
  msgid " and then <strong>%s per %s</strong>."
4833
  msgstr ""
4834
 
4835
+ #: includes/functions.php:366 includes/functions.php:188
4836
  #: includes/functions.php:224 includes/functions.php:232
4837
  #: includes/functions.php:242 includes/functions.php:243
4838
  #: includes/functions.php:244 includes/functions.php:246
4843
  msgid " and then <strong>%s every %d %s</strong>."
4844
  msgstr ""
4845
 
4846
+ #: includes/functions.php:384 includes/functions.php:202
4847
  #: includes/functions.php:238 includes/functions.php:249
4848
  #: includes/functions.php:260 includes/functions.php:261
4849
  #: includes/functions.php:262 includes/functions.php:264
4853
  msgid "After your initial payment, your first payment is Free."
4854
  msgstr ""
4855
 
4856
+ #: includes/functions.php:388 includes/functions.php:206
4857
  #: includes/functions.php:242 includes/functions.php:253
4858
  #: includes/functions.php:264 includes/functions.php:265
4859
  #: includes/functions.php:266 includes/functions.php:268
4864
  msgid "After your initial payment, your first %d payments are Free."
4865
  msgstr ""
4866
 
4867
+ #: includes/functions.php:395 includes/functions.php:213
4868
  #: includes/functions.php:249 includes/functions.php:260
4869
  #: includes/functions.php:271 includes/functions.php:272
4870
  #: includes/functions.php:273 includes/functions.php:275
4875
  msgid "After your initial payment, your first payment will cost %s."
4876
  msgstr ""
4877
 
4878
+ #: includes/functions.php:399 includes/functions.php:217
4879
  #: includes/functions.php:253 includes/functions.php:264
4880
  #: includes/functions.php:275 includes/functions.php:276
4881
  #: includes/functions.php:277 includes/functions.php:279
4886
  msgid "After your initial payment, your first %d payments will cost %s."
4887
  msgstr ""
4888
 
4889
+ #: includes/functions.php:410 includes/functions.php:523
4890
+ #: includes/functions.php:228 includes/functions.php:264
4891
+ #: includes/functions.php:275 includes/functions.php:286
4892
+ #: includes/functions.php:287 includes/functions.php:288
4893
+ #: includes/functions.php:290 includes/functions.php:293
4894
+ #: includes/functions.php:297 includes/functions.php:333
4895
+ #: includes/functions.php:399 includes/functions.php:405
4896
  #, php-format
4897
  msgid "Customers in %s will be charged %s%% tax."
4898
  msgstr ""
4899
 
4900
+ #: includes/functions.php:469
4901
+ #, php-format
4902
+ msgid "<strong>%s per %s for %d more %s</strong>"
4903
+ msgstr ""
4904
+
4905
+ #: includes/functions.php:473
4906
+ #, php-format
4907
+ msgid "<strong>%s every %d %s for %d more payments</strong>"
4908
+ msgstr ""
4909
+
4910
+ #: includes/functions.php:478
4911
+ #, php-format
4912
+ msgid "<strong>%s after %d %s</strong>"
4913
+ msgstr ""
4914
+
4915
+ #: includes/functions.php:484
4916
+ #, php-format
4917
+ msgid "<strong>%s every %s</strong>"
4918
+ msgstr ""
4919
+
4920
+ #: includes/functions.php:488
4921
+ #, php-format
4922
+ msgid "<strong>%s every %d %s</strong>"
4923
+ msgstr ""
4924
+
4925
+ #: includes/functions.php:511
4926
+ msgid "Trial pricing has been applied to the first payment."
4927
+ msgstr ""
4928
+
4929
+ #: includes/functions.php:513
4930
+ #, php-format
4931
+ msgid "Trial pricing has been applied to the first %d payments."
4932
+ msgstr ""
4933
+
4934
+ #: includes/functions.php:540 includes/functions.php:242
4935
  #: includes/functions.php:278 includes/functions.php:289
4936
  #: includes/functions.php:300 includes/functions.php:301
4937
  #: includes/functions.php:302 includes/functions.php:304
4942
  msgid "Membership expires after %d %s."
4943
  msgstr ""
4944
 
4945
+ #: includes/functions.php:556
4946
+ #, php-format
4947
+ msgid "%s membership expires after %d %s"
4948
+ msgstr ""
4949
+
4950
+ #: includes/functions.php:945 includes/functions.php:491
4951
  #: includes/functions.php:514 includes/functions.php:525
4952
  #: includes/functions.php:536 includes/functions.php:537
4953
  #: includes/functions.php:538 includes/functions.php:545
4958
  msgid "User ID not found."
4959
  msgstr ""
4960
 
4961
+ #: includes/functions.php:965 includes/functions.php:508
4962
  #: includes/functions.php:531 includes/functions.php:542
4963
  #: includes/functions.php:553 includes/functions.php:554
4964
  #: includes/functions.php:555 includes/functions.php:562
4970
  msgid "Invalid level."
4971
  msgstr ""
4972
 
4973
+ #: includes/functions.php:976 includes/functions.php:520
4974
  #: includes/functions.php:542 includes/functions.php:553
4975
  #: includes/functions.php:564 includes/functions.php:565
4976
  #: includes/functions.php:566 includes/functions.php:573
4982
  msgid "not changing?"
4983
  msgstr ""
4984
 
4985
+ #: includes/functions.php:1017 includes/functions.php:537
4986
  #: includes/functions.php:559 includes/functions.php:570
4987
  #: includes/functions.php:581 includes/functions.php:582
4988
  #: includes/functions.php:583 includes/functions.php:590
5008
  msgid "Error interacting with database"
5009
  msgstr ""
5010
 
5011
+ #: includes/functions.php:1123 includes/functions.php:907
5012
  #, php-format
5013
  msgid "Error interacting with database: %s"
5014
  msgstr ""
5015
 
5016
+ #: includes/functions.php:1198 includes/functions.php:1237
5017
  #: includes/functions.php:629 includes/functions.php:651
5018
  #: includes/functions.php:667 includes/functions.php:668
5019
  #: includes/functions.php:678 includes/functions.php:681
5029
  #: includes/functions.php:787 includes/functions.php:803
5030
  #: includes/functions.php:826 includes/functions.php:881
5031
  #: includes/functions.php:920 includes/functions.php:947
5032
+ #: includes/functions.php:948 includes/functions.php:953
5033
+ #: includes/functions.php:986 includes/functions.php:987
5034
  #: includes/functions.php:992
5035
  msgid "Membership level not found."
5036
  msgstr ""
5037
 
5038
+ #: includes/functions.php:1605 includes/functions.php:1100
5039
  #: includes/functions.php:1101 includes/functions.php:1118
5040
  #: includes/functions.php:1142 includes/functions.php:1143
5041
  #: includes/functions.php:1150 includes/functions.php:1157
5042
  #: includes/functions.php:1173 includes/functions.php:1196
5043
  #: includes/functions.php:1290 includes/functions.php:1356
5044
+ #: includes/functions.php:1357 includes/functions.php:1362
5045
  msgid "No code was given to check."
5046
  msgstr ""
5047
 
5048
+ #: includes/functions.php:1614 includes/functions.php:1050
5049
  #: includes/functions.php:1072 includes/functions.php:1088
5050
  #: includes/functions.php:1099 includes/functions.php:1102
5051
  #: includes/functions.php:1109 includes/functions.php:1110
5054
  #: includes/functions.php:1152 includes/functions.php:1159
5055
  #: includes/functions.php:1166 includes/functions.php:1182
5056
  #: includes/functions.php:1205 includes/functions.php:1299
5057
+ #: includes/functions.php:1365 includes/functions.php:1366
5058
+ #: includes/functions.php:1371
5059
  msgid "The discount code could not be found."
5060
  msgstr ""
5061
 
5062
+ #: includes/functions.php:1629 includes/functions.php:1066
5063
  #: includes/functions.php:1088 includes/functions.php:1104
5064
  #: includes/functions.php:1115 includes/functions.php:1118
5065
  #: includes/functions.php:1124 includes/functions.php:1125
5068
  #: includes/functions.php:1167 includes/functions.php:1174
5069
  #: includes/functions.php:1181 includes/functions.php:1197
5070
  #: includes/functions.php:1220 includes/functions.php:1314
5071
+ #: includes/functions.php:1380 includes/functions.php:1381
5072
+ #: includes/functions.php:1386
5073
  #, php-format
5074
  msgid "This discount code goes into effect on %s."
5075
  msgstr ""
5076
 
5077
+ #: includes/functions.php:1636 includes/functions.php:1075
5078
  #: includes/functions.php:1097 includes/functions.php:1113
5079
  #: includes/functions.php:1124 includes/functions.php:1127
5080
  #: includes/functions.php:1131 includes/functions.php:1132
5083
  #: includes/functions.php:1174 includes/functions.php:1181
5084
  #: includes/functions.php:1188 includes/functions.php:1204
5085
  #: includes/functions.php:1227 includes/functions.php:1321
5086
+ #: includes/functions.php:1387 includes/functions.php:1388
5087
+ #: includes/functions.php:1393
5088
  #, php-format
5089
  msgid "This discount code expired on %s."
5090
  msgstr ""
5091
 
5092
+ #: includes/functions.php:1646 includes/functions.php:1087
5093
  #: includes/functions.php:1109 includes/functions.php:1125
5094
  #: includes/functions.php:1136 includes/functions.php:1139
5095
  #: includes/functions.php:1141 includes/functions.php:1142
5098
  #: includes/functions.php:1184 includes/functions.php:1191
5099
  #: includes/functions.php:1198 includes/functions.php:1214
5100
  #: includes/functions.php:1237 includes/functions.php:1331
5101
+ #: includes/functions.php:1397 includes/functions.php:1398
5102
+ #: includes/functions.php:1403
5103
  msgid "This discount code is no longer valid."
5104
  msgstr ""
5105
 
5106
+ #: includes/functions.php:1666 includes/functions.php:1102
5107
  #: includes/functions.php:1124 includes/functions.php:1140
5108
  #: includes/functions.php:1151 includes/functions.php:1154
5109
  #: includes/functions.php:1155 includes/functions.php:1164
5112
  #: includes/functions.php:1204 includes/functions.php:1211
5113
  #: includes/functions.php:1227 includes/functions.php:1250
5114
  #: includes/functions.php:1344 includes/functions.php:1410
5115
+ #: includes/functions.php:1411 includes/functions.php:1416
5116
  msgid "This discount code does not apply to this membership level."
5117
  msgstr ""
5118
 
5119
+ #: includes/functions.php:1703 includes/functions.php:1110
5120
  #: includes/functions.php:1132 includes/functions.php:1148
5121
  #: includes/functions.php:1159 includes/functions.php:1162
5122
  #: includes/functions.php:1172 includes/functions.php:1180
5126
  #: includes/functions.php:1237 includes/functions.php:1253
5127
  #: includes/functions.php:1276 includes/functions.php:1370
5128
  #: includes/functions.php:1436 includes/functions.php:1442
5129
+ #: includes/functions.php:1448
5130
  msgid "This discount code is okay."
5131
  msgstr ""
5132
 
5133
+ #: includes/functions.php:1730 includes/functions.php:1134
5134
  #: includes/functions.php:1156 includes/functions.php:1172
5135
  #: includes/functions.php:1183 includes/functions.php:1186
5136
  #: includes/functions.php:1196 includes/functions.php:1205
5140
  #: includes/functions.php:1278 includes/functions.php:1301
5141
  #: includes/functions.php:1395 includes/functions.php:1397
5142
  #: includes/functions.php:1463 includes/functions.php:1469
5143
+ #: includes/functions.php:1475
5144
  msgid "and"
5145
  msgstr ""
5146
 
5147
+ #: includes/functions.php:2015 includes/functions.php:1319
5148
  #: includes/functions.php:1341 includes/functions.php:1361
5149
  #: includes/functions.php:1372 includes/functions.php:1375
5150
  #: includes/functions.php:1385 includes/functions.php:1394
5154
  #: includes/functions.php:1473 includes/functions.php:1496
5155
  #: includes/functions.php:1501 includes/functions.php:1620
5156
  #: includes/functions.php:1624 includes/functions.php:1691
5157
+ #: includes/functions.php:1697 includes/functions.php:1703
5158
  msgid "Sign Up for !!name!! Now"
5159
  msgstr ""
5160
 
5161
+ #: includes/functions.php:2021 includes/functions.php:1325
5162
  #: includes/functions.php:1347 includes/functions.php:1367
5163
  #: includes/functions.php:1378 includes/functions.php:1381
5164
  #: includes/functions.php:1391 includes/functions.php:1400
5168
  #: includes/functions.php:1479 includes/functions.php:1502
5169
  #: includes/functions.php:1507 includes/functions.php:1626
5170
  #: includes/functions.php:1630 includes/functions.php:1697
5171
+ #: includes/functions.php:1703 includes/functions.php:1709
5172
  msgid "Please specify a level id."
5173
  msgstr ""
5174
 
5362
  msgstr ""
5363
 
5364
  #: pages/billing.php:28 pages/billing.php:14 pages/billing.php:23
5365
+ #: pages/billing.php:26 pages/billing.php:28
5366
  #, php-format
5367
  msgid "Logged in as <strong>%s</strong>."
5368
  msgstr ""
5369
 
5370
  #: pages/billing.php:28 pages/billing.php:14 pages/billing.php:23
5371
+ #: pages/billing.php:26 pages/billing.php:28
5372
  msgid "logout"
5373
  msgstr ""
5374
 
5375
+ #: pages/billing.php:30 pages/cancel.php:60 pages/invoice.php:109
5376
+ #: pages/levels.php:35 shortcodes/pmpro_account.php:44
5377
+ #: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
5378
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
5379
+ #: pages/billing.php:28 pages/billing.php:30 pages/cancel.php:52
5380
+ #: pages/invoice.php:109 pages/levels.php:13 pages/levels.php:35
5381
+ #: shortcodes/pmpro_account.php:43 shortcodes/pmpro_account.php:44
5382
+ #: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:125
5383
+ #: shortcodes/pmpro_account.php:126
5384
  msgid "Level"
5385
  msgstr ""
5386
 
5387
  #: pages/billing.php:32 pages/account.php:14 pages/billing.php:18
5388
+ #: pages/billing.php:27 pages/billing.php:30 pages/billing.php:32
5389
  msgid "Membership Fee"
5390
  msgstr ""
5391
 
5392
  #: pages/billing.php:36 pages/account.php:18 pages/billing.php:22
5393
+ #: pages/billing.php:31 pages/billing.php:34 pages/billing.php:36
5394
+ #: pages/levels.php:70
5395
  #, php-format
5396
  msgid "%s every %d %s."
5397
  msgstr ""
5398
 
5399
  #: pages/billing.php:38 pages/account.php:20 pages/billing.php:24
5400
+ #: pages/billing.php:33 pages/billing.php:36 pages/billing.php:38
5401
+ #: pages/levels.php:66
5402
  #, php-format
5403
  msgid "%s per %s."
5404
  msgstr ""
5405
 
5406
  #: pages/billing.php:47 pages/account.php:25 pages/account.php:29
5407
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
5408
+ #: pages/billing.php:45 pages/billing.php:47
5409
  msgid "Duration"
5410
  msgstr ""
5411
 
5412
  #: pages/billing.php:57 pages/billing.php:39 pages/billing.php:43
5413
+ #: pages/billing.php:52 pages/billing.php:55 pages/billing.php:57
5414
  msgid ""
5415
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
5416
  "paypal.com\">login to PayPal here</a> to update your billing information."
5417
  msgstr ""
5418
 
5419
+ #: pages/billing.php:87 pages/checkout.php:333 pages/billing.php:65
5420
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
5421
+ #: pages/billing.php:83 pages/checkout.php:305 pages/checkout.php:307
5422
+ #: pages/checkout.php:309 pages/checkout.php:318 pages/checkout.php:321
5423
+ #: pages/checkout.php:324 pages/checkout.php:326 pages/checkout.php:328
5424
  msgid "First Name"
5425
  msgstr ""
5426
 
5427
+ #: pages/billing.php:91 pages/checkout.php:337 pages/billing.php:69
5428
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
5429
+ #: pages/billing.php:87 pages/checkout.php:309 pages/checkout.php:311
5430
+ #: pages/checkout.php:313 pages/checkout.php:322 pages/checkout.php:325
5431
+ #: pages/checkout.php:328 pages/checkout.php:330 pages/checkout.php:332
5432
  msgid "Last Name"
5433
  msgstr ""
5434
 
5435
+ #: pages/billing.php:95 pages/checkout.php:341 pages/billing.php:73
5436
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
5437
+ #: pages/billing.php:91 pages/checkout.php:313 pages/checkout.php:315
5438
+ #: pages/checkout.php:317 pages/checkout.php:326 pages/checkout.php:329
5439
+ #: pages/checkout.php:332 pages/checkout.php:334 pages/checkout.php:336
5440
  msgid "Address 1"
5441
  msgstr ""
5442
 
5443
+ #: pages/billing.php:99 pages/checkout.php:345 pages/billing.php:77
5444
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
5445
+ #: pages/billing.php:95 pages/checkout.php:317 pages/checkout.php:319
5446
+ #: pages/checkout.php:321 pages/checkout.php:330 pages/checkout.php:333
5447
+ #: pages/checkout.php:336 pages/checkout.php:338 pages/checkout.php:340
5448
  msgid "Address 2"
5449
  msgstr ""
5450
 
5451
+ #: pages/billing.php:109 pages/checkout.php:355 pages/billing.php:87
5452
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
5453
+ #: pages/billing.php:105 pages/checkout.php:327 pages/checkout.php:329
5454
+ #: pages/checkout.php:331 pages/checkout.php:340 pages/checkout.php:343
5455
+ #: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:350
5456
  msgid "City"
5457
  msgstr ""
5458
 
5459
+ #: pages/billing.php:113 pages/checkout.php:359 pages/billing.php:91
5460
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
5461
+ #: pages/billing.php:109 pages/checkout.php:331 pages/checkout.php:333
5462
+ #: pages/checkout.php:335 pages/checkout.php:344 pages/checkout.php:347
5463
+ #: pages/checkout.php:350 pages/checkout.php:352 pages/checkout.php:354
5464
  msgid "State"
5465
  msgstr ""
5466
 
5467
+ #: pages/billing.php:117 pages/checkout.php:363 pages/billing.php:95
5468
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
5469
+ #: pages/billing.php:113 pages/checkout.php:335 pages/checkout.php:337
5470
+ #: pages/checkout.php:339 pages/checkout.php:348 pages/checkout.php:351
5471
+ #: pages/checkout.php:354 pages/checkout.php:356 pages/checkout.php:358
5472
  msgid "Postal Code"
5473
  msgstr ""
5474
 
5475
+ #: pages/billing.php:126 pages/checkout.php:372 pages/billing.php:104
5476
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
5477
+ #: pages/billing.php:122 pages/checkout.php:344 pages/checkout.php:346
5478
+ #: pages/checkout.php:348 pages/checkout.php:357 pages/checkout.php:360
5479
+ #: pages/checkout.php:363 pages/checkout.php:365 pages/checkout.php:367
5480
  msgid "City, State Zip"
5481
  msgstr ""
5482
 
5483
+ #: pages/billing.php:179 pages/checkout.php:425 pages/billing.php:157
5484
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
5485
+ #: pages/billing.php:175 pages/checkout.php:397 pages/checkout.php:399
5486
+ #: pages/checkout.php:401 pages/checkout.php:410 pages/checkout.php:413
5487
+ #: pages/checkout.php:416 pages/checkout.php:418 pages/checkout.php:420
5488
  msgid "Country"
5489
  msgstr ""
5490
 
5491
+ #: pages/billing.php:204 pages/checkout.php:450 pages/billing.php:182
5492
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
5493
+ #: pages/billing.php:200 pages/checkout.php:422 pages/checkout.php:424
5494
+ #: pages/checkout.php:426 pages/checkout.php:435 pages/checkout.php:438
5495
+ #: pages/checkout.php:441 pages/checkout.php:443 pages/checkout.php:445
5496
  msgid "Phone"
5497
  msgstr ""
5498
 
5499
+ #: pages/billing.php:215 pages/checkout.php:227 pages/checkout.php:464
5500
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
5501
+ #: pages/billing.php:209 pages/billing.php:211 pages/checkout.php:204
5502
+ #: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:216
5503
+ #: pages/checkout.php:218 pages/checkout.php:220 pages/checkout.php:436
5504
+ #: pages/checkout.php:438 pages/checkout.php:440 pages/checkout.php:449
5505
+ #: pages/checkout.php:453 pages/checkout.php:455 pages/checkout.php:457
5506
+ #: pages/checkout.php:460
5507
  msgid "E-mail Address"
5508
  msgstr ""
5509
 
5510
+ #: pages/billing.php:219 pages/checkout.php:473 pages/billing.php:197
5511
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
5512
+ #: pages/billing.php:215 pages/checkout.php:445 pages/checkout.php:447
5513
+ #: pages/checkout.php:449 pages/checkout.php:458 pages/checkout.php:462
5514
+ #: pages/checkout.php:464 pages/checkout.php:466 pages/checkout.php:469
5515
  msgid "Confirm E-mail"
5516
  msgstr ""
5517
 
5518
+ #: pages/billing.php:247 pages/billing.php:217 pages/billing.php:221
5519
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
5520
+ #: pages/billing.php:238
5521
  msgid "Credit Card Information"
5522
  msgstr ""
5523
 
5524
+ #: pages/billing.php:248 pages/billing.php:217 pages/billing.php:221
5525
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
5526
+ #: pages/billing.php:239
5527
  #, php-format
5528
  msgid "We accept %s"
5529
  msgstr ""
5530
 
5531
+ #: pages/billing.php:417 pages/billing.php:309 pages/billing.php:313
5532
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
5533
+ #: pages/billing.php:360 pages/billing.php:364 pages/billing.php:408
5534
  msgid ""
5535
  "This subscription is not recurring. So you don't need to update your billing "
5536
  "information."
5537
  msgstr ""
5538
 
5539
+ #: pages/cancel.php:33 pages/cancel.php:14 pages/cancel.php:26
5540
  msgid "Are you sure you want to cancel your membership?"
5541
  msgstr ""
5542
 
5543
+ #: pages/cancel.php:40 pages/cancel.php:32
5544
  #, php-format
5545
  msgid "Are you sure you want to cancel your %s membership?"
5546
  msgstr ""
5547
 
5548
+ #: pages/cancel.php:45
5549
+ msgid "Yes, cancel this membership"
5550
  msgstr ""
5551
 
5552
+ #: pages/cancel.php:46
5553
+ msgid "No, keep this membership"
5554
  msgstr ""
5555
 
5556
+ #: pages/cancel.php:56 shortcodes/pmpro_account.php:40 pages/account.php:14
5557
+ #: pages/cancel.php:48 shortcodes/pmpro_account.php:39
5558
+ #: shortcodes/pmpro_account.php:40
5559
  msgid "My Memberships"
5560
  msgstr ""
5561
 
5562
+ #: pages/cancel.php:92 pages/cancel.php:77
5563
  msgid "Cancel All Memberships"
5564
  msgstr ""
5565
 
5566
+ #: pages/cancel.php:101 pages/cancel.php:22 pages/cancel.php:86
5567
  msgid "Click here to go to the home page."
5568
  msgstr ""
5569
 
5585
  msgid "You have selected the <strong>%s</strong> membership level."
5586
  msgstr ""
5587
 
5588
+ #: pages/checkout.php:68 pages/checkout.php:51 pages/checkout.php:53
5589
  #: pages/checkout.php:60 pages/checkout.php:61
5590
  #, php-format
5591
  msgid ""
5593
  "been applied to your order.</p>"
5594
  msgstr ""
5595
 
5596
+ #: pages/checkout.php:79 services/applydiscountcode.php:92
5597
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
5598
  #: pages/checkout.php:71 pages/checkout.php:72
5599
  #: services/applydiscountcode.php:74 services/applydiscountcode.php:75
5601
  msgid "Click here to change your discount code"
5602
  msgstr ""
5603
 
5604
+ #: pages/checkout.php:81 pages/checkout.php:64 pages/checkout.php:65
5605
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
5606
  msgid "Click here to enter your discount code"
5607
  msgstr ""
5608
 
5609
+ #: pages/checkout.php:81 pages/checkout.php:64 pages/checkout.php:65
5610
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
5611
  msgid "Do you have a discount code?"
5612
  msgstr ""
5613
 
5614
+ #: pages/checkout.php:182 pages/checkout.php:160 pages/checkout.php:163
5615
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
5616
  #: pages/checkout.php:175
5617
  msgid "Account Information"
5618
  msgstr ""
5619
 
5620
+ #: pages/checkout.php:183 pages/checkout.php:160 pages/checkout.php:163
5621
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
5622
  #: pages/checkout.php:176
5623
  msgid "Already have an account?"
5624
  msgstr ""
5625
 
5626
+ #: pages/checkout.php:183 pages/checkout.php:160 pages/checkout.php:163
5627
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
5628
  #: pages/checkout.php:176
5629
  msgid "Log in here"
5630
  msgstr ""
5631
 
5632
+ #: pages/checkout.php:209 pages/checkout.php:186 pages/checkout.php:189
5633
  #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
5634
  #: pages/checkout.php:202
5635
  msgid "Confirm Password"
5636
  msgstr ""
5637
 
5638
+ #: pages/checkout.php:236 pages/checkout.php:213 pages/checkout.php:216
5639
  #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
5640
  #: pages/checkout.php:229
5641
  msgid "Confirm E-mail Address"
5642
  msgstr ""
5643
 
5644
+ #: pages/checkout.php:255 pages/checkout.php:232 pages/checkout.php:235
5645
  #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
5646
  #: pages/checkout.php:248
5647
  msgid "Full Name"
5648
  msgstr ""
5649
 
5650
+ #: pages/checkout.php:256 pages/checkout.php:233 pages/checkout.php:236
5651
  #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
5652
  #: pages/checkout.php:249
5653
  msgid "LEAVE THIS BLANK"
5654
  msgstr ""
5655
 
5656
+ #: pages/checkout.php:280 pages/checkout.php:257 pages/checkout.php:260
5657
  #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
5658
  #: pages/checkout.php:273
5659
  #, php-format
5662
  "different account for this membership, <a href=\"%s\">log out now</a>."
5663
  msgstr ""
5664
 
5665
+ #: pages/checkout.php:296 pages/checkout.php:276 pages/checkout.php:278
5666
  #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:289
5667
  #: pages/checkout.php:292 pages/checkout.php:299
5668
  msgid "Choose your Payment Method"
5669
  msgstr ""
5670
 
5671
+ #: pages/checkout.php:305 pages/checkout.php:284 pages/checkout.php:286
5672
  #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:298
5673
  #: pages/checkout.php:300 pages/checkout.php:307
5674
  msgid "Check Out with a Credit Card Here"
5675
  msgstr ""
5676
 
5677
+ #: pages/checkout.php:693 pages/checkout.php:277 pages/checkout.php:284
5678
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
5679
+ #: pages/checkout.php:681 pages/checkout.php:686 pages/checkout.php:690
5680
+ #: pages/checkout.php:692 pages/checkout.php:696 pages/checkout.php:697
5681
  #, php-format
5682
  msgid "I agree to the %s"
5683
  msgstr ""
5684
 
5685
+ #: pages/checkout.php:713 pages/checkout.php:667 pages/checkout.php:674
5686
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
5687
+ #: pages/checkout.php:701 pages/checkout.php:706 pages/checkout.php:710
5688
+ #: pages/checkout.php:712 pages/checkout.php:716 pages/checkout.php:717
5689
  msgid "Complete Payment"
5690
  msgstr ""
5691
 
5692
+ #: pages/checkout.php:735 pages/checkout.php:687 pages/checkout.php:694
5693
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
5694
+ #: pages/checkout.php:723 pages/checkout.php:728 pages/checkout.php:732
5695
+ #: pages/checkout.php:734 pages/checkout.php:738 pages/checkout.php:739
5696
  msgid "Processing..."
5697
  msgstr ""
5698
 
5714
  "membership invoice has been sent to %s."
5715
  msgstr ""
5716
 
5717
+ #: pages/confirmation.php:47 pages/invoice.php:22 pages/confirmation.php:41
5718
  #: pages/invoice.php:22
5719
  #, php-format
5720
  msgid "Invoice #%s on %s"
5721
  msgstr ""
5722
 
5723
+ #: pages/confirmation.php:49 pages/invoice.php:24 pages/confirmation.php:43
5724
  #: pages/invoice.php:24
5725
  msgid "Print"
5726
  msgstr ""
5727
 
5728
+ #: pages/confirmation.php:52 pages/confirmation.php:115 pages/invoice.php:27
5729
  #: pages/confirmation.php:45 pages/confirmation.php:46
5730
  #: pages/confirmation.php:102 pages/confirmation.php:104 pages/invoice.php:26
5731
  #: pages/invoice.php:27
5732
  msgid "Account"
5733
  msgstr ""
5734
 
5735
+ #: pages/confirmation.php:55 pages/invoice.php:30 pages/account.php:29
5736
  #: pages/account.php:33 pages/confirmation.php:48 pages/confirmation.php:49
5737
  #: pages/invoice.php:29 pages/invoice.php:30
5738
  msgid "Membership Expires"
5739
  msgstr ""
5740
 
5741
+ #: pages/confirmation.php:69 pages/invoice.php:50 pages/account.php:105
5742
  #: pages/account.php:109 pages/confirmation.php:61 pages/confirmation.php:63
5743
  #: pages/invoice.php:48 pages/invoice.php:50
5744
  msgid "Payment Method"
5745
  msgstr ""
5746
 
5747
+ #: pages/confirmation.php:71 pages/invoice.php:52 pages/invoice.php:110
5748
  #: pages/confirmation.php:63 pages/confirmation.php:65 pages/invoice.php:50
5749
  #: pages/invoice.php:52 pages/invoice.php:107 pages/invoice.php:109
5750
  #: pages/invoice.php:110
5751
  msgid "Total Billed"
5752
  msgstr ""
5753
 
5754
+ #: pages/confirmation.php:88 pages/invoice.php:69 pages/confirmation.php:80
5755
  #: pages/confirmation.php:82 pages/invoice.php:67 pages/invoice.php:69
5756
  msgid "ending in"
5757
  msgstr ""
5758
 
5759
+ #: pages/confirmation.php:103 pages/confirmation.php:97
5760
  #, php-format
5761
  msgid ""
5762
  "Below are details about your membership account. A welcome email has been "
5763
  "sent to %s."
5764
  msgstr ""
5765
 
5766
+ #: pages/confirmation.php:116 pages/confirmation.php:103
5767
  #: pages/confirmation.php:105
5768
  msgid "Pending"
5769
  msgstr ""
5770
 
5771
+ #: pages/confirmation.php:124 pages/invoice.php:141 pages/confirmation.php:111
5772
  #: pages/confirmation.php:113 pages/invoice.php:139 pages/invoice.php:141
5773
  msgid "View Your Membership Account &rarr;"
5774
  msgstr ""
5775
 
5776
+ #: pages/confirmation.php:126 pages/confirmation.php:113
5777
  #: pages/confirmation.php:115
5778
  msgid ""
5779
  "If your account is not activated within a few minutes, please contact the "
5809
 
5810
  #: pages/levels.php:78 shortcodes/pmpro_account.php:60 pages/account.php:33
5811
  #: pages/levels.php:57 pages/levels.php:78 pages/levels.php:123
5812
+ #: shortcodes/pmpro_account.php:59 shortcodes/pmpro_account.php:60
5813
+ #: shortcodes/pmpro_account.php:61
5814
  msgid "Renew"
5815
  msgstr ""
5816
 
5829
  msgid "&larr; Return to Home"
5830
  msgstr ""
5831
 
5832
+ #: paid-memberships-pro.php:128 adminpages/orders.php:398
5833
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
5834
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
5835
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
5837
  msgid "Testing Only"
5838
  msgstr ""
5839
 
5840
+ #: paid-memberships-pro.php:133 paid-memberships-pro.php:120
5841
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
5842
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
5843
  #: paid-memberships-pro.php:131
5844
  msgid "PayPal Payflow Pro/PayPal Pro"
5845
  msgstr ""
5846
 
5847
+ #: paid-memberships-pro.php:138 paid-memberships-pro.php:125
5848
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
5849
  #: paid-memberships-pro.php:134 paid-memberships-pro.php:135
5850
  #: paid-memberships-pro.php:136
5851
  msgid "Cybersource"
5852
  msgstr ""
5853
 
5854
+ #: paid-memberships-pro.php:159 paid-memberships-pro.php:156
5855
  #: paid-memberships-pro.php:157
5856
  msgid "Once a month"
5857
  msgstr ""
5870
  "moments."
5871
  msgstr ""
5872
 
5873
+ #: preheaders/billing.php:273 preheaders/checkout.php:322
5874
  #: preheaders/billing.php:258 preheaders/billing.php:265
5875
  #: preheaders/billing.php:266 preheaders/billing.php:270
5876
  #: preheaders/billing.php:279 preheaders/checkout.php:332
5881
  msgid "Please complete all required fields."
5882
  msgstr ""
5883
 
5884
+ #: preheaders/billing.php:276 preheaders/checkout.php:330
5885
  #: preheaders/billing.php:263 preheaders/billing.php:268
5886
  #: preheaders/billing.php:269 preheaders/billing.php:273
5887
  #: preheaders/billing.php:284 preheaders/checkout.php:340
5892
  msgid "Your email addresses do not match. Please try again."
5893
  msgstr ""
5894
 
5895
+ #: preheaders/billing.php:279 preheaders/checkout.php:335
5896
  #: preheaders/billing.php:268 preheaders/billing.php:271
5897
  #: preheaders/billing.php:272 preheaders/billing.php:276
5898
  #: preheaders/billing.php:289 preheaders/checkout.php:345
5903
  msgid "The email address entered is in an invalid format. Please try again."
5904
  msgstr ""
5905
 
5906
+ #: preheaders/billing.php:283 preheaders/billing.php:274
5907
  #: preheaders/billing.php:275 preheaders/billing.php:276
5908
  #: preheaders/billing.php:280 preheaders/billing.php:295
5909
  msgid "All good!"
5910
  msgstr ""
5911
 
5912
+ #: preheaders/billing.php:353 preheaders/billing.php:340
5913
  #: preheaders/billing.php:345 preheaders/billing.php:346
5914
  #: preheaders/billing.php:350 preheaders/billing.php:370
5915
  #, php-format
5916
  msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
5917
  msgstr ""
5918
 
5919
+ #: preheaders/billing.php:359 preheaders/billing.php:347
5920
  #: preheaders/billing.php:351 preheaders/billing.php:352
5921
  #: preheaders/billing.php:356 preheaders/billing.php:378
5922
  #: preheaders/billing.php:380
5923
  msgid "Error updating billing information."
5924
  msgstr ""
5925
 
5926
+ #: preheaders/cancel.php:59 preheaders/cancel.php:24 preheaders/cancel.php:25
5927
  #: preheaders/cancel.php:28
5928
  msgid "Your membership has been cancelled."
5929
  msgstr ""
5930
 
5931
+ #: preheaders/checkout.php:34 preheaders/checkout.php:344
5932
  #: preheaders/checkout.php:28 preheaders/checkout.php:30
5933
  #: preheaders/checkout.php:31 preheaders/checkout.php:32
5934
  #: preheaders/checkout.php:34 preheaders/checkout.php:354
5939
  msgid "Invalid gateway."
5940
  msgstr ""
5941
 
5942
+ #: preheaders/checkout.php:54 preheaders/checkout.php:88
5943
  #: preheaders/checkout.php:89 preheaders/checkout.php:91
5944
  #: preheaders/checkout.php:95 preheaders/checkout.php:96
5945
  msgid "Checkout: Payment Information"
5946
  msgstr ""
5947
 
5948
+ #: preheaders/checkout.php:59 preheaders/checkout.php:100
5949
  #: preheaders/checkout.php:101
5950
  msgid "Set Up Your Account"
5951
  msgstr ""
5952
 
5953
+ #: preheaders/checkout.php:289 preheaders/checkout.php:300
5954
  #: preheaders/checkout.php:304 preheaders/checkout.php:331
5955
  #: preheaders/checkout.php:416 preheaders/checkout.php:421
5956
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
5957
  msgstr ""
5958
 
5959
+ #: preheaders/checkout.php:325 preheaders/checkout.php:335
5960
  #: preheaders/checkout.php:339 preheaders/checkout.php:367
5961
  #: preheaders/checkout.php:461 preheaders/checkout.php:468
5962
  #: preheaders/checkout.php:473 preheaders/checkout.php:485
5964
  msgid "Your passwords do not match. Please try again."
5965
  msgstr ""
5966
 
5967
+ #: preheaders/checkout.php:340 preheaders/checkout.php:350
5968
  #: preheaders/checkout.php:354 preheaders/checkout.php:382
5969
  #: preheaders/checkout.php:476 preheaders/checkout.php:483
5970
  #: preheaders/checkout.php:486 preheaders/checkout.php:488
5973
  msgid "Please check the box to agree to the %s."
5974
  msgstr ""
5975
 
5976
+ #: preheaders/checkout.php:347 preheaders/checkout.php:357
5977
  #: preheaders/checkout.php:361 preheaders/checkout.php:389
5978
  #: preheaders/checkout.php:483 preheaders/checkout.php:490
5979
  #: preheaders/checkout.php:495 preheaders/checkout.php:512
5981
  msgid "Are you a spammer?"
5982
  msgstr ""
5983
 
5984
+ #: preheaders/checkout.php:368 preheaders/checkout.php:377
5985
  #: preheaders/checkout.php:381 preheaders/checkout.php:410
5986
  #: preheaders/checkout.php:503 preheaders/checkout.php:510
5987
  #: preheaders/checkout.php:515 preheaders/checkout.php:518
5989
  msgid "That username is already taken. Please try another."
5990
  msgstr ""
5991
 
5992
+ #: preheaders/checkout.php:373 preheaders/checkout.php:382
5993
  #: preheaders/checkout.php:386 preheaders/checkout.php:415
5994
  #: preheaders/checkout.php:508 preheaders/checkout.php:515
5995
  #: preheaders/checkout.php:520 preheaders/checkout.php:524
5997
  msgid "That email address is already taken. Please try another."
5998
  msgstr ""
5999
 
6000
+ #: preheaders/checkout.php:404 preheaders/checkout.php:397
6001
  #: preheaders/checkout.php:399 preheaders/checkout.php:416
6002
  #: preheaders/checkout.php:420 preheaders/checkout.php:446
6003
  #: preheaders/checkout.php:525 preheaders/checkout.php:532
6007
  msgid "reCAPTCHA failed. (%s) Please try again."
6008
  msgstr ""
6009
 
6010
+ #: preheaders/checkout.php:491 preheaders/checkout.php:482
6011
  #: preheaders/checkout.php:484 preheaders/checkout.php:501
6012
  #: preheaders/checkout.php:505 preheaders/checkout.php:533
6013
  #: preheaders/checkout.php:647 preheaders/checkout.php:654
6016
  msgid "Payment accepted."
6017
  msgstr ""
6018
 
6019
+ #: preheaders/checkout.php:497 preheaders/checkout.php:490
6020
  #: preheaders/checkout.php:492 preheaders/checkout.php:509
6021
  #: preheaders/checkout.php:513 preheaders/checkout.php:539
6022
  #: preheaders/checkout.php:653 preheaders/checkout.php:660
6027
  "membership."
6028
  msgstr ""
6029
 
6030
+ #: preheaders/checkout.php:572 preheaders/checkout.php:550
6031
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
6032
  #: preheaders/checkout.php:571 preheaders/checkout.php:575
6033
  #: preheaders/checkout.php:581 preheaders/checkout.php:614
6040
  "Please contact us."
6041
  msgstr ""
6042
 
6043
+ #: preheaders/checkout.php:802 preheaders/checkout.php:691
6044
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
6045
  #: preheaders/checkout.php:712 preheaders/checkout.php:722
6046
  #: preheaders/checkout.php:730 preheaders/checkout.php:754
6054
  "submit this form again. Please contact the site owner to fix this issue."
6055
  msgstr ""
6056
 
6057
+ #: preheaders/checkout.php:805 preheaders/checkout.php:694
6058
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
6059
  #: preheaders/checkout.php:715 preheaders/checkout.php:725
6060
  #: preheaders/checkout.php:733 preheaders/checkout.php:757
6068
  "this form again. Please contact the site owner to fix this issue."
6069
  msgstr ""
6070
 
6071
+ #: preheaders/checkout.php:816 preheaders/checkout.php:705
6072
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
6073
  #: preheaders/checkout.php:726 preheaders/checkout.php:736
6074
  #: preheaders/checkout.php:744 preheaders/checkout.php:768
6082
  "will be processed."
6083
  msgstr ""
6084
 
6085
+ #: preheaders/checkout.php:818 preheaders/checkout.php:707
6086
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
6087
  #: preheaders/checkout.php:728 preheaders/checkout.php:738
6088
  #: preheaders/checkout.php:746 preheaders/checkout.php:770
6099
  msgid "Membership expired email sent to %s. "
6100
  msgstr ""
6101
 
6102
+ #: scheduled/crons.php:100 scheduled/crons.php:27 scheduled/crons.php:74
6103
  #: scheduled/crons.php:80 scheduled/crons.php:84 scheduled/crons.php:88
6104
  #: scheduled/crons.php:99
6105
  #, php-format
6106
  msgid "Membership expiring email sent to %s. "
6107
  msgstr ""
6108
 
6109
+ #: scheduled/crons.php:176 scheduled/crons.php:143 scheduled/crons.php:152
6110
  #: scheduled/crons.php:157 scheduled/crons.php:164 scheduled/crons.php:175
6111
  #, php-format
6112
  msgid "Credit card expiring email sent to %s. "
6113
  msgstr ""
6114
 
6115
+ #: scheduled/crons.php:232 scheduled/crons.php:104 scheduled/crons.php:196
6116
  #: scheduled/crons.php:208 scheduled/crons.php:210 scheduled/crons.php:220
6117
  #: scheduled/crons.php:231
6118
  #, php-format
6119
  msgid "Trial ending email sent to %s. "
6120
  msgstr ""
6121
 
6122
+ #: services/applydiscountcode.php:70 services/applydiscountcode.php:64
6123
  #: services/applydiscountcode.php:67
6124
  #, php-format
6125
  msgid "The %s code has been applied to your order. "
6126
  msgstr ""
6127
 
6128
+ #: services/applydiscountcode.php:100 services/applydiscountcode.php:82
6129
  #: services/applydiscountcode.php:83 services/applydiscountcode.php:86
6130
  #: services/applydiscountcode.php:97
6131
  #, php-format
6152
  "this user's membership is cancelled on your site if it should be."
6153
  msgstr ""
6154
 
6155
+ #: shortcodes/pmpro_account.php:45 pages/account.php:19
6156
+ #: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:45
6157
  msgid "Billing"
6158
  msgstr ""
6159
 
6160
  #: shortcodes/pmpro_account.php:64 pages/account.php:36
6161
+ #: shortcodes/pmpro_account.php:62 shortcodes/pmpro_account.php:64
6162
+ #: shortcodes/pmpro_account.php:65
6163
  msgid "Update Billing Info"
6164
  msgstr ""
6165
 
6166
  #: shortcodes/pmpro_account.php:70 pages/account.php:42
6167
+ #: shortcodes/pmpro_account.php:68 shortcodes/pmpro_account.php:70
6168
+ #: shortcodes/pmpro_account.php:71
6169
  msgid "Change"
6170
  msgstr ""
6171
 
6172
+ #: shortcodes/pmpro_account.php:93 pages/account.php:64
6173
+ #: shortcodes/pmpro_account.php:90 shortcodes/pmpro_account.php:92
6174
+ #: shortcodes/pmpro_account.php:93
6175
  msgid "View all Membership Options"
6176
  msgstr ""
6177
 
6178
+ #: shortcodes/pmpro_account.php:102 pages/account.php:46 pages/account.php:50
6179
  #: pages/account.php:71 shortcodes/pmpro_account.php:99
6180
+ #: shortcodes/pmpro_account.php:101 shortcodes/pmpro_account.php:102
6181
  msgid "My Account"
6182
  msgstr ""
6183
 
6184
+ #: shortcodes/pmpro_account.php:113 pages/account.php:55 pages/account.php:59
6185
  #: pages/account.php:80 shortcodes/pmpro_account.php:110
6186
+ #: shortcodes/pmpro_account.php:112 shortcodes/pmpro_account.php:113
6187
  msgid "Edit Profile"
6188
  msgstr ""
6189
 
6190
+ #: shortcodes/pmpro_account.php:114 pages/account.php:56 pages/account.php:60
6191
  #: pages/account.php:81 shortcodes/pmpro_account.php:111
6192
+ #: shortcodes/pmpro_account.php:113 shortcodes/pmpro_account.php:114
6193
  msgid "Change Password"
6194
  msgstr ""
6195
 
6196
+ #: shortcodes/pmpro_account.php:121 pages/account.php:87 pages/account.php:125
6197
  #: pages/account.php:129 shortcodes/pmpro_account.php:118
6198
+ #: shortcodes/pmpro_account.php:120 shortcodes/pmpro_account.php:121
6199
  msgid "Past Invoices"
6200
  msgstr ""
6201
 
6202
+ #: shortcodes/pmpro_account.php:127 pages/account.php:93
6203
+ #: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:126
6204
+ #: shortcodes/pmpro_account.php:127
6205
  msgid "Amount"
6206
  msgstr ""
6207
 
6208
+ #: shortcodes/pmpro_account.php:155 pages/account.php:121
6209
  #: pages/account.php:140 pages/account.php:144
6210
+ #: shortcodes/pmpro_account.php:152 shortcodes/pmpro_account.php:154
6211
+ #: shortcodes/pmpro_account.php:155
6212
  msgid "View All Invoices"
6213
  msgstr ""
6214
 
6215
+ #: shortcodes/pmpro_account.php:162 pages/account.php:128
6216
  #: pages/account.php:146 pages/account.php:150
6217
+ #: shortcodes/pmpro_account.php:159 shortcodes/pmpro_account.php:161
6218
+ #: shortcodes/pmpro_account.php:162
6219
  msgid "Member Links"
6220
  msgstr ""
6221
 
6458
  msgid "Cancel Membership"
6459
  msgstr ""
6460
 
6461
+ #: pages/cancel.php:17 pages/cancel.php:37
6462
+ msgid "Yes, cancel my account"
6463
+ msgstr ""
6464
+
6465
+ #: pages/cancel.php:19 pages/cancel.php:38
6466
+ msgid "No, keep my account"
6467
+ msgstr ""
6468
+
6469
  #: pages/checkout.php:51 pages/checkout.php:52
6470
  #, php-format
6471
  msgid "<p>The <strong>%s</strong> code has been applied to your order.</p>"
languages/pmpro.pot CHANGED
@@ -5,7 +5,7 @@
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: pmpro\n"
8
- "POT-Creation-Date: 2016-07-20 12:40-0400\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
@@ -34,7 +34,7 @@ msgstr ""
34
 
35
  #: adminpages/addons.php:67 adminpages/admin_header.php:170
36
  #: includes/adminpages.php:53 includes/adminpages.php:151
37
- #: adminpages/addons.php:64 adminpages/addons.php:80
38
  #: adminpages/admin_header.php:133 adminpages/admin_header.php:154
39
  #: adminpages/admin_header.php:170 includes/adminpages.php:14
40
  #: includes/adminpages.php:52 includes/adminpages.php:53
@@ -44,165 +44,178 @@ msgstr ""
44
  msgid "Add Ons"
45
  msgstr ""
46
 
47
- #: adminpages/addons.php:74 adminpages/addons.php:71 adminpages/addons.php:87
 
48
  #, php-format
49
  msgid "Last checked on %s at %s."
50
  msgstr ""
51
 
52
- #: adminpages/addons.php:75 adminpages/addons.php:72 adminpages/addons.php:88
 
53
  msgid "Check Again"
54
  msgstr ""
55
 
56
  #: adminpages/addons.php:79 adminpages/orders.php:881 adminpages/addons.php:76
57
- #: adminpages/addons.php:92 adminpages/orders.php:605
58
  #: adminpages/orders.php:712 adminpages/orders.php:741
59
- #: adminpages/orders.php:850
60
  msgid "All"
61
  msgstr ""
62
 
63
- #: adminpages/addons.php:80 adminpages/addons.php:77 adminpages/addons.php:93
 
64
  msgid "Active"
65
  msgstr ""
66
 
67
- #: adminpages/addons.php:81 adminpages/addons.php:78 adminpages/addons.php:94
 
68
  msgid "Inactive"
69
  msgstr ""
70
 
71
- #: adminpages/addons.php:82 adminpages/addons.php:79 adminpages/addons.php:95
 
72
  msgid "Update Available"
73
  msgstr ""
74
 
75
- #: adminpages/addons.php:83 adminpages/addons.php:80 adminpages/addons.php:96
 
76
  msgid "Not Installed"
77
  msgstr ""
78
 
79
- #: adminpages/addons.php:96 adminpages/addons.php:93 adminpages/addons.php:109
 
80
  msgid "Add On Name"
81
  msgstr ""
82
 
83
- #: adminpages/addons.php:97 adminpages/addons.php:94 adminpages/addons.php:110
 
84
  msgid "Type"
85
  msgstr ""
86
 
87
  #: adminpages/addons.php:98 adminpages/membershiplevels.php:300
88
- #: adminpages/addons.php:95 adminpages/addons.php:111
89
  #: adminpages/membershiplevels.php:296 adminpages/membershiplevels.php:298
90
  #: adminpages/membershiplevels.php:300
91
  msgid "Description"
92
  msgstr ""
93
 
94
  #: adminpages/addons.php:121 adminpages/addons.php:118
95
- #: adminpages/addons.php:134
96
  msgid "No Add Ons found."
97
  msgstr ""
98
 
99
  #: adminpages/addons.php:182 adminpages/addons.php:187
100
  #: adminpages/addons.php:199 adminpages/addons.php:179
101
- #: adminpages/addons.php:184 adminpages/addons.php:195
102
- #: adminpages/addons.php:196 adminpages/addons.php:200
103
- #: adminpages/addons.php:212
 
104
  msgid "Install Now"
105
  msgstr ""
106
 
107
  #: adminpages/addons.php:188 adminpages/addons.php:194
108
  #: adminpages/addons.php:200 adminpages/addons.php:206
109
- #: adminpages/addons.php:185 adminpages/addons.php:191
110
- #: adminpages/addons.php:197 adminpages/addons.php:201
111
- #: adminpages/addons.php:203 adminpages/addons.php:207
 
 
112
  #: adminpages/addons.php:213 adminpages/addons.php:219
113
  msgid "Download"
114
  msgstr ""
115
 
116
  #: adminpages/addons.php:193 adminpages/addons.php:205
117
- #: adminpages/addons.php:190 adminpages/addons.php:202
 
118
  #: adminpages/addons.php:206 adminpages/addons.php:218
119
  msgid "Update License"
120
  msgstr ""
121
 
122
  #: adminpages/addons.php:211 adminpages/addons.php:208
123
- #: adminpages/addons.php:224
124
  msgid "Deactivate"
125
  msgstr ""
126
 
127
  #: adminpages/addons.php:211 adminpages/addons.php:208
128
- #: adminpages/addons.php:224
129
  #, php-format
130
  msgid "Deactivate %s"
131
  msgstr ""
132
 
133
  #: adminpages/addons.php:215 adminpages/addons.php:212
134
- #: adminpages/addons.php:228
135
  msgid "Activate"
136
  msgstr ""
137
 
138
  #: adminpages/addons.php:215 adminpages/addons.php:212
139
- #: adminpages/addons.php:228
140
  #, php-format
141
  msgid "Activate %s"
142
  msgstr ""
143
 
144
  #: adminpages/addons.php:216 adminpages/addons.php:213
145
- #: adminpages/addons.php:229
146
  msgid "Delete"
147
  msgstr ""
148
 
149
  #: adminpages/addons.php:216 adminpages/addons.php:213
150
- #: adminpages/addons.php:229
151
  #, php-format
152
  msgid "Delete %s"
153
  msgstr ""
154
 
155
  #: adminpages/addons.php:226 adminpages/addons.php:223
156
- #: adminpages/addons.php:239
157
  msgid "PMPro Free"
158
  msgstr ""
159
 
160
  #: adminpages/addons.php:228 adminpages/addons.php:225
161
- #: adminpages/addons.php:241
162
  msgid "PMPro Core"
163
  msgstr ""
164
 
165
  #: adminpages/addons.php:230 adminpages/addons.php:227
166
- #: adminpages/addons.php:243
167
  msgid "PMPro Plus"
168
  msgstr ""
169
 
170
  #: adminpages/addons.php:232 adminpages/addons.php:229
171
- #: adminpages/addons.php:245
172
  msgid "WordPress.org"
173
  msgstr ""
174
 
175
- #: adminpages/addons.php:234 shortcodes/pmpro_account.php:145
176
- #: adminpages/addons.php:231 adminpages/addons.php:247
 
177
  #: shortcodes/pmpro_account.php:146
178
  msgid "N/A"
179
  msgstr ""
180
 
181
  #: adminpages/addons.php:243 adminpages/addons.php:240
182
- #: adminpages/addons.php:256
183
  #, php-format
184
  msgid "Version %s"
185
  msgstr ""
186
 
187
  #: adminpages/addons.php:248 adminpages/addons.php:245
188
- #: adminpages/addons.php:261
189
  #, php-format
190
  msgid "By %s"
191
  msgstr ""
192
 
193
  #: adminpages/addons.php:255 adminpages/addons.php:252
194
- #: adminpages/addons.php:268
195
  #, php-format
196
  msgid "More information about %s"
197
  msgstr ""
198
 
199
  #: adminpages/addons.php:257 adminpages/addons.php:254
200
- #: adminpages/addons.php:270
201
  msgid "View details"
202
  msgstr ""
203
 
204
  #: adminpages/addons.php:262 adminpages/addons.php:259
205
- #: adminpages/addons.php:275
206
  msgid "Visit plugin site"
207
  msgstr ""
208
 
@@ -290,7 +303,7 @@ msgstr ""
290
  msgid "User Forum"
291
  msgstr ""
292
 
293
- #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:619
294
  #: adminpages/pagesettings.php:70 includes/adminpages.php:69
295
  #: includes/adminpages.php:70 includes/adminpages.php:116
296
  #: includes/metaboxes.php:131 adminpages/admin_header.php:128
@@ -322,12 +335,13 @@ msgid "Payment Gateway &amp; SSL"
322
  msgstr ""
323
 
324
  #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
325
- #: shortcodes/pmpro_account.php:108 adminpages/admin_header.php:131
326
  #: adminpages/admin_header.php:152 adminpages/admin_header.php:162
327
  #: adminpages/memberslist.php:115 adminpages/memberslist.php:148
328
  #: adminpages/memberslist.php:158 adminpages/memberslist.php:168
329
  #: pages/account.php:52 pages/account.php:56 pages/account.php:77
330
- #: shortcodes/pmpro_account.php:106 shortcodes/pmpro_account.php:109
 
331
  msgid "Email"
332
  msgstr ""
333
 
@@ -438,7 +452,7 @@ msgid "Hide Ads From Members?"
438
  msgstr ""
439
 
440
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
441
- #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:672
442
  #: adminpages/paymentsettings.php:210
443
  #: classes/gateways/class.pmprogateway_stripe.php:209 includes/profile.php:110
444
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
@@ -449,16 +463,17 @@ msgstr ""
449
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
450
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
451
  #: adminpages/membershiplevels.php:658 adminpages/membershiplevels.php:667
452
- #: adminpages/membershiplevels.php:668 adminpages/paymentsettings.php:210
453
- #: adminpages/paymentsettings.php:414 adminpages/paymentsettings.php:429
454
- #: adminpages/paymentsettings.php:434 adminpages/paymentsettings.php:436
455
- #: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:459
456
- #: adminpages/paymentsettings.php:461
457
  #: classes/gateways/class.pmprogateway_stripe.php:173
458
  #: classes/gateways/class.pmprogateway_stripe.php:174
459
  #: classes/gateways/class.pmprogateway_stripe.php:184
460
  #: classes/gateways/class.pmprogateway_stripe.php:206
461
- #: classes/gateways/class.pmprogateway_stripe.php:208 includes/profile.php:101
 
462
  #: includes/profile.php:105 includes/profile.php:110 includes/profile.php:121
463
  #: includes/profile.php:123
464
  msgid "No"
@@ -499,7 +514,7 @@ msgstr ""
499
  msgid "multisite only"
500
  msgstr ""
501
 
502
- #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:672
503
  #: adminpages/paymentsettings.php:211
504
  #: classes/gateways/class.pmprogateway_stripe.php:210 includes/profile.php:111
505
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
@@ -507,16 +522,18 @@ msgstr ""
507
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
508
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
509
  #: adminpages/membershiplevels.php:658 adminpages/membershiplevels.php:667
510
- #: adminpages/membershiplevels.php:668 adminpages/paymentsettings.php:211
511
- #: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
512
- #: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:435
513
- #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:455
514
- #: adminpages/paymentsettings.php:460 adminpages/paymentsettings.php:462
 
515
  #: classes/gateways/class.pmprogateway_stripe.php:174
516
  #: classes/gateways/class.pmprogateway_stripe.php:175
517
  #: classes/gateways/class.pmprogateway_stripe.php:185
518
  #: classes/gateways/class.pmprogateway_stripe.php:207
519
- #: classes/gateways/class.pmprogateway_stripe.php:209 includes/profile.php:102
 
520
  #: includes/profile.php:106 includes/profile.php:111 includes/profile.php:122
521
  #: includes/profile.php:124
522
  msgid "Yes"
@@ -659,7 +676,7 @@ msgid "Add New Discount Code"
659
  msgstr ""
660
 
661
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:587
662
- #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:641
663
  #: adminpages/memberslist.php:164 adminpages/orders.php:1134
664
  #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
665
  #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
@@ -672,12 +689,13 @@ msgstr ""
672
  #: adminpages/membershiplevels.php:511 adminpages/membershiplevels.php:513
673
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:541
674
  #: adminpages/membershiplevels.php:583 adminpages/membershiplevels.php:636
675
- #: adminpages/membershiplevels.php:637 adminpages/memberslist.php:111
676
- #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
677
- #: adminpages/memberslist.php:164 adminpages/orders.php:597
678
- #: adminpages/orders.php:900 adminpages/orders.php:910
679
- #: adminpages/orders.php:937 adminpages/orders.php:966
680
- #: adminpages/orders.php:1103 adminpages/reports/login.php:140
 
681
  #: adminpages/reports/login.php:142 adminpages/reports/login.php:158
682
  #: adminpages/templates/orders-email.php:46
683
  #: adminpages/templates/orders-print.php:75
@@ -689,7 +707,7 @@ msgstr ""
689
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
690
  #: adminpages/orders.php:211 adminpages/orders.php:261
691
  #: adminpages/orders.php:333 adminpages/orders.php:344
692
- #: adminpages/orders.php:362
693
  msgid "This will be generated when you save."
694
  msgstr ""
695
 
@@ -702,9 +720,10 @@ msgstr ""
702
  #: adminpages/discountcodes.php:588 adminpages/orders.php:215
703
  #: adminpages/orders.php:265 adminpages/orders.php:337
704
  #: adminpages/orders.php:349 adminpages/orders.php:366
705
- #: adminpages/orders.php:598 adminpages/orders.php:901
706
- #: adminpages/orders.php:911 adminpages/orders.php:938
707
- #: adminpages/orders.php:967 adminpages/orders.php:1104
 
708
  msgid "Code"
709
  msgstr ""
710
 
@@ -716,25 +735,28 @@ msgstr ""
716
 
717
  #: adminpages/discountcodes.php:372
718
  #: classes/gateways/class.pmprogateway_braintree.php:327
719
- #: classes/gateways/class.pmprogateway_stripe.php:503 pages/billing.php:310
720
- #: pages/checkout.php:575 adminpages/discountcodes.php:367
721
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
722
  #: adminpages/discountcodes.php:372
723
  #: classes/gateways/class.pmprogateway_braintree.php:308
724
  #: classes/gateways/class.pmprogateway_braintree.php:321
725
  #: classes/gateways/class.pmprogateway_braintree.php:323
726
  #: classes/gateways/class.pmprogateway_braintree.php:326
 
727
  #: classes/gateways/class.pmprogateway_stripe.php:454
728
  #: classes/gateways/class.pmprogateway_stripe.php:455
729
  #: classes/gateways/class.pmprogateway_stripe.php:465
730
  #: classes/gateways/class.pmprogateway_stripe.php:469
731
  #: classes/gateways/class.pmprogateway_stripe.php:495
732
  #: classes/gateways/class.pmprogateway_stripe.php:498
733
- #: classes/gateways/class.pmprogateway_stripe.php:500 pages/billing.php:249
 
734
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
735
- #: pages/billing.php:268 pages/checkout.php:508 pages/checkout.php:524
736
- #: pages/checkout.php:525 pages/checkout.php:532 pages/checkout.php:553
737
- #: pages/checkout.php:562 pages/checkout.php:571 pages/checkout.php:575
 
738
  msgid "Expiration Date"
739
  msgstr ""
740
 
@@ -807,7 +829,7 @@ msgstr ""
807
 
808
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
809
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
810
- #: classes/gateways/class.pmprogateway_stripe.php:570
811
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
812
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
813
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -824,12 +846,13 @@ msgstr ""
824
  #: classes/gateways/class.pmprogateway_stripe.php:562
825
  #: classes/gateways/class.pmprogateway_stripe.php:566
826
  #: classes/gateways/class.pmprogateway_stripe.php:567
 
827
  msgid "Day(s)"
828
  msgstr ""
829
 
830
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
831
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
832
- #: classes/gateways/class.pmprogateway_stripe.php:570
833
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
834
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
835
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -846,12 +869,13 @@ msgstr ""
846
  #: classes/gateways/class.pmprogateway_stripe.php:562
847
  #: classes/gateways/class.pmprogateway_stripe.php:566
848
  #: classes/gateways/class.pmprogateway_stripe.php:567
 
849
  msgid "Month(s)"
850
  msgstr ""
851
 
852
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
853
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
854
- #: classes/gateways/class.pmprogateway_stripe.php:570
855
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
856
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
857
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -868,12 +892,13 @@ msgstr ""
868
  #: classes/gateways/class.pmprogateway_stripe.php:562
869
  #: classes/gateways/class.pmprogateway_stripe.php:566
870
  #: classes/gateways/class.pmprogateway_stripe.php:567
 
871
  msgid "Week(s)"
872
  msgstr ""
873
 
874
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
875
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
876
- #: classes/gateways/class.pmprogateway_stripe.php:570
877
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
878
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
879
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -890,6 +915,7 @@ msgstr ""
890
  #: classes/gateways/class.pmprogateway_stripe.php:562
891
  #: classes/gateways/class.pmprogateway_stripe.php:566
892
  #: classes/gateways/class.pmprogateway_stripe.php:567
 
893
  msgid "Year(s)"
894
  msgstr ""
895
 
@@ -1074,7 +1100,7 @@ msgid ""
1074
  "select customers."
1075
  msgstr ""
1076
 
1077
- #: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:674
1078
  #: adminpages/orders.php:1239 adminpages/discountcodes.php:614
1079
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
1080
  #: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
@@ -1082,11 +1108,12 @@ msgstr ""
1082
  #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
1083
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
1084
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
1085
- #: adminpages/membershiplevels.php:670 adminpages/orders.php:658
1086
- #: adminpages/orders.php:961 adminpages/orders.php:979
1087
- #: adminpages/orders.php:989 adminpages/orders.php:992
1088
- #: adminpages/orders.php:1021 adminpages/orders.php:1050
1089
- #: adminpages/orders.php:1205
 
1090
  msgid "edit"
1091
  msgstr ""
1092
 
@@ -1101,7 +1128,7 @@ msgid ""
1101
  "code anymore."
1102
  msgstr ""
1103
 
1104
- #: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:674
1105
  #: adminpages/orders.php:1245 adminpages/discountcodes.php:617
1106
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
1107
  #: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
@@ -1109,11 +1136,12 @@ msgstr ""
1109
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1110
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1111
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
1112
- #: adminpages/membershiplevels.php:670 adminpages/orders.php:664
1113
- #: adminpages/orders.php:967 adminpages/orders.php:985
1114
- #: adminpages/orders.php:995 adminpages/orders.php:998
1115
- #: adminpages/orders.php:1027 adminpages/orders.php:1056
1116
- #: adminpages/orders.php:1211
 
1117
  msgid "delete"
1118
  msgstr ""
1119
 
@@ -1286,15 +1314,15 @@ msgstr ""
1286
  msgid "Add New Membership Level"
1287
  msgstr ""
1288
 
1289
- #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:642
1290
  #: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
1291
  #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
1292
  #: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
1293
  #: adminpages/membershiplevels.php:514 adminpages/membershiplevels.php:541
1294
  #: adminpages/membershiplevels.php:542 adminpages/membershiplevels.php:584
1295
  #: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:638
1296
- #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
1297
- #: adminpages/reports/login.php:160
1298
  msgid "Name"
1299
  msgstr ""
1300
 
@@ -1303,16 +1331,17 @@ msgstr ""
1303
  msgid "Confirmation Message"
1304
  msgstr ""
1305
 
1306
- #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:643
1307
  #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1308
  #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:338
1309
  #: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:585
1310
  #: adminpages/membershiplevels.php:638 adminpages/membershiplevels.php:639
 
1311
  msgid "Billing Details"
1312
  msgstr ""
1313
 
1314
  #: adminpages/membershiplevels.php:372
1315
- #: classes/gateways/class.pmprogateway_stripe.php:668
1316
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1317
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1318
  #: adminpages/membershiplevels.php:373
@@ -1323,6 +1352,7 @@ msgstr ""
1323
  #: classes/gateways/class.pmprogateway_stripe.php:660
1324
  #: classes/gateways/class.pmprogateway_stripe.php:664
1325
  #: classes/gateways/class.pmprogateway_stripe.php:665
 
1326
  msgid "per"
1327
  msgstr ""
1328
 
@@ -1372,8 +1402,10 @@ msgstr ""
1372
  #: adminpages/paymentsettings.php:179
1373
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1374
  #: classes/gateways/class.pmprogateway_paypal.php:118
 
1375
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1376
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
 
1377
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1378
  msgid "Note"
1379
  msgstr ""
@@ -1464,25 +1496,26 @@ msgstr ""
1464
  msgid "Categories"
1465
  msgstr ""
1466
 
1467
- #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:516
1468
  #: adminpages/membershiplevels.php:517
1469
  msgid "Save Level"
1470
  msgstr ""
1471
 
1472
- #: adminpages/membershiplevels.php:518 adminpages/orders.php:796
1473
- #: pages/billing.php:392 pages/cancel.php:71 shortcodes/pmpro_account.php:72
1474
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1475
  #: adminpages/orders.php:511 adminpages/orders.php:561
1476
  #: adminpages/orders.php:633 adminpages/orders.php:662
1477
- #: adminpages/orders.php:765 pages/account.php:44 pages/billing.php:295
1478
- #: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
1479
- #: pages/billing.php:342 pages/billing.php:344 pages/billing.php:348
1480
- #: pages/cancel.php:71 shortcodes/pmpro_account.php:70
 
1481
  #: shortcodes/pmpro_account.php:73
1482
  msgid "Cancel"
1483
  msgstr ""
1484
 
1485
- #: adminpages/membershiplevels.php:619 adminpages/membershiplevels.php:490
1486
  #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1487
  #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
1488
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:618
@@ -1490,7 +1523,7 @@ msgstr ""
1490
  msgid "Add New Level"
1491
  msgstr ""
1492
 
1493
- #: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
1494
  #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1495
  #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1496
  #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
@@ -1502,67 +1535,69 @@ msgstr ""
1502
  msgid "Search Levels"
1503
  msgstr ""
1504
 
1505
- #: adminpages/membershiplevels.php:631 adminpages/membershiplevels.php:579
1506
  #: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:631
1507
  msgid "Drag and drop membership levels to reorder them on the Levels page."
1508
  msgstr ""
1509
 
1510
- #: adminpages/membershiplevels.php:644 pages/cancel.php:53
1511
- #: pages/confirmation.php:83 pages/invoice.php:70
1512
- #: shortcodes/pmpro_account.php:45 adminpages/membershiplevels.php:510
1513
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1514
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1515
  #: adminpages/membershiplevels.php:586 adminpages/membershiplevels.php:639
1516
- #: adminpages/membershiplevels.php:640 pages/account.php:20
1517
- #: pages/cancel.php:53 pages/confirmation.php:81 pages/confirmation.php:83
1518
- #: pages/invoice.php:68 pages/invoice.php:70 shortcodes/pmpro_account.php:46
 
1519
  msgid "Expiration"
1520
  msgstr ""
1521
 
1522
- #: adminpages/membershiplevels.php:645 adminpages/membershiplevels.php:511
1523
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1524
  #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1525
  #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:640
1526
- #: adminpages/membershiplevels.php:641
1527
  msgid "Allow Signups"
1528
  msgstr ""
1529
 
1530
- #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:534
1531
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1532
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1533
  #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:655
1534
- #: adminpages/membershiplevels.php:656
1535
  msgid "FREE"
1536
  msgstr ""
1537
 
1538
- #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:560
1539
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1540
  #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1541
  #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:664
1542
- #: adminpages/membershiplevels.php:665
1543
  msgid "After"
1544
  msgstr ""
1545
 
1546
- #: adminpages/membershiplevels.php:674 adminpages/membershiplevels.php:566
1547
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1548
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1549
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
1550
- #: adminpages/membershiplevels.php:670
1551
  #, php-format
1552
  msgid ""
1553
  "Are you sure you want to delete membership level %s? All subscriptions will "
1554
  "be cancelled."
1555
  msgstr ""
1556
 
1557
- #: adminpages/membershiplevels.php:674 adminpages/orders.php:1242
1558
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1559
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1560
  #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1561
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1562
- #: adminpages/orders.php:661 adminpages/orders.php:964
1563
- #: adminpages/orders.php:982 adminpages/orders.php:992
1564
- #: adminpages/orders.php:995 adminpages/orders.php:1024
1565
- #: adminpages/orders.php:1053 adminpages/orders.php:1208
 
1566
  msgid "copy"
1567
  msgstr ""
1568
 
@@ -1579,6 +1614,7 @@ msgstr ""
1579
  #: adminpages/memberslist.php:26 adminpages/orders.php:522
1580
  #: adminpages/orders.php:591 adminpages/orders.php:698
1581
  #: adminpages/orders.php:727 adminpages/orders.php:833
 
1582
  msgid "Export to CSV"
1583
  msgstr ""
1584
 
@@ -1587,8 +1623,9 @@ msgstr ""
1587
  #: adminpages/reports/sales.php:202 adminpages/memberslist.php:30
1588
  #: adminpages/orders.php:603 adminpages/orders.php:710
1589
  #: adminpages/orders.php:739 adminpages/orders.php:848
1590
- #: adminpages/reports/login.php:65 adminpages/reports/login.php:67
1591
- #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:256
 
1592
  #: adminpages/reports/memberships.php:263
1593
  #: adminpages/reports/memberships.php:276
1594
  #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
@@ -1599,6 +1636,7 @@ msgstr ""
1599
 
1600
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1601
  #: adminpages/reports/memberships.php:303 adminpages/reports/sales.php:225
 
1602
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:67
1603
  #: adminpages/reports/login.php:69 adminpages/reports/login.php:85
1604
  #: adminpages/reports/memberships.php:281
@@ -1637,14 +1675,14 @@ msgstr ""
1637
  msgid "%d members found."
1638
  msgstr ""
1639
 
1640
- #: adminpages/memberslist.php:165 pages/checkout.php:184
1641
- #: shortcodes/pmpro_account.php:107 adminpages/memberslist.php:112
1642
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1643
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1644
  #: pages/account.php:76 pages/checkout.php:168 pages/checkout.php:171
1645
  #: pages/checkout.php:173 pages/checkout.php:180 pages/checkout.php:182
1646
  #: pages/checkout.php:184 shortcodes/pmpro_account.php:105
1647
- #: shortcodes/pmpro_account.php:108
1648
  msgid "Username"
1649
  msgstr ""
1650
 
@@ -1660,16 +1698,17 @@ msgstr ""
1660
  msgid "Last&nbsp;Name"
1661
  msgstr ""
1662
 
1663
- #: adminpages/memberslist.php:170 pages/billing.php:76 pages/checkout.php:319
1664
- #: pages/confirmation.php:61 pages/invoice.php:48
1665
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1666
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
1667
  #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
1668
  #: pages/billing.php:62 pages/billing.php:71 pages/billing.php:74
1669
- #: pages/checkout.php:298 pages/checkout.php:300 pages/checkout.php:302
1670
- #: pages/checkout.php:311 pages/checkout.php:314 pages/checkout.php:317
1671
- #: pages/checkout.php:319 pages/checkout.php:321 pages/confirmation.php:59
1672
- #: pages/confirmation.php:61 pages/invoice.php:46 pages/invoice.php:48
 
1673
  msgid "Billing Address"
1674
  msgstr ""
1675
 
@@ -1703,7 +1742,7 @@ msgstr ""
1703
  msgid "Ended"
1704
  msgstr ""
1705
 
1706
- #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1707
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1708
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1709
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
@@ -1711,7 +1750,7 @@ msgstr ""
1711
  msgid "No members found."
1712
  msgstr ""
1713
 
1714
- #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1715
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1716
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1717
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
@@ -1741,97 +1780,110 @@ msgstr ""
1741
 
1742
  #: adminpages/orders.php:285 adminpages/orders.php:119
1743
  #: adminpages/orders.php:169 adminpages/orders.php:270
1744
- #: adminpages/orders.php:284
1745
  msgid "Order saved successfully."
1746
  msgstr ""
1747
 
1748
  #: adminpages/orders.php:288 adminpages/orders.php:124
1749
  #: adminpages/orders.php:174 adminpages/orders.php:275
1750
- #: adminpages/orders.php:287
1751
  msgid "Error updating order timestamp."
1752
  msgstr ""
1753
 
1754
  #: adminpages/orders.php:292 adminpages/orders.php:130
1755
  #: adminpages/orders.php:180 adminpages/orders.php:281
1756
- #: adminpages/orders.php:291
1757
  msgid "Error saving order."
1758
  msgstr ""
1759
 
1760
  #: adminpages/orders.php:352 adminpages/orders.php:195
1761
  #: adminpages/orders.php:245 adminpages/orders.php:317
1762
  #: adminpages/orders.php:321 adminpages/orders.php:346
 
1763
  msgid "Order"
1764
  msgstr ""
1765
 
1766
  #: adminpages/orders.php:354 adminpages/orders.php:197
1767
  #: adminpages/orders.php:247 adminpages/orders.php:319
1768
  #: adminpages/orders.php:323 adminpages/orders.php:348
 
1769
  msgid "New Order"
1770
  msgstr ""
1771
 
1772
  #: adminpages/orders.php:390 adminpages/orders.php:220
1773
  #: adminpages/orders.php:270 adminpages/orders.php:342
1774
  #: adminpages/orders.php:359 adminpages/orders.php:371
 
1775
  msgid "Randomly generated for you."
1776
  msgstr ""
1777
 
1778
  #: adminpages/orders.php:395 adminpages/orders.php:225
1779
  #: adminpages/orders.php:275 adminpages/orders.php:347
1780
  #: adminpages/orders.php:364 adminpages/orders.php:376
 
1781
  msgid "User ID"
1782
  msgstr ""
1783
 
1784
  #: adminpages/orders.php:407 adminpages/orders.php:234
1785
  #: adminpages/orders.php:284 adminpages/orders.php:356
1786
  #: adminpages/orders.php:376 adminpages/orders.php:385
 
1787
  msgid "Membership Level ID"
1788
  msgstr ""
1789
 
1790
  #: adminpages/orders.php:420 adminpages/orders.php:243
1791
  #: adminpages/orders.php:293 adminpages/orders.php:365
1792
  #: adminpages/orders.php:389 adminpages/orders.php:394
 
1793
  msgid "Billing Name"
1794
  msgstr ""
1795
 
1796
  #: adminpages/orders.php:432 adminpages/orders.php:251
1797
  #: adminpages/orders.php:301 adminpages/orders.php:373
1798
  #: adminpages/orders.php:401 adminpages/orders.php:402
 
1799
  msgid "Billing Street"
1800
  msgstr ""
1801
 
1802
  #: adminpages/orders.php:443 adminpages/orders.php:258
1803
  #: adminpages/orders.php:308 adminpages/orders.php:380
1804
  #: adminpages/orders.php:409 adminpages/orders.php:412
 
1805
  msgid "Billing City"
1806
  msgstr ""
1807
 
1808
  #: adminpages/orders.php:454 adminpages/orders.php:265
1809
  #: adminpages/orders.php:315 adminpages/orders.php:387
1810
  #: adminpages/orders.php:416 adminpages/orders.php:423
 
1811
  msgid "Billing State"
1812
  msgstr ""
1813
 
1814
  #: adminpages/orders.php:465 adminpages/orders.php:272
1815
  #: adminpages/orders.php:322 adminpages/orders.php:394
1816
  #: adminpages/orders.php:423 adminpages/orders.php:434
 
1817
  msgid "Billing Postal Code"
1818
  msgstr ""
1819
 
1820
  #: adminpages/orders.php:476 adminpages/orders.php:279
1821
  #: adminpages/orders.php:329 adminpages/orders.php:401
1822
  #: adminpages/orders.php:430 adminpages/orders.php:445
 
1823
  msgid "Billing Country"
1824
  msgstr ""
1825
 
1826
  #: adminpages/orders.php:488 adminpages/orders.php:287
1827
  #: adminpages/orders.php:337 adminpages/orders.php:409
1828
  #: adminpages/orders.php:438 adminpages/orders.php:457
 
1829
  msgid "Billing Phone"
1830
  msgstr ""
1831
 
1832
  #: adminpages/orders.php:501 adminpages/orders.php:296
1833
  #: adminpages/orders.php:346 adminpages/orders.php:418
1834
  #: adminpages/orders.php:447 adminpages/orders.php:470
 
1835
  msgid "Sub Total"
1836
  msgstr ""
1837
 
@@ -1839,7 +1891,8 @@ msgstr ""
1839
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1840
  #: adminpages/orders.php:304 adminpages/orders.php:354
1841
  #: adminpages/orders.php:426 adminpages/orders.php:455
1842
- #: adminpages/orders.php:481 adminpages/templates/orders-email.php:60
 
1843
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:78
1844
  #: pages/invoice.php:80
1845
  msgid "Tax"
@@ -1848,6 +1901,7 @@ msgstr ""
1848
  #: adminpages/orders.php:523 adminpages/orders.php:312
1849
  #: adminpages/orders.php:362 adminpages/orders.php:434
1850
  #: adminpages/orders.php:463 adminpages/orders.php:492
 
1851
  msgid "Coupon Amount"
1852
  msgstr ""
1853
 
@@ -1856,10 +1910,11 @@ msgstr ""
1856
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1857
  #: adminpages/orders.php:320 adminpages/orders.php:370
1858
  #: adminpages/orders.php:442 adminpages/orders.php:471
1859
- #: adminpages/orders.php:504 adminpages/orders.php:602
1860
- #: adminpages/orders.php:905 adminpages/orders.php:915
1861
- #: adminpages/orders.php:942 adminpages/orders.php:971
1862
- #: adminpages/orders.php:1108 adminpages/templates/orders-email.php:64
 
1863
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:82
1864
  #: pages/invoice.php:84
1865
  msgid "Total"
@@ -1868,48 +1923,54 @@ msgstr ""
1868
  #: adminpages/orders.php:544 adminpages/orders.php:325
1869
  #: adminpages/orders.php:375 adminpages/orders.php:447
1870
  #: adminpages/orders.php:476 adminpages/orders.php:513
 
1871
  msgid "Should be subtotal + tax - couponamount."
1872
  msgstr ""
1873
 
1874
  #: adminpages/orders.php:549 adminpages/orders.php:330
1875
  #: adminpages/orders.php:380 adminpages/orders.php:452
1876
  #: adminpages/orders.php:481 adminpages/orders.php:518
 
1877
  msgid "Payment Type"
1878
  msgstr ""
1879
 
1880
  #: adminpages/orders.php:559 adminpages/orders.php:335
1881
  #: adminpages/orders.php:385 adminpages/orders.php:457
1882
  #: adminpages/orders.php:486 adminpages/orders.php:528
 
1883
  msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1884
  msgstr ""
1885
 
1886
  #: adminpages/orders.php:563
1887
  #: classes/gateways/class.pmprogateway_braintree.php:310
1888
- #: classes/gateways/class.pmprogateway_stripe.php:455 pages/billing.php:262
1889
- #: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
1890
  #: adminpages/orders.php:461 adminpages/orders.php:490
1891
- #: adminpages/orders.php:532
1892
  #: classes/gateways/class.pmprogateway_braintree.php:291
1893
  #: classes/gateways/class.pmprogateway_braintree.php:304
1894
  #: classes/gateways/class.pmprogateway_braintree.php:306
1895
  #: classes/gateways/class.pmprogateway_braintree.php:309
 
1896
  #: classes/gateways/class.pmprogateway_stripe.php:408
1897
  #: classes/gateways/class.pmprogateway_stripe.php:409
1898
  #: classes/gateways/class.pmprogateway_stripe.php:419
1899
  #: classes/gateways/class.pmprogateway_stripe.php:423
1900
  #: classes/gateways/class.pmprogateway_stripe.php:447
1901
  #: classes/gateways/class.pmprogateway_stripe.php:450
1902
- #: classes/gateways/class.pmprogateway_stripe.php:452 pages/billing.php:234
 
1903
  #: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
1904
- #: pages/billing.php:253 pages/checkout.php:493 pages/checkout.php:507
1905
- #: pages/checkout.php:510 pages/checkout.php:516 pages/checkout.php:517
1906
- #: pages/checkout.php:525 pages/checkout.php:527
1907
  msgid "Card Type"
1908
  msgstr ""
1909
 
1910
  #: adminpages/orders.php:571 adminpages/orders.php:344
1911
  #: adminpages/orders.php:394 adminpages/orders.php:466
1912
  #: adminpages/orders.php:495 adminpages/orders.php:540
 
1913
  msgid "e.g. Visa, MasterCard, AMEX, etc"
1914
  msgstr ""
1915
 
@@ -1917,8 +1978,8 @@ msgstr ""
1917
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
1918
  #: adminpages/orders.php:348 adminpages/orders.php:398
1919
  #: adminpages/orders.php:470 adminpages/orders.php:499
1920
- #: adminpages/orders.php:544 adminpages/paymentsettings.php:347
1921
- #: adminpages/paymentsettings.php:352
1922
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
1923
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
1924
  #: classes/gateways/class.pmprogateway_twocheckout.php:148
@@ -1928,18 +1989,21 @@ msgstr ""
1928
  #: adminpages/orders.php:584 adminpages/orders.php:353
1929
  #: adminpages/orders.php:403 adminpages/orders.php:475
1930
  #: adminpages/orders.php:504 adminpages/orders.php:553
 
1931
  msgid "Obscure all but last 4 digits."
1932
  msgstr ""
1933
 
1934
  #: adminpages/orders.php:592 adminpages/orders.php:358
1935
  #: adminpages/orders.php:408 adminpages/orders.php:480
1936
  #: adminpages/orders.php:509 adminpages/orders.php:561
 
1937
  msgid "Expiration Month"
1938
  msgstr ""
1939
 
1940
  #: adminpages/orders.php:600 adminpages/orders.php:365
1941
  #: adminpages/orders.php:415 adminpages/orders.php:487
1942
  #: adminpages/orders.php:516 adminpages/orders.php:569
 
1943
  msgid "Expiration Year"
1944
  msgstr ""
1945
 
@@ -1947,9 +2011,10 @@ msgstr ""
1947
  #: adminpages/orders.php:373 adminpages/orders.php:423
1948
  #: adminpages/orders.php:495 adminpages/orders.php:524
1949
  #: adminpages/orders.php:579 adminpages/orders.php:606
1950
- #: adminpages/orders.php:909 adminpages/orders.php:919
1951
- #: adminpages/orders.php:946 adminpages/orders.php:975
1952
- #: adminpages/orders.php:1112
 
1953
  msgid "Status"
1954
  msgstr ""
1955
 
@@ -1957,9 +2022,10 @@ msgstr ""
1957
  #: adminpages/orders.php:394 adminpages/orders.php:444
1958
  #: adminpages/orders.php:516 adminpages/orders.php:545
1959
  #: adminpages/orders.php:604 adminpages/orders.php:612
1960
- #: adminpages/orders.php:907 adminpages/orders.php:917
1961
- #: adminpages/orders.php:944 adminpages/orders.php:973
1962
- #: adminpages/orders.php:1110
 
1963
  msgid "Gateway"
1964
  msgstr ""
1965
 
@@ -1967,8 +2033,9 @@ msgstr ""
1967
  #: adminpages/orders.php:411 adminpages/orders.php:461
1968
  #: adminpages/orders.php:462 adminpages/orders.php:534
1969
  #: adminpages/orders.php:563 adminpages/orders.php:633
1970
- #: adminpages/paymentsettings.php:124 adminpages/paymentsettings.php:175
1971
- #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:184
 
1972
  msgid "Gateway Environment"
1973
  msgstr ""
1974
 
@@ -1976,8 +2043,9 @@ msgstr ""
1976
  #: adminpages/orders.php:415 adminpages/orders.php:465
1977
  #: adminpages/orders.php:466 adminpages/orders.php:538
1978
  #: adminpages/orders.php:567 adminpages/orders.php:640
1979
- #: adminpages/paymentsettings.php:128 adminpages/paymentsettings.php:179
1980
- #: adminpages/paymentsettings.php:183 adminpages/paymentsettings.php:188
 
1981
  msgid "Sandbox/Testing"
1982
  msgstr ""
1983
 
@@ -1985,88 +2053,97 @@ msgstr ""
1985
  #: adminpages/orders.php:416 adminpages/orders.php:466
1986
  #: adminpages/orders.php:467 adminpages/orders.php:539
1987
  #: adminpages/orders.php:568 adminpages/orders.php:642
1988
- #: adminpages/paymentsettings.php:129 adminpages/paymentsettings.php:180
1989
- #: adminpages/paymentsettings.php:184 adminpages/paymentsettings.php:189
 
1990
  msgid "Live/Production"
1991
  msgstr ""
1992
 
1993
  #: adminpages/orders.php:681 adminpages/orders.php:423
1994
  #: adminpages/orders.php:473 adminpages/orders.php:474
1995
  #: adminpages/orders.php:546 adminpages/orders.php:575
1996
- #: adminpages/orders.php:650
1997
  msgid "Payment Transaction ID"
1998
  msgstr ""
1999
 
2000
  #: adminpages/orders.php:690 adminpages/orders.php:428
2001
  #: adminpages/orders.php:478 adminpages/orders.php:479
2002
  #: adminpages/orders.php:551 adminpages/orders.php:580
2003
- #: adminpages/orders.php:659
2004
  msgid "Generated by the gateway. Useful to cross reference orders."
2005
  msgstr ""
2006
 
2007
  #: adminpages/orders.php:695 adminpages/orders.php:432
2008
  #: adminpages/orders.php:482 adminpages/orders.php:483
2009
  #: adminpages/orders.php:555 adminpages/orders.php:584
2010
- #: adminpages/orders.php:664
2011
  msgid "Subscription Transaction ID"
2012
  msgstr ""
2013
 
2014
  #: adminpages/orders.php:705 adminpages/orders.php:437
2015
  #: adminpages/orders.php:487 adminpages/orders.php:488
2016
  #: adminpages/orders.php:560 adminpages/orders.php:589
2017
- #: adminpages/orders.php:674
2018
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
2019
  msgstr ""
2020
 
2021
  #: adminpages/orders.php:710 adminpages/orders.php:1144 pages/invoice.php:107
2022
- #: shortcodes/pmpro_account.php:124 adminpages/orders.php:442
2023
  #: adminpages/orders.php:492 adminpages/orders.php:493
2024
  #: adminpages/orders.php:565 adminpages/orders.php:594
2025
  #: adminpages/orders.php:607 adminpages/orders.php:679
2026
- #: adminpages/orders.php:910 adminpages/orders.php:920
2027
- #: adminpages/orders.php:947 adminpages/orders.php:976
2028
- #: adminpages/orders.php:1113 pages/account.php:91 pages/invoice.php:105
 
2029
  #: pages/invoice.php:107 shortcodes/pmpro_account.php:122
2030
- #: shortcodes/pmpro_account.php:125
2031
  msgid "Date"
2032
  msgstr ""
2033
 
2034
  #: adminpages/orders.php:747 adminpages/orders.php:477
2035
  #: adminpages/orders.php:527 adminpages/orders.php:599
2036
  #: adminpages/orders.php:628 adminpages/orders.php:716
 
2037
  msgid "Affiliate ID"
2038
  msgstr ""
2039
 
2040
  #: adminpages/orders.php:759 adminpages/orders.php:485
2041
  #: adminpages/orders.php:535 adminpages/orders.php:607
2042
  #: adminpages/orders.php:636 adminpages/orders.php:728
 
2043
  msgid "Affiliate SubID"
2044
  msgstr ""
2045
 
2046
  #: adminpages/orders.php:773 adminpages/orders.php:495
2047
  #: adminpages/orders.php:545 adminpages/orders.php:617
2048
  #: adminpages/orders.php:646 adminpages/orders.php:742
 
2049
  msgid "Notes"
2050
  msgstr ""
2051
 
2052
  #: adminpages/orders.php:795 adminpages/orders.php:510
2053
  #: adminpages/orders.php:560 adminpages/orders.php:632
2054
  #: adminpages/orders.php:661 adminpages/orders.php:764
 
2055
  msgid "Save Order"
2056
  msgstr ""
2057
 
2058
  #: adminpages/orders.php:831 adminpages/orders.php:667
2059
  #: adminpages/orders.php:696 adminpages/orders.php:800
 
2060
  msgid "Email Invoice"
2061
  msgstr ""
2062
 
2063
  #: adminpages/orders.php:834 adminpages/orders.php:670
2064
  #: adminpages/orders.php:699 adminpages/orders.php:803
 
2065
  msgid "Send an invoice for this order to: "
2066
  msgstr ""
2067
 
2068
  #: adminpages/orders.php:836 adminpages/orders.php:672
2069
  #: adminpages/orders.php:701 adminpages/orders.php:805
 
2070
  msgid "Send Email"
2071
  msgstr ""
2072
 
@@ -2074,64 +2151,66 @@ msgstr ""
2074
  #: includes/adminpages.php:172 adminpages/orders.php:520
2075
  #: adminpages/orders.php:570 adminpages/orders.php:677
2076
  #: adminpages/orders.php:706 adminpages/orders.php:810
2077
- #: includes/adminpages.php:17 includes/adminpages.php:55
2078
- #: includes/adminpages.php:56 includes/adminpages.php:84
2079
- #: includes/adminpages.php:156 includes/adminpages.php:163
2080
- #: includes/adminpages.php:167 includes/adminpages.php:172
 
2081
  msgid "Orders"
2082
  msgstr ""
2083
 
2084
  #: adminpages/orders.php:843 adminpages/orders.php:521
2085
  #: adminpages/orders.php:571 adminpages/orders.php:678
2086
  #: adminpages/orders.php:707 adminpages/orders.php:812
 
2087
  msgid "Add New Order"
2088
  msgstr ""
2089
 
2090
  #: adminpages/orders.php:883 adminpages/orders.php:606
2091
  #: adminpages/orders.php:713 adminpages/orders.php:742
2092
- #: adminpages/orders.php:852
2093
  msgid "Within a Date Range"
2094
  msgstr ""
2095
 
2096
  #: adminpages/orders.php:885 adminpages/orders.php:607
2097
  #: adminpages/orders.php:714 adminpages/orders.php:743
2098
- #: adminpages/orders.php:854
2099
  msgid "Predefined Date Range"
2100
  msgstr ""
2101
 
2102
  #: adminpages/orders.php:887 adminpages/orders.php:608
2103
  #: adminpages/orders.php:715 adminpages/orders.php:744
2104
- #: adminpages/orders.php:856
2105
  msgid "Within a Level"
2106
  msgstr ""
2107
 
2108
  #: adminpages/orders.php:889 adminpages/orders.php:609
2109
  #: adminpages/orders.php:716 adminpages/orders.php:745
2110
- #: adminpages/orders.php:858
2111
  msgid "Within a Status"
2112
  msgstr ""
2113
 
2114
  #: adminpages/orders.php:892 adminpages/orders.php:612
2115
  #: adminpages/orders.php:719 adminpages/orders.php:748
2116
- #: adminpages/orders.php:861
2117
  msgid "From"
2118
  msgstr ""
2119
 
2120
  #: adminpages/orders.php:907 adminpages/orders.php:624
2121
  #: adminpages/orders.php:731 adminpages/orders.php:760
2122
- #: adminpages/orders.php:876
2123
  msgid "To"
2124
  msgstr ""
2125
 
2126
  #: adminpages/orders.php:920 adminpages/orders.php:636
2127
  #: adminpages/orders.php:743 adminpages/orders.php:772
2128
- #: adminpages/orders.php:889
2129
  msgid "filter by "
2130
  msgstr ""
2131
 
2132
  #: adminpages/orders.php:963 adminpages/orders.php:674
2133
  #: adminpages/orders.php:780 adminpages/orders.php:809
2134
- #: adminpages/orders.php:932
2135
  msgid "Filter"
2136
  msgstr ""
2137
 
@@ -2141,13 +2220,14 @@ msgstr ""
2141
  #: adminpages/orders.php:883 adminpages/orders.php:886
2142
  #: adminpages/orders.php:912 adminpages/orders.php:915
2143
  #: adminpages/orders.php:1029 adminpages/orders.php:1032
 
2144
  msgid "Search Orders"
2145
  msgstr ""
2146
 
2147
  #: adminpages/orders.php:1127 adminpages/orders.php:590
2148
  #: adminpages/orders.php:893 adminpages/orders.php:903
2149
  #: adminpages/orders.php:930 adminpages/orders.php:959
2150
- #: adminpages/orders.php:1096
2151
  #, php-format
2152
  msgid "%d orders found."
2153
  msgstr ""
@@ -2157,24 +2237,26 @@ msgstr ""
2157
  #: adminpages/orders.php:599 adminpages/orders.php:902
2158
  #: adminpages/orders.php:912 adminpages/orders.php:939
2159
  #: adminpages/orders.php:968 adminpages/orders.php:1105
2160
- #: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:215
2161
- #: adminpages/paymentsettings.php:220 adminpages/reports/login.php:141
2162
- #: adminpages/reports/login.php:143 adminpages/reports/login.php:159
 
2163
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
2164
  msgid "User"
2165
  msgstr ""
2166
 
2167
  #: adminpages/orders.php:1138 includes/init.php:243 includes/profile.php:27
2168
- #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
2169
- #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
2170
  #: adminpages/orders.php:601 adminpages/orders.php:904
2171
  #: adminpages/orders.php:914 adminpages/orders.php:941
2172
- #: adminpages/orders.php:970 adminpages/orders.php:1107 includes/init.php:214
2173
- #: includes/init.php:217 includes/init.php:218 includes/init.php:220
2174
- #: includes/init.php:222 includes/init.php:230 includes/init.php:238
2175
- #: includes/init.php:243 includes/profile.php:25 includes/profile.php:27
2176
- #: pages/checkout.php:33 pages/checkout.php:34 pages/checkout.php:35
2177
- #: pages/checkout.php:42 pages/confirmation.php:46 pages/confirmation.php:47
 
2178
  #: pages/confirmation.php:62 pages/confirmation.php:64
2179
  #: pages/confirmation.php:103 pages/confirmation.php:105 pages/invoice.php:27
2180
  #: pages/invoice.php:28 pages/invoice.php:49 pages/invoice.php:51
@@ -2187,21 +2269,22 @@ msgstr ""
2187
  #: adminpages/orders.php:943 adminpages/orders.php:954
2188
  #: adminpages/orders.php:972 adminpages/orders.php:982
2189
  #: adminpages/orders.php:1011 adminpages/orders.php:1040
2190
- #: adminpages/orders.php:1109 adminpages/orders.php:1186
 
2191
  msgid "Payment"
2192
  msgstr ""
2193
 
2194
  #: adminpages/orders.php:1142 adminpages/orders.php:605
2195
  #: adminpages/orders.php:908 adminpages/orders.php:918
2196
  #: adminpages/orders.php:945 adminpages/orders.php:974
2197
- #: adminpages/orders.php:1111
2198
  msgid "Transaction IDs"
2199
  msgstr ""
2200
 
2201
  #: adminpages/orders.php:1172 adminpages/orders.php:630
2202
  #: adminpages/orders.php:933 adminpages/orders.php:943
2203
  #: adminpages/orders.php:972 adminpages/orders.php:1001
2204
- #: adminpages/orders.php:1141
2205
  msgid "deleted"
2206
  msgstr ""
2207
 
@@ -2209,6 +2292,7 @@ msgstr ""
2209
  #: adminpages/orders.php:956 adminpages/orders.php:974
2210
  #: adminpages/orders.php:984 adminpages/orders.php:1013
2211
  #: adminpages/orders.php:1042 adminpages/orders.php:1192
 
2212
  msgid "Subscription"
2213
  msgstr ""
2214
 
@@ -2216,7 +2300,7 @@ msgstr ""
2216
  #: adminpages/orders.php:967 adminpages/orders.php:985
2217
  #: adminpages/orders.php:995 adminpages/orders.php:998
2218
  #: adminpages/orders.php:1027 adminpages/orders.php:1056
2219
- #: adminpages/orders.php:1211
2220
  #, php-format
2221
  msgid ""
2222
  "Deleting orders is permanent and can affect active users. Are you sure you "
@@ -2225,11 +2309,13 @@ msgstr ""
2225
 
2226
  #: adminpages/orders.php:1249 adminpages/orders.php:1030
2227
  #: adminpages/orders.php:1059 adminpages/orders.php:1215
 
2228
  msgid "print"
2229
  msgstr ""
2230
 
2231
  #: adminpages/orders.php:1253 adminpages/orders.php:1033
2232
  #: adminpages/orders.php:1062 adminpages/orders.php:1219
 
2233
  msgid "email"
2234
  msgstr ""
2235
 
@@ -2237,7 +2323,7 @@ msgstr ""
2237
  #: adminpages/orders.php:977 adminpages/orders.php:995
2238
  #: adminpages/orders.php:1005 adminpages/orders.php:1008
2239
  #: adminpages/orders.php:1043 adminpages/orders.php:1072
2240
- #: adminpages/orders.php:1228
2241
  msgid "No orders found."
2242
  msgstr ""
2243
 
@@ -2494,11 +2580,12 @@ msgstr ""
2494
  msgid "Sales Tax"
2495
  msgstr ""
2496
 
2497
- #: adminpages/paymentsettings.php:188 pages/billing.php:96
2498
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2499
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2500
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
2501
  #: pages/billing.php:82 pages/billing.php:91 pages/billing.php:94
 
2502
  msgid "optional"
2503
  msgstr ""
2504
 
@@ -2862,7 +2949,7 @@ msgstr ""
2862
  msgid "Update complete."
2863
  msgstr ""
2864
 
2865
- #: classes/class.memberorder.php:706 classes/class.memberorder.php:553
2866
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2867
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2868
  #: classes/class.memberorder.php:697 classes/class.memberorder.php:699
@@ -2886,26 +2973,26 @@ msgstr ""
2886
  msgid "Your membership at %s has been CANCELLED"
2887
  msgstr ""
2888
 
2889
- #: classes/class.pmproemail.php:156 classes/class.pmproemail.php:142
2890
  #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
2891
  #: classes/class.pmproemail.php:156
2892
  #, php-format
2893
  msgid "Membership for %s at %s has been CANCELLED"
2894
  msgstr ""
2895
 
2896
- #: classes/class.pmproemail.php:187 classes/class.pmproemail.php:172
2897
  #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2898
  #: classes/class.pmproemail.php:178 classes/class.pmproemail.php:187
2899
  #, php-format
2900
  msgid "Your membership confirmation for %s"
2901
  msgstr ""
2902
 
2903
- #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2904
- #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2905
- #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:659
2906
  #: classes/gateways/class.pmprogateway_braintree.php:368
2907
- #: classes/gateways/class.pmprogateway_stripe.php:544 pages/checkout.php:76
2908
- #: pages/checkout.php:86 pages/checkout.php:612 pages/confirmation.php:52
2909
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2910
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2911
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
@@ -2932,7 +3019,8 @@ msgstr ""
2932
  #: classes/gateways/class.pmprogateway_stripe.php:510
2933
  #: classes/gateways/class.pmprogateway_stripe.php:536
2934
  #: classes/gateways/class.pmprogateway_stripe.php:540
2935
- #: classes/gateways/class.pmprogateway_stripe.php:541 pages/checkout.php:66
 
2936
  #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2937
  #: pages/checkout.php:76 pages/checkout.php:77 pages/checkout.php:78
2938
  #: pages/checkout.php:85 pages/checkout.php:86 pages/checkout.php:549
@@ -2943,8 +3031,8 @@ msgstr ""
2943
  msgid "Discount Code"
2944
  msgstr ""
2945
 
2946
- #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
2947
- #: classes/class.pmproemail.php:665 classes/class.pmproemail.php:241
2948
  #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
2949
  #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
2950
  #: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
@@ -2957,45 +3045,45 @@ msgstr ""
2957
  msgid "This membership will expire on %s."
2958
  msgstr ""
2959
 
2960
- #: classes/class.pmproemail.php:287 classes/class.pmproemail.php:263
2961
  #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
2962
  #: classes/class.pmproemail.php:278 classes/class.pmproemail.php:287
2963
  #, php-format
2964
  msgid "Member Checkout for %s at %s"
2965
  msgstr ""
2966
 
2967
- #: classes/class.pmproemail.php:375 classes/class.pmproemail.php:375
2968
  #, php-format
2969
  msgid "Your billing information has been updated at %s"
2970
  msgstr ""
2971
 
2972
- #: classes/class.pmproemail.php:428 classes/class.pmproemail.php:428
2973
  #, php-format
2974
  msgid "Billing information has been updated for %s at %s"
2975
  msgstr ""
2976
 
2977
- #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
2978
  #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
2979
  #: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
2980
  #, php-format
2981
  msgid "Membership Payment Failed at %s"
2982
  msgstr ""
2983
 
2984
- #: classes/class.pmproemail.php:522 classes/class.pmproemail.php:462
2985
  #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
2986
  #: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
2987
  #, php-format
2988
  msgid "Membership Payment Failed For %s at %s"
2989
  msgstr ""
2990
 
2991
- #: classes/class.pmproemail.php:569 classes/class.pmproemail.php:508
2992
  #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
2993
  #: classes/class.pmproemail.php:569
2994
  #, php-format
2995
  msgid "Credit Card on File Expiring Soon at %s"
2996
  msgstr ""
2997
 
2998
- #: classes/class.pmproemail.php:619 classes/class.pmproemail.php:501
2999
  #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
3000
  #: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
3001
  #: classes/class.pmproemail.php:619
@@ -3003,7 +3091,7 @@ msgstr ""
3003
  msgid "INVOICE for %s membership"
3004
  msgstr ""
3005
 
3006
- #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:563
3007
  #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
3008
  #: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
3009
  #: classes/class.pmproemail.php:690
@@ -3011,7 +3099,7 @@ msgstr ""
3011
  msgid "Your trial at %s is ending soon"
3012
  msgstr ""
3013
 
3014
- #: classes/class.pmproemail.php:724 classes/class.pmproemail.php:596
3015
  #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
3016
  #: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
3017
  #: classes/class.pmproemail.php:724
@@ -3019,7 +3107,7 @@ msgstr ""
3019
  msgid "Your membership at %s has ended"
3020
  msgstr ""
3021
 
3022
- #: classes/class.pmproemail.php:749 classes/class.pmproemail.php:621
3023
  #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
3024
  #: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
3025
  #: classes/class.pmproemail.php:749
@@ -3027,7 +3115,7 @@ msgstr ""
3027
  msgid "Your membership at %s will end soon"
3028
  msgstr ""
3029
 
3030
- #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:641
3031
  #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
3032
  #: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
3033
  #: classes/class.pmproemail.php:769
@@ -3035,7 +3123,7 @@ msgstr ""
3035
  msgid "Your membership at %s has been changed"
3036
  msgstr ""
3037
 
3038
- #: classes/class.pmproemail.php:773 classes/class.pmproemail.php:810
3039
  #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
3040
  #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
3041
  #: classes/class.pmproemail.php:800 classes/class.pmproemail.php:809
@@ -3044,14 +3132,14 @@ msgstr ""
3044
  msgid "The new level is %s"
3045
  msgstr ""
3046
 
3047
- #: classes/class.pmproemail.php:775 classes/class.pmproemail.php:647
3048
  #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
3049
  #: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
3050
  #: classes/class.pmproemail.php:775
3051
  msgid "Your membership has been cancelled"
3052
  msgstr ""
3053
 
3054
- #: classes/class.pmproemail.php:778 classes/class.pmproemail.php:816
3055
  #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
3056
  #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
3057
  #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
@@ -3063,7 +3151,7 @@ msgstr ""
3063
  msgid "This membership will expire on %s"
3064
  msgstr ""
3065
 
3066
- #: classes/class.pmproemail.php:782 classes/class.pmproemail.php:820
3067
  #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
3068
  #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
3069
  #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
@@ -3074,7 +3162,7 @@ msgstr ""
3074
  msgid "This membership does not expire"
3075
  msgstr ""
3076
 
3077
- #: classes/class.pmproemail.php:806 classes/class.pmproemail.php:679
3078
  #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
3079
  #: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
3080
  #: classes/class.pmproemail.php:806 classes/class.pmproemail.php:807
@@ -3082,13 +3170,13 @@ msgstr ""
3082
  msgid "Membership for %s at %s has been changed"
3083
  msgstr ""
3084
 
3085
- #: classes/class.pmproemail.php:812 classes/class.pmproemail.php:799
3086
  #: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
3087
  #: classes/class.pmproemail.php:812 classes/class.pmproemail.php:813
3088
  msgid "Membership has been cancelled"
3089
  msgstr ""
3090
 
3091
- #: classes/class.pmproemail.php:849 classes/class.pmproemail.php:848
3092
  #: classes/class.pmproemail.php:849 classes/class.pmproemail.php:850
3093
  msgid "Invoice for Order #: "
3094
  msgstr ""
@@ -3104,6 +3192,7 @@ msgstr ""
3104
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
3105
  #: classes/gateways/class.pmprogateway_check.php:60
3106
  #: classes/gateways/class.pmprogateway_check.php:193
 
3107
  #: classes/gateways/class.pmprogateway_cybersource.php:57
3108
  #: classes/gateways/class.pmprogateway_cybersource.php:171
3109
  #: classes/gateways/class.pmprogateway_payflowpro.php:27
@@ -3111,6 +3200,7 @@ msgstr ""
3111
  #: classes/gateways/class.pmprogateway_paypal.php:27
3112
  #: classes/gateways/class.pmprogateway_paypal.php:247
3113
  #: classes/gateways/class.pmprogateway_paypal.php:249
 
3114
  msgid "Unknown error: Authorization failed."
3115
  msgstr ""
3116
 
@@ -3145,8 +3235,10 @@ msgstr ""
3145
  #: classes/gateways/class.pmprogateway_check.php:245
3146
  #: classes/gateways/class.pmprogateway_check.php:249
3147
  #: classes/gateways/class.pmprogateway_check.php:250
 
3148
  #: classes/gateways/class.pmprogateway_check.php:267
3149
  #: classes/gateways/class.pmprogateway_check.php:268
 
3150
  #: classes/gateways/class.pmprogateway_cybersource.php:108
3151
  #: classes/gateways/class.pmprogateway_cybersource.php:113
3152
  #: classes/gateways/class.pmprogateway_cybersource.php:131
@@ -3160,6 +3252,7 @@ msgstr ""
3160
  #: classes/gateways/class.pmprogateway_paypal.php:50
3161
  #: classes/gateways/class.pmprogateway_paypal.php:270
3162
  #: classes/gateways/class.pmprogateway_paypal.php:272
 
3163
  msgid "Unknown error: Payment failed."
3164
  msgstr ""
3165
 
@@ -3173,6 +3266,7 @@ msgstr ""
3173
  #: classes/gateways/class.pmprogateway_check.php:118
3174
  #: classes/gateways/class.pmprogateway_check.php:251
3175
  #: classes/gateways/class.pmprogateway_check.php:252
 
3176
  #: classes/gateways/class.pmprogateway_cybersource.php:115
3177
  #: classes/gateways/class.pmprogateway_cybersource.php:229
3178
  msgid ""
@@ -3181,7 +3275,7 @@ msgid ""
3181
  msgstr ""
3182
 
3183
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3184
- #: paid-memberships-pro.php:133
3185
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3186
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
3187
  #: paid-memberships-pro.php:130 paid-memberships-pro.php:131
@@ -3237,9 +3331,10 @@ msgid "Could not connect to Authorize.net"
3237
  msgstr ""
3238
 
3239
  #: classes/gateways/class.pmprogateway_braintree.php:77
3240
- #: paid-memberships-pro.php:134
3241
  #: classes/gateways/class.pmprogateway_braintree.php:63
3242
  #: classes/gateways/class.pmprogateway_braintree.php:76
 
3243
  #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
3244
  #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
3245
  #: paid-memberships-pro.php:133 paid-memberships-pro.php:134
@@ -3249,6 +3344,7 @@ msgstr ""
3249
  #: classes/gateways/class.pmprogateway_braintree.php:133
3250
  #: classes/gateways/class.pmprogateway_braintree.php:119
3251
  #: classes/gateways/class.pmprogateway_braintree.php:132
 
3252
  msgid "Braintree Settings"
3253
  msgstr ""
3254
 
@@ -3259,6 +3355,7 @@ msgstr ""
3259
  #: adminpages/paymentsettings.php:369
3260
  #: classes/gateways/class.pmprogateway_braintree.php:124
3261
  #: classes/gateways/class.pmprogateway_braintree.php:137
 
3262
  #: classes/gateways/class.pmprogateway_cybersource.php:106
3263
  msgid "Merchant ID"
3264
  msgstr ""
@@ -3268,6 +3365,7 @@ msgstr ""
3268
  #: adminpages/paymentsettings.php:311
3269
  #: classes/gateways/class.pmprogateway_braintree.php:132
3270
  #: classes/gateways/class.pmprogateway_braintree.php:145
 
3271
  msgid "Public Key"
3272
  msgstr ""
3273
 
@@ -3276,6 +3374,7 @@ msgstr ""
3276
  #: adminpages/paymentsettings.php:319
3277
  #: classes/gateways/class.pmprogateway_braintree.php:140
3278
  #: classes/gateways/class.pmprogateway_braintree.php:153
 
3279
  msgid "Private Key"
3280
  msgstr ""
3281
 
@@ -3284,6 +3383,7 @@ msgstr ""
3284
  #: adminpages/paymentsettings.php:327
3285
  #: classes/gateways/class.pmprogateway_braintree.php:148
3286
  #: classes/gateways/class.pmprogateway_braintree.php:161
 
3287
  msgid "Client-Side Encryption Key"
3288
  msgstr ""
3289
 
@@ -3295,11 +3395,13 @@ msgstr ""
3295
  #: adminpages/paymentsettings.php:519
3296
  #: classes/gateways/class.pmprogateway_braintree.php:156
3297
  #: classes/gateways/class.pmprogateway_braintree.php:169
 
3298
  #: classes/gateways/class.pmprogateway_stripe.php:181
3299
  #: classes/gateways/class.pmprogateway_stripe.php:182
3300
  #: classes/gateways/class.pmprogateway_stripe.php:192
3301
  #: classes/gateways/class.pmprogateway_stripe.php:214
3302
  #: classes/gateways/class.pmprogateway_stripe.php:216
 
3303
  msgid "Web Hook URL"
3304
  msgstr ""
3305
 
@@ -3308,22 +3410,25 @@ msgstr ""
3308
  #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
3309
  #: classes/gateways/class.pmprogateway_braintree.php:160
3310
  #: classes/gateways/class.pmprogateway_braintree.php:173
 
3311
  msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
3312
  msgstr ""
3313
 
3314
  #: classes/gateways/class.pmprogateway_braintree.php:287
3315
- #: classes/gateways/class.pmprogateway_stripe.php:432 pages/checkout.php:503
3316
  #: classes/gateways/class.pmprogateway_braintree.php:270
3317
  #: classes/gateways/class.pmprogateway_braintree.php:283
3318
  #: classes/gateways/class.pmprogateway_braintree.php:285
3319
  #: classes/gateways/class.pmprogateway_braintree.php:286
 
3320
  #: classes/gateways/class.pmprogateway_stripe.php:387
3321
  #: classes/gateways/class.pmprogateway_stripe.php:388
3322
  #: classes/gateways/class.pmprogateway_stripe.php:398
3323
  #: classes/gateways/class.pmprogateway_stripe.php:402
3324
  #: classes/gateways/class.pmprogateway_stripe.php:426
3325
  #: classes/gateways/class.pmprogateway_stripe.php:427
3326
- #: classes/gateways/class.pmprogateway_stripe.php:429 pages/checkout.php:476
 
3327
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3328
  #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
3329
  #: pages/checkout.php:503
@@ -3331,18 +3436,20 @@ msgid "Payment Information"
3331
  msgstr ""
3332
 
3333
  #: classes/gateways/class.pmprogateway_braintree.php:288
3334
- #: classes/gateways/class.pmprogateway_stripe.php:433 pages/checkout.php:504
3335
  #: classes/gateways/class.pmprogateway_braintree.php:270
3336
  #: classes/gateways/class.pmprogateway_braintree.php:283
3337
  #: classes/gateways/class.pmprogateway_braintree.php:285
3338
  #: classes/gateways/class.pmprogateway_braintree.php:287
 
3339
  #: classes/gateways/class.pmprogateway_stripe.php:387
3340
  #: classes/gateways/class.pmprogateway_stripe.php:388
3341
  #: classes/gateways/class.pmprogateway_stripe.php:398
3342
  #: classes/gateways/class.pmprogateway_stripe.php:402
3343
  #: classes/gateways/class.pmprogateway_stripe.php:426
3344
  #: classes/gateways/class.pmprogateway_stripe.php:428
3345
- #: classes/gateways/class.pmprogateway_stripe.php:430 pages/checkout.php:476
 
3346
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3347
  #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
3348
  #: pages/checkout.php:504
@@ -3351,29 +3458,32 @@ msgid "We Accept %s"
3351
  msgstr ""
3352
 
3353
  #: classes/gateways/class.pmprogateway_braintree.php:322
3354
- #: classes/gateways/class.pmprogateway_stripe.php:498 pages/billing.php:305
3355
- #: pages/checkout.php:570
3356
  #: classes/gateways/class.pmprogateway_braintree.php:303
3357
  #: classes/gateways/class.pmprogateway_braintree.php:316
3358
  #: classes/gateways/class.pmprogateway_braintree.php:318
3359
  #: classes/gateways/class.pmprogateway_braintree.php:321
 
3360
  #: classes/gateways/class.pmprogateway_stripe.php:449
3361
  #: classes/gateways/class.pmprogateway_stripe.php:450
3362
  #: classes/gateways/class.pmprogateway_stripe.php:460
3363
  #: classes/gateways/class.pmprogateway_stripe.php:464
3364
  #: classes/gateways/class.pmprogateway_stripe.php:490
3365
  #: classes/gateways/class.pmprogateway_stripe.php:493
3366
- #: classes/gateways/class.pmprogateway_stripe.php:495 pages/billing.php:244
 
3367
  #: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
3368
- #: pages/billing.php:263 pages/checkout.php:503 pages/checkout.php:519
3369
- #: pages/checkout.php:520 pages/checkout.php:527 pages/checkout.php:548
3370
- #: pages/checkout.php:557 pages/checkout.php:566 pages/checkout.php:570
 
3371
  msgid "Card Number"
3372
  msgstr ""
3373
 
3374
  #: classes/gateways/class.pmprogateway_braintree.php:359
3375
- #: classes/gateways/class.pmprogateway_stripe.php:535 pages/billing.php:343
3376
- #: pages/checkout.php:605
3377
  #: classes/gateways/class.pmprogateway_braintree.php:340
3378
  #: classes/gateways/class.pmprogateway_braintree.php:353
3379
  #: classes/gateways/class.pmprogateway_braintree.php:355
@@ -3385,18 +3495,19 @@ msgstr ""
3385
  #: classes/gateways/class.pmprogateway_stripe.php:501
3386
  #: classes/gateways/class.pmprogateway_stripe.php:527
3387
  #: classes/gateways/class.pmprogateway_stripe.php:531
3388
- #: classes/gateways/class.pmprogateway_stripe.php:532 pages/billing.php:281
 
3389
  #: pages/billing.php:285 pages/billing.php:294 pages/billing.php:297
3390
- #: pages/billing.php:301 pages/checkout.php:540 pages/checkout.php:556
3391
- #: pages/checkout.php:557 pages/checkout.php:564 pages/checkout.php:585
3392
- #: pages/checkout.php:594 pages/checkout.php:603 pages/checkout.php:605
3393
- #: pages/checkout.php:607 pages/checkout.php:608
3394
  msgid "CVV"
3395
  msgstr ""
3396
 
3397
  #: classes/gateways/class.pmprogateway_braintree.php:360
3398
- #: classes/gateways/class.pmprogateway_stripe.php:536 pages/billing.php:344
3399
- #: pages/checkout.php:606
3400
  #: classes/gateways/class.pmprogateway_braintree.php:341
3401
  #: classes/gateways/class.pmprogateway_braintree.php:354
3402
  #: classes/gateways/class.pmprogateway_braintree.php:356
@@ -3408,18 +3519,19 @@ msgstr ""
3408
  #: classes/gateways/class.pmprogateway_stripe.php:502
3409
  #: classes/gateways/class.pmprogateway_stripe.php:528
3410
  #: classes/gateways/class.pmprogateway_stripe.php:532
3411
- #: classes/gateways/class.pmprogateway_stripe.php:533 pages/billing.php:282
 
3412
  #: pages/billing.php:286 pages/billing.php:295 pages/billing.php:298
3413
- #: pages/billing.php:302 pages/checkout.php:541 pages/checkout.php:557
3414
- #: pages/checkout.php:558 pages/checkout.php:565 pages/checkout.php:586
3415
- #: pages/checkout.php:595 pages/checkout.php:604 pages/checkout.php:606
3416
- #: pages/checkout.php:608 pages/checkout.php:609
3417
  msgid "what's this?"
3418
  msgstr ""
3419
 
3420
  #: classes/gateways/class.pmprogateway_braintree.php:370
3421
- #: classes/gateways/class.pmprogateway_stripe.php:546 pages/checkout.php:88
3422
- #: pages/checkout.php:614
3423
  #: classes/gateways/class.pmprogateway_braintree.php:351
3424
  #: classes/gateways/class.pmprogateway_braintree.php:364
3425
  #: classes/gateways/class.pmprogateway_braintree.php:366
@@ -3431,7 +3543,8 @@ msgstr ""
3431
  #: classes/gateways/class.pmprogateway_stripe.php:512
3432
  #: classes/gateways/class.pmprogateway_stripe.php:538
3433
  #: classes/gateways/class.pmprogateway_stripe.php:542
3434
- #: classes/gateways/class.pmprogateway_stripe.php:543 pages/checkout.php:78
 
3435
  #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3436
  #: pages/checkout.php:88 pages/checkout.php:551 pages/checkout.php:567
3437
  #: pages/checkout.php:568 pages/checkout.php:575 pages/checkout.php:596
@@ -3441,7 +3554,7 @@ msgid "Apply"
3441
  msgstr ""
3442
 
3443
  #: classes/gateways/class.pmprogateway_braintree.php:425
3444
- #: classes/gateways/class.pmprogateway_stripe.php:1076
3445
  #: classes/gateways/class.pmprogateway_braintree.php:61
3446
  #: classes/gateways/class.pmprogateway_braintree.php:406
3447
  #: classes/gateways/class.pmprogateway_braintree.php:419
@@ -3457,6 +3570,7 @@ msgstr ""
3457
  #: classes/gateways/class.pmprogateway_stripe.php:1068
3458
  #: classes/gateways/class.pmprogateway_stripe.php:1072
3459
  #: classes/gateways/class.pmprogateway_stripe.php:1073
 
3460
  msgid "Unknown error: Initial payment failed."
3461
  msgstr ""
3462
 
@@ -3576,10 +3690,11 @@ msgid "Could not find the subscription."
3576
  msgstr ""
3577
 
3578
  #: classes/gateways/class.pmprogateway_check.php:49
3579
- #: paid-memberships-pro.php:127 adminpages/orders.php:399
3580
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3581
  #: adminpages/paymentsettings.php:159
3582
  #: classes/gateways/class.pmprogateway_check.php:48
 
3583
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:117
3584
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3585
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
@@ -3588,6 +3703,7 @@ msgstr ""
3588
 
3589
  #: classes/gateways/class.pmprogateway_check.php:101
3590
  #: classes/gateways/class.pmprogateway_check.php:100
 
3591
  msgid "Pay by Check Settings"
3592
  msgstr ""
3593
 
@@ -3595,6 +3711,7 @@ msgstr ""
3595
  #: adminpages/paymentsettings.php:389 adminpages/paymentsettings.php:415
3596
  #: adminpages/paymentsettings.php:420 adminpages/paymentsettings.php:422
3597
  #: classes/gateways/class.pmprogateway_check.php:105
 
3598
  msgid "Instructions"
3599
  msgstr ""
3600
 
@@ -3602,6 +3719,7 @@ msgstr ""
3602
  #: adminpages/paymentsettings.php:393 adminpages/paymentsettings.php:419
3603
  #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:426
3604
  #: classes/gateways/class.pmprogateway_check.php:109
 
3605
  msgid ""
3606
  "Who to write the check out to. Where to mail it. Shown on checkout, "
3607
  "confirmation, and invoice pages."
@@ -3658,7 +3776,7 @@ msgid "Vendor"
3658
  msgstr ""
3659
 
3660
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3661
- #: pages/checkout.php:193 adminpages/paymentsettings.php:219
3662
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3663
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3664
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
@@ -3686,14 +3804,16 @@ msgstr ""
3686
  #: classes/gateways/class.pmprogateway_paypal.php:57
3687
  #: classes/gateways/class.pmprogateway_paypal.php:277
3688
  #: classes/gateways/class.pmprogateway_paypal.php:279
 
3689
  msgid ""
3690
  "A partial payment was made that we could not refund. Please contact the site "
3691
  "owner immediately to correct this."
3692
  msgstr ""
3693
 
3694
  #: classes/gateways/class.pmprogateway_paypal.php:68
3695
- #: paid-memberships-pro.php:130
3696
  #: classes/gateways/class.pmprogateway_paypal.php:57
 
3697
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
3698
  #: paid-memberships-pro.php:127 paid-memberships-pro.php:128
3699
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
@@ -3704,8 +3824,10 @@ msgstr ""
3704
  #: classes/gateways/class.pmprogateway_paypalexpress.php:140
3705
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3706
  #: classes/gateways/class.pmprogateway_paypal.php:113
 
3707
  #: classes/gateways/class.pmprogateway_paypalexpress.php:118
3708
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
 
3709
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3710
  msgid "PayPal Settings"
3711
  msgstr ""
@@ -3715,8 +3837,10 @@ msgstr ""
3715
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3716
  #: adminpages/paymentsettings.php:179
3717
  #: classes/gateways/class.pmprogateway_paypal.php:118
 
3718
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
3719
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
 
3720
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3721
  msgid ""
3722
  "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
@@ -3732,8 +3856,10 @@ msgstr ""
3732
  #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3733
  #: adminpages/paymentsettings.php:236
3734
  #: classes/gateways/class.pmprogateway_paypal.php:123
 
3735
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3736
  #: classes/gateways/class.pmprogateway_paypalexpress.php:138
 
3737
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3738
  msgid "Gateway Account Email"
3739
  msgstr ""
@@ -3746,8 +3872,10 @@ msgstr ""
3746
  #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
3747
  #: adminpages/paymentsettings.php:336
3748
  #: classes/gateways/class.pmprogateway_paypal.php:131
 
3749
  #: classes/gateways/class.pmprogateway_paypalexpress.php:136
3750
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
 
3751
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3752
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
3753
  #: classes/gateways/class.pmprogateway_twocheckout.php:119
@@ -3763,8 +3891,10 @@ msgstr ""
3763
  #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
3764
  #: adminpages/paymentsettings.php:344
3765
  #: classes/gateways/class.pmprogateway_paypal.php:139
 
3766
  #: classes/gateways/class.pmprogateway_paypalexpress.php:144
3767
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
 
3768
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3769
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3770
  #: classes/gateways/class.pmprogateway_twocheckout.php:128
@@ -3778,12 +3908,16 @@ msgstr ""
3778
  #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3779
  #: adminpages/paymentsettings.php:260
3780
  #: classes/gateways/class.pmprogateway_paypal.php:147
 
3781
  #: classes/gateways/class.pmprogateway_paypalexpress.php:152
3782
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
 
3783
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3784
  msgid "API Signature"
3785
  msgstr ""
3786
 
 
 
3787
  #: classes/gateways/class.pmprogateway_paypal.php:167
3788
  #: classes/gateways/class.pmprogateway_paypalexpress.php:182
3789
  msgid "Confirmation Step"
@@ -3795,14 +3929,17 @@ msgstr ""
3795
  #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3796
  #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
3797
  #: classes/gateways/class.pmprogateway_paypal.php:155
 
3798
  #: classes/gateways/class.pmprogateway_paypalexpress.php:160
3799
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
 
3800
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3801
  msgid "IPN Handler URL"
3802
  msgstr ""
3803
 
3804
  #: classes/gateways/class.pmprogateway_paypal.php:181
3805
  #: classes/gateways/class.pmprogateway_paypal.php:158
 
3806
  msgid ""
3807
  "This URL is passed to PayPal for all new charges and subscriptions. You "
3808
  "SHOULD NOT set this in your PayPal account settings."
@@ -3811,9 +3948,12 @@ msgstr ""
3811
  #: classes/gateways/class.pmprogateway_paypal.php:201
3812
  #: classes/gateways/class.pmprogateway_paypalexpress.php:438
3813
  #: classes/gateways/class.pmprogateway_paypalstandard.php:201
3814
- #: pages/checkout.php:302 classes/gateways/class.pmprogateway_paypal.php:178
 
3815
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3816
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
 
 
3817
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3818
  #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3819
  #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:309
@@ -3825,14 +3965,17 @@ msgstr ""
3825
  #: classes/gateways/class.pmprogateway_paypal.php:207
3826
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
3827
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
3828
- #: pages/checkout.php:718 classes/gateways/class.pmprogateway_paypal.php:184
 
3829
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3830
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
 
 
3831
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3832
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3833
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3834
- #: pages/checkout.php:722 pages/checkout.php:724 pages/checkout.php:728
3835
- #: pages/checkout.php:729
3836
  msgid "Submit and Check Out"
3837
  msgstr ""
3838
 
@@ -3840,17 +3983,20 @@ msgstr ""
3840
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
3841
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
3842
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
3843
- #: pages/checkout.php:718 classes/gateways/class.pmprogateway_paypal.php:184
 
3844
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3845
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
 
 
3846
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3847
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
3848
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
3849
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3850
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3851
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3852
- #: pages/checkout.php:722 pages/checkout.php:724 pages/checkout.php:728
3853
- #: pages/checkout.php:729
3854
  msgid "Submit and Confirm"
3855
  msgstr ""
3856
 
@@ -3861,6 +4007,7 @@ msgstr ""
3861
  #: classes/gateways/class.pmprogateway_paypal.php:605
3862
  #: classes/gateways/class.pmprogateway_paypal.php:607
3863
  #: classes/gateways/class.pmprogateway_paypal.php:608
 
3864
  #: classes/gateways/class.pmprogateway_paypalexpress.php:301
3865
  #: classes/gateways/class.pmprogateway_paypalexpress.php:303
3866
  #: classes/gateways/class.pmprogateway_paypalexpress.php:305
@@ -3868,10 +4015,12 @@ msgstr ""
3868
  #: classes/gateways/class.pmprogateway_paypalexpress.php:740
3869
  #: classes/gateways/class.pmprogateway_paypalexpress.php:750
3870
  #: classes/gateways/class.pmprogateway_paypalexpress.php:752
 
3871
  #: classes/gateways/class.pmprogateway_paypalstandard.php:216
3872
  #: classes/gateways/class.pmprogateway_paypalstandard.php:220
3873
  #: classes/gateways/class.pmprogateway_paypalstandard.php:230
3874
  #: classes/gateways/class.pmprogateway_paypalstandard.php:231
 
3875
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3876
  msgid ""
3877
  "Please contact the site owner or cancel your subscription from within PayPal "
@@ -3879,9 +4028,10 @@ msgid ""
3879
  msgstr ""
3880
 
3881
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
3882
- #: paid-memberships-pro.php:129
3883
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3884
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
 
3885
  #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3886
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
3887
  #: paid-memberships-pro.php:128 paid-memberships-pro.php:129
@@ -3893,6 +4043,7 @@ msgstr ""
3893
  #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3894
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3895
  #: classes/gateways/class.pmprogateway_paypalexpress.php:173
 
3896
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3897
  msgstr ""
3898
 
@@ -3900,8 +4051,10 @@ msgstr ""
3900
  #: classes/gateways/class.pmprogateway_paypalexpress.php:357
3901
  #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3902
  #: classes/gateways/class.pmprogateway_paypalexpress.php:278
 
3903
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
3904
  #: classes/gateways/class.pmprogateway_paypalexpress.php:330
 
3905
  #: preheaders/checkout.php:690 preheaders/checkout.php:697
3906
  #: preheaders/checkout.php:702 preheaders/checkout.php:735
3907
  #: preheaders/checkout.php:750 preheaders/checkout.php:753
@@ -3912,7 +4065,7 @@ msgid "The PayPal Token was lost."
3912
  msgstr ""
3913
 
3914
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3915
- #: paid-memberships-pro.php:132
3916
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3917
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
3918
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
@@ -3937,12 +4090,13 @@ msgid ""
3937
  msgstr ""
3938
 
3939
  #: classes/gateways/class.pmprogateway_stripe.php:129
3940
- #: paid-memberships-pro.php:128
3941
  #: classes/gateways/class.pmprogateway_stripe.php:93
3942
  #: classes/gateways/class.pmprogateway_stripe.php:94
3943
  #: classes/gateways/class.pmprogateway_stripe.php:104
3944
  #: classes/gateways/class.pmprogateway_stripe.php:126
3945
  #: classes/gateways/class.pmprogateway_stripe.php:128
 
3946
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3947
  #: paid-memberships-pro.php:125 paid-memberships-pro.php:126
3948
  #: paid-memberships-pro.php:127 paid-memberships-pro.php:128
@@ -3955,6 +4109,7 @@ msgstr ""
3955
  #: classes/gateways/class.pmprogateway_stripe.php:159
3956
  #: classes/gateways/class.pmprogateway_stripe.php:181
3957
  #: classes/gateways/class.pmprogateway_stripe.php:183
 
3958
  msgid "Stripe Settings"
3959
  msgstr ""
3960
 
@@ -3966,6 +4121,7 @@ msgstr ""
3966
  #: classes/gateways/class.pmprogateway_stripe.php:164
3967
  #: classes/gateways/class.pmprogateway_stripe.php:186
3968
  #: classes/gateways/class.pmprogateway_stripe.php:188
 
3969
  msgid "Secret Key"
3970
  msgstr ""
3971
 
@@ -3977,6 +4133,7 @@ msgstr ""
3977
  #: classes/gateways/class.pmprogateway_stripe.php:172
3978
  #: classes/gateways/class.pmprogateway_stripe.php:194
3979
  #: classes/gateways/class.pmprogateway_stripe.php:196
 
3980
  msgid "Publishable Key"
3981
  msgstr ""
3982
 
@@ -3988,6 +4145,7 @@ msgstr ""
3988
  #: classes/gateways/class.pmprogateway_stripe.php:180
3989
  #: classes/gateways/class.pmprogateway_stripe.php:202
3990
  #: classes/gateways/class.pmprogateway_stripe.php:204
 
3991
  msgid "Show Billing Address Fields"
3992
  msgstr ""
3993
 
@@ -3998,6 +4156,7 @@ msgstr ""
3998
  #: classes/gateways/class.pmprogateway_stripe.php:187
3999
  #: classes/gateways/class.pmprogateway_stripe.php:209
4000
  #: classes/gateways/class.pmprogateway_stripe.php:211
 
4001
  msgid ""
4002
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
4003
  "the checkout page.<br /><strong>If No, make sure you disable address "
@@ -4012,10 +4171,11 @@ msgstr ""
4012
  #: classes/gateways/class.pmprogateway_stripe.php:195
4013
  #: classes/gateways/class.pmprogateway_stripe.php:217
4014
  #: classes/gateways/class.pmprogateway_stripe.php:219
 
4015
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
4016
  msgstr ""
4017
 
4018
- #: classes/gateways/class.pmprogateway_stripe.php:616
4019
  #: classes/gateways/class.pmprogateway_stripe.php:567
4020
  #: classes/gateways/class.pmprogateway_stripe.php:568
4021
  #: classes/gateways/class.pmprogateway_stripe.php:578
@@ -4023,10 +4183,11 @@ msgstr ""
4023
  #: classes/gateways/class.pmprogateway_stripe.php:608
4024
  #: classes/gateways/class.pmprogateway_stripe.php:612
4025
  #: classes/gateways/class.pmprogateway_stripe.php:613
 
4026
  msgid "Subscription Updates"
4027
  msgstr ""
4028
 
4029
- #: classes/gateways/class.pmprogateway_stripe.php:620
4030
  #: classes/gateways/class.pmprogateway_stripe.php:571
4031
  #: classes/gateways/class.pmprogateway_stripe.php:572
4032
  #: classes/gateways/class.pmprogateway_stripe.php:582
@@ -4034,12 +4195,13 @@ msgstr ""
4034
  #: classes/gateways/class.pmprogateway_stripe.php:612
4035
  #: classes/gateways/class.pmprogateway_stripe.php:616
4036
  #: classes/gateways/class.pmprogateway_stripe.php:617
 
4037
  msgid ""
4038
  "Subscription updates, allow you to change the member's subscription values "
4039
  "at predefined times. Be sure to click Update Profile after making changes."
4040
  msgstr ""
4041
 
4042
- #: classes/gateways/class.pmprogateway_stripe.php:622
4043
  #: classes/gateways/class.pmprogateway_stripe.php:573
4044
  #: classes/gateways/class.pmprogateway_stripe.php:574
4045
  #: classes/gateways/class.pmprogateway_stripe.php:584
@@ -4047,25 +4209,28 @@ msgstr ""
4047
  #: classes/gateways/class.pmprogateway_stripe.php:614
4048
  #: classes/gateways/class.pmprogateway_stripe.php:618
4049
  #: classes/gateways/class.pmprogateway_stripe.php:619
 
4050
  msgid ""
4051
  "Subscription updates, allow you to change the member's subscription values "
4052
  "at predefined times. Be sure to click Update User after making changes."
4053
  msgstr ""
4054
 
4055
- #: classes/gateways/class.pmprogateway_stripe.php:627 pages/billing.php:391
4056
  #: classes/gateways/class.pmprogateway_stripe.php:578
4057
  #: classes/gateways/class.pmprogateway_stripe.php:579
4058
  #: classes/gateways/class.pmprogateway_stripe.php:589
4059
  #: classes/gateways/class.pmprogateway_stripe.php:593
4060
  #: classes/gateways/class.pmprogateway_stripe.php:619
4061
  #: classes/gateways/class.pmprogateway_stripe.php:623
4062
- #: classes/gateways/class.pmprogateway_stripe.php:624 pages/billing.php:294
 
4063
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
4064
  #: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
 
4065
  msgid "Update"
4066
  msgstr ""
4067
 
4068
- #: classes/gateways/class.pmprogateway_stripe.php:820
4069
  #: classes/gateways/class.pmprogateway_stripe.php:769
4070
  #: classes/gateways/class.pmprogateway_stripe.php:770
4071
  #: classes/gateways/class.pmprogateway_stripe.php:780
@@ -4073,10 +4238,11 @@ msgstr ""
4073
  #: classes/gateways/class.pmprogateway_stripe.php:812
4074
  #: classes/gateways/class.pmprogateway_stripe.php:816
4075
  #: classes/gateways/class.pmprogateway_stripe.php:817
 
4076
  msgid "Could not cancel the old subscription. Updates have not been processed."
4077
  msgstr ""
4078
 
4079
- #: classes/gateways/class.pmprogateway_stripe.php:1303
4080
  #: classes/gateways/class.pmprogateway_stripe.php:190
4081
  #: classes/gateways/class.pmprogateway_stripe.php:192
4082
  #: classes/gateways/class.pmprogateway_stripe.php:199
@@ -4092,19 +4258,21 @@ msgstr ""
4092
  #: classes/gateways/class.pmprogateway_stripe.php:1256
4093
  #: classes/gateways/class.pmprogateway_stripe.php:1260
4094
  #: classes/gateways/class.pmprogateway_stripe.php:1300
 
4095
  msgid "Error creating customer record with Stripe:"
4096
  msgstr ""
4097
 
4098
- #: classes/gateways/class.pmprogateway_stripe.php:1360
4099
  #: classes/gateways/class.pmprogateway_stripe.php:1275
4100
  #: classes/gateways/class.pmprogateway_stripe.php:1303
4101
  #: classes/gateways/class.pmprogateway_stripe.php:1313
4102
  #: classes/gateways/class.pmprogateway_stripe.php:1317
4103
  #: classes/gateways/class.pmprogateway_stripe.php:1357
 
4104
  msgid "Error getting subscription with Stripe:"
4105
  msgstr ""
4106
 
4107
- #: classes/gateways/class.pmprogateway_stripe.php:1510
4108
  #: classes/gateways/class.pmprogateway_stripe.php:278
4109
  #: classes/gateways/class.pmprogateway_stripe.php:279
4110
  #: classes/gateways/class.pmprogateway_stripe.php:286
@@ -4128,10 +4296,11 @@ msgstr ""
4128
  #: classes/gateways/class.pmprogateway_stripe.php:1463
4129
  #: classes/gateways/class.pmprogateway_stripe.php:1467
4130
  #: classes/gateways/class.pmprogateway_stripe.php:1507
 
4131
  msgid "Error creating plan with Stripe:"
4132
  msgstr ""
4133
 
4134
- #: classes/gateways/class.pmprogateway_stripe.php:1541
4135
  #: classes/gateways/class.pmprogateway_stripe.php:294
4136
  #: classes/gateways/class.pmprogateway_stripe.php:295
4137
  #: classes/gateways/class.pmprogateway_stripe.php:302
@@ -4150,10 +4319,11 @@ msgstr ""
4150
  #: classes/gateways/class.pmprogateway_stripe.php:1494
4151
  #: classes/gateways/class.pmprogateway_stripe.php:1498
4152
  #: classes/gateways/class.pmprogateway_stripe.php:1538
 
4153
  msgid "Error subscribing customer to plan with Stripe:"
4154
  msgstr ""
4155
 
4156
- #: classes/gateways/class.pmprogateway_stripe.php:1637
4157
  #: classes/gateways/class.pmprogateway_stripe.php:383
4158
  #: classes/gateways/class.pmprogateway_stripe.php:389
4159
  #: classes/gateways/class.pmprogateway_stripe.php:410
@@ -4169,10 +4339,11 @@ msgstr ""
4169
  #: classes/gateways/class.pmprogateway_stripe.php:1590
4170
  #: classes/gateways/class.pmprogateway_stripe.php:1594
4171
  #: classes/gateways/class.pmprogateway_stripe.php:1634
 
4172
  msgid "Could not cancel old subscription."
4173
  msgstr ""
4174
 
4175
- #: classes/gateways/class.pmprogateway_stripe.php:1654
4176
  #: classes/gateways/class.pmprogateway_stripe.php:1533
4177
  #: classes/gateways/class.pmprogateway_stripe.php:1534
4178
  #: classes/gateways/class.pmprogateway_stripe.php:1535
@@ -4185,11 +4356,21 @@ msgstr ""
4185
  #: classes/gateways/class.pmprogateway_stripe.php:1607
4186
  #: classes/gateways/class.pmprogateway_stripe.php:1611
4187
  #: classes/gateways/class.pmprogateway_stripe.php:1651
 
4188
  msgid "Could not find the customer."
4189
  msgstr ""
4190
 
 
 
 
 
 
 
 
 
 
4191
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4192
- #: paid-memberships-pro.php:135
4193
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
4194
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4195
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
@@ -4339,7 +4520,7 @@ msgstr ""
4339
  #: includes/currencies.php:37 includes/currencies.php:44
4340
  #: includes/currencies.php:64 includes/currencies.php:68
4341
  #: includes/currencies.php:75 includes/currencies.php:85
4342
- #: includes/currencies.php:87
4343
  msgid "US Dollars (&#36;)"
4344
  msgstr ""
4345
 
@@ -4349,6 +4530,7 @@ msgstr ""
4349
  #: includes/currencies.php:47 includes/currencies.php:67
4350
  #: includes/currencies.php:71 includes/currencies.php:78
4351
  #: includes/currencies.php:88 includes/currencies.php:90
 
4352
  msgid "Euros (&euro;)"
4353
  msgstr ""
4354
 
@@ -4358,6 +4540,7 @@ msgstr ""
4358
  #: includes/currencies.php:46 includes/currencies.php:66
4359
  #: includes/currencies.php:70 includes/currencies.php:77
4360
  #: includes/currencies.php:87 includes/currencies.php:89
 
4361
  msgid "Pounds Sterling (&pound;)"
4362
  msgstr ""
4363
 
@@ -4382,7 +4565,7 @@ msgstr ""
4382
  #: includes/currencies.php:38 includes/currencies.php:45
4383
  #: includes/currencies.php:65 includes/currencies.php:69
4384
  #: includes/currencies.php:76 includes/currencies.php:86
4385
- #: includes/currencies.php:88
4386
  msgid "Canadian Dollars (&#36;)"
4387
  msgstr ""
4388
 
@@ -4449,66 +4632,67 @@ msgstr ""
4449
  #: includes/currencies.php:57 includes/currencies.php:19
4450
  #: includes/currencies.php:22 includes/currencies.php:38
4451
  #: includes/currencies.php:45 includes/currencies.php:55
4452
- #: includes/currencies.php:56
4453
  msgid "Malaysian Ringgits"
4454
  msgstr ""
4455
 
4456
  #: includes/currencies.php:58 includes/currencies.php:20
4457
  #: includes/currencies.php:23 includes/currencies.php:39
4458
  #: includes/currencies.php:46 includes/currencies.php:56
4459
- #: includes/currencies.php:57
4460
  msgid "Mexican Peso (&#36;)"
4461
  msgstr ""
4462
 
4463
  #: includes/currencies.php:59 includes/currencies.php:58
 
4464
  msgid "Nigerian Naira (&#8358;)"
4465
  msgstr ""
4466
 
4467
  #: includes/currencies.php:60 includes/currencies.php:21
4468
  #: includes/currencies.php:24 includes/currencies.php:40
4469
  #: includes/currencies.php:47 includes/currencies.php:57
4470
- #: includes/currencies.php:59
4471
  msgid "New Zealand Dollar (&#36;)"
4472
  msgstr ""
4473
 
4474
  #: includes/currencies.php:61 includes/currencies.php:22
4475
  #: includes/currencies.php:25 includes/currencies.php:41
4476
  #: includes/currencies.php:48 includes/currencies.php:58
4477
- #: includes/currencies.php:60
4478
  msgid "Norwegian Krone"
4479
  msgstr ""
4480
 
4481
  #: includes/currencies.php:62 includes/currencies.php:23
4482
  #: includes/currencies.php:26 includes/currencies.php:42
4483
  #: includes/currencies.php:49 includes/currencies.php:59
4484
- #: includes/currencies.php:61
4485
  msgid "Philippine Pesos"
4486
  msgstr ""
4487
 
4488
  #: includes/currencies.php:63 includes/currencies.php:24
4489
  #: includes/currencies.php:27 includes/currencies.php:43
4490
  #: includes/currencies.php:50 includes/currencies.php:60
4491
- #: includes/currencies.php:62
4492
  msgid "Polish Zloty"
4493
  msgstr ""
4494
 
4495
  #: includes/currencies.php:65 includes/currencies.php:25
4496
  #: includes/currencies.php:28 includes/currencies.php:45
4497
  #: includes/currencies.php:52 includes/currencies.php:62
4498
- #: includes/currencies.php:64
4499
  msgid "Singapore Dollar (&#36;)"
4500
  msgstr ""
4501
 
4502
  #: includes/currencies.php:70 includes/currencies.php:50
4503
  #: includes/currencies.php:57 includes/currencies.php:67
4504
- #: includes/currencies.php:69
4505
  msgid "South African Rand (R)"
4506
  msgstr ""
4507
 
4508
  #: includes/currencies.php:75 includes/currencies.php:30
4509
  #: includes/currencies.php:50 includes/currencies.php:54
4510
  #: includes/currencies.php:61 includes/currencies.php:71
4511
- #: includes/currencies.php:73
4512
  msgid "South Korean Won"
4513
  msgstr ""
4514
 
@@ -4516,6 +4700,7 @@ msgstr ""
4516
  #: includes/currencies.php:31 includes/currencies.php:51
4517
  #: includes/currencies.php:55 includes/currencies.php:62
4518
  #: includes/currencies.php:72 includes/currencies.php:74
 
4519
  msgid "Swedish Krona"
4520
  msgstr ""
4521
 
@@ -4523,6 +4708,7 @@ msgstr ""
4523
  #: includes/currencies.php:32 includes/currencies.php:52
4524
  #: includes/currencies.php:56 includes/currencies.php:63
4525
  #: includes/currencies.php:73 includes/currencies.php:75
 
4526
  msgid "Swiss Franc"
4527
  msgstr ""
4528
 
@@ -4530,6 +4716,7 @@ msgstr ""
4530
  #: includes/currencies.php:33 includes/currencies.php:53
4531
  #: includes/currencies.php:57 includes/currencies.php:64
4532
  #: includes/currencies.php:74 includes/currencies.php:76
 
4533
  msgid "Taiwan New Dollars"
4534
  msgstr ""
4535
 
@@ -4537,43 +4724,44 @@ msgstr ""
4537
  #: includes/currencies.php:34 includes/currencies.php:54
4538
  #: includes/currencies.php:58 includes/currencies.php:65
4539
  #: includes/currencies.php:75 includes/currencies.php:77
 
4540
  msgid "Thai Baht"
4541
  msgstr ""
4542
 
4543
  #: includes/currencies.php:82 includes/currencies.php:35
4544
  #: includes/currencies.php:55 includes/currencies.php:59
4545
  #: includes/currencies.php:66 includes/currencies.php:76
4546
- #: includes/currencies.php:78
4547
  msgid "Turkish Lira"
4548
  msgstr ""
4549
 
4550
  #: includes/currencies.php:84 includes/currencies.php:36
4551
  #: includes/currencies.php:56 includes/currencies.php:60
4552
  #: includes/currencies.php:67 includes/currencies.php:77
4553
- #: includes/currencies.php:79
4554
  msgid "Vietnamese Dong"
4555
  msgstr ""
4556
 
4557
- #: includes/functions.php:309 includes/functions.php:160
4558
- #: includes/functions.php:196 includes/functions.php:200
4559
- #: includes/functions.php:202 includes/functions.php:203
4560
- #: includes/functions.php:204 includes/functions.php:207
4561
- #: includes/functions.php:243 includes/functions.php:309
4562
- #: includes/functions.php:315
4563
  #, php-format
4564
  msgid "The price for membership is <strong>%s</strong> now"
4565
  msgstr ""
4566
 
4567
- #: includes/functions.php:311 includes/functions.php:202
4568
- #: includes/functions.php:204 includes/functions.php:205
4569
- #: includes/functions.php:206 includes/functions.php:209
4570
- #: includes/functions.php:245 includes/functions.php:311
4571
- #: includes/functions.php:317
4572
  #, php-format
4573
  msgid "<strong>%s</strong> now"
4574
  msgstr ""
4575
 
4576
- #: includes/functions.php:320 includes/functions.php:169
4577
  #: includes/functions.php:205 includes/functions.php:211
4578
  #: includes/functions.php:213 includes/functions.php:214
4579
  #: includes/functions.php:215 includes/functions.php:218
@@ -4583,13 +4771,13 @@ msgstr ""
4583
  msgid " and then <strong>%s per %s for %d more %s</strong>."
4584
  msgstr ""
4585
 
4586
- #: includes/functions.php:324 includes/functions.php:258
4587
  #: includes/functions.php:324 includes/functions.php:330
4588
  #, php-format
4589
  msgid " and then <strong>%s every %d %s for %d more payments</strong>."
4590
  msgstr ""
4591
 
4592
- #: includes/functions.php:329 includes/functions.php:178
4593
  #: includes/functions.php:214 includes/functions.php:220
4594
  #: includes/functions.php:222 includes/functions.php:223
4595
  #: includes/functions.php:224 includes/functions.php:227
@@ -4599,7 +4787,7 @@ msgstr ""
4599
  msgid " and then <strong>%s after %d %s</strong>."
4600
  msgstr ""
4601
 
4602
- #: includes/functions.php:337 includes/functions.php:228
4603
  #: includes/functions.php:229 includes/functions.php:230
4604
  #: includes/functions.php:231 includes/functions.php:235
4605
  #: includes/functions.php:271 includes/functions.php:337
@@ -4608,7 +4796,7 @@ msgstr ""
4608
  msgid "The price for membership is <strong>%s per %s</strong>."
4609
  msgstr ""
4610
 
4611
- #: includes/functions.php:339 includes/functions.php:230
4612
  #: includes/functions.php:233 includes/functions.php:237
4613
  #: includes/functions.php:273 includes/functions.php:339
4614
  #: includes/functions.php:345
@@ -4616,7 +4804,7 @@ msgstr ""
4616
  msgid "<strong>%s per %s</strong>."
4617
  msgstr ""
4618
 
4619
- #: includes/functions.php:344 includes/functions.php:233
4620
  #: includes/functions.php:234 includes/functions.php:235
4621
  #: includes/functions.php:238 includes/functions.php:242
4622
  #: includes/functions.php:278 includes/functions.php:344
@@ -4625,7 +4813,7 @@ msgstr ""
4625
  msgid "The price for membership is <strong>%s every %d %s</strong>."
4626
  msgstr ""
4627
 
4628
- #: includes/functions.php:346 includes/functions.php:237
4629
  #: includes/functions.php:240 includes/functions.php:244
4630
  #: includes/functions.php:280 includes/functions.php:346
4631
  #: includes/functions.php:352
@@ -4633,7 +4821,7 @@ msgstr ""
4633
  msgid "<strong>%s every %d %s</strong>."
4634
  msgstr ""
4635
 
4636
- #: includes/functions.php:351 includes/functions.php:184
4637
  #: includes/functions.php:220 includes/functions.php:228
4638
  #: includes/functions.php:238 includes/functions.php:239
4639
  #: includes/functions.php:240 includes/functions.php:242
@@ -4644,7 +4832,7 @@ msgstr ""
4644
  msgid " and then <strong>%s per %s</strong>."
4645
  msgstr ""
4646
 
4647
- #: includes/functions.php:355 includes/functions.php:188
4648
  #: includes/functions.php:224 includes/functions.php:232
4649
  #: includes/functions.php:242 includes/functions.php:243
4650
  #: includes/functions.php:244 includes/functions.php:246
@@ -4655,7 +4843,7 @@ msgstr ""
4655
  msgid " and then <strong>%s every %d %s</strong>."
4656
  msgstr ""
4657
 
4658
- #: includes/functions.php:373 includes/functions.php:202
4659
  #: includes/functions.php:238 includes/functions.php:249
4660
  #: includes/functions.php:260 includes/functions.php:261
4661
  #: includes/functions.php:262 includes/functions.php:264
@@ -4665,7 +4853,7 @@ msgstr ""
4665
  msgid "After your initial payment, your first payment is Free."
4666
  msgstr ""
4667
 
4668
- #: includes/functions.php:377 includes/functions.php:206
4669
  #: includes/functions.php:242 includes/functions.php:253
4670
  #: includes/functions.php:264 includes/functions.php:265
4671
  #: includes/functions.php:266 includes/functions.php:268
@@ -4676,7 +4864,7 @@ msgstr ""
4676
  msgid "After your initial payment, your first %d payments are Free."
4677
  msgstr ""
4678
 
4679
- #: includes/functions.php:384 includes/functions.php:213
4680
  #: includes/functions.php:249 includes/functions.php:260
4681
  #: includes/functions.php:271 includes/functions.php:272
4682
  #: includes/functions.php:273 includes/functions.php:275
@@ -4687,7 +4875,7 @@ msgstr ""
4687
  msgid "After your initial payment, your first payment will cost %s."
4688
  msgstr ""
4689
 
4690
- #: includes/functions.php:388 includes/functions.php:217
4691
  #: includes/functions.php:253 includes/functions.php:264
4692
  #: includes/functions.php:275 includes/functions.php:276
4693
  #: includes/functions.php:277 includes/functions.php:279
@@ -4698,18 +4886,52 @@ msgstr ""
4698
  msgid "After your initial payment, your first %d payments will cost %s."
4699
  msgstr ""
4700
 
4701
- #: includes/functions.php:399 includes/functions.php:228
4702
- #: includes/functions.php:264 includes/functions.php:275
4703
- #: includes/functions.php:286 includes/functions.php:287
4704
- #: includes/functions.php:288 includes/functions.php:290
4705
- #: includes/functions.php:293 includes/functions.php:297
4706
- #: includes/functions.php:333 includes/functions.php:399
4707
- #: includes/functions.php:405
4708
  #, php-format
4709
  msgid "Customers in %s will be charged %s%% tax."
4710
  msgstr ""
4711
 
4712
- #: includes/functions.php:413 includes/functions.php:242
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4713
  #: includes/functions.php:278 includes/functions.php:289
4714
  #: includes/functions.php:300 includes/functions.php:301
4715
  #: includes/functions.php:302 includes/functions.php:304
@@ -4720,7 +4942,12 @@ msgstr ""
4720
  msgid "Membership expires after %d %s."
4721
  msgstr ""
4722
 
4723
- #: includes/functions.php:760 includes/functions.php:491
 
 
 
 
 
4724
  #: includes/functions.php:514 includes/functions.php:525
4725
  #: includes/functions.php:536 includes/functions.php:537
4726
  #: includes/functions.php:538 includes/functions.php:545
@@ -4731,7 +4958,7 @@ msgstr ""
4731
  msgid "User ID not found."
4732
  msgstr ""
4733
 
4734
- #: includes/functions.php:780 includes/functions.php:508
4735
  #: includes/functions.php:531 includes/functions.php:542
4736
  #: includes/functions.php:553 includes/functions.php:554
4737
  #: includes/functions.php:555 includes/functions.php:562
@@ -4743,7 +4970,7 @@ msgstr ""
4743
  msgid "Invalid level."
4744
  msgstr ""
4745
 
4746
- #: includes/functions.php:791 includes/functions.php:520
4747
  #: includes/functions.php:542 includes/functions.php:553
4748
  #: includes/functions.php:564 includes/functions.php:565
4749
  #: includes/functions.php:566 includes/functions.php:573
@@ -4755,7 +4982,7 @@ msgstr ""
4755
  msgid "not changing?"
4756
  msgstr ""
4757
 
4758
- #: includes/functions.php:808 includes/functions.php:537
4759
  #: includes/functions.php:559 includes/functions.php:570
4760
  #: includes/functions.php:581 includes/functions.php:582
4761
  #: includes/functions.php:583 includes/functions.php:590
@@ -4781,12 +5008,12 @@ msgstr ""
4781
  msgid "Error interacting with database"
4782
  msgstr ""
4783
 
4784
- #: includes/functions.php:907
4785
  #, php-format
4786
  msgid "Error interacting with database: %s"
4787
  msgstr ""
4788
 
4789
- #: includes/functions.php:948 includes/functions.php:987
4790
  #: includes/functions.php:629 includes/functions.php:651
4791
  #: includes/functions.php:667 includes/functions.php:668
4792
  #: includes/functions.php:678 includes/functions.php:681
@@ -4802,22 +5029,23 @@ msgstr ""
4802
  #: includes/functions.php:787 includes/functions.php:803
4803
  #: includes/functions.php:826 includes/functions.php:881
4804
  #: includes/functions.php:920 includes/functions.php:947
4805
- #: includes/functions.php:953 includes/functions.php:986
 
4806
  #: includes/functions.php:992
4807
  msgid "Membership level not found."
4808
  msgstr ""
4809
 
4810
- #: includes/functions.php:1357 includes/functions.php:1100
4811
  #: includes/functions.php:1101 includes/functions.php:1118
4812
  #: includes/functions.php:1142 includes/functions.php:1143
4813
  #: includes/functions.php:1150 includes/functions.php:1157
4814
  #: includes/functions.php:1173 includes/functions.php:1196
4815
  #: includes/functions.php:1290 includes/functions.php:1356
4816
- #: includes/functions.php:1362
4817
  msgid "No code was given to check."
4818
  msgstr ""
4819
 
4820
- #: includes/functions.php:1366 includes/functions.php:1050
4821
  #: includes/functions.php:1072 includes/functions.php:1088
4822
  #: includes/functions.php:1099 includes/functions.php:1102
4823
  #: includes/functions.php:1109 includes/functions.php:1110
@@ -4826,11 +5054,12 @@ msgstr ""
4826
  #: includes/functions.php:1152 includes/functions.php:1159
4827
  #: includes/functions.php:1166 includes/functions.php:1182
4828
  #: includes/functions.php:1205 includes/functions.php:1299
4829
- #: includes/functions.php:1365 includes/functions.php:1371
 
4830
  msgid "The discount code could not be found."
4831
  msgstr ""
4832
 
4833
- #: includes/functions.php:1381 includes/functions.php:1066
4834
  #: includes/functions.php:1088 includes/functions.php:1104
4835
  #: includes/functions.php:1115 includes/functions.php:1118
4836
  #: includes/functions.php:1124 includes/functions.php:1125
@@ -4839,12 +5068,13 @@ msgstr ""
4839
  #: includes/functions.php:1167 includes/functions.php:1174
4840
  #: includes/functions.php:1181 includes/functions.php:1197
4841
  #: includes/functions.php:1220 includes/functions.php:1314
4842
- #: includes/functions.php:1380 includes/functions.php:1386
 
4843
  #, php-format
4844
  msgid "This discount code goes into effect on %s."
4845
  msgstr ""
4846
 
4847
- #: includes/functions.php:1388 includes/functions.php:1075
4848
  #: includes/functions.php:1097 includes/functions.php:1113
4849
  #: includes/functions.php:1124 includes/functions.php:1127
4850
  #: includes/functions.php:1131 includes/functions.php:1132
@@ -4853,12 +5083,13 @@ msgstr ""
4853
  #: includes/functions.php:1174 includes/functions.php:1181
4854
  #: includes/functions.php:1188 includes/functions.php:1204
4855
  #: includes/functions.php:1227 includes/functions.php:1321
4856
- #: includes/functions.php:1387 includes/functions.php:1393
 
4857
  #, php-format
4858
  msgid "This discount code expired on %s."
4859
  msgstr ""
4860
 
4861
- #: includes/functions.php:1398 includes/functions.php:1087
4862
  #: includes/functions.php:1109 includes/functions.php:1125
4863
  #: includes/functions.php:1136 includes/functions.php:1139
4864
  #: includes/functions.php:1141 includes/functions.php:1142
@@ -4867,11 +5098,12 @@ msgstr ""
4867
  #: includes/functions.php:1184 includes/functions.php:1191
4868
  #: includes/functions.php:1198 includes/functions.php:1214
4869
  #: includes/functions.php:1237 includes/functions.php:1331
4870
- #: includes/functions.php:1397 includes/functions.php:1403
 
4871
  msgid "This discount code is no longer valid."
4872
  msgstr ""
4873
 
4874
- #: includes/functions.php:1411 includes/functions.php:1102
4875
  #: includes/functions.php:1124 includes/functions.php:1140
4876
  #: includes/functions.php:1151 includes/functions.php:1154
4877
  #: includes/functions.php:1155 includes/functions.php:1164
@@ -4880,11 +5112,11 @@ msgstr ""
4880
  #: includes/functions.php:1204 includes/functions.php:1211
4881
  #: includes/functions.php:1227 includes/functions.php:1250
4882
  #: includes/functions.php:1344 includes/functions.php:1410
4883
- #: includes/functions.php:1416
4884
  msgid "This discount code does not apply to this membership level."
4885
  msgstr ""
4886
 
4887
- #: includes/functions.php:1448 includes/functions.php:1110
4888
  #: includes/functions.php:1132 includes/functions.php:1148
4889
  #: includes/functions.php:1159 includes/functions.php:1162
4890
  #: includes/functions.php:1172 includes/functions.php:1180
@@ -4894,10 +5126,11 @@ msgstr ""
4894
  #: includes/functions.php:1237 includes/functions.php:1253
4895
  #: includes/functions.php:1276 includes/functions.php:1370
4896
  #: includes/functions.php:1436 includes/functions.php:1442
 
4897
  msgid "This discount code is okay."
4898
  msgstr ""
4899
 
4900
- #: includes/functions.php:1475 includes/functions.php:1134
4901
  #: includes/functions.php:1156 includes/functions.php:1172
4902
  #: includes/functions.php:1183 includes/functions.php:1186
4903
  #: includes/functions.php:1196 includes/functions.php:1205
@@ -4907,10 +5140,11 @@ msgstr ""
4907
  #: includes/functions.php:1278 includes/functions.php:1301
4908
  #: includes/functions.php:1395 includes/functions.php:1397
4909
  #: includes/functions.php:1463 includes/functions.php:1469
 
4910
  msgid "and"
4911
  msgstr ""
4912
 
4913
- #: includes/functions.php:1703 includes/functions.php:1319
4914
  #: includes/functions.php:1341 includes/functions.php:1361
4915
  #: includes/functions.php:1372 includes/functions.php:1375
4916
  #: includes/functions.php:1385 includes/functions.php:1394
@@ -4920,11 +5154,11 @@ msgstr ""
4920
  #: includes/functions.php:1473 includes/functions.php:1496
4921
  #: includes/functions.php:1501 includes/functions.php:1620
4922
  #: includes/functions.php:1624 includes/functions.php:1691
4923
- #: includes/functions.php:1697
4924
  msgid "Sign Up for !!name!! Now"
4925
  msgstr ""
4926
 
4927
- #: includes/functions.php:1709 includes/functions.php:1325
4928
  #: includes/functions.php:1347 includes/functions.php:1367
4929
  #: includes/functions.php:1378 includes/functions.php:1381
4930
  #: includes/functions.php:1391 includes/functions.php:1400
@@ -4934,7 +5168,7 @@ msgstr ""
4934
  #: includes/functions.php:1479 includes/functions.php:1502
4935
  #: includes/functions.php:1507 includes/functions.php:1626
4936
  #: includes/functions.php:1630 includes/functions.php:1697
4937
- #: includes/functions.php:1703
4938
  msgid "Please specify a level id."
4939
  msgstr ""
4940
 
@@ -5128,200 +5362,208 @@ msgid ""
5128
  msgstr ""
5129
 
5130
  #: pages/billing.php:28 pages/billing.php:14 pages/billing.php:23
5131
- #: pages/billing.php:26
5132
  #, php-format
5133
  msgid "Logged in as <strong>%s</strong>."
5134
  msgstr ""
5135
 
5136
  #: pages/billing.php:28 pages/billing.php:14 pages/billing.php:23
5137
- #: pages/billing.php:26
5138
  msgid "logout"
5139
  msgstr ""
5140
 
5141
- #: pages/billing.php:30 pages/cancel.php:52 pages/invoice.php:109
5142
- #: pages/levels.php:35 shortcodes/pmpro_account.php:43
5143
- #: shortcodes/pmpro_account.php:125 pages/account.php:12 pages/account.php:18
5144
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
5145
- #: pages/billing.php:28 pages/cancel.php:52 pages/invoice.php:109
5146
- #: pages/levels.php:13 pages/levels.php:35 shortcodes/pmpro_account.php:44
5147
- #: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:126
 
 
5148
  msgid "Level"
5149
  msgstr ""
5150
 
5151
  #: pages/billing.php:32 pages/account.php:14 pages/billing.php:18
5152
- #: pages/billing.php:27 pages/billing.php:30
5153
  msgid "Membership Fee"
5154
  msgstr ""
5155
 
5156
  #: pages/billing.php:36 pages/account.php:18 pages/billing.php:22
5157
- #: pages/billing.php:31 pages/billing.php:34 pages/levels.php:70
 
5158
  #, php-format
5159
  msgid "%s every %d %s."
5160
  msgstr ""
5161
 
5162
  #: pages/billing.php:38 pages/account.php:20 pages/billing.php:24
5163
- #: pages/billing.php:33 pages/billing.php:36 pages/levels.php:66
 
5164
  #, php-format
5165
  msgid "%s per %s."
5166
  msgstr ""
5167
 
5168
  #: pages/billing.php:47 pages/account.php:25 pages/account.php:29
5169
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
5170
- #: pages/billing.php:45
5171
  msgid "Duration"
5172
  msgstr ""
5173
 
5174
  #: pages/billing.php:57 pages/billing.php:39 pages/billing.php:43
5175
- #: pages/billing.php:52 pages/billing.php:55
5176
  msgid ""
5177
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
5178
  "paypal.com\">login to PayPal here</a> to update your billing information."
5179
  msgstr ""
5180
 
5181
- #: pages/billing.php:83 pages/checkout.php:326 pages/billing.php:65
5182
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
5183
- #: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
5184
- #: pages/checkout.php:318 pages/checkout.php:321 pages/checkout.php:324
5185
- #: pages/checkout.php:326 pages/checkout.php:328
5186
  msgid "First Name"
5187
  msgstr ""
5188
 
5189
- #: pages/billing.php:87 pages/checkout.php:330 pages/billing.php:69
5190
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
5191
- #: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
5192
- #: pages/checkout.php:322 pages/checkout.php:325 pages/checkout.php:328
5193
- #: pages/checkout.php:330 pages/checkout.php:332
5194
  msgid "Last Name"
5195
  msgstr ""
5196
 
5197
- #: pages/billing.php:91 pages/checkout.php:334 pages/billing.php:73
5198
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
5199
- #: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
5200
- #: pages/checkout.php:326 pages/checkout.php:329 pages/checkout.php:332
5201
- #: pages/checkout.php:334 pages/checkout.php:336
5202
  msgid "Address 1"
5203
  msgstr ""
5204
 
5205
- #: pages/billing.php:95 pages/checkout.php:338 pages/billing.php:77
5206
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
5207
- #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
5208
- #: pages/checkout.php:330 pages/checkout.php:333 pages/checkout.php:336
5209
- #: pages/checkout.php:338 pages/checkout.php:340
5210
  msgid "Address 2"
5211
  msgstr ""
5212
 
5213
- #: pages/billing.php:105 pages/checkout.php:348 pages/billing.php:87
5214
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
5215
- #: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:331
5216
- #: pages/checkout.php:340 pages/checkout.php:343 pages/checkout.php:346
5217
- #: pages/checkout.php:348 pages/checkout.php:350
5218
  msgid "City"
5219
  msgstr ""
5220
 
5221
- #: pages/billing.php:109 pages/checkout.php:352 pages/billing.php:91
5222
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
5223
- #: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:335
5224
- #: pages/checkout.php:344 pages/checkout.php:347 pages/checkout.php:350
5225
- #: pages/checkout.php:352 pages/checkout.php:354
5226
  msgid "State"
5227
  msgstr ""
5228
 
5229
- #: pages/billing.php:113 pages/checkout.php:356 pages/billing.php:95
5230
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
5231
- #: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:339
5232
- #: pages/checkout.php:348 pages/checkout.php:351 pages/checkout.php:354
5233
- #: pages/checkout.php:356 pages/checkout.php:358
5234
  msgid "Postal Code"
5235
  msgstr ""
5236
 
5237
- #: pages/billing.php:122 pages/checkout.php:365 pages/billing.php:104
5238
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
5239
- #: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:348
5240
- #: pages/checkout.php:357 pages/checkout.php:360 pages/checkout.php:363
5241
- #: pages/checkout.php:365 pages/checkout.php:367
5242
  msgid "City, State Zip"
5243
  msgstr ""
5244
 
5245
- #: pages/billing.php:175 pages/checkout.php:418 pages/billing.php:157
5246
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
5247
- #: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:401
5248
- #: pages/checkout.php:410 pages/checkout.php:413 pages/checkout.php:416
5249
- #: pages/checkout.php:418 pages/checkout.php:420
5250
  msgid "Country"
5251
  msgstr ""
5252
 
5253
- #: pages/billing.php:200 pages/checkout.php:443 pages/billing.php:182
5254
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
5255
- #: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:426
5256
- #: pages/checkout.php:435 pages/checkout.php:438 pages/checkout.php:441
5257
- #: pages/checkout.php:443 pages/checkout.php:445
5258
  msgid "Phone"
5259
  msgstr ""
5260
 
5261
- #: pages/billing.php:211 pages/checkout.php:220 pages/checkout.php:457
5262
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
5263
- #: pages/billing.php:209 pages/checkout.php:204 pages/checkout.php:207
5264
- #: pages/checkout.php:209 pages/checkout.php:216 pages/checkout.php:218
5265
- #: pages/checkout.php:220 pages/checkout.php:436 pages/checkout.php:438
5266
- #: pages/checkout.php:440 pages/checkout.php:449 pages/checkout.php:453
5267
- #: pages/checkout.php:455 pages/checkout.php:457 pages/checkout.php:460
 
5268
  msgid "E-mail Address"
5269
  msgstr ""
5270
 
5271
- #: pages/billing.php:215 pages/checkout.php:466 pages/billing.php:197
5272
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
5273
- #: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:449
5274
- #: pages/checkout.php:458 pages/checkout.php:462 pages/checkout.php:464
5275
- #: pages/checkout.php:466 pages/checkout.php:469
5276
  msgid "Confirm E-mail"
5277
  msgstr ""
5278
 
5279
- #: pages/billing.php:238 pages/billing.php:217 pages/billing.php:221
5280
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
 
5281
  msgid "Credit Card Information"
5282
  msgstr ""
5283
 
5284
- #: pages/billing.php:239 pages/billing.php:217 pages/billing.php:221
5285
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
 
5286
  #, php-format
5287
  msgid "We accept %s"
5288
  msgstr ""
5289
 
5290
- #: pages/billing.php:408 pages/billing.php:309 pages/billing.php:313
5291
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
5292
- #: pages/billing.php:360 pages/billing.php:364
5293
  msgid ""
5294
  "This subscription is not recurring. So you don't need to update your billing "
5295
  "information."
5296
  msgstr ""
5297
 
5298
- #: pages/cancel.php:26 pages/cancel.php:14 pages/cancel.php:26
5299
  msgid "Are you sure you want to cancel your membership?"
5300
  msgstr ""
5301
 
5302
- #: pages/cancel.php:32 pages/cancel.php:32
5303
  #, php-format
5304
  msgid "Are you sure you want to cancel your %s membership?"
5305
  msgstr ""
5306
 
5307
- #: pages/cancel.php:37 pages/cancel.php:17 pages/cancel.php:37
5308
- msgid "Yes, cancel my account"
5309
  msgstr ""
5310
 
5311
- #: pages/cancel.php:38 pages/cancel.php:19 pages/cancel.php:38
5312
- msgid "No, keep my account"
5313
  msgstr ""
5314
 
5315
- #: pages/cancel.php:48 shortcodes/pmpro_account.php:39 pages/account.php:14
5316
- #: pages/cancel.php:48 shortcodes/pmpro_account.php:40
 
5317
  msgid "My Memberships"
5318
  msgstr ""
5319
 
5320
- #: pages/cancel.php:77 pages/cancel.php:77
5321
  msgid "Cancel All Memberships"
5322
  msgstr ""
5323
 
5324
- #: pages/cancel.php:86 pages/cancel.php:22 pages/cancel.php:86
5325
  msgid "Click here to go to the home page."
5326
  msgstr ""
5327
 
@@ -5343,7 +5585,7 @@ msgstr ""
5343
  msgid "You have selected the <strong>%s</strong> membership level."
5344
  msgstr ""
5345
 
5346
- #: pages/checkout.php:61 pages/checkout.php:51 pages/checkout.php:53
5347
  #: pages/checkout.php:60 pages/checkout.php:61
5348
  #, php-format
5349
  msgid ""
@@ -5351,7 +5593,7 @@ msgid ""
5351
  "been applied to your order.</p>"
5352
  msgstr ""
5353
 
5354
- #: pages/checkout.php:72 services/applydiscountcode.php:89
5355
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
5356
  #: pages/checkout.php:71 pages/checkout.php:72
5357
  #: services/applydiscountcode.php:74 services/applydiscountcode.php:75
@@ -5359,59 +5601,59 @@ msgstr ""
5359
  msgid "Click here to change your discount code"
5360
  msgstr ""
5361
 
5362
- #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
5363
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
5364
  msgid "Click here to enter your discount code"
5365
  msgstr ""
5366
 
5367
- #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
5368
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
5369
  msgid "Do you have a discount code?"
5370
  msgstr ""
5371
 
5372
- #: pages/checkout.php:175 pages/checkout.php:160 pages/checkout.php:163
5373
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
5374
  #: pages/checkout.php:175
5375
  msgid "Account Information"
5376
  msgstr ""
5377
 
5378
- #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
5379
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
5380
  #: pages/checkout.php:176
5381
  msgid "Already have an account?"
5382
  msgstr ""
5383
 
5384
- #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
5385
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
5386
  #: pages/checkout.php:176
5387
  msgid "Log in here"
5388
  msgstr ""
5389
 
5390
- #: pages/checkout.php:202 pages/checkout.php:186 pages/checkout.php:189
5391
  #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
5392
  #: pages/checkout.php:202
5393
  msgid "Confirm Password"
5394
  msgstr ""
5395
 
5396
- #: pages/checkout.php:229 pages/checkout.php:213 pages/checkout.php:216
5397
  #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
5398
  #: pages/checkout.php:229
5399
  msgid "Confirm E-mail Address"
5400
  msgstr ""
5401
 
5402
- #: pages/checkout.php:248 pages/checkout.php:232 pages/checkout.php:235
5403
  #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
5404
  #: pages/checkout.php:248
5405
  msgid "Full Name"
5406
  msgstr ""
5407
 
5408
- #: pages/checkout.php:249 pages/checkout.php:233 pages/checkout.php:236
5409
  #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
5410
  #: pages/checkout.php:249
5411
  msgid "LEAVE THIS BLANK"
5412
  msgstr ""
5413
 
5414
- #: pages/checkout.php:273 pages/checkout.php:257 pages/checkout.php:260
5415
  #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
5416
  #: pages/checkout.php:273
5417
  #, php-format
@@ -5420,37 +5662,37 @@ msgid ""
5420
  "different account for this membership, <a href=\"%s\">log out now</a>."
5421
  msgstr ""
5422
 
5423
- #: pages/checkout.php:289 pages/checkout.php:276 pages/checkout.php:278
5424
  #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:289
5425
  #: pages/checkout.php:292 pages/checkout.php:299
5426
  msgid "Choose your Payment Method"
5427
  msgstr ""
5428
 
5429
- #: pages/checkout.php:298 pages/checkout.php:284 pages/checkout.php:286
5430
  #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:298
5431
  #: pages/checkout.php:300 pages/checkout.php:307
5432
  msgid "Check Out with a Credit Card Here"
5433
  msgstr ""
5434
 
5435
- #: pages/checkout.php:686 pages/checkout.php:277 pages/checkout.php:284
5436
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
5437
- #: pages/checkout.php:681 pages/checkout.php:690 pages/checkout.php:692
5438
- #: pages/checkout.php:696 pages/checkout.php:697
5439
  #, php-format
5440
  msgid "I agree to the %s"
5441
  msgstr ""
5442
 
5443
- #: pages/checkout.php:706 pages/checkout.php:667 pages/checkout.php:674
5444
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
5445
- #: pages/checkout.php:701 pages/checkout.php:710 pages/checkout.php:712
5446
- #: pages/checkout.php:716 pages/checkout.php:717
5447
  msgid "Complete Payment"
5448
  msgstr ""
5449
 
5450
- #: pages/checkout.php:728 pages/checkout.php:687 pages/checkout.php:694
5451
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
5452
- #: pages/checkout.php:723 pages/checkout.php:732 pages/checkout.php:734
5453
- #: pages/checkout.php:738 pages/checkout.php:739
5454
  msgid "Processing..."
5455
  msgstr ""
5456
 
@@ -5472,66 +5714,66 @@ msgid ""
5472
  "membership invoice has been sent to %s."
5473
  msgstr ""
5474
 
5475
- #: pages/confirmation.php:41 pages/invoice.php:22 pages/confirmation.php:41
5476
  #: pages/invoice.php:22
5477
  #, php-format
5478
  msgid "Invoice #%s on %s"
5479
  msgstr ""
5480
 
5481
- #: pages/confirmation.php:43 pages/invoice.php:24 pages/confirmation.php:43
5482
  #: pages/invoice.php:24
5483
  msgid "Print"
5484
  msgstr ""
5485
 
5486
- #: pages/confirmation.php:46 pages/confirmation.php:104 pages/invoice.php:27
5487
  #: pages/confirmation.php:45 pages/confirmation.php:46
5488
  #: pages/confirmation.php:102 pages/confirmation.php:104 pages/invoice.php:26
5489
  #: pages/invoice.php:27
5490
  msgid "Account"
5491
  msgstr ""
5492
 
5493
- #: pages/confirmation.php:49 pages/invoice.php:30 pages/account.php:29
5494
  #: pages/account.php:33 pages/confirmation.php:48 pages/confirmation.php:49
5495
  #: pages/invoice.php:29 pages/invoice.php:30
5496
  msgid "Membership Expires"
5497
  msgstr ""
5498
 
5499
- #: pages/confirmation.php:63 pages/invoice.php:50 pages/account.php:105
5500
  #: pages/account.php:109 pages/confirmation.php:61 pages/confirmation.php:63
5501
  #: pages/invoice.php:48 pages/invoice.php:50
5502
  msgid "Payment Method"
5503
  msgstr ""
5504
 
5505
- #: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
5506
  #: pages/confirmation.php:63 pages/confirmation.php:65 pages/invoice.php:50
5507
  #: pages/invoice.php:52 pages/invoice.php:107 pages/invoice.php:109
5508
  #: pages/invoice.php:110
5509
  msgid "Total Billed"
5510
  msgstr ""
5511
 
5512
- #: pages/confirmation.php:82 pages/invoice.php:69 pages/confirmation.php:80
5513
  #: pages/confirmation.php:82 pages/invoice.php:67 pages/invoice.php:69
5514
  msgid "ending in"
5515
  msgstr ""
5516
 
5517
- #: pages/confirmation.php:97 pages/confirmation.php:97
5518
  #, php-format
5519
  msgid ""
5520
  "Below are details about your membership account. A welcome email has been "
5521
  "sent to %s."
5522
  msgstr ""
5523
 
5524
- #: pages/confirmation.php:105 pages/confirmation.php:103
5525
  #: pages/confirmation.php:105
5526
  msgid "Pending"
5527
  msgstr ""
5528
 
5529
- #: pages/confirmation.php:113 pages/invoice.php:141 pages/confirmation.php:111
5530
  #: pages/confirmation.php:113 pages/invoice.php:139 pages/invoice.php:141
5531
  msgid "View Your Membership Account &rarr;"
5532
  msgstr ""
5533
 
5534
- #: pages/confirmation.php:115 pages/confirmation.php:113
5535
  #: pages/confirmation.php:115
5536
  msgid ""
5537
  "If your account is not activated within a few minutes, please contact the "
@@ -5567,7 +5809,8 @@ msgstr ""
5567
 
5568
  #: pages/levels.php:78 shortcodes/pmpro_account.php:60 pages/account.php:33
5569
  #: pages/levels.php:57 pages/levels.php:78 pages/levels.php:123
5570
- #: shortcodes/pmpro_account.php:59 shortcodes/pmpro_account.php:61
 
5571
  msgid "Renew"
5572
  msgstr ""
5573
 
@@ -5586,7 +5829,7 @@ msgstr ""
5586
  msgid "&larr; Return to Home"
5587
  msgstr ""
5588
 
5589
- #: paid-memberships-pro.php:126 adminpages/orders.php:398
5590
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
5591
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
5592
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
@@ -5594,21 +5837,21 @@ msgstr ""
5594
  msgid "Testing Only"
5595
  msgstr ""
5596
 
5597
- #: paid-memberships-pro.php:131 paid-memberships-pro.php:120
5598
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
5599
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
5600
  #: paid-memberships-pro.php:131
5601
  msgid "PayPal Payflow Pro/PayPal Pro"
5602
  msgstr ""
5603
 
5604
- #: paid-memberships-pro.php:136 paid-memberships-pro.php:125
5605
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
5606
  #: paid-memberships-pro.php:134 paid-memberships-pro.php:135
5607
  #: paid-memberships-pro.php:136
5608
  msgid "Cybersource"
5609
  msgstr ""
5610
 
5611
- #: paid-memberships-pro.php:157 paid-memberships-pro.php:156
5612
  #: paid-memberships-pro.php:157
5613
  msgid "Once a month"
5614
  msgstr ""
@@ -5627,7 +5870,7 @@ msgid ""
5627
  "moments."
5628
  msgstr ""
5629
 
5630
- #: preheaders/billing.php:270 preheaders/checkout.php:364
5631
  #: preheaders/billing.php:258 preheaders/billing.php:265
5632
  #: preheaders/billing.php:266 preheaders/billing.php:270
5633
  #: preheaders/billing.php:279 preheaders/checkout.php:332
@@ -5638,7 +5881,7 @@ msgstr ""
5638
  msgid "Please complete all required fields."
5639
  msgstr ""
5640
 
5641
- #: preheaders/billing.php:273 preheaders/checkout.php:372
5642
  #: preheaders/billing.php:263 preheaders/billing.php:268
5643
  #: preheaders/billing.php:269 preheaders/billing.php:273
5644
  #: preheaders/billing.php:284 preheaders/checkout.php:340
@@ -5649,7 +5892,7 @@ msgstr ""
5649
  msgid "Your email addresses do not match. Please try again."
5650
  msgstr ""
5651
 
5652
- #: preheaders/billing.php:276 preheaders/checkout.php:377
5653
  #: preheaders/billing.php:268 preheaders/billing.php:271
5654
  #: preheaders/billing.php:272 preheaders/billing.php:276
5655
  #: preheaders/billing.php:289 preheaders/checkout.php:345
@@ -5660,32 +5903,32 @@ msgstr ""
5660
  msgid "The email address entered is in an invalid format. Please try again."
5661
  msgstr ""
5662
 
5663
- #: preheaders/billing.php:280 preheaders/billing.php:274
5664
  #: preheaders/billing.php:275 preheaders/billing.php:276
5665
  #: preheaders/billing.php:280 preheaders/billing.php:295
5666
  msgid "All good!"
5667
  msgstr ""
5668
 
5669
- #: preheaders/billing.php:350 preheaders/billing.php:340
5670
  #: preheaders/billing.php:345 preheaders/billing.php:346
5671
  #: preheaders/billing.php:350 preheaders/billing.php:370
5672
  #, php-format
5673
  msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
5674
  msgstr ""
5675
 
5676
- #: preheaders/billing.php:356 preheaders/billing.php:347
5677
  #: preheaders/billing.php:351 preheaders/billing.php:352
5678
  #: preheaders/billing.php:356 preheaders/billing.php:378
5679
  #: preheaders/billing.php:380
5680
  msgid "Error updating billing information."
5681
  msgstr ""
5682
 
5683
- #: preheaders/cancel.php:28 preheaders/cancel.php:24 preheaders/cancel.php:25
5684
  #: preheaders/cancel.php:28
5685
  msgid "Your membership has been cancelled."
5686
  msgstr ""
5687
 
5688
- #: preheaders/checkout.php:34 preheaders/checkout.php:386
5689
  #: preheaders/checkout.php:28 preheaders/checkout.php:30
5690
  #: preheaders/checkout.php:31 preheaders/checkout.php:32
5691
  #: preheaders/checkout.php:34 preheaders/checkout.php:354
@@ -5696,24 +5939,24 @@ msgstr ""
5696
  msgid "Invalid gateway."
5697
  msgstr ""
5698
 
5699
- #: preheaders/checkout.php:96 preheaders/checkout.php:88
5700
  #: preheaders/checkout.php:89 preheaders/checkout.php:91
5701
  #: preheaders/checkout.php:95 preheaders/checkout.php:96
5702
  msgid "Checkout: Payment Information"
5703
  msgstr ""
5704
 
5705
- #: preheaders/checkout.php:101 preheaders/checkout.php:100
5706
  #: preheaders/checkout.php:101
5707
  msgid "Set Up Your Account"
5708
  msgstr ""
5709
 
5710
- #: preheaders/checkout.php:331 preheaders/checkout.php:300
5711
  #: preheaders/checkout.php:304 preheaders/checkout.php:331
5712
  #: preheaders/checkout.php:416 preheaders/checkout.php:421
5713
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
5714
  msgstr ""
5715
 
5716
- #: preheaders/checkout.php:367 preheaders/checkout.php:335
5717
  #: preheaders/checkout.php:339 preheaders/checkout.php:367
5718
  #: preheaders/checkout.php:461 preheaders/checkout.php:468
5719
  #: preheaders/checkout.php:473 preheaders/checkout.php:485
@@ -5721,7 +5964,7 @@ msgstr ""
5721
  msgid "Your passwords do not match. Please try again."
5722
  msgstr ""
5723
 
5724
- #: preheaders/checkout.php:382 preheaders/checkout.php:350
5725
  #: preheaders/checkout.php:354 preheaders/checkout.php:382
5726
  #: preheaders/checkout.php:476 preheaders/checkout.php:483
5727
  #: preheaders/checkout.php:486 preheaders/checkout.php:488
@@ -5730,7 +5973,7 @@ msgstr ""
5730
  msgid "Please check the box to agree to the %s."
5731
  msgstr ""
5732
 
5733
- #: preheaders/checkout.php:389 preheaders/checkout.php:357
5734
  #: preheaders/checkout.php:361 preheaders/checkout.php:389
5735
  #: preheaders/checkout.php:483 preheaders/checkout.php:490
5736
  #: preheaders/checkout.php:495 preheaders/checkout.php:512
@@ -5738,7 +5981,7 @@ msgstr ""
5738
  msgid "Are you a spammer?"
5739
  msgstr ""
5740
 
5741
- #: preheaders/checkout.php:410 preheaders/checkout.php:377
5742
  #: preheaders/checkout.php:381 preheaders/checkout.php:410
5743
  #: preheaders/checkout.php:503 preheaders/checkout.php:510
5744
  #: preheaders/checkout.php:515 preheaders/checkout.php:518
@@ -5746,7 +5989,7 @@ msgstr ""
5746
  msgid "That username is already taken. Please try another."
5747
  msgstr ""
5748
 
5749
- #: preheaders/checkout.php:415 preheaders/checkout.php:382
5750
  #: preheaders/checkout.php:386 preheaders/checkout.php:415
5751
  #: preheaders/checkout.php:508 preheaders/checkout.php:515
5752
  #: preheaders/checkout.php:520 preheaders/checkout.php:524
@@ -5754,7 +5997,7 @@ msgstr ""
5754
  msgid "That email address is already taken. Please try another."
5755
  msgstr ""
5756
 
5757
- #: preheaders/checkout.php:446 preheaders/checkout.php:397
5758
  #: preheaders/checkout.php:399 preheaders/checkout.php:416
5759
  #: preheaders/checkout.php:420 preheaders/checkout.php:446
5760
  #: preheaders/checkout.php:525 preheaders/checkout.php:532
@@ -5764,7 +6007,7 @@ msgstr ""
5764
  msgid "reCAPTCHA failed. (%s) Please try again."
5765
  msgstr ""
5766
 
5767
- #: preheaders/checkout.php:533 preheaders/checkout.php:482
5768
  #: preheaders/checkout.php:484 preheaders/checkout.php:501
5769
  #: preheaders/checkout.php:505 preheaders/checkout.php:533
5770
  #: preheaders/checkout.php:647 preheaders/checkout.php:654
@@ -5773,7 +6016,7 @@ msgstr ""
5773
  msgid "Payment accepted."
5774
  msgstr ""
5775
 
5776
- #: preheaders/checkout.php:539 preheaders/checkout.php:490
5777
  #: preheaders/checkout.php:492 preheaders/checkout.php:509
5778
  #: preheaders/checkout.php:513 preheaders/checkout.php:539
5779
  #: preheaders/checkout.php:653 preheaders/checkout.php:660
@@ -5784,7 +6027,7 @@ msgid ""
5784
  "membership."
5785
  msgstr ""
5786
 
5787
- #: preheaders/checkout.php:614 preheaders/checkout.php:550
5788
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
5789
  #: preheaders/checkout.php:571 preheaders/checkout.php:575
5790
  #: preheaders/checkout.php:581 preheaders/checkout.php:614
@@ -5797,7 +6040,7 @@ msgid ""
5797
  "Please contact us."
5798
  msgstr ""
5799
 
5800
- #: preheaders/checkout.php:826 preheaders/checkout.php:691
5801
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
5802
  #: preheaders/checkout.php:712 preheaders/checkout.php:722
5803
  #: preheaders/checkout.php:730 preheaders/checkout.php:754
@@ -5811,7 +6054,7 @@ msgid ""
5811
  "submit this form again. Please contact the site owner to fix this issue."
5812
  msgstr ""
5813
 
5814
- #: preheaders/checkout.php:829 preheaders/checkout.php:694
5815
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
5816
  #: preheaders/checkout.php:715 preheaders/checkout.php:725
5817
  #: preheaders/checkout.php:733 preheaders/checkout.php:757
@@ -5825,7 +6068,7 @@ msgid ""
5825
  "this form again. Please contact the site owner to fix this issue."
5826
  msgstr ""
5827
 
5828
- #: preheaders/checkout.php:840 preheaders/checkout.php:705
5829
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
5830
  #: preheaders/checkout.php:726 preheaders/checkout.php:736
5831
  #: preheaders/checkout.php:744 preheaders/checkout.php:768
@@ -5839,7 +6082,7 @@ msgid ""
5839
  "will be processed."
5840
  msgstr ""
5841
 
5842
- #: preheaders/checkout.php:842 preheaders/checkout.php:707
5843
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
5844
  #: preheaders/checkout.php:728 preheaders/checkout.php:738
5845
  #: preheaders/checkout.php:746 preheaders/checkout.php:770
@@ -5856,33 +6099,33 @@ msgstr ""
5856
  msgid "Membership expired email sent to %s. "
5857
  msgstr ""
5858
 
5859
- #: scheduled/crons.php:99 scheduled/crons.php:27 scheduled/crons.php:74
5860
  #: scheduled/crons.php:80 scheduled/crons.php:84 scheduled/crons.php:88
5861
  #: scheduled/crons.php:99
5862
  #, php-format
5863
  msgid "Membership expiring email sent to %s. "
5864
  msgstr ""
5865
 
5866
- #: scheduled/crons.php:175 scheduled/crons.php:143 scheduled/crons.php:152
5867
  #: scheduled/crons.php:157 scheduled/crons.php:164 scheduled/crons.php:175
5868
  #, php-format
5869
  msgid "Credit card expiring email sent to %s. "
5870
  msgstr ""
5871
 
5872
- #: scheduled/crons.php:231 scheduled/crons.php:104 scheduled/crons.php:196
5873
  #: scheduled/crons.php:208 scheduled/crons.php:210 scheduled/crons.php:220
5874
  #: scheduled/crons.php:231
5875
  #, php-format
5876
  msgid "Trial ending email sent to %s. "
5877
  msgstr ""
5878
 
5879
- #: services/applydiscountcode.php:67 services/applydiscountcode.php:64
5880
  #: services/applydiscountcode.php:67
5881
  #, php-format
5882
  msgid "The %s code has been applied to your order. "
5883
  msgstr ""
5884
 
5885
- #: services/applydiscountcode.php:97 services/applydiscountcode.php:82
5886
  #: services/applydiscountcode.php:83 services/applydiscountcode.php:86
5887
  #: services/applydiscountcode.php:97
5888
  #, php-format
@@ -5909,64 +6152,70 @@ msgid ""
5909
  "this user's membership is cancelled on your site if it should be."
5910
  msgstr ""
5911
 
5912
- #: shortcodes/pmpro_account.php:44 pages/account.php:19
5913
- #: shortcodes/pmpro_account.php:45
5914
  msgid "Billing"
5915
  msgstr ""
5916
 
5917
  #: shortcodes/pmpro_account.php:64 pages/account.php:36
5918
- #: shortcodes/pmpro_account.php:62 shortcodes/pmpro_account.php:65
 
5919
  msgid "Update Billing Info"
5920
  msgstr ""
5921
 
5922
  #: shortcodes/pmpro_account.php:70 pages/account.php:42
5923
- #: shortcodes/pmpro_account.php:68 shortcodes/pmpro_account.php:71
 
5924
  msgid "Change"
5925
  msgstr ""
5926
 
5927
- #: shortcodes/pmpro_account.php:92 pages/account.php:64
5928
- #: shortcodes/pmpro_account.php:90 shortcodes/pmpro_account.php:93
 
5929
  msgid "View all Membership Options"
5930
  msgstr ""
5931
 
5932
- #: shortcodes/pmpro_account.php:101 pages/account.php:46 pages/account.php:50
5933
  #: pages/account.php:71 shortcodes/pmpro_account.php:99
5934
- #: shortcodes/pmpro_account.php:102
5935
  msgid "My Account"
5936
  msgstr ""
5937
 
5938
- #: shortcodes/pmpro_account.php:112 pages/account.php:55 pages/account.php:59
5939
  #: pages/account.php:80 shortcodes/pmpro_account.php:110
5940
- #: shortcodes/pmpro_account.php:113
5941
  msgid "Edit Profile"
5942
  msgstr ""
5943
 
5944
- #: shortcodes/pmpro_account.php:113 pages/account.php:56 pages/account.php:60
5945
  #: pages/account.php:81 shortcodes/pmpro_account.php:111
5946
- #: shortcodes/pmpro_account.php:114
5947
  msgid "Change Password"
5948
  msgstr ""
5949
 
5950
- #: shortcodes/pmpro_account.php:120 pages/account.php:87 pages/account.php:125
5951
  #: pages/account.php:129 shortcodes/pmpro_account.php:118
5952
- #: shortcodes/pmpro_account.php:121
5953
  msgid "Past Invoices"
5954
  msgstr ""
5955
 
5956
- #: shortcodes/pmpro_account.php:126 pages/account.php:93
5957
- #: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:127
 
5958
  msgid "Amount"
5959
  msgstr ""
5960
 
5961
- #: shortcodes/pmpro_account.php:154 pages/account.php:121
5962
  #: pages/account.php:140 pages/account.php:144
5963
- #: shortcodes/pmpro_account.php:152 shortcodes/pmpro_account.php:155
 
5964
  msgid "View All Invoices"
5965
  msgstr ""
5966
 
5967
- #: shortcodes/pmpro_account.php:161 pages/account.php:128
5968
  #: pages/account.php:146 pages/account.php:150
5969
- #: shortcodes/pmpro_account.php:159 shortcodes/pmpro_account.php:162
 
5970
  msgid "Member Links"
5971
  msgstr ""
5972
 
@@ -6209,6 +6458,14 @@ msgstr ""
6209
  msgid "Cancel Membership"
6210
  msgstr ""
6211
 
 
 
 
 
 
 
 
 
6212
  #: pages/checkout.php:51 pages/checkout.php:52
6213
  #, php-format
6214
  msgid "<p>The <strong>%s</strong> code has been applied to your order.</p>"
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: pmpro\n"
8
+ "POT-Creation-Date: 2016-09-13 10:10-0400\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
34
 
35
  #: adminpages/addons.php:67 adminpages/admin_header.php:170
36
  #: includes/adminpages.php:53 includes/adminpages.php:151
37
+ #: adminpages/addons.php:64 adminpages/addons.php:67 adminpages/addons.php:80
38
  #: adminpages/admin_header.php:133 adminpages/admin_header.php:154
39
  #: adminpages/admin_header.php:170 includes/adminpages.php:14
40
  #: includes/adminpages.php:52 includes/adminpages.php:53
44
  msgid "Add Ons"
45
  msgstr ""
46
 
47
+ #: adminpages/addons.php:74 adminpages/addons.php:71 adminpages/addons.php:74
48
+ #: adminpages/addons.php:87
49
  #, php-format
50
  msgid "Last checked on %s at %s."
51
  msgstr ""
52
 
53
+ #: adminpages/addons.php:75 adminpages/addons.php:72 adminpages/addons.php:75
54
+ #: adminpages/addons.php:88
55
  msgid "Check Again"
56
  msgstr ""
57
 
58
  #: adminpages/addons.php:79 adminpages/orders.php:881 adminpages/addons.php:76
59
+ #: adminpages/addons.php:79 adminpages/addons.php:92 adminpages/orders.php:605
60
  #: adminpages/orders.php:712 adminpages/orders.php:741
61
+ #: adminpages/orders.php:850 adminpages/orders.php:881
62
  msgid "All"
63
  msgstr ""
64
 
65
+ #: adminpages/addons.php:80 adminpages/addons.php:77 adminpages/addons.php:80
66
+ #: adminpages/addons.php:93
67
  msgid "Active"
68
  msgstr ""
69
 
70
+ #: adminpages/addons.php:81 adminpages/addons.php:78 adminpages/addons.php:81
71
+ #: adminpages/addons.php:94
72
  msgid "Inactive"
73
  msgstr ""
74
 
75
+ #: adminpages/addons.php:82 adminpages/addons.php:79 adminpages/addons.php:82
76
+ #: adminpages/addons.php:95
77
  msgid "Update Available"
78
  msgstr ""
79
 
80
+ #: adminpages/addons.php:83 adminpages/addons.php:80 adminpages/addons.php:83
81
+ #: adminpages/addons.php:96
82
  msgid "Not Installed"
83
  msgstr ""
84
 
85
+ #: adminpages/addons.php:96 adminpages/addons.php:93 adminpages/addons.php:96
86
+ #: adminpages/addons.php:109
87
  msgid "Add On Name"
88
  msgstr ""
89
 
90
+ #: adminpages/addons.php:97 adminpages/addons.php:94 adminpages/addons.php:97
91
+ #: adminpages/addons.php:110
92
  msgid "Type"
93
  msgstr ""
94
 
95
  #: adminpages/addons.php:98 adminpages/membershiplevels.php:300
96
+ #: adminpages/addons.php:95 adminpages/addons.php:98 adminpages/addons.php:111
97
  #: adminpages/membershiplevels.php:296 adminpages/membershiplevels.php:298
98
  #: adminpages/membershiplevels.php:300
99
  msgid "Description"
100
  msgstr ""
101
 
102
  #: adminpages/addons.php:121 adminpages/addons.php:118
103
+ #: adminpages/addons.php:121 adminpages/addons.php:134
104
  msgid "No Add Ons found."
105
  msgstr ""
106
 
107
  #: adminpages/addons.php:182 adminpages/addons.php:187
108
  #: adminpages/addons.php:199 adminpages/addons.php:179
109
+ #: adminpages/addons.php:182 adminpages/addons.php:184
110
+ #: adminpages/addons.php:187 adminpages/addons.php:195
111
+ #: adminpages/addons.php:196 adminpages/addons.php:199
112
+ #: adminpages/addons.php:200 adminpages/addons.php:212
113
  msgid "Install Now"
114
  msgstr ""
115
 
116
  #: adminpages/addons.php:188 adminpages/addons.php:194
117
  #: adminpages/addons.php:200 adminpages/addons.php:206
118
+ #: adminpages/addons.php:185 adminpages/addons.php:188
119
+ #: adminpages/addons.php:191 adminpages/addons.php:194
120
+ #: adminpages/addons.php:197 adminpages/addons.php:200
121
+ #: adminpages/addons.php:201 adminpages/addons.php:203
122
+ #: adminpages/addons.php:206 adminpages/addons.php:207
123
  #: adminpages/addons.php:213 adminpages/addons.php:219
124
  msgid "Download"
125
  msgstr ""
126
 
127
  #: adminpages/addons.php:193 adminpages/addons.php:205
128
+ #: adminpages/addons.php:190 adminpages/addons.php:193
129
+ #: adminpages/addons.php:202 adminpages/addons.php:205
130
  #: adminpages/addons.php:206 adminpages/addons.php:218
131
  msgid "Update License"
132
  msgstr ""
133
 
134
  #: adminpages/addons.php:211 adminpages/addons.php:208
135
+ #: adminpages/addons.php:211 adminpages/addons.php:224
136
  msgid "Deactivate"
137
  msgstr ""
138
 
139
  #: adminpages/addons.php:211 adminpages/addons.php:208
140
+ #: adminpages/addons.php:211 adminpages/addons.php:224
141
  #, php-format
142
  msgid "Deactivate %s"
143
  msgstr ""
144
 
145
  #: adminpages/addons.php:215 adminpages/addons.php:212
146
+ #: adminpages/addons.php:215 adminpages/addons.php:228
147
  msgid "Activate"
148
  msgstr ""
149
 
150
  #: adminpages/addons.php:215 adminpages/addons.php:212
151
+ #: adminpages/addons.php:215 adminpages/addons.php:228
152
  #, php-format
153
  msgid "Activate %s"
154
  msgstr ""
155
 
156
  #: adminpages/addons.php:216 adminpages/addons.php:213
157
+ #: adminpages/addons.php:216 adminpages/addons.php:229
158
  msgid "Delete"
159
  msgstr ""
160
 
161
  #: adminpages/addons.php:216 adminpages/addons.php:213
162
+ #: adminpages/addons.php:216 adminpages/addons.php:229
163
  #, php-format
164
  msgid "Delete %s"
165
  msgstr ""
166
 
167
  #: adminpages/addons.php:226 adminpages/addons.php:223
168
+ #: adminpages/addons.php:226 adminpages/addons.php:239
169
  msgid "PMPro Free"
170
  msgstr ""
171
 
172
  #: adminpages/addons.php:228 adminpages/addons.php:225
173
+ #: adminpages/addons.php:228 adminpages/addons.php:241
174
  msgid "PMPro Core"
175
  msgstr ""
176
 
177
  #: adminpages/addons.php:230 adminpages/addons.php:227
178
+ #: adminpages/addons.php:230 adminpages/addons.php:243
179
  msgid "PMPro Plus"
180
  msgstr ""
181
 
182
  #: adminpages/addons.php:232 adminpages/addons.php:229
183
+ #: adminpages/addons.php:232 adminpages/addons.php:245
184
  msgid "WordPress.org"
185
  msgstr ""
186
 
187
+ #: adminpages/addons.php:234 shortcodes/pmpro_account.php:146
188
+ #: adminpages/addons.php:231 adminpages/addons.php:234
189
+ #: adminpages/addons.php:247 shortcodes/pmpro_account.php:145
190
  #: shortcodes/pmpro_account.php:146
191
  msgid "N/A"
192
  msgstr ""
193
 
194
  #: adminpages/addons.php:243 adminpages/addons.php:240
195
+ #: adminpages/addons.php:243 adminpages/addons.php:256
196
  #, php-format
197
  msgid "Version %s"
198
  msgstr ""
199
 
200
  #: adminpages/addons.php:248 adminpages/addons.php:245
201
+ #: adminpages/addons.php:248 adminpages/addons.php:261
202
  #, php-format
203
  msgid "By %s"
204
  msgstr ""
205
 
206
  #: adminpages/addons.php:255 adminpages/addons.php:252
207
+ #: adminpages/addons.php:255 adminpages/addons.php:268
208
  #, php-format
209
  msgid "More information about %s"
210
  msgstr ""
211
 
212
  #: adminpages/addons.php:257 adminpages/addons.php:254
213
+ #: adminpages/addons.php:257 adminpages/addons.php:270
214
  msgid "View details"
215
  msgstr ""
216
 
217
  #: adminpages/addons.php:262 adminpages/addons.php:259
218
+ #: adminpages/addons.php:262 adminpages/addons.php:275
219
  msgid "Visit plugin site"
220
  msgstr ""
221
 
303
  msgid "User Forum"
304
  msgstr ""
305
 
306
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:609
307
  #: adminpages/pagesettings.php:70 includes/adminpages.php:69
308
  #: includes/adminpages.php:70 includes/adminpages.php:116
309
  #: includes/metaboxes.php:131 adminpages/admin_header.php:128
335
  msgstr ""
336
 
337
  #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
338
+ #: shortcodes/pmpro_account.php:109 adminpages/admin_header.php:131
339
  #: adminpages/admin_header.php:152 adminpages/admin_header.php:162
340
  #: adminpages/memberslist.php:115 adminpages/memberslist.php:148
341
  #: adminpages/memberslist.php:158 adminpages/memberslist.php:168
342
  #: pages/account.php:52 pages/account.php:56 pages/account.php:77
343
+ #: shortcodes/pmpro_account.php:106 shortcodes/pmpro_account.php:108
344
+ #: shortcodes/pmpro_account.php:109
345
  msgid "Email"
346
  msgstr ""
347
 
452
  msgstr ""
453
 
454
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
455
+ #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:662
456
  #: adminpages/paymentsettings.php:210
457
  #: classes/gateways/class.pmprogateway_stripe.php:209 includes/profile.php:110
458
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
463
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
464
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
465
  #: adminpages/membershiplevels.php:658 adminpages/membershiplevels.php:667
466
+ #: adminpages/membershiplevels.php:668 adminpages/membershiplevels.php:672
467
+ #: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:414
468
+ #: adminpages/paymentsettings.php:429 adminpages/paymentsettings.php:434
469
+ #: adminpages/paymentsettings.php:436 adminpages/paymentsettings.php:454
470
+ #: adminpages/paymentsettings.php:459 adminpages/paymentsettings.php:461
471
  #: classes/gateways/class.pmprogateway_stripe.php:173
472
  #: classes/gateways/class.pmprogateway_stripe.php:174
473
  #: classes/gateways/class.pmprogateway_stripe.php:184
474
  #: classes/gateways/class.pmprogateway_stripe.php:206
475
+ #: classes/gateways/class.pmprogateway_stripe.php:208
476
+ #: classes/gateways/class.pmprogateway_stripe.php:209 includes/profile.php:101
477
  #: includes/profile.php:105 includes/profile.php:110 includes/profile.php:121
478
  #: includes/profile.php:123
479
  msgid "No"
514
  msgid "multisite only"
515
  msgstr ""
516
 
517
+ #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:662
518
  #: adminpages/paymentsettings.php:211
519
  #: classes/gateways/class.pmprogateway_stripe.php:210 includes/profile.php:111
520
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
522
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
523
  #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
524
  #: adminpages/membershiplevels.php:658 adminpages/membershiplevels.php:667
525
+ #: adminpages/membershiplevels.php:668 adminpages/membershiplevels.php:672
526
+ #: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:415
527
+ #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:430
528
+ #: adminpages/paymentsettings.php:435 adminpages/paymentsettings.php:437
529
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:460
530
+ #: adminpages/paymentsettings.php:462
531
  #: classes/gateways/class.pmprogateway_stripe.php:174
532
  #: classes/gateways/class.pmprogateway_stripe.php:175
533
  #: classes/gateways/class.pmprogateway_stripe.php:185
534
  #: classes/gateways/class.pmprogateway_stripe.php:207
535
+ #: classes/gateways/class.pmprogateway_stripe.php:209
536
+ #: classes/gateways/class.pmprogateway_stripe.php:210 includes/profile.php:102
537
  #: includes/profile.php:106 includes/profile.php:111 includes/profile.php:122
538
  #: includes/profile.php:124
539
  msgid "Yes"
676
  msgstr ""
677
 
678
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:587
679
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:631
680
  #: adminpages/memberslist.php:164 adminpages/orders.php:1134
681
  #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
682
  #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
689
  #: adminpages/membershiplevels.php:511 adminpages/membershiplevels.php:513
690
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:541
691
  #: adminpages/membershiplevels.php:583 adminpages/membershiplevels.php:636
692
+ #: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:641
693
+ #: adminpages/memberslist.php:111 adminpages/memberslist.php:144
694
+ #: adminpages/memberslist.php:154 adminpages/memberslist.php:164
695
+ #: adminpages/orders.php:597 adminpages/orders.php:900
696
+ #: adminpages/orders.php:910 adminpages/orders.php:937
697
+ #: adminpages/orders.php:966 adminpages/orders.php:1103
698
+ #: adminpages/orders.php:1134 adminpages/reports/login.php:140
699
  #: adminpages/reports/login.php:142 adminpages/reports/login.php:158
700
  #: adminpages/templates/orders-email.php:46
701
  #: adminpages/templates/orders-print.php:75
707
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
708
  #: adminpages/orders.php:211 adminpages/orders.php:261
709
  #: adminpages/orders.php:333 adminpages/orders.php:344
710
+ #: adminpages/orders.php:362 adminpages/orders.php:375
711
  msgid "This will be generated when you save."
712
  msgstr ""
713
 
720
  #: adminpages/discountcodes.php:588 adminpages/orders.php:215
721
  #: adminpages/orders.php:265 adminpages/orders.php:337
722
  #: adminpages/orders.php:349 adminpages/orders.php:366
723
+ #: adminpages/orders.php:380 adminpages/orders.php:598
724
+ #: adminpages/orders.php:901 adminpages/orders.php:911
725
+ #: adminpages/orders.php:938 adminpages/orders.php:967
726
+ #: adminpages/orders.php:1104 adminpages/orders.php:1135
727
  msgid "Code"
728
  msgstr ""
729
 
735
 
736
  #: adminpages/discountcodes.php:372
737
  #: classes/gateways/class.pmprogateway_braintree.php:327
738
+ #: classes/gateways/class.pmprogateway_stripe.php:521 pages/billing.php:319
739
+ #: pages/checkout.php:582 adminpages/discountcodes.php:367
740
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
741
  #: adminpages/discountcodes.php:372
742
  #: classes/gateways/class.pmprogateway_braintree.php:308
743
  #: classes/gateways/class.pmprogateway_braintree.php:321
744
  #: classes/gateways/class.pmprogateway_braintree.php:323
745
  #: classes/gateways/class.pmprogateway_braintree.php:326
746
+ #: classes/gateways/class.pmprogateway_braintree.php:327
747
  #: classes/gateways/class.pmprogateway_stripe.php:454
748
  #: classes/gateways/class.pmprogateway_stripe.php:455
749
  #: classes/gateways/class.pmprogateway_stripe.php:465
750
  #: classes/gateways/class.pmprogateway_stripe.php:469
751
  #: classes/gateways/class.pmprogateway_stripe.php:495
752
  #: classes/gateways/class.pmprogateway_stripe.php:498
753
+ #: classes/gateways/class.pmprogateway_stripe.php:500
754
+ #: classes/gateways/class.pmprogateway_stripe.php:503 pages/billing.php:249
755
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
756
+ #: pages/billing.php:268 pages/billing.php:310 pages/checkout.php:508
757
+ #: pages/checkout.php:524 pages/checkout.php:525 pages/checkout.php:532
758
+ #: pages/checkout.php:553 pages/checkout.php:562 pages/checkout.php:571
759
+ #: pages/checkout.php:575
760
  msgid "Expiration Date"
761
  msgstr ""
762
 
829
 
830
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
831
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
832
+ #: classes/gateways/class.pmprogateway_stripe.php:588
833
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
834
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
835
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
846
  #: classes/gateways/class.pmprogateway_stripe.php:562
847
  #: classes/gateways/class.pmprogateway_stripe.php:566
848
  #: classes/gateways/class.pmprogateway_stripe.php:567
849
+ #: classes/gateways/class.pmprogateway_stripe.php:570
850
  msgid "Day(s)"
851
  msgstr ""
852
 
853
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
854
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
855
+ #: classes/gateways/class.pmprogateway_stripe.php:588
856
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
857
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
858
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
869
  #: classes/gateways/class.pmprogateway_stripe.php:562
870
  #: classes/gateways/class.pmprogateway_stripe.php:566
871
  #: classes/gateways/class.pmprogateway_stripe.php:567
872
+ #: classes/gateways/class.pmprogateway_stripe.php:570
873
  msgid "Month(s)"
874
  msgstr ""
875
 
876
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
877
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
878
+ #: classes/gateways/class.pmprogateway_stripe.php:588
879
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
880
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
881
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
892
  #: classes/gateways/class.pmprogateway_stripe.php:562
893
  #: classes/gateways/class.pmprogateway_stripe.php:566
894
  #: classes/gateways/class.pmprogateway_stripe.php:567
895
+ #: classes/gateways/class.pmprogateway_stripe.php:570
896
  msgid "Week(s)"
897
  msgstr ""
898
 
899
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
900
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
901
+ #: classes/gateways/class.pmprogateway_stripe.php:588
902
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
903
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
904
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
915
  #: classes/gateways/class.pmprogateway_stripe.php:562
916
  #: classes/gateways/class.pmprogateway_stripe.php:566
917
  #: classes/gateways/class.pmprogateway_stripe.php:567
918
+ #: classes/gateways/class.pmprogateway_stripe.php:570
919
  msgid "Year(s)"
920
  msgstr ""
921
 
1100
  "select customers."
1101
  msgstr ""
1102
 
1103
+ #: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:664
1104
  #: adminpages/orders.php:1239 adminpages/discountcodes.php:614
1105
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
1106
  #: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
1108
  #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
1109
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
1110
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
1111
+ #: adminpages/membershiplevels.php:670 adminpages/membershiplevels.php:674
1112
+ #: adminpages/orders.php:658 adminpages/orders.php:961
1113
+ #: adminpages/orders.php:979 adminpages/orders.php:989
1114
+ #: adminpages/orders.php:992 adminpages/orders.php:1021
1115
+ #: adminpages/orders.php:1050 adminpages/orders.php:1205
1116
+ #: adminpages/orders.php:1239
1117
  msgid "edit"
1118
  msgstr ""
1119
 
1128
  "code anymore."
1129
  msgstr ""
1130
 
1131
+ #: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:664
1132
  #: adminpages/orders.php:1245 adminpages/discountcodes.php:617
1133
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
1134
  #: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
1136
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1137
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1138
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
1139
+ #: adminpages/membershiplevels.php:670 adminpages/membershiplevels.php:674
1140
+ #: adminpages/orders.php:664 adminpages/orders.php:967
1141
+ #: adminpages/orders.php:985 adminpages/orders.php:995
1142
+ #: adminpages/orders.php:998 adminpages/orders.php:1027
1143
+ #: adminpages/orders.php:1056 adminpages/orders.php:1211
1144
+ #: adminpages/orders.php:1245
1145
  msgid "delete"
1146
  msgstr ""
1147
 
1314
  msgid "Add New Membership Level"
1315
  msgstr ""
1316
 
1317
+ #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:632
1318
  #: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
1319
  #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
1320
  #: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
1321
  #: adminpages/membershiplevels.php:514 adminpages/membershiplevels.php:541
1322
  #: adminpages/membershiplevels.php:542 adminpages/membershiplevels.php:584
1323
  #: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:638
1324
+ #: adminpages/membershiplevels.php:642 adminpages/reports/login.php:142
1325
+ #: adminpages/reports/login.php:144 adminpages/reports/login.php:160
1326
  msgid "Name"
1327
  msgstr ""
1328
 
1331
  msgid "Confirmation Message"
1332
  msgstr ""
1333
 
1334
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:633
1335
  #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1336
  #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:338
1337
  #: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:585
1338
  #: adminpages/membershiplevels.php:638 adminpages/membershiplevels.php:639
1339
+ #: adminpages/membershiplevels.php:643
1340
  msgid "Billing Details"
1341
  msgstr ""
1342
 
1343
  #: adminpages/membershiplevels.php:372
1344
+ #: classes/gateways/class.pmprogateway_stripe.php:686
1345
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1346
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1347
  #: adminpages/membershiplevels.php:373
1352
  #: classes/gateways/class.pmprogateway_stripe.php:660
1353
  #: classes/gateways/class.pmprogateway_stripe.php:664
1354
  #: classes/gateways/class.pmprogateway_stripe.php:665
1355
+ #: classes/gateways/class.pmprogateway_stripe.php:668
1356
  msgid "per"
1357
  msgstr ""
1358
 
1402
  #: adminpages/paymentsettings.php:179
1403
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1404
  #: classes/gateways/class.pmprogateway_paypal.php:118
1405
+ #: classes/gateways/class.pmprogateway_paypal.php:130
1406
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1407
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1408
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:145
1409
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1410
  msgid "Note"
1411
  msgstr ""
1496
  msgid "Categories"
1497
  msgstr ""
1498
 
1499
+ #: adminpages/membershiplevels.php:507 adminpages/membershiplevels.php:516
1500
  #: adminpages/membershiplevels.php:517
1501
  msgid "Save Level"
1502
  msgstr ""
1503
 
1504
+ #: adminpages/membershiplevels.php:508 adminpages/orders.php:796
1505
+ #: pages/billing.php:401 pages/cancel.php:83 shortcodes/pmpro_account.php:72
1506
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1507
  #: adminpages/orders.php:511 adminpages/orders.php:561
1508
  #: adminpages/orders.php:633 adminpages/orders.php:662
1509
+ #: adminpages/orders.php:765 adminpages/orders.php:796 pages/account.php:44
1510
+ #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1511
+ #: pages/billing.php:339 pages/billing.php:342 pages/billing.php:344
1512
+ #: pages/billing.php:348 pages/billing.php:392 pages/cancel.php:71
1513
+ #: shortcodes/pmpro_account.php:70 shortcodes/pmpro_account.php:72
1514
  #: shortcodes/pmpro_account.php:73
1515
  msgid "Cancel"
1516
  msgstr ""
1517
 
1518
+ #: adminpages/membershiplevels.php:609 adminpages/membershiplevels.php:490
1519
  #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1520
  #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
1521
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:618
1523
  msgid "Add New Level"
1524
  msgstr ""
1525
 
1526
+ #: adminpages/membershiplevels.php:612 adminpages/membershiplevels.php:615
1527
  #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1528
  #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1529
  #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
1535
  msgid "Search Levels"
1536
  msgstr ""
1537
 
1538
+ #: adminpages/membershiplevels.php:621 adminpages/membershiplevels.php:579
1539
  #: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:631
1540
  msgid "Drag and drop membership levels to reorder them on the Levels page."
1541
  msgstr ""
1542
 
1543
+ #: adminpages/membershiplevels.php:634 pages/cancel.php:61
1544
+ #: pages/confirmation.php:89 pages/invoice.php:70
1545
+ #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1546
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1547
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1548
  #: adminpages/membershiplevels.php:586 adminpages/membershiplevels.php:639
1549
+ #: adminpages/membershiplevels.php:640 adminpages/membershiplevels.php:644
1550
+ #: pages/account.php:20 pages/cancel.php:53 pages/confirmation.php:81
1551
+ #: pages/confirmation.php:83 pages/invoice.php:68 pages/invoice.php:70
1552
+ #: shortcodes/pmpro_account.php:45 shortcodes/pmpro_account.php:46
1553
  msgid "Expiration"
1554
  msgstr ""
1555
 
1556
+ #: adminpages/membershiplevels.php:635 adminpages/membershiplevels.php:511
1557
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1558
  #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1559
  #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:640
1560
+ #: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:645
1561
  msgid "Allow Signups"
1562
  msgstr ""
1563
 
1564
+ #: adminpages/membershiplevels.php:650 adminpages/membershiplevels.php:534
1565
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1566
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1567
  #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:655
1568
+ #: adminpages/membershiplevels.php:656 adminpages/membershiplevels.php:660
1569
  msgid "FREE"
1570
  msgstr ""
1571
 
1572
+ #: adminpages/membershiplevels.php:659 adminpages/membershiplevels.php:560
1573
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1574
  #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1575
  #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:664
1576
+ #: adminpages/membershiplevels.php:665 adminpages/membershiplevels.php:669
1577
  msgid "After"
1578
  msgstr ""
1579
 
1580
+ #: adminpages/membershiplevels.php:664 adminpages/membershiplevels.php:566
1581
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1582
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1583
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
1584
+ #: adminpages/membershiplevels.php:670 adminpages/membershiplevels.php:674
1585
  #, php-format
1586
  msgid ""
1587
  "Are you sure you want to delete membership level %s? All subscriptions will "
1588
  "be cancelled."
1589
  msgstr ""
1590
 
1591
+ #: adminpages/membershiplevels.php:664 adminpages/orders.php:1242
1592
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1593
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1594
  #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1595
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1596
+ #: adminpages/membershiplevels.php:674 adminpages/orders.php:661
1597
+ #: adminpages/orders.php:964 adminpages/orders.php:982
1598
+ #: adminpages/orders.php:992 adminpages/orders.php:995
1599
+ #: adminpages/orders.php:1024 adminpages/orders.php:1053
1600
+ #: adminpages/orders.php:1208 adminpages/orders.php:1242
1601
  msgid "copy"
1602
  msgstr ""
1603
 
1614
  #: adminpages/memberslist.php:26 adminpages/orders.php:522
1615
  #: adminpages/orders.php:591 adminpages/orders.php:698
1616
  #: adminpages/orders.php:727 adminpages/orders.php:833
1617
+ #: adminpages/orders.php:864
1618
  msgid "Export to CSV"
1619
  msgstr ""
1620
 
1623
  #: adminpages/reports/sales.php:202 adminpages/memberslist.php:30
1624
  #: adminpages/orders.php:603 adminpages/orders.php:710
1625
  #: adminpages/orders.php:739 adminpages/orders.php:848
1626
+ #: adminpages/orders.php:879 adminpages/reports/login.php:65
1627
+ #: adminpages/reports/login.php:67 adminpages/reports/login.php:83
1628
+ #: adminpages/reports/memberships.php:256
1629
  #: adminpages/reports/memberships.php:263
1630
  #: adminpages/reports/memberships.php:276
1631
  #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
1636
 
1637
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1638
  #: adminpages/reports/memberships.php:303 adminpages/reports/sales.php:225
1639
+ #: classes/class.pmproemail.php:145 classes/class.pmproemail.php:189
1640
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:67
1641
  #: adminpages/reports/login.php:69 adminpages/reports/login.php:85
1642
  #: adminpages/reports/memberships.php:281
1675
  msgid "%d members found."
1676
  msgstr ""
1677
 
1678
+ #: adminpages/memberslist.php:165 pages/checkout.php:191
1679
+ #: shortcodes/pmpro_account.php:108 adminpages/memberslist.php:112
1680
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1681
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1682
  #: pages/account.php:76 pages/checkout.php:168 pages/checkout.php:171
1683
  #: pages/checkout.php:173 pages/checkout.php:180 pages/checkout.php:182
1684
  #: pages/checkout.php:184 shortcodes/pmpro_account.php:105
1685
+ #: shortcodes/pmpro_account.php:107 shortcodes/pmpro_account.php:108
1686
  msgid "Username"
1687
  msgstr ""
1688
 
1698
  msgid "Last&nbsp;Name"
1699
  msgstr ""
1700
 
1701
+ #: adminpages/memberslist.php:170 pages/billing.php:80 pages/checkout.php:326
1702
+ #: pages/confirmation.php:67 pages/invoice.php:48
1703
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1704
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
1705
  #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
1706
  #: pages/billing.php:62 pages/billing.php:71 pages/billing.php:74
1707
+ #: pages/billing.php:76 pages/checkout.php:298 pages/checkout.php:300
1708
+ #: pages/checkout.php:302 pages/checkout.php:311 pages/checkout.php:314
1709
+ #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
1710
+ #: pages/confirmation.php:59 pages/confirmation.php:61 pages/invoice.php:46
1711
+ #: pages/invoice.php:48
1712
  msgid "Billing Address"
1713
  msgstr ""
1714
 
1742
  msgid "Ended"
1743
  msgstr ""
1744
 
1745
+ #: adminpages/memberslist.php:262 adminpages/reports/login.php:228
1746
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1747
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1748
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
1750
  msgid "No members found."
1751
  msgstr ""
1752
 
1753
+ #: adminpages/memberslist.php:262 adminpages/reports/login.php:228
1754
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1755
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1756
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
1780
 
1781
  #: adminpages/orders.php:285 adminpages/orders.php:119
1782
  #: adminpages/orders.php:169 adminpages/orders.php:270
1783
+ #: adminpages/orders.php:284 adminpages/orders.php:285
1784
  msgid "Order saved successfully."
1785
  msgstr ""
1786
 
1787
  #: adminpages/orders.php:288 adminpages/orders.php:124
1788
  #: adminpages/orders.php:174 adminpages/orders.php:275
1789
+ #: adminpages/orders.php:287 adminpages/orders.php:288
1790
  msgid "Error updating order timestamp."
1791
  msgstr ""
1792
 
1793
  #: adminpages/orders.php:292 adminpages/orders.php:130
1794
  #: adminpages/orders.php:180 adminpages/orders.php:281
1795
+ #: adminpages/orders.php:291 adminpages/orders.php:292
1796
  msgid "Error saving order."
1797
  msgstr ""
1798
 
1799
  #: adminpages/orders.php:352 adminpages/orders.php:195
1800
  #: adminpages/orders.php:245 adminpages/orders.php:317
1801
  #: adminpages/orders.php:321 adminpages/orders.php:346
1802
+ #: adminpages/orders.php:352
1803
  msgid "Order"
1804
  msgstr ""
1805
 
1806
  #: adminpages/orders.php:354 adminpages/orders.php:197
1807
  #: adminpages/orders.php:247 adminpages/orders.php:319
1808
  #: adminpages/orders.php:323 adminpages/orders.php:348
1809
+ #: adminpages/orders.php:354
1810
  msgid "New Order"
1811
  msgstr ""
1812
 
1813
  #: adminpages/orders.php:390 adminpages/orders.php:220
1814
  #: adminpages/orders.php:270 adminpages/orders.php:342
1815
  #: adminpages/orders.php:359 adminpages/orders.php:371
1816
+ #: adminpages/orders.php:390
1817
  msgid "Randomly generated for you."
1818
  msgstr ""
1819
 
1820
  #: adminpages/orders.php:395 adminpages/orders.php:225
1821
  #: adminpages/orders.php:275 adminpages/orders.php:347
1822
  #: adminpages/orders.php:364 adminpages/orders.php:376
1823
+ #: adminpages/orders.php:395
1824
  msgid "User ID"
1825
  msgstr ""
1826
 
1827
  #: adminpages/orders.php:407 adminpages/orders.php:234
1828
  #: adminpages/orders.php:284 adminpages/orders.php:356
1829
  #: adminpages/orders.php:376 adminpages/orders.php:385
1830
+ #: adminpages/orders.php:407
1831
  msgid "Membership Level ID"
1832
  msgstr ""
1833
 
1834
  #: adminpages/orders.php:420 adminpages/orders.php:243
1835
  #: adminpages/orders.php:293 adminpages/orders.php:365
1836
  #: adminpages/orders.php:389 adminpages/orders.php:394
1837
+ #: adminpages/orders.php:420
1838
  msgid "Billing Name"
1839
  msgstr ""
1840
 
1841
  #: adminpages/orders.php:432 adminpages/orders.php:251
1842
  #: adminpages/orders.php:301 adminpages/orders.php:373
1843
  #: adminpages/orders.php:401 adminpages/orders.php:402
1844
+ #: adminpages/orders.php:432
1845
  msgid "Billing Street"
1846
  msgstr ""
1847
 
1848
  #: adminpages/orders.php:443 adminpages/orders.php:258
1849
  #: adminpages/orders.php:308 adminpages/orders.php:380
1850
  #: adminpages/orders.php:409 adminpages/orders.php:412
1851
+ #: adminpages/orders.php:443
1852
  msgid "Billing City"
1853
  msgstr ""
1854
 
1855
  #: adminpages/orders.php:454 adminpages/orders.php:265
1856
  #: adminpages/orders.php:315 adminpages/orders.php:387
1857
  #: adminpages/orders.php:416 adminpages/orders.php:423
1858
+ #: adminpages/orders.php:454
1859
  msgid "Billing State"
1860
  msgstr ""
1861
 
1862
  #: adminpages/orders.php:465 adminpages/orders.php:272
1863
  #: adminpages/orders.php:322 adminpages/orders.php:394
1864
  #: adminpages/orders.php:423 adminpages/orders.php:434
1865
+ #: adminpages/orders.php:465
1866
  msgid "Billing Postal Code"
1867
  msgstr ""
1868
 
1869
  #: adminpages/orders.php:476 adminpages/orders.php:279
1870
  #: adminpages/orders.php:329 adminpages/orders.php:401
1871
  #: adminpages/orders.php:430 adminpages/orders.php:445
1872
+ #: adminpages/orders.php:476
1873
  msgid "Billing Country"
1874
  msgstr ""
1875
 
1876
  #: adminpages/orders.php:488 adminpages/orders.php:287
1877
  #: adminpages/orders.php:337 adminpages/orders.php:409
1878
  #: adminpages/orders.php:438 adminpages/orders.php:457
1879
+ #: adminpages/orders.php:488
1880
  msgid "Billing Phone"
1881
  msgstr ""
1882
 
1883
  #: adminpages/orders.php:501 adminpages/orders.php:296
1884
  #: adminpages/orders.php:346 adminpages/orders.php:418
1885
  #: adminpages/orders.php:447 adminpages/orders.php:470
1886
+ #: adminpages/orders.php:501
1887
  msgid "Sub Total"
1888
  msgstr ""
1889
 
1891
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1892
  #: adminpages/orders.php:304 adminpages/orders.php:354
1893
  #: adminpages/orders.php:426 adminpages/orders.php:455
1894
+ #: adminpages/orders.php:481 adminpages/orders.php:512
1895
+ #: adminpages/templates/orders-email.php:60
1896
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:78
1897
  #: pages/invoice.php:80
1898
  msgid "Tax"
1901
  #: adminpages/orders.php:523 adminpages/orders.php:312
1902
  #: adminpages/orders.php:362 adminpages/orders.php:434
1903
  #: adminpages/orders.php:463 adminpages/orders.php:492
1904
+ #: adminpages/orders.php:523
1905
  msgid "Coupon Amount"
1906
  msgstr ""
1907
 
1910
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1911
  #: adminpages/orders.php:320 adminpages/orders.php:370
1912
  #: adminpages/orders.php:442 adminpages/orders.php:471
1913
+ #: adminpages/orders.php:504 adminpages/orders.php:535
1914
+ #: adminpages/orders.php:602 adminpages/orders.php:905
1915
+ #: adminpages/orders.php:915 adminpages/orders.php:942
1916
+ #: adminpages/orders.php:971 adminpages/orders.php:1108
1917
+ #: adminpages/orders.php:1139 adminpages/templates/orders-email.php:64
1918
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:82
1919
  #: pages/invoice.php:84
1920
  msgid "Total"
1923
  #: adminpages/orders.php:544 adminpages/orders.php:325
1924
  #: adminpages/orders.php:375 adminpages/orders.php:447
1925
  #: adminpages/orders.php:476 adminpages/orders.php:513
1926
+ #: adminpages/orders.php:544
1927
  msgid "Should be subtotal + tax - couponamount."
1928
  msgstr ""
1929
 
1930
  #: adminpages/orders.php:549 adminpages/orders.php:330
1931
  #: adminpages/orders.php:380 adminpages/orders.php:452
1932
  #: adminpages/orders.php:481 adminpages/orders.php:518
1933
+ #: adminpages/orders.php:549
1934
  msgid "Payment Type"
1935
  msgstr ""
1936
 
1937
  #: adminpages/orders.php:559 adminpages/orders.php:335
1938
  #: adminpages/orders.php:385 adminpages/orders.php:457
1939
  #: adminpages/orders.php:486 adminpages/orders.php:528
1940
+ #: adminpages/orders.php:559
1941
  msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1942
  msgstr ""
1943
 
1944
  #: adminpages/orders.php:563
1945
  #: classes/gateways/class.pmprogateway_braintree.php:310
1946
+ #: classes/gateways/class.pmprogateway_stripe.php:473 pages/billing.php:271
1947
+ #: pages/checkout.php:534 adminpages/orders.php:339 adminpages/orders.php:389
1948
  #: adminpages/orders.php:461 adminpages/orders.php:490
1949
+ #: adminpages/orders.php:532 adminpages/orders.php:563
1950
  #: classes/gateways/class.pmprogateway_braintree.php:291
1951
  #: classes/gateways/class.pmprogateway_braintree.php:304
1952
  #: classes/gateways/class.pmprogateway_braintree.php:306
1953
  #: classes/gateways/class.pmprogateway_braintree.php:309
1954
+ #: classes/gateways/class.pmprogateway_braintree.php:310
1955
  #: classes/gateways/class.pmprogateway_stripe.php:408
1956
  #: classes/gateways/class.pmprogateway_stripe.php:409
1957
  #: classes/gateways/class.pmprogateway_stripe.php:419
1958
  #: classes/gateways/class.pmprogateway_stripe.php:423
1959
  #: classes/gateways/class.pmprogateway_stripe.php:447
1960
  #: classes/gateways/class.pmprogateway_stripe.php:450
1961
+ #: classes/gateways/class.pmprogateway_stripe.php:452
1962
+ #: classes/gateways/class.pmprogateway_stripe.php:455 pages/billing.php:234
1963
  #: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
1964
+ #: pages/billing.php:253 pages/billing.php:262 pages/checkout.php:493
1965
+ #: pages/checkout.php:507 pages/checkout.php:510 pages/checkout.php:516
1966
+ #: pages/checkout.php:517 pages/checkout.php:525 pages/checkout.php:527
1967
  msgid "Card Type"
1968
  msgstr ""
1969
 
1970
  #: adminpages/orders.php:571 adminpages/orders.php:344
1971
  #: adminpages/orders.php:394 adminpages/orders.php:466
1972
  #: adminpages/orders.php:495 adminpages/orders.php:540
1973
+ #: adminpages/orders.php:571
1974
  msgid "e.g. Visa, MasterCard, AMEX, etc"
1975
  msgstr ""
1976
 
1978
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
1979
  #: adminpages/orders.php:348 adminpages/orders.php:398
1980
  #: adminpages/orders.php:470 adminpages/orders.php:499
1981
+ #: adminpages/orders.php:544 adminpages/orders.php:575
1982
+ #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
1983
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
1984
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
1985
  #: classes/gateways/class.pmprogateway_twocheckout.php:148
1989
  #: adminpages/orders.php:584 adminpages/orders.php:353
1990
  #: adminpages/orders.php:403 adminpages/orders.php:475
1991
  #: adminpages/orders.php:504 adminpages/orders.php:553
1992
+ #: adminpages/orders.php:584
1993
  msgid "Obscure all but last 4 digits."
1994
  msgstr ""
1995
 
1996
  #: adminpages/orders.php:592 adminpages/orders.php:358
1997
  #: adminpages/orders.php:408 adminpages/orders.php:480
1998
  #: adminpages/orders.php:509 adminpages/orders.php:561
1999
+ #: adminpages/orders.php:592
2000
  msgid "Expiration Month"
2001
  msgstr ""
2002
 
2003
  #: adminpages/orders.php:600 adminpages/orders.php:365
2004
  #: adminpages/orders.php:415 adminpages/orders.php:487
2005
  #: adminpages/orders.php:516 adminpages/orders.php:569
2006
+ #: adminpages/orders.php:600
2007
  msgid "Expiration Year"
2008
  msgstr ""
2009
 
2011
  #: adminpages/orders.php:373 adminpages/orders.php:423
2012
  #: adminpages/orders.php:495 adminpages/orders.php:524
2013
  #: adminpages/orders.php:579 adminpages/orders.php:606
2014
+ #: adminpages/orders.php:610 adminpages/orders.php:909
2015
+ #: adminpages/orders.php:919 adminpages/orders.php:946
2016
+ #: adminpages/orders.php:975 adminpages/orders.php:1112
2017
+ #: adminpages/orders.php:1143
2018
  msgid "Status"
2019
  msgstr ""
2020
 
2022
  #: adminpages/orders.php:394 adminpages/orders.php:444
2023
  #: adminpages/orders.php:516 adminpages/orders.php:545
2024
  #: adminpages/orders.php:604 adminpages/orders.php:612
2025
+ #: adminpages/orders.php:643 adminpages/orders.php:907
2026
+ #: adminpages/orders.php:917 adminpages/orders.php:944
2027
+ #: adminpages/orders.php:973 adminpages/orders.php:1110
2028
+ #: adminpages/orders.php:1141
2029
  msgid "Gateway"
2030
  msgstr ""
2031
 
2033
  #: adminpages/orders.php:411 adminpages/orders.php:461
2034
  #: adminpages/orders.php:462 adminpages/orders.php:534
2035
  #: adminpages/orders.php:563 adminpages/orders.php:633
2036
+ #: adminpages/orders.php:664 adminpages/paymentsettings.php:124
2037
+ #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
2038
+ #: adminpages/paymentsettings.php:184
2039
  msgid "Gateway Environment"
2040
  msgstr ""
2041
 
2043
  #: adminpages/orders.php:415 adminpages/orders.php:465
2044
  #: adminpages/orders.php:466 adminpages/orders.php:538
2045
  #: adminpages/orders.php:567 adminpages/orders.php:640
2046
+ #: adminpages/orders.php:671 adminpages/paymentsettings.php:128
2047
+ #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
2048
+ #: adminpages/paymentsettings.php:188
2049
  msgid "Sandbox/Testing"
2050
  msgstr ""
2051
 
2053
  #: adminpages/orders.php:416 adminpages/orders.php:466
2054
  #: adminpages/orders.php:467 adminpages/orders.php:539
2055
  #: adminpages/orders.php:568 adminpages/orders.php:642
2056
+ #: adminpages/orders.php:673 adminpages/paymentsettings.php:129
2057
+ #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
2058
+ #: adminpages/paymentsettings.php:189
2059
  msgid "Live/Production"
2060
  msgstr ""
2061
 
2062
  #: adminpages/orders.php:681 adminpages/orders.php:423
2063
  #: adminpages/orders.php:473 adminpages/orders.php:474
2064
  #: adminpages/orders.php:546 adminpages/orders.php:575
2065
+ #: adminpages/orders.php:650 adminpages/orders.php:681
2066
  msgid "Payment Transaction ID"
2067
  msgstr ""
2068
 
2069
  #: adminpages/orders.php:690 adminpages/orders.php:428
2070
  #: adminpages/orders.php:478 adminpages/orders.php:479
2071
  #: adminpages/orders.php:551 adminpages/orders.php:580
2072
+ #: adminpages/orders.php:659 adminpages/orders.php:690
2073
  msgid "Generated by the gateway. Useful to cross reference orders."
2074
  msgstr ""
2075
 
2076
  #: adminpages/orders.php:695 adminpages/orders.php:432
2077
  #: adminpages/orders.php:482 adminpages/orders.php:483
2078
  #: adminpages/orders.php:555 adminpages/orders.php:584
2079
+ #: adminpages/orders.php:664 adminpages/orders.php:695
2080
  msgid "Subscription Transaction ID"
2081
  msgstr ""
2082
 
2083
  #: adminpages/orders.php:705 adminpages/orders.php:437
2084
  #: adminpages/orders.php:487 adminpages/orders.php:488
2085
  #: adminpages/orders.php:560 adminpages/orders.php:589
2086
+ #: adminpages/orders.php:674 adminpages/orders.php:705
2087
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
2088
  msgstr ""
2089
 
2090
  #: adminpages/orders.php:710 adminpages/orders.php:1144 pages/invoice.php:107
2091
+ #: shortcodes/pmpro_account.php:125 adminpages/orders.php:442
2092
  #: adminpages/orders.php:492 adminpages/orders.php:493
2093
  #: adminpages/orders.php:565 adminpages/orders.php:594
2094
  #: adminpages/orders.php:607 adminpages/orders.php:679
2095
+ #: adminpages/orders.php:710 adminpages/orders.php:910
2096
+ #: adminpages/orders.php:920 adminpages/orders.php:947
2097
+ #: adminpages/orders.php:976 adminpages/orders.php:1113
2098
+ #: adminpages/orders.php:1144 pages/account.php:91 pages/invoice.php:105
2099
  #: pages/invoice.php:107 shortcodes/pmpro_account.php:122
2100
+ #: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:125
2101
  msgid "Date"
2102
  msgstr ""
2103
 
2104
  #: adminpages/orders.php:747 adminpages/orders.php:477
2105
  #: adminpages/orders.php:527 adminpages/orders.php:599
2106
  #: adminpages/orders.php:628 adminpages/orders.php:716
2107
+ #: adminpages/orders.php:747
2108
  msgid "Affiliate ID"
2109
  msgstr ""
2110
 
2111
  #: adminpages/orders.php:759 adminpages/orders.php:485
2112
  #: adminpages/orders.php:535 adminpages/orders.php:607
2113
  #: adminpages/orders.php:636 adminpages/orders.php:728
2114
+ #: adminpages/orders.php:759
2115
  msgid "Affiliate SubID"
2116
  msgstr ""
2117
 
2118
  #: adminpages/orders.php:773 adminpages/orders.php:495
2119
  #: adminpages/orders.php:545 adminpages/orders.php:617
2120
  #: adminpages/orders.php:646 adminpages/orders.php:742
2121
+ #: adminpages/orders.php:773
2122
  msgid "Notes"
2123
  msgstr ""
2124
 
2125
  #: adminpages/orders.php:795 adminpages/orders.php:510
2126
  #: adminpages/orders.php:560 adminpages/orders.php:632
2127
  #: adminpages/orders.php:661 adminpages/orders.php:764
2128
+ #: adminpages/orders.php:795
2129
  msgid "Save Order"
2130
  msgstr ""
2131
 
2132
  #: adminpages/orders.php:831 adminpages/orders.php:667
2133
  #: adminpages/orders.php:696 adminpages/orders.php:800
2134
+ #: adminpages/orders.php:831
2135
  msgid "Email Invoice"
2136
  msgstr ""
2137
 
2138
  #: adminpages/orders.php:834 adminpages/orders.php:670
2139
  #: adminpages/orders.php:699 adminpages/orders.php:803
2140
+ #: adminpages/orders.php:834
2141
  msgid "Send an invoice for this order to: "
2142
  msgstr ""
2143
 
2144
  #: adminpages/orders.php:836 adminpages/orders.php:672
2145
  #: adminpages/orders.php:701 adminpages/orders.php:805
2146
+ #: adminpages/orders.php:836
2147
  msgid "Send Email"
2148
  msgstr ""
2149
 
2151
  #: includes/adminpages.php:172 adminpages/orders.php:520
2152
  #: adminpages/orders.php:570 adminpages/orders.php:677
2153
  #: adminpages/orders.php:706 adminpages/orders.php:810
2154
+ #: adminpages/orders.php:841 includes/adminpages.php:17
2155
+ #: includes/adminpages.php:55 includes/adminpages.php:56
2156
+ #: includes/adminpages.php:84 includes/adminpages.php:156
2157
+ #: includes/adminpages.php:163 includes/adminpages.php:167
2158
+ #: includes/adminpages.php:172
2159
  msgid "Orders"
2160
  msgstr ""
2161
 
2162
  #: adminpages/orders.php:843 adminpages/orders.php:521
2163
  #: adminpages/orders.php:571 adminpages/orders.php:678
2164
  #: adminpages/orders.php:707 adminpages/orders.php:812
2165
+ #: adminpages/orders.php:843
2166
  msgid "Add New Order"
2167
  msgstr ""
2168
 
2169
  #: adminpages/orders.php:883 adminpages/orders.php:606
2170
  #: adminpages/orders.php:713 adminpages/orders.php:742
2171
+ #: adminpages/orders.php:852 adminpages/orders.php:883
2172
  msgid "Within a Date Range"
2173
  msgstr ""
2174
 
2175
  #: adminpages/orders.php:885 adminpages/orders.php:607
2176
  #: adminpages/orders.php:714 adminpages/orders.php:743
2177
+ #: adminpages/orders.php:854 adminpages/orders.php:885
2178
  msgid "Predefined Date Range"
2179
  msgstr ""
2180
 
2181
  #: adminpages/orders.php:887 adminpages/orders.php:608
2182
  #: adminpages/orders.php:715 adminpages/orders.php:744
2183
+ #: adminpages/orders.php:856 adminpages/orders.php:887
2184
  msgid "Within a Level"
2185
  msgstr ""
2186
 
2187
  #: adminpages/orders.php:889 adminpages/orders.php:609
2188
  #: adminpages/orders.php:716 adminpages/orders.php:745
2189
+ #: adminpages/orders.php:858 adminpages/orders.php:889
2190
  msgid "Within a Status"
2191
  msgstr ""
2192
 
2193
  #: adminpages/orders.php:892 adminpages/orders.php:612
2194
  #: adminpages/orders.php:719 adminpages/orders.php:748
2195
+ #: adminpages/orders.php:861 adminpages/orders.php:892
2196
  msgid "From"
2197
  msgstr ""
2198
 
2199
  #: adminpages/orders.php:907 adminpages/orders.php:624
2200
  #: adminpages/orders.php:731 adminpages/orders.php:760
2201
+ #: adminpages/orders.php:876 adminpages/orders.php:907
2202
  msgid "To"
2203
  msgstr ""
2204
 
2205
  #: adminpages/orders.php:920 adminpages/orders.php:636
2206
  #: adminpages/orders.php:743 adminpages/orders.php:772
2207
+ #: adminpages/orders.php:889 adminpages/orders.php:920
2208
  msgid "filter by "
2209
  msgstr ""
2210
 
2211
  #: adminpages/orders.php:963 adminpages/orders.php:674
2212
  #: adminpages/orders.php:780 adminpages/orders.php:809
2213
+ #: adminpages/orders.php:932 adminpages/orders.php:963
2214
  msgid "Filter"
2215
  msgstr ""
2216
 
2220
  #: adminpages/orders.php:883 adminpages/orders.php:886
2221
  #: adminpages/orders.php:912 adminpages/orders.php:915
2222
  #: adminpages/orders.php:1029 adminpages/orders.php:1032
2223
+ #: adminpages/orders.php:1060 adminpages/orders.php:1063
2224
  msgid "Search Orders"
2225
  msgstr ""
2226
 
2227
  #: adminpages/orders.php:1127 adminpages/orders.php:590
2228
  #: adminpages/orders.php:893 adminpages/orders.php:903
2229
  #: adminpages/orders.php:930 adminpages/orders.php:959
2230
+ #: adminpages/orders.php:1096 adminpages/orders.php:1127
2231
  #, php-format
2232
  msgid "%d orders found."
2233
  msgstr ""
2237
  #: adminpages/orders.php:599 adminpages/orders.php:902
2238
  #: adminpages/orders.php:912 adminpages/orders.php:939
2239
  #: adminpages/orders.php:968 adminpages/orders.php:1105
2240
+ #: adminpages/orders.php:1136 adminpages/paymentsettings.php:211
2241
+ #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
2242
+ #: adminpages/reports/login.php:141 adminpages/reports/login.php:143
2243
+ #: adminpages/reports/login.php:159
2244
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
2245
  msgid "User"
2246
  msgstr ""
2247
 
2248
  #: adminpages/orders.php:1138 includes/init.php:243 includes/profile.php:27
2249
+ #: pages/checkout.php:42 pages/confirmation.php:53 pages/confirmation.php:70
2250
+ #: pages/confirmation.php:116 pages/invoice.php:28 pages/invoice.php:51
2251
  #: adminpages/orders.php:601 adminpages/orders.php:904
2252
  #: adminpages/orders.php:914 adminpages/orders.php:941
2253
+ #: adminpages/orders.php:970 adminpages/orders.php:1107
2254
+ #: adminpages/orders.php:1138 includes/init.php:214 includes/init.php:217
2255
+ #: includes/init.php:218 includes/init.php:220 includes/init.php:222
2256
+ #: includes/init.php:230 includes/init.php:238 includes/init.php:243
2257
+ #: includes/profile.php:25 includes/profile.php:27 pages/checkout.php:33
2258
+ #: pages/checkout.php:34 pages/checkout.php:35 pages/checkout.php:42
2259
+ #: pages/confirmation.php:46 pages/confirmation.php:47
2260
  #: pages/confirmation.php:62 pages/confirmation.php:64
2261
  #: pages/confirmation.php:103 pages/confirmation.php:105 pages/invoice.php:27
2262
  #: pages/invoice.php:28 pages/invoice.php:49 pages/invoice.php:51
2269
  #: adminpages/orders.php:943 adminpages/orders.php:954
2270
  #: adminpages/orders.php:972 adminpages/orders.php:982
2271
  #: adminpages/orders.php:1011 adminpages/orders.php:1040
2272
+ #: adminpages/orders.php:1109 adminpages/orders.php:1140
2273
+ #: adminpages/orders.php:1186 adminpages/orders.php:1220
2274
  msgid "Payment"
2275
  msgstr ""
2276
 
2277
  #: adminpages/orders.php:1142 adminpages/orders.php:605
2278
  #: adminpages/orders.php:908 adminpages/orders.php:918
2279
  #: adminpages/orders.php:945 adminpages/orders.php:974
2280
+ #: adminpages/orders.php:1111 adminpages/orders.php:1142
2281
  msgid "Transaction IDs"
2282
  msgstr ""
2283
 
2284
  #: adminpages/orders.php:1172 adminpages/orders.php:630
2285
  #: adminpages/orders.php:933 adminpages/orders.php:943
2286
  #: adminpages/orders.php:972 adminpages/orders.php:1001
2287
+ #: adminpages/orders.php:1141 adminpages/orders.php:1172
2288
  msgid "deleted"
2289
  msgstr ""
2290
 
2292
  #: adminpages/orders.php:956 adminpages/orders.php:974
2293
  #: adminpages/orders.php:984 adminpages/orders.php:1013
2294
  #: adminpages/orders.php:1042 adminpages/orders.php:1192
2295
+ #: adminpages/orders.php:1226
2296
  msgid "Subscription"
2297
  msgstr ""
2298
 
2300
  #: adminpages/orders.php:967 adminpages/orders.php:985
2301
  #: adminpages/orders.php:995 adminpages/orders.php:998
2302
  #: adminpages/orders.php:1027 adminpages/orders.php:1056
2303
+ #: adminpages/orders.php:1211 adminpages/orders.php:1245
2304
  #, php-format
2305
  msgid ""
2306
  "Deleting orders is permanent and can affect active users. Are you sure you "
2309
 
2310
  #: adminpages/orders.php:1249 adminpages/orders.php:1030
2311
  #: adminpages/orders.php:1059 adminpages/orders.php:1215
2312
+ #: adminpages/orders.php:1249
2313
  msgid "print"
2314
  msgstr ""
2315
 
2316
  #: adminpages/orders.php:1253 adminpages/orders.php:1033
2317
  #: adminpages/orders.php:1062 adminpages/orders.php:1219
2318
+ #: adminpages/orders.php:1253
2319
  msgid "email"
2320
  msgstr ""
2321
 
2323
  #: adminpages/orders.php:977 adminpages/orders.php:995
2324
  #: adminpages/orders.php:1005 adminpages/orders.php:1008
2325
  #: adminpages/orders.php:1043 adminpages/orders.php:1072
2326
+ #: adminpages/orders.php:1228 adminpages/orders.php:1262
2327
  msgid "No orders found."
2328
  msgstr ""
2329
 
2580
  msgid "Sales Tax"
2581
  msgstr ""
2582
 
2583
+ #: adminpages/paymentsettings.php:188 pages/billing.php:100
2584
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2585
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2586
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
2587
  #: pages/billing.php:82 pages/billing.php:91 pages/billing.php:94
2588
+ #: pages/billing.php:96
2589
  msgid "optional"
2590
  msgstr ""
2591
 
2949
  msgid "Update complete."
2950
  msgstr ""
2951
 
2952
+ #: classes/class.memberorder.php:716 classes/class.memberorder.php:553
2953
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2954
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2955
  #: classes/class.memberorder.php:697 classes/class.memberorder.php:699
2973
  msgid "Your membership at %s has been CANCELLED"
2974
  msgstr ""
2975
 
2976
+ #: classes/class.pmproemail.php:166 classes/class.pmproemail.php:142
2977
  #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
2978
  #: classes/class.pmproemail.php:156
2979
  #, php-format
2980
  msgid "Membership for %s at %s has been CANCELLED"
2981
  msgstr ""
2982
 
2983
+ #: classes/class.pmproemail.php:207 classes/class.pmproemail.php:172
2984
  #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2985
  #: classes/class.pmproemail.php:178 classes/class.pmproemail.php:187
2986
  #, php-format
2987
  msgid "Your membership confirmation for %s"
2988
  msgstr ""
2989
 
2990
+ #: classes/class.pmproemail.php:260 classes/class.pmproemail.php:269
2991
+ #: classes/class.pmproemail.php:278 classes/class.pmproemail.php:357
2992
+ #: classes/class.pmproemail.php:366 classes/class.pmproemail.php:679
2993
  #: classes/gateways/class.pmprogateway_braintree.php:368
2994
+ #: classes/gateways/class.pmprogateway_stripe.php:562 pages/checkout.php:83
2995
+ #: pages/checkout.php:93 pages/checkout.php:619 pages/confirmation.php:58
2996
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2997
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2998
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
3019
  #: classes/gateways/class.pmprogateway_stripe.php:510
3020
  #: classes/gateways/class.pmprogateway_stripe.php:536
3021
  #: classes/gateways/class.pmprogateway_stripe.php:540
3022
+ #: classes/gateways/class.pmprogateway_stripe.php:541
3023
+ #: classes/gateways/class.pmprogateway_stripe.php:544 pages/checkout.php:66
3024
  #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
3025
  #: pages/checkout.php:76 pages/checkout.php:77 pages/checkout.php:78
3026
  #: pages/checkout.php:85 pages/checkout.php:86 pages/checkout.php:549
3031
  msgid "Discount Code"
3032
  msgstr ""
3033
 
3034
+ #: classes/class.pmproemail.php:285 classes/class.pmproemail.php:378
3035
+ #: classes/class.pmproemail.php:685 classes/class.pmproemail.php:241
3036
  #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
3037
  #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
3038
  #: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
3045
  msgid "This membership will expire on %s."
3046
  msgstr ""
3047
 
3048
+ #: classes/class.pmproemail.php:307 classes/class.pmproemail.php:263
3049
  #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
3050
  #: classes/class.pmproemail.php:278 classes/class.pmproemail.php:287
3051
  #, php-format
3052
  msgid "Member Checkout for %s at %s"
3053
  msgstr ""
3054
 
3055
+ #: classes/class.pmproemail.php:395 classes/class.pmproemail.php:375
3056
  #, php-format
3057
  msgid "Your billing information has been updated at %s"
3058
  msgstr ""
3059
 
3060
+ #: classes/class.pmproemail.php:448 classes/class.pmproemail.php:428
3061
  #, php-format
3062
  msgid "Billing information has been updated for %s at %s"
3063
  msgstr ""
3064
 
3065
+ #: classes/class.pmproemail.php:496 classes/class.pmproemail.php:425
3066
  #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
3067
  #: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
3068
  #, php-format
3069
  msgid "Membership Payment Failed at %s"
3070
  msgstr ""
3071
 
3072
+ #: classes/class.pmproemail.php:542 classes/class.pmproemail.php:462
3073
  #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
3074
  #: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
3075
  #, php-format
3076
  msgid "Membership Payment Failed For %s at %s"
3077
  msgstr ""
3078
 
3079
+ #: classes/class.pmproemail.php:589 classes/class.pmproemail.php:508
3080
  #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
3081
  #: classes/class.pmproemail.php:569
3082
  #, php-format
3083
  msgid "Credit Card on File Expiring Soon at %s"
3084
  msgstr ""
3085
 
3086
+ #: classes/class.pmproemail.php:639 classes/class.pmproemail.php:501
3087
  #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
3088
  #: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
3089
  #: classes/class.pmproemail.php:619
3091
  msgid "INVOICE for %s membership"
3092
  msgstr ""
3093
 
3094
+ #: classes/class.pmproemail.php:710 classes/class.pmproemail.php:563
3095
  #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
3096
  #: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
3097
  #: classes/class.pmproemail.php:690
3099
  msgid "Your trial at %s is ending soon"
3100
  msgstr ""
3101
 
3102
+ #: classes/class.pmproemail.php:744 classes/class.pmproemail.php:596
3103
  #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
3104
  #: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
3105
  #: classes/class.pmproemail.php:724
3107
  msgid "Your membership at %s has ended"
3108
  msgstr ""
3109
 
3110
+ #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:621
3111
  #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
3112
  #: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
3113
  #: classes/class.pmproemail.php:749
3115
  msgid "Your membership at %s will end soon"
3116
  msgstr ""
3117
 
3118
+ #: classes/class.pmproemail.php:789 classes/class.pmproemail.php:641
3119
  #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
3120
  #: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
3121
  #: classes/class.pmproemail.php:769
3123
  msgid "Your membership at %s has been changed"
3124
  msgstr ""
3125
 
3126
+ #: classes/class.pmproemail.php:793 classes/class.pmproemail.php:830
3127
  #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
3128
  #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
3129
  #: classes/class.pmproemail.php:800 classes/class.pmproemail.php:809
3132
  msgid "The new level is %s"
3133
  msgstr ""
3134
 
3135
+ #: classes/class.pmproemail.php:795 classes/class.pmproemail.php:647
3136
  #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
3137
  #: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
3138
  #: classes/class.pmproemail.php:775
3139
  msgid "Your membership has been cancelled"
3140
  msgstr ""
3141
 
3142
+ #: classes/class.pmproemail.php:798 classes/class.pmproemail.php:836
3143
  #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
3144
  #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
3145
  #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
3151
  msgid "This membership will expire on %s"
3152
  msgstr ""
3153
 
3154
+ #: classes/class.pmproemail.php:802 classes/class.pmproemail.php:840
3155
  #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
3156
  #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
3157
  #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
3162
  msgid "This membership does not expire"
3163
  msgstr ""
3164
 
3165
+ #: classes/class.pmproemail.php:826 classes/class.pmproemail.php:679
3166
  #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
3167
  #: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
3168
  #: classes/class.pmproemail.php:806 classes/class.pmproemail.php:807
3170
  msgid "Membership for %s at %s has been changed"
3171
  msgstr ""
3172
 
3173
+ #: classes/class.pmproemail.php:832 classes/class.pmproemail.php:799
3174
  #: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
3175
  #: classes/class.pmproemail.php:812 classes/class.pmproemail.php:813
3176
  msgid "Membership has been cancelled"
3177
  msgstr ""
3178
 
3179
+ #: classes/class.pmproemail.php:869 classes/class.pmproemail.php:848
3180
  #: classes/class.pmproemail.php:849 classes/class.pmproemail.php:850
3181
  msgid "Invoice for Order #: "
3182
  msgstr ""
3192
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
3193
  #: classes/gateways/class.pmprogateway_check.php:60
3194
  #: classes/gateways/class.pmprogateway_check.php:193
3195
+ #: classes/gateways/class.pmprogateway_check.php:210
3196
  #: classes/gateways/class.pmprogateway_cybersource.php:57
3197
  #: classes/gateways/class.pmprogateway_cybersource.php:171
3198
  #: classes/gateways/class.pmprogateway_payflowpro.php:27
3200
  #: classes/gateways/class.pmprogateway_paypal.php:27
3201
  #: classes/gateways/class.pmprogateway_paypal.php:247
3202
  #: classes/gateways/class.pmprogateway_paypal.php:249
3203
+ #: classes/gateways/class.pmprogateway_paypal.php:272
3204
  msgid "Unknown error: Authorization failed."
3205
  msgstr ""
3206
 
3235
  #: classes/gateways/class.pmprogateway_check.php:245
3236
  #: classes/gateways/class.pmprogateway_check.php:249
3237
  #: classes/gateways/class.pmprogateway_check.php:250
3238
+ #: classes/gateways/class.pmprogateway_check.php:262
3239
  #: classes/gateways/class.pmprogateway_check.php:267
3240
  #: classes/gateways/class.pmprogateway_check.php:268
3241
+ #: classes/gateways/class.pmprogateway_check.php:285
3242
  #: classes/gateways/class.pmprogateway_cybersource.php:108
3243
  #: classes/gateways/class.pmprogateway_cybersource.php:113
3244
  #: classes/gateways/class.pmprogateway_cybersource.php:131
3252
  #: classes/gateways/class.pmprogateway_paypal.php:50
3253
  #: classes/gateways/class.pmprogateway_paypal.php:270
3254
  #: classes/gateways/class.pmprogateway_paypal.php:272
3255
+ #: classes/gateways/class.pmprogateway_paypal.php:295
3256
  msgid "Unknown error: Payment failed."
3257
  msgstr ""
3258
 
3266
  #: classes/gateways/class.pmprogateway_check.php:118
3267
  #: classes/gateways/class.pmprogateway_check.php:251
3268
  #: classes/gateways/class.pmprogateway_check.php:252
3269
+ #: classes/gateways/class.pmprogateway_check.php:269
3270
  #: classes/gateways/class.pmprogateway_cybersource.php:115
3271
  #: classes/gateways/class.pmprogateway_cybersource.php:229
3272
  msgid ""
3275
  msgstr ""
3276
 
3277
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3278
+ #: paid-memberships-pro.php:135
3279
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3280
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
3281
  #: paid-memberships-pro.php:130 paid-memberships-pro.php:131
3331
  msgstr ""
3332
 
3333
  #: classes/gateways/class.pmprogateway_braintree.php:77
3334
+ #: paid-memberships-pro.php:136
3335
  #: classes/gateways/class.pmprogateway_braintree.php:63
3336
  #: classes/gateways/class.pmprogateway_braintree.php:76
3337
+ #: classes/gateways/class.pmprogateway_braintree.php:77
3338
  #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
3339
  #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
3340
  #: paid-memberships-pro.php:133 paid-memberships-pro.php:134
3344
  #: classes/gateways/class.pmprogateway_braintree.php:133
3345
  #: classes/gateways/class.pmprogateway_braintree.php:119
3346
  #: classes/gateways/class.pmprogateway_braintree.php:132
3347
+ #: classes/gateways/class.pmprogateway_braintree.php:133
3348
  msgid "Braintree Settings"
3349
  msgstr ""
3350
 
3355
  #: adminpages/paymentsettings.php:369
3356
  #: classes/gateways/class.pmprogateway_braintree.php:124
3357
  #: classes/gateways/class.pmprogateway_braintree.php:137
3358
+ #: classes/gateways/class.pmprogateway_braintree.php:138
3359
  #: classes/gateways/class.pmprogateway_cybersource.php:106
3360
  msgid "Merchant ID"
3361
  msgstr ""
3365
  #: adminpages/paymentsettings.php:311
3366
  #: classes/gateways/class.pmprogateway_braintree.php:132
3367
  #: classes/gateways/class.pmprogateway_braintree.php:145
3368
+ #: classes/gateways/class.pmprogateway_braintree.php:146
3369
  msgid "Public Key"
3370
  msgstr ""
3371
 
3374
  #: adminpages/paymentsettings.php:319
3375
  #: classes/gateways/class.pmprogateway_braintree.php:140
3376
  #: classes/gateways/class.pmprogateway_braintree.php:153
3377
+ #: classes/gateways/class.pmprogateway_braintree.php:154
3378
  msgid "Private Key"
3379
  msgstr ""
3380
 
3383
  #: adminpages/paymentsettings.php:327
3384
  #: classes/gateways/class.pmprogateway_braintree.php:148
3385
  #: classes/gateways/class.pmprogateway_braintree.php:161
3386
+ #: classes/gateways/class.pmprogateway_braintree.php:162
3387
  msgid "Client-Side Encryption Key"
3388
  msgstr ""
3389
 
3395
  #: adminpages/paymentsettings.php:519
3396
  #: classes/gateways/class.pmprogateway_braintree.php:156
3397
  #: classes/gateways/class.pmprogateway_braintree.php:169
3398
+ #: classes/gateways/class.pmprogateway_braintree.php:170
3399
  #: classes/gateways/class.pmprogateway_stripe.php:181
3400
  #: classes/gateways/class.pmprogateway_stripe.php:182
3401
  #: classes/gateways/class.pmprogateway_stripe.php:192
3402
  #: classes/gateways/class.pmprogateway_stripe.php:214
3403
  #: classes/gateways/class.pmprogateway_stripe.php:216
3404
+ #: classes/gateways/class.pmprogateway_stripe.php:217
3405
  msgid "Web Hook URL"
3406
  msgstr ""
3407
 
3410
  #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
3411
  #: classes/gateways/class.pmprogateway_braintree.php:160
3412
  #: classes/gateways/class.pmprogateway_braintree.php:173
3413
+ #: classes/gateways/class.pmprogateway_braintree.php:174
3414
  msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
3415
  msgstr ""
3416
 
3417
  #: classes/gateways/class.pmprogateway_braintree.php:287
3418
+ #: classes/gateways/class.pmprogateway_stripe.php:450 pages/checkout.php:510
3419
  #: classes/gateways/class.pmprogateway_braintree.php:270
3420
  #: classes/gateways/class.pmprogateway_braintree.php:283
3421
  #: classes/gateways/class.pmprogateway_braintree.php:285
3422
  #: classes/gateways/class.pmprogateway_braintree.php:286
3423
+ #: classes/gateways/class.pmprogateway_braintree.php:287
3424
  #: classes/gateways/class.pmprogateway_stripe.php:387
3425
  #: classes/gateways/class.pmprogateway_stripe.php:388
3426
  #: classes/gateways/class.pmprogateway_stripe.php:398
3427
  #: classes/gateways/class.pmprogateway_stripe.php:402
3428
  #: classes/gateways/class.pmprogateway_stripe.php:426
3429
  #: classes/gateways/class.pmprogateway_stripe.php:427
3430
+ #: classes/gateways/class.pmprogateway_stripe.php:429
3431
+ #: classes/gateways/class.pmprogateway_stripe.php:432 pages/checkout.php:476
3432
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3433
  #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
3434
  #: pages/checkout.php:503
3436
  msgstr ""
3437
 
3438
  #: classes/gateways/class.pmprogateway_braintree.php:288
3439
+ #: classes/gateways/class.pmprogateway_stripe.php:451 pages/checkout.php:511
3440
  #: classes/gateways/class.pmprogateway_braintree.php:270
3441
  #: classes/gateways/class.pmprogateway_braintree.php:283
3442
  #: classes/gateways/class.pmprogateway_braintree.php:285
3443
  #: classes/gateways/class.pmprogateway_braintree.php:287
3444
+ #: classes/gateways/class.pmprogateway_braintree.php:288
3445
  #: classes/gateways/class.pmprogateway_stripe.php:387
3446
  #: classes/gateways/class.pmprogateway_stripe.php:388
3447
  #: classes/gateways/class.pmprogateway_stripe.php:398
3448
  #: classes/gateways/class.pmprogateway_stripe.php:402
3449
  #: classes/gateways/class.pmprogateway_stripe.php:426
3450
  #: classes/gateways/class.pmprogateway_stripe.php:428
3451
+ #: classes/gateways/class.pmprogateway_stripe.php:430
3452
+ #: classes/gateways/class.pmprogateway_stripe.php:433 pages/checkout.php:476
3453
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3454
  #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
3455
  #: pages/checkout.php:504
3458
  msgstr ""
3459
 
3460
  #: classes/gateways/class.pmprogateway_braintree.php:322
3461
+ #: classes/gateways/class.pmprogateway_stripe.php:516 pages/billing.php:314
3462
+ #: pages/checkout.php:577
3463
  #: classes/gateways/class.pmprogateway_braintree.php:303
3464
  #: classes/gateways/class.pmprogateway_braintree.php:316
3465
  #: classes/gateways/class.pmprogateway_braintree.php:318
3466
  #: classes/gateways/class.pmprogateway_braintree.php:321
3467
+ #: classes/gateways/class.pmprogateway_braintree.php:322
3468
  #: classes/gateways/class.pmprogateway_stripe.php:449
3469
  #: classes/gateways/class.pmprogateway_stripe.php:450
3470
  #: classes/gateways/class.pmprogateway_stripe.php:460
3471
  #: classes/gateways/class.pmprogateway_stripe.php:464
3472
  #: classes/gateways/class.pmprogateway_stripe.php:490
3473
  #: classes/gateways/class.pmprogateway_stripe.php:493
3474
+ #: classes/gateways/class.pmprogateway_stripe.php:495
3475
+ #: classes/gateways/class.pmprogateway_stripe.php:498 pages/billing.php:244
3476
  #: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
3477
+ #: pages/billing.php:263 pages/billing.php:305 pages/checkout.php:503
3478
+ #: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
3479
+ #: pages/checkout.php:548 pages/checkout.php:557 pages/checkout.php:566
3480
+ #: pages/checkout.php:570
3481
  msgid "Card Number"
3482
  msgstr ""
3483
 
3484
  #: classes/gateways/class.pmprogateway_braintree.php:359
3485
+ #: classes/gateways/class.pmprogateway_stripe.php:553 pages/billing.php:352
3486
+ #: pages/checkout.php:612
3487
  #: classes/gateways/class.pmprogateway_braintree.php:340
3488
  #: classes/gateways/class.pmprogateway_braintree.php:353
3489
  #: classes/gateways/class.pmprogateway_braintree.php:355
3495
  #: classes/gateways/class.pmprogateway_stripe.php:501
3496
  #: classes/gateways/class.pmprogateway_stripe.php:527
3497
  #: classes/gateways/class.pmprogateway_stripe.php:531
3498
+ #: classes/gateways/class.pmprogateway_stripe.php:532
3499
+ #: classes/gateways/class.pmprogateway_stripe.php:535 pages/billing.php:281
3500
  #: pages/billing.php:285 pages/billing.php:294 pages/billing.php:297
3501
+ #: pages/billing.php:301 pages/billing.php:343 pages/checkout.php:540
3502
+ #: pages/checkout.php:556 pages/checkout.php:557 pages/checkout.php:564
3503
+ #: pages/checkout.php:585 pages/checkout.php:594 pages/checkout.php:603
3504
+ #: pages/checkout.php:605 pages/checkout.php:607 pages/checkout.php:608
3505
  msgid "CVV"
3506
  msgstr ""
3507
 
3508
  #: classes/gateways/class.pmprogateway_braintree.php:360
3509
+ #: classes/gateways/class.pmprogateway_stripe.php:554 pages/billing.php:353
3510
+ #: pages/checkout.php:613
3511
  #: classes/gateways/class.pmprogateway_braintree.php:341
3512
  #: classes/gateways/class.pmprogateway_braintree.php:354
3513
  #: classes/gateways/class.pmprogateway_braintree.php:356
3519
  #: classes/gateways/class.pmprogateway_stripe.php:502
3520
  #: classes/gateways/class.pmprogateway_stripe.php:528
3521
  #: classes/gateways/class.pmprogateway_stripe.php:532
3522
+ #: classes/gateways/class.pmprogateway_stripe.php:533
3523
+ #: classes/gateways/class.pmprogateway_stripe.php:536 pages/billing.php:282
3524
  #: pages/billing.php:286 pages/billing.php:295 pages/billing.php:298
3525
+ #: pages/billing.php:302 pages/billing.php:344 pages/checkout.php:541
3526
+ #: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
3527
+ #: pages/checkout.php:586 pages/checkout.php:595 pages/checkout.php:604
3528
+ #: pages/checkout.php:606 pages/checkout.php:608 pages/checkout.php:609
3529
  msgid "what's this?"
3530
  msgstr ""
3531
 
3532
  #: classes/gateways/class.pmprogateway_braintree.php:370
3533
+ #: classes/gateways/class.pmprogateway_stripe.php:564 pages/checkout.php:95
3534
+ #: pages/checkout.php:621
3535
  #: classes/gateways/class.pmprogateway_braintree.php:351
3536
  #: classes/gateways/class.pmprogateway_braintree.php:364
3537
  #: classes/gateways/class.pmprogateway_braintree.php:366
3543
  #: classes/gateways/class.pmprogateway_stripe.php:512
3544
  #: classes/gateways/class.pmprogateway_stripe.php:538
3545
  #: classes/gateways/class.pmprogateway_stripe.php:542
3546
+ #: classes/gateways/class.pmprogateway_stripe.php:543
3547
+ #: classes/gateways/class.pmprogateway_stripe.php:546 pages/checkout.php:78
3548
  #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3549
  #: pages/checkout.php:88 pages/checkout.php:551 pages/checkout.php:567
3550
  #: pages/checkout.php:568 pages/checkout.php:575 pages/checkout.php:596
3554
  msgstr ""
3555
 
3556
  #: classes/gateways/class.pmprogateway_braintree.php:425
3557
+ #: classes/gateways/class.pmprogateway_stripe.php:1094
3558
  #: classes/gateways/class.pmprogateway_braintree.php:61
3559
  #: classes/gateways/class.pmprogateway_braintree.php:406
3560
  #: classes/gateways/class.pmprogateway_braintree.php:419
3570
  #: classes/gateways/class.pmprogateway_stripe.php:1068
3571
  #: classes/gateways/class.pmprogateway_stripe.php:1072
3572
  #: classes/gateways/class.pmprogateway_stripe.php:1073
3573
+ #: classes/gateways/class.pmprogateway_stripe.php:1076
3574
  msgid "Unknown error: Initial payment failed."
3575
  msgstr ""
3576
 
3690
  msgstr ""
3691
 
3692
  #: classes/gateways/class.pmprogateway_check.php:49
3693
+ #: paid-memberships-pro.php:129 adminpages/orders.php:399
3694
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3695
  #: adminpages/paymentsettings.php:159
3696
  #: classes/gateways/class.pmprogateway_check.php:48
3697
+ #: classes/gateways/class.pmprogateway_check.php:49
3698
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:117
3699
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3700
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
3703
 
3704
  #: classes/gateways/class.pmprogateway_check.php:101
3705
  #: classes/gateways/class.pmprogateway_check.php:100
3706
+ #: classes/gateways/class.pmprogateway_check.php:101
3707
  msgid "Pay by Check Settings"
3708
  msgstr ""
3709
 
3711
  #: adminpages/paymentsettings.php:389 adminpages/paymentsettings.php:415
3712
  #: adminpages/paymentsettings.php:420 adminpages/paymentsettings.php:422
3713
  #: classes/gateways/class.pmprogateway_check.php:105
3714
+ #: classes/gateways/class.pmprogateway_check.php:106
3715
  msgid "Instructions"
3716
  msgstr ""
3717
 
3719
  #: adminpages/paymentsettings.php:393 adminpages/paymentsettings.php:419
3720
  #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:426
3721
  #: classes/gateways/class.pmprogateway_check.php:109
3722
+ #: classes/gateways/class.pmprogateway_check.php:110
3723
  msgid ""
3724
  "Who to write the check out to. Where to mail it. Shown on checkout, "
3725
  "confirmation, and invoice pages."
3776
  msgstr ""
3777
 
3778
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3779
+ #: pages/checkout.php:200 adminpages/paymentsettings.php:219
3780
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3781
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3782
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
3804
  #: classes/gateways/class.pmprogateway_paypal.php:57
3805
  #: classes/gateways/class.pmprogateway_paypal.php:277
3806
  #: classes/gateways/class.pmprogateway_paypal.php:279
3807
+ #: classes/gateways/class.pmprogateway_paypal.php:302
3808
  msgid ""
3809
  "A partial payment was made that we could not refund. Please contact the site "
3810
  "owner immediately to correct this."
3811
  msgstr ""
3812
 
3813
  #: classes/gateways/class.pmprogateway_paypal.php:68
3814
+ #: paid-memberships-pro.php:132
3815
  #: classes/gateways/class.pmprogateway_paypal.php:57
3816
+ #: classes/gateways/class.pmprogateway_paypal.php:68
3817
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
3818
  #: paid-memberships-pro.php:127 paid-memberships-pro.php:128
3819
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
3824
  #: classes/gateways/class.pmprogateway_paypalexpress.php:140
3825
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3826
  #: classes/gateways/class.pmprogateway_paypal.php:113
3827
+ #: classes/gateways/class.pmprogateway_paypal.php:125
3828
  #: classes/gateways/class.pmprogateway_paypalexpress.php:118
3829
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3830
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:140
3831
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3832
  msgid "PayPal Settings"
3833
  msgstr ""
3837
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3838
  #: adminpages/paymentsettings.php:179
3839
  #: classes/gateways/class.pmprogateway_paypal.php:118
3840
+ #: classes/gateways/class.pmprogateway_paypal.php:130
3841
  #: classes/gateways/class.pmprogateway_paypalexpress.php:123
3842
  #: classes/gateways/class.pmprogateway_paypalexpress.php:133
3843
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:145
3844
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3845
  msgid ""
3846
  "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
3856
  #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3857
  #: adminpages/paymentsettings.php:236
3858
  #: classes/gateways/class.pmprogateway_paypal.php:123
3859
+ #: classes/gateways/class.pmprogateway_paypal.php:135
3860
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3861
  #: classes/gateways/class.pmprogateway_paypalexpress.php:138
3862
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:150
3863
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3864
  msgid "Gateway Account Email"
3865
  msgstr ""
3872
  #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
3873
  #: adminpages/paymentsettings.php:336
3874
  #: classes/gateways/class.pmprogateway_paypal.php:131
3875
+ #: classes/gateways/class.pmprogateway_paypal.php:143
3876
  #: classes/gateways/class.pmprogateway_paypalexpress.php:136
3877
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3878
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:158
3879
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3880
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
3881
  #: classes/gateways/class.pmprogateway_twocheckout.php:119
3891
  #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
3892
  #: adminpages/paymentsettings.php:344
3893
  #: classes/gateways/class.pmprogateway_paypal.php:139
3894
+ #: classes/gateways/class.pmprogateway_paypal.php:151
3895
  #: classes/gateways/class.pmprogateway_paypalexpress.php:144
3896
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3897
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:166
3898
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3899
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3900
  #: classes/gateways/class.pmprogateway_twocheckout.php:128
3908
  #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3909
  #: adminpages/paymentsettings.php:260
3910
  #: classes/gateways/class.pmprogateway_paypal.php:147
3911
+ #: classes/gateways/class.pmprogateway_paypal.php:159
3912
  #: classes/gateways/class.pmprogateway_paypalexpress.php:152
3913
  #: classes/gateways/class.pmprogateway_paypalexpress.php:162
3914
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:174
3915
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3916
  msgid "API Signature"
3917
  msgstr ""
3918
 
3919
+ #: classes/gateways/class.pmprogateway_paypal.php:167
3920
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:182
3921
  #: classes/gateways/class.pmprogateway_paypal.php:167
3922
  #: classes/gateways/class.pmprogateway_paypalexpress.php:182
3923
  msgid "Confirmation Step"
3929
  #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3930
  #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
3931
  #: classes/gateways/class.pmprogateway_paypal.php:155
3932
+ #: classes/gateways/class.pmprogateway_paypal.php:178
3933
  #: classes/gateways/class.pmprogateway_paypalexpress.php:160
3934
  #: classes/gateways/class.pmprogateway_paypalexpress.php:170
3935
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:193
3936
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3937
  msgid "IPN Handler URL"
3938
  msgstr ""
3939
 
3940
  #: classes/gateways/class.pmprogateway_paypal.php:181
3941
  #: classes/gateways/class.pmprogateway_paypal.php:158
3942
+ #: classes/gateways/class.pmprogateway_paypal.php:181
3943
  msgid ""
3944
  "This URL is passed to PayPal for all new charges and subscriptions. You "
3945
  "SHOULD NOT set this in your PayPal account settings."
3948
  #: classes/gateways/class.pmprogateway_paypal.php:201
3949
  #: classes/gateways/class.pmprogateway_paypalexpress.php:438
3950
  #: classes/gateways/class.pmprogateway_paypalstandard.php:201
3951
+ #: pages/checkout.php:309 classes/gateways/class.pmprogateway_paypal.php:178
3952
+ #: classes/gateways/class.pmprogateway_paypal.php:201
3953
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3954
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3955
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:438
3956
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:201
3957
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3958
  #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3959
  #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:309
3965
  #: classes/gateways/class.pmprogateway_paypal.php:207
3966
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
3967
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
3968
+ #: pages/checkout.php:725 classes/gateways/class.pmprogateway_paypal.php:184
3969
+ #: classes/gateways/class.pmprogateway_paypal.php:207
3970
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3971
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3972
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:443
3973
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:206
3974
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3975
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3976
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3977
+ #: pages/checkout.php:718 pages/checkout.php:722 pages/checkout.php:724
3978
+ #: pages/checkout.php:728 pages/checkout.php:729
3979
  msgid "Submit and Check Out"
3980
  msgstr ""
3981
 
3983
  #: classes/gateways/class.pmprogateway_paypalexpress.php:443
3984
  #: classes/gateways/class.pmprogateway_paypalstandard.php:206
3985
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
3986
+ #: pages/checkout.php:725 classes/gateways/class.pmprogateway_paypal.php:184
3987
+ #: classes/gateways/class.pmprogateway_paypal.php:207
3988
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3989
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3990
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:443
3991
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:206
3992
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3993
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
3994
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
3995
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3996
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3997
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3998
+ #: pages/checkout.php:718 pages/checkout.php:722 pages/checkout.php:724
3999
+ #: pages/checkout.php:728 pages/checkout.php:729
4000
  msgid "Submit and Confirm"
4001
  msgstr ""
4002
 
4007
  #: classes/gateways/class.pmprogateway_paypal.php:605
4008
  #: classes/gateways/class.pmprogateway_paypal.php:607
4009
  #: classes/gateways/class.pmprogateway_paypal.php:608
4010
+ #: classes/gateways/class.pmprogateway_paypal.php:631
4011
  #: classes/gateways/class.pmprogateway_paypalexpress.php:301
4012
  #: classes/gateways/class.pmprogateway_paypalexpress.php:303
4013
  #: classes/gateways/class.pmprogateway_paypalexpress.php:305
4015
  #: classes/gateways/class.pmprogateway_paypalexpress.php:740
4016
  #: classes/gateways/class.pmprogateway_paypalexpress.php:750
4017
  #: classes/gateways/class.pmprogateway_paypalexpress.php:752
4018
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:777
4019
  #: classes/gateways/class.pmprogateway_paypalstandard.php:216
4020
  #: classes/gateways/class.pmprogateway_paypalstandard.php:220
4021
  #: classes/gateways/class.pmprogateway_paypalstandard.php:230
4022
  #: classes/gateways/class.pmprogateway_paypalstandard.php:231
4023
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:464
4024
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
4025
  msgid ""
4026
  "Please contact the site owner or cancel your subscription from within PayPal "
4028
  msgstr ""
4029
 
4030
  #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4031
+ #: paid-memberships-pro.php:131
4032
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
4033
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
4034
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:84
4035
  #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
4036
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
4037
  #: paid-memberships-pro.php:128 paid-memberships-pro.php:129
4043
  #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
4044
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
4045
  #: classes/gateways/class.pmprogateway_paypalexpress.php:173
4046
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
4047
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
4048
  msgstr ""
4049
 
4051
  #: classes/gateways/class.pmprogateway_paypalexpress.php:357
4052
  #: classes/gateways/class.pmprogateway_paypalexpress.php:268
4053
  #: classes/gateways/class.pmprogateway_paypalexpress.php:278
4054
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:301
4055
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
4056
  #: classes/gateways/class.pmprogateway_paypalexpress.php:330
4057
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:357
4058
  #: preheaders/checkout.php:690 preheaders/checkout.php:697
4059
  #: preheaders/checkout.php:702 preheaders/checkout.php:735
4060
  #: preheaders/checkout.php:750 preheaders/checkout.php:753
4065
  msgstr ""
4066
 
4067
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4068
+ #: paid-memberships-pro.php:134
4069
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
4070
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
4071
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
4090
  msgstr ""
4091
 
4092
  #: classes/gateways/class.pmprogateway_stripe.php:129
4093
+ #: paid-memberships-pro.php:130
4094
  #: classes/gateways/class.pmprogateway_stripe.php:93
4095
  #: classes/gateways/class.pmprogateway_stripe.php:94
4096
  #: classes/gateways/class.pmprogateway_stripe.php:104
4097
  #: classes/gateways/class.pmprogateway_stripe.php:126
4098
  #: classes/gateways/class.pmprogateway_stripe.php:128
4099
+ #: classes/gateways/class.pmprogateway_stripe.php:129
4100
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
4101
  #: paid-memberships-pro.php:125 paid-memberships-pro.php:126
4102
  #: paid-memberships-pro.php:127 paid-memberships-pro.php:128
4109
  #: classes/gateways/class.pmprogateway_stripe.php:159
4110
  #: classes/gateways/class.pmprogateway_stripe.php:181
4111
  #: classes/gateways/class.pmprogateway_stripe.php:183
4112
+ #: classes/gateways/class.pmprogateway_stripe.php:184
4113
  msgid "Stripe Settings"
4114
  msgstr ""
4115
 
4121
  #: classes/gateways/class.pmprogateway_stripe.php:164
4122
  #: classes/gateways/class.pmprogateway_stripe.php:186
4123
  #: classes/gateways/class.pmprogateway_stripe.php:188
4124
+ #: classes/gateways/class.pmprogateway_stripe.php:189
4125
  msgid "Secret Key"
4126
  msgstr ""
4127
 
4133
  #: classes/gateways/class.pmprogateway_stripe.php:172
4134
  #: classes/gateways/class.pmprogateway_stripe.php:194
4135
  #: classes/gateways/class.pmprogateway_stripe.php:196
4136
+ #: classes/gateways/class.pmprogateway_stripe.php:197
4137
  msgid "Publishable Key"
4138
  msgstr ""
4139
 
4145
  #: classes/gateways/class.pmprogateway_stripe.php:180
4146
  #: classes/gateways/class.pmprogateway_stripe.php:202
4147
  #: classes/gateways/class.pmprogateway_stripe.php:204
4148
+ #: classes/gateways/class.pmprogateway_stripe.php:205
4149
  msgid "Show Billing Address Fields"
4150
  msgstr ""
4151
 
4156
  #: classes/gateways/class.pmprogateway_stripe.php:187
4157
  #: classes/gateways/class.pmprogateway_stripe.php:209
4158
  #: classes/gateways/class.pmprogateway_stripe.php:211
4159
+ #: classes/gateways/class.pmprogateway_stripe.php:212
4160
  msgid ""
4161
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
4162
  "the checkout page.<br /><strong>If No, make sure you disable address "
4171
  #: classes/gateways/class.pmprogateway_stripe.php:195
4172
  #: classes/gateways/class.pmprogateway_stripe.php:217
4173
  #: classes/gateways/class.pmprogateway_stripe.php:219
4174
+ #: classes/gateways/class.pmprogateway_stripe.php:220
4175
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
4176
  msgstr ""
4177
 
4178
+ #: classes/gateways/class.pmprogateway_stripe.php:634
4179
  #: classes/gateways/class.pmprogateway_stripe.php:567
4180
  #: classes/gateways/class.pmprogateway_stripe.php:568
4181
  #: classes/gateways/class.pmprogateway_stripe.php:578
4183
  #: classes/gateways/class.pmprogateway_stripe.php:608
4184
  #: classes/gateways/class.pmprogateway_stripe.php:612
4185
  #: classes/gateways/class.pmprogateway_stripe.php:613
4186
+ #: classes/gateways/class.pmprogateway_stripe.php:616
4187
  msgid "Subscription Updates"
4188
  msgstr ""
4189
 
4190
+ #: classes/gateways/class.pmprogateway_stripe.php:638
4191
  #: classes/gateways/class.pmprogateway_stripe.php:571
4192
  #: classes/gateways/class.pmprogateway_stripe.php:572
4193
  #: classes/gateways/class.pmprogateway_stripe.php:582
4195
  #: classes/gateways/class.pmprogateway_stripe.php:612
4196
  #: classes/gateways/class.pmprogateway_stripe.php:616
4197
  #: classes/gateways/class.pmprogateway_stripe.php:617
4198
+ #: classes/gateways/class.pmprogateway_stripe.php:620
4199
  msgid ""
4200
  "Subscription updates, allow you to change the member's subscription values "
4201
  "at predefined times. Be sure to click Update Profile after making changes."
4202
  msgstr ""
4203
 
4204
+ #: classes/gateways/class.pmprogateway_stripe.php:640
4205
  #: classes/gateways/class.pmprogateway_stripe.php:573
4206
  #: classes/gateways/class.pmprogateway_stripe.php:574
4207
  #: classes/gateways/class.pmprogateway_stripe.php:584
4209
  #: classes/gateways/class.pmprogateway_stripe.php:614
4210
  #: classes/gateways/class.pmprogateway_stripe.php:618
4211
  #: classes/gateways/class.pmprogateway_stripe.php:619
4212
+ #: classes/gateways/class.pmprogateway_stripe.php:622
4213
  msgid ""
4214
  "Subscription updates, allow you to change the member's subscription values "
4215
  "at predefined times. Be sure to click Update User after making changes."
4216
  msgstr ""
4217
 
4218
+ #: classes/gateways/class.pmprogateway_stripe.php:645 pages/billing.php:400
4219
  #: classes/gateways/class.pmprogateway_stripe.php:578
4220
  #: classes/gateways/class.pmprogateway_stripe.php:579
4221
  #: classes/gateways/class.pmprogateway_stripe.php:589
4222
  #: classes/gateways/class.pmprogateway_stripe.php:593
4223
  #: classes/gateways/class.pmprogateway_stripe.php:619
4224
  #: classes/gateways/class.pmprogateway_stripe.php:623
4225
+ #: classes/gateways/class.pmprogateway_stripe.php:624
4226
+ #: classes/gateways/class.pmprogateway_stripe.php:627 pages/billing.php:294
4227
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
4228
  #: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
4229
+ #: pages/billing.php:391
4230
  msgid "Update"
4231
  msgstr ""
4232
 
4233
+ #: classes/gateways/class.pmprogateway_stripe.php:838
4234
  #: classes/gateways/class.pmprogateway_stripe.php:769
4235
  #: classes/gateways/class.pmprogateway_stripe.php:770
4236
  #: classes/gateways/class.pmprogateway_stripe.php:780
4238
  #: classes/gateways/class.pmprogateway_stripe.php:812
4239
  #: classes/gateways/class.pmprogateway_stripe.php:816
4240
  #: classes/gateways/class.pmprogateway_stripe.php:817
4241
+ #: classes/gateways/class.pmprogateway_stripe.php:820
4242
  msgid "Could not cancel the old subscription. Updates have not been processed."
4243
  msgstr ""
4244
 
4245
+ #: classes/gateways/class.pmprogateway_stripe.php:1326
4246
  #: classes/gateways/class.pmprogateway_stripe.php:190
4247
  #: classes/gateways/class.pmprogateway_stripe.php:192
4248
  #: classes/gateways/class.pmprogateway_stripe.php:199
4258
  #: classes/gateways/class.pmprogateway_stripe.php:1256
4259
  #: classes/gateways/class.pmprogateway_stripe.php:1260
4260
  #: classes/gateways/class.pmprogateway_stripe.php:1300
4261
+ #: classes/gateways/class.pmprogateway_stripe.php:1303
4262
  msgid "Error creating customer record with Stripe:"
4263
  msgstr ""
4264
 
4265
+ #: classes/gateways/class.pmprogateway_stripe.php:1385
4266
  #: classes/gateways/class.pmprogateway_stripe.php:1275
4267
  #: classes/gateways/class.pmprogateway_stripe.php:1303
4268
  #: classes/gateways/class.pmprogateway_stripe.php:1313
4269
  #: classes/gateways/class.pmprogateway_stripe.php:1317
4270
  #: classes/gateways/class.pmprogateway_stripe.php:1357
4271
+ #: classes/gateways/class.pmprogateway_stripe.php:1360
4272
  msgid "Error getting subscription with Stripe:"
4273
  msgstr ""
4274
 
4275
+ #: classes/gateways/class.pmprogateway_stripe.php:1541
4276
  #: classes/gateways/class.pmprogateway_stripe.php:278
4277
  #: classes/gateways/class.pmprogateway_stripe.php:279
4278
  #: classes/gateways/class.pmprogateway_stripe.php:286
4296
  #: classes/gateways/class.pmprogateway_stripe.php:1463
4297
  #: classes/gateways/class.pmprogateway_stripe.php:1467
4298
  #: classes/gateways/class.pmprogateway_stripe.php:1507
4299
+ #: classes/gateways/class.pmprogateway_stripe.php:1510
4300
  msgid "Error creating plan with Stripe:"
4301
  msgstr ""
4302
 
4303
+ #: classes/gateways/class.pmprogateway_stripe.php:1572
4304
  #: classes/gateways/class.pmprogateway_stripe.php:294
4305
  #: classes/gateways/class.pmprogateway_stripe.php:295
4306
  #: classes/gateways/class.pmprogateway_stripe.php:302
4319
  #: classes/gateways/class.pmprogateway_stripe.php:1494
4320
  #: classes/gateways/class.pmprogateway_stripe.php:1498
4321
  #: classes/gateways/class.pmprogateway_stripe.php:1538
4322
+ #: classes/gateways/class.pmprogateway_stripe.php:1541
4323
  msgid "Error subscribing customer to plan with Stripe:"
4324
  msgstr ""
4325
 
4326
+ #: classes/gateways/class.pmprogateway_stripe.php:1668
4327
  #: classes/gateways/class.pmprogateway_stripe.php:383
4328
  #: classes/gateways/class.pmprogateway_stripe.php:389
4329
  #: classes/gateways/class.pmprogateway_stripe.php:410
4339
  #: classes/gateways/class.pmprogateway_stripe.php:1590
4340
  #: classes/gateways/class.pmprogateway_stripe.php:1594
4341
  #: classes/gateways/class.pmprogateway_stripe.php:1634
4342
+ #: classes/gateways/class.pmprogateway_stripe.php:1637
4343
  msgid "Could not cancel old subscription."
4344
  msgstr ""
4345
 
4346
+ #: classes/gateways/class.pmprogateway_stripe.php:1685
4347
  #: classes/gateways/class.pmprogateway_stripe.php:1533
4348
  #: classes/gateways/class.pmprogateway_stripe.php:1534
4349
  #: classes/gateways/class.pmprogateway_stripe.php:1535
4356
  #: classes/gateways/class.pmprogateway_stripe.php:1607
4357
  #: classes/gateways/class.pmprogateway_stripe.php:1611
4358
  #: classes/gateways/class.pmprogateway_stripe.php:1651
4359
+ #: classes/gateways/class.pmprogateway_stripe.php:1654
4360
  msgid "Could not find the customer."
4361
  msgstr ""
4362
 
4363
+ #: classes/gateways/class.pmprogateway_stripe.php:1837
4364
+ msgid "Error: "
4365
+ msgstr ""
4366
+
4367
+ #: classes/gateways/class.pmprogateway_stripe.php:1850
4368
+ #, php-format
4369
+ msgid "Error: Unkown error while refunding charge #%s"
4370
+ msgstr ""
4371
+
4372
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4373
+ #: paid-memberships-pro.php:137
4374
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
4375
  #: classes/gateways/class.pmprogateway_twocheckout.php:59
4376
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
4520
  #: includes/currencies.php:37 includes/currencies.php:44
4521
  #: includes/currencies.php:64 includes/currencies.php:68
4522
  #: includes/currencies.php:75 includes/currencies.php:85
4523
+ #: includes/currencies.php:87 includes/currencies.php:94
4524
  msgid "US Dollars (&#36;)"
4525
  msgstr ""
4526
 
4530
  #: includes/currencies.php:47 includes/currencies.php:67
4531
  #: includes/currencies.php:71 includes/currencies.php:78
4532
  #: includes/currencies.php:88 includes/currencies.php:90
4533
+ #: includes/currencies.php:97
4534
  msgid "Euros (&euro;)"
4535
  msgstr ""
4536
 
4540
  #: includes/currencies.php:46 includes/currencies.php:66
4541
  #: includes/currencies.php:70 includes/currencies.php:77
4542
  #: includes/currencies.php:87 includes/currencies.php:89
4543
+ #: includes/currencies.php:96
4544
  msgid "Pounds Sterling (&pound;)"
4545
  msgstr ""
4546
 
4565
  #: includes/currencies.php:38 includes/currencies.php:45
4566
  #: includes/currencies.php:65 includes/currencies.php:69
4567
  #: includes/currencies.php:76 includes/currencies.php:86
4568
+ #: includes/currencies.php:88 includes/currencies.php:95
4569
  msgid "Canadian Dollars (&#36;)"
4570
  msgstr ""
4571
 
4632
  #: includes/currencies.php:57 includes/currencies.php:19
4633
  #: includes/currencies.php:22 includes/currencies.php:38
4634
  #: includes/currencies.php:45 includes/currencies.php:55
4635
+ #: includes/currencies.php:56 includes/currencies.php:57
4636
  msgid "Malaysian Ringgits"
4637
  msgstr ""
4638
 
4639
  #: includes/currencies.php:58 includes/currencies.php:20
4640
  #: includes/currencies.php:23 includes/currencies.php:39
4641
  #: includes/currencies.php:46 includes/currencies.php:56
4642
+ #: includes/currencies.php:57 includes/currencies.php:58
4643
  msgid "Mexican Peso (&#36;)"
4644
  msgstr ""
4645
 
4646
  #: includes/currencies.php:59 includes/currencies.php:58
4647
+ #: includes/currencies.php:59
4648
  msgid "Nigerian Naira (&#8358;)"
4649
  msgstr ""
4650
 
4651
  #: includes/currencies.php:60 includes/currencies.php:21
4652
  #: includes/currencies.php:24 includes/currencies.php:40
4653
  #: includes/currencies.php:47 includes/currencies.php:57
4654
+ #: includes/currencies.php:59 includes/currencies.php:60
4655
  msgid "New Zealand Dollar (&#36;)"
4656
  msgstr ""
4657
 
4658
  #: includes/currencies.php:61 includes/currencies.php:22
4659
  #: includes/currencies.php:25 includes/currencies.php:41
4660
  #: includes/currencies.php:48 includes/currencies.php:58
4661
+ #: includes/currencies.php:60 includes/currencies.php:61
4662
  msgid "Norwegian Krone"
4663
  msgstr ""
4664
 
4665
  #: includes/currencies.php:62 includes/currencies.php:23
4666
  #: includes/currencies.php:26 includes/currencies.php:42
4667
  #: includes/currencies.php:49 includes/currencies.php:59
4668
+ #: includes/currencies.php:61 includes/currencies.php:62
4669
  msgid "Philippine Pesos"
4670
  msgstr ""
4671
 
4672
  #: includes/currencies.php:63 includes/currencies.php:24
4673
  #: includes/currencies.php:27 includes/currencies.php:43
4674
  #: includes/currencies.php:50 includes/currencies.php:60
4675
+ #: includes/currencies.php:62 includes/currencies.php:63
4676
  msgid "Polish Zloty"
4677
  msgstr ""
4678
 
4679
  #: includes/currencies.php:65 includes/currencies.php:25
4680
  #: includes/currencies.php:28 includes/currencies.php:45
4681
  #: includes/currencies.php:52 includes/currencies.php:62
4682
+ #: includes/currencies.php:64 includes/currencies.php:65
4683
  msgid "Singapore Dollar (&#36;)"
4684
  msgstr ""
4685
 
4686
  #: includes/currencies.php:70 includes/currencies.php:50
4687
  #: includes/currencies.php:57 includes/currencies.php:67
4688
+ #: includes/currencies.php:69 includes/currencies.php:70
4689
  msgid "South African Rand (R)"
4690
  msgstr ""
4691
 
4692
  #: includes/currencies.php:75 includes/currencies.php:30
4693
  #: includes/currencies.php:50 includes/currencies.php:54
4694
  #: includes/currencies.php:61 includes/currencies.php:71
4695
+ #: includes/currencies.php:73 includes/currencies.php:75
4696
  msgid "South Korean Won"
4697
  msgstr ""
4698
 
4700
  #: includes/currencies.php:31 includes/currencies.php:51
4701
  #: includes/currencies.php:55 includes/currencies.php:62
4702
  #: includes/currencies.php:72 includes/currencies.php:74
4703
+ #: includes/currencies.php:78
4704
  msgid "Swedish Krona"
4705
  msgstr ""
4706
 
4708
  #: includes/currencies.php:32 includes/currencies.php:52
4709
  #: includes/currencies.php:56 includes/currencies.php:63
4710
  #: includes/currencies.php:73 includes/currencies.php:75
4711
+ #: includes/currencies.php:79
4712
  msgid "Swiss Franc"
4713
  msgstr ""
4714
 
4716
  #: includes/currencies.php:33 includes/currencies.php:53
4717
  #: includes/currencies.php:57 includes/currencies.php:64
4718
  #: includes/currencies.php:74 includes/currencies.php:76
4719
+ #: includes/currencies.php:80
4720
  msgid "Taiwan New Dollars"
4721
  msgstr ""
4722
 
4724
  #: includes/currencies.php:34 includes/currencies.php:54
4725
  #: includes/currencies.php:58 includes/currencies.php:65
4726
  #: includes/currencies.php:75 includes/currencies.php:77
4727
+ #: includes/currencies.php:81
4728
  msgid "Thai Baht"
4729
  msgstr ""
4730
 
4731
  #: includes/currencies.php:82 includes/currencies.php:35
4732
  #: includes/currencies.php:55 includes/currencies.php:59
4733
  #: includes/currencies.php:66 includes/currencies.php:76
4734
+ #: includes/currencies.php:78 includes/currencies.php:82
4735
  msgid "Turkish Lira"
4736
  msgstr ""
4737
 
4738
  #: includes/currencies.php:84 includes/currencies.php:36
4739
  #: includes/currencies.php:56 includes/currencies.php:60
4740
  #: includes/currencies.php:67 includes/currencies.php:77
4741
+ #: includes/currencies.php:79 includes/currencies.php:84
4742
  msgid "Vietnamese Dong"
4743
  msgstr ""
4744
 
4745
+ #: includes/functions.php:320 includes/functions.php:455
4746
+ #: includes/functions.php:160 includes/functions.php:196
4747
+ #: includes/functions.php:200 includes/functions.php:202
4748
+ #: includes/functions.php:203 includes/functions.php:204
4749
+ #: includes/functions.php:207 includes/functions.php:243
4750
+ #: includes/functions.php:309 includes/functions.php:315
4751
  #, php-format
4752
  msgid "The price for membership is <strong>%s</strong> now"
4753
  msgstr ""
4754
 
4755
+ #: includes/functions.php:322 includes/functions.php:457
4756
+ #: includes/functions.php:202 includes/functions.php:204
4757
+ #: includes/functions.php:205 includes/functions.php:206
4758
+ #: includes/functions.php:209 includes/functions.php:245
4759
+ #: includes/functions.php:311 includes/functions.php:317
4760
  #, php-format
4761
  msgid "<strong>%s</strong> now"
4762
  msgstr ""
4763
 
4764
+ #: includes/functions.php:331 includes/functions.php:169
4765
  #: includes/functions.php:205 includes/functions.php:211
4766
  #: includes/functions.php:213 includes/functions.php:214
4767
  #: includes/functions.php:215 includes/functions.php:218
4771
  msgid " and then <strong>%s per %s for %d more %s</strong>."
4772
  msgstr ""
4773
 
4774
+ #: includes/functions.php:335 includes/functions.php:258
4775
  #: includes/functions.php:324 includes/functions.php:330
4776
  #, php-format
4777
  msgid " and then <strong>%s every %d %s for %d more payments</strong>."
4778
  msgstr ""
4779
 
4780
+ #: includes/functions.php:340 includes/functions.php:178
4781
  #: includes/functions.php:214 includes/functions.php:220
4782
  #: includes/functions.php:222 includes/functions.php:223
4783
  #: includes/functions.php:224 includes/functions.php:227
4787
  msgid " and then <strong>%s after %d %s</strong>."
4788
  msgstr ""
4789
 
4790
+ #: includes/functions.php:348 includes/functions.php:228
4791
  #: includes/functions.php:229 includes/functions.php:230
4792
  #: includes/functions.php:231 includes/functions.php:235
4793
  #: includes/functions.php:271 includes/functions.php:337
4796
  msgid "The price for membership is <strong>%s per %s</strong>."
4797
  msgstr ""
4798
 
4799
+ #: includes/functions.php:350 includes/functions.php:230
4800
  #: includes/functions.php:233 includes/functions.php:237
4801
  #: includes/functions.php:273 includes/functions.php:339
4802
  #: includes/functions.php:345
4804
  msgid "<strong>%s per %s</strong>."
4805
  msgstr ""
4806
 
4807
+ #: includes/functions.php:355 includes/functions.php:233
4808
  #: includes/functions.php:234 includes/functions.php:235
4809
  #: includes/functions.php:238 includes/functions.php:242
4810
  #: includes/functions.php:278 includes/functions.php:344
4813
  msgid "The price for membership is <strong>%s every %d %s</strong>."
4814
  msgstr ""
4815
 
4816
+ #: includes/functions.php:357 includes/functions.php:237
4817
  #: includes/functions.php:240 includes/functions.php:244
4818
  #: includes/functions.php:280 includes/functions.php:346
4819
  #: includes/functions.php:352
4821
  msgid "<strong>%s every %d %s</strong>."
4822
  msgstr ""
4823
 
4824
+ #: includes/functions.php:362 includes/functions.php:184
4825
  #: includes/functions.php:220 includes/functions.php:228
4826
  #: includes/functions.php:238 includes/functions.php:239
4827
  #: includes/functions.php:240 includes/functions.php:242
4832
  msgid " and then <strong>%s per %s</strong>."
4833
  msgstr ""
4834
 
4835
+ #: includes/functions.php:366 includes/functions.php:188
4836
  #: includes/functions.php:224 includes/functions.php:232
4837
  #: includes/functions.php:242 includes/functions.php:243
4838
  #: includes/functions.php:244 includes/functions.php:246
4843
  msgid " and then <strong>%s every %d %s</strong>."
4844
  msgstr ""
4845
 
4846
+ #: includes/functions.php:384 includes/functions.php:202
4847
  #: includes/functions.php:238 includes/functions.php:249
4848
  #: includes/functions.php:260 includes/functions.php:261
4849
  #: includes/functions.php:262 includes/functions.php:264
4853
  msgid "After your initial payment, your first payment is Free."
4854
  msgstr ""
4855
 
4856
+ #: includes/functions.php:388 includes/functions.php:206
4857
  #: includes/functions.php:242 includes/functions.php:253
4858
  #: includes/functions.php:264 includes/functions.php:265
4859
  #: includes/functions.php:266 includes/functions.php:268
4864
  msgid "After your initial payment, your first %d payments are Free."
4865
  msgstr ""
4866
 
4867
+ #: includes/functions.php:395 includes/functions.php:213
4868
  #: includes/functions.php:249 includes/functions.php:260
4869
  #: includes/functions.php:271 includes/functions.php:272
4870
  #: includes/functions.php:273 includes/functions.php:275
4875
  msgid "After your initial payment, your first payment will cost %s."
4876
  msgstr ""
4877
 
4878
+ #: includes/functions.php:399 includes/functions.php:217
4879
  #: includes/functions.php:253 includes/functions.php:264
4880
  #: includes/functions.php:275 includes/functions.php:276
4881
  #: includes/functions.php:277 includes/functions.php:279
4886
  msgid "After your initial payment, your first %d payments will cost %s."
4887
  msgstr ""
4888
 
4889
+ #: includes/functions.php:410 includes/functions.php:523
4890
+ #: includes/functions.php:228 includes/functions.php:264
4891
+ #: includes/functions.php:275 includes/functions.php:286
4892
+ #: includes/functions.php:287 includes/functions.php:288
4893
+ #: includes/functions.php:290 includes/functions.php:293
4894
+ #: includes/functions.php:297 includes/functions.php:333
4895
+ #: includes/functions.php:399 includes/functions.php:405
4896
  #, php-format
4897
  msgid "Customers in %s will be charged %s%% tax."
4898
  msgstr ""
4899
 
4900
+ #: includes/functions.php:469
4901
+ #, php-format
4902
+ msgid "<strong>%s per %s for %d more %s</strong>"
4903
+ msgstr ""
4904
+
4905
+ #: includes/functions.php:473
4906
+ #, php-format
4907
+ msgid "<strong>%s every %d %s for %d more payments</strong>"
4908
+ msgstr ""
4909
+
4910
+ #: includes/functions.php:478
4911
+ #, php-format
4912
+ msgid "<strong>%s after %d %s</strong>"
4913
+ msgstr ""
4914
+
4915
+ #: includes/functions.php:484
4916
+ #, php-format
4917
+ msgid "<strong>%s every %s</strong>"
4918
+ msgstr ""
4919
+
4920
+ #: includes/functions.php:488
4921
+ #, php-format
4922
+ msgid "<strong>%s every %d %s</strong>"
4923
+ msgstr ""
4924
+
4925
+ #: includes/functions.php:511
4926
+ msgid "Trial pricing has been applied to the first payment."
4927
+ msgstr ""
4928
+
4929
+ #: includes/functions.php:513
4930
+ #, php-format
4931
+ msgid "Trial pricing has been applied to the first %d payments."
4932
+ msgstr ""
4933
+
4934
+ #: includes/functions.php:540 includes/functions.php:242
4935
  #: includes/functions.php:278 includes/functions.php:289
4936
  #: includes/functions.php:300 includes/functions.php:301
4937
  #: includes/functions.php:302 includes/functions.php:304
4942
  msgid "Membership expires after %d %s."
4943
  msgstr ""
4944
 
4945
+ #: includes/functions.php:556
4946
+ #, php-format
4947
+ msgid "%s membership expires after %d %s"
4948
+ msgstr ""
4949
+
4950
+ #: includes/functions.php:945 includes/functions.php:491
4951
  #: includes/functions.php:514 includes/functions.php:525
4952
  #: includes/functions.php:536 includes/functions.php:537
4953
  #: includes/functions.php:538 includes/functions.php:545
4958
  msgid "User ID not found."
4959
  msgstr ""
4960
 
4961
+ #: includes/functions.php:965 includes/functions.php:508
4962
  #: includes/functions.php:531 includes/functions.php:542
4963
  #: includes/functions.php:553 includes/functions.php:554
4964
  #: includes/functions.php:555 includes/functions.php:562
4970
  msgid "Invalid level."
4971
  msgstr ""
4972
 
4973
+ #: includes/functions.php:976 includes/functions.php:520
4974
  #: includes/functions.php:542 includes/functions.php:553
4975
  #: includes/functions.php:564 includes/functions.php:565
4976
  #: includes/functions.php:566 includes/functions.php:573
4982
  msgid "not changing?"
4983
  msgstr ""
4984
 
4985
+ #: includes/functions.php:1017 includes/functions.php:537
4986
  #: includes/functions.php:559 includes/functions.php:570
4987
  #: includes/functions.php:581 includes/functions.php:582
4988
  #: includes/functions.php:583 includes/functions.php:590
5008
  msgid "Error interacting with database"
5009
  msgstr ""
5010
 
5011
+ #: includes/functions.php:1123 includes/functions.php:907
5012
  #, php-format
5013
  msgid "Error interacting with database: %s"
5014
  msgstr ""
5015
 
5016
+ #: includes/functions.php:1198 includes/functions.php:1237
5017
  #: includes/functions.php:629 includes/functions.php:651
5018
  #: includes/functions.php:667 includes/functions.php:668
5019
  #: includes/functions.php:678 includes/functions.php:681
5029
  #: includes/functions.php:787 includes/functions.php:803
5030
  #: includes/functions.php:826 includes/functions.php:881
5031
  #: includes/functions.php:920 includes/functions.php:947
5032
+ #: includes/functions.php:948 includes/functions.php:953
5033
+ #: includes/functions.php:986 includes/functions.php:987
5034
  #: includes/functions.php:992
5035
  msgid "Membership level not found."
5036
  msgstr ""
5037
 
5038
+ #: includes/functions.php:1605 includes/functions.php:1100
5039
  #: includes/functions.php:1101 includes/functions.php:1118
5040
  #: includes/functions.php:1142 includes/functions.php:1143
5041
  #: includes/functions.php:1150 includes/functions.php:1157
5042
  #: includes/functions.php:1173 includes/functions.php:1196
5043
  #: includes/functions.php:1290 includes/functions.php:1356
5044
+ #: includes/functions.php:1357 includes/functions.php:1362
5045
  msgid "No code was given to check."
5046
  msgstr ""
5047
 
5048
+ #: includes/functions.php:1614 includes/functions.php:1050
5049
  #: includes/functions.php:1072 includes/functions.php:1088
5050
  #: includes/functions.php:1099 includes/functions.php:1102
5051
  #: includes/functions.php:1109 includes/functions.php:1110
5054
  #: includes/functions.php:1152 includes/functions.php:1159
5055
  #: includes/functions.php:1166 includes/functions.php:1182
5056
  #: includes/functions.php:1205 includes/functions.php:1299
5057
+ #: includes/functions.php:1365 includes/functions.php:1366
5058
+ #: includes/functions.php:1371
5059
  msgid "The discount code could not be found."
5060
  msgstr ""
5061
 
5062
+ #: includes/functions.php:1629 includes/functions.php:1066
5063
  #: includes/functions.php:1088 includes/functions.php:1104
5064
  #: includes/functions.php:1115 includes/functions.php:1118
5065
  #: includes/functions.php:1124 includes/functions.php:1125
5068
  #: includes/functions.php:1167 includes/functions.php:1174
5069
  #: includes/functions.php:1181 includes/functions.php:1197
5070
  #: includes/functions.php:1220 includes/functions.php:1314
5071
+ #: includes/functions.php:1380 includes/functions.php:1381
5072
+ #: includes/functions.php:1386
5073
  #, php-format
5074
  msgid "This discount code goes into effect on %s."
5075
  msgstr ""
5076
 
5077
+ #: includes/functions.php:1636 includes/functions.php:1075
5078
  #: includes/functions.php:1097 includes/functions.php:1113
5079
  #: includes/functions.php:1124 includes/functions.php:1127
5080
  #: includes/functions.php:1131 includes/functions.php:1132
5083
  #: includes/functions.php:1174 includes/functions.php:1181
5084
  #: includes/functions.php:1188 includes/functions.php:1204
5085
  #: includes/functions.php:1227 includes/functions.php:1321
5086
+ #: includes/functions.php:1387 includes/functions.php:1388
5087
+ #: includes/functions.php:1393
5088
  #, php-format
5089
  msgid "This discount code expired on %s."
5090
  msgstr ""
5091
 
5092
+ #: includes/functions.php:1646 includes/functions.php:1087
5093
  #: includes/functions.php:1109 includes/functions.php:1125
5094
  #: includes/functions.php:1136 includes/functions.php:1139
5095
  #: includes/functions.php:1141 includes/functions.php:1142
5098
  #: includes/functions.php:1184 includes/functions.php:1191
5099
  #: includes/functions.php:1198 includes/functions.php:1214
5100
  #: includes/functions.php:1237 includes/functions.php:1331
5101
+ #: includes/functions.php:1397 includes/functions.php:1398
5102
+ #: includes/functions.php:1403
5103
  msgid "This discount code is no longer valid."
5104
  msgstr ""
5105
 
5106
+ #: includes/functions.php:1666 includes/functions.php:1102
5107
  #: includes/functions.php:1124 includes/functions.php:1140
5108
  #: includes/functions.php:1151 includes/functions.php:1154
5109
  #: includes/functions.php:1155 includes/functions.php:1164
5112
  #: includes/functions.php:1204 includes/functions.php:1211
5113
  #: includes/functions.php:1227 includes/functions.php:1250
5114
  #: includes/functions.php:1344 includes/functions.php:1410
5115
+ #: includes/functions.php:1411 includes/functions.php:1416
5116
  msgid "This discount code does not apply to this membership level."
5117
  msgstr ""
5118
 
5119
+ #: includes/functions.php:1703 includes/functions.php:1110
5120
  #: includes/functions.php:1132 includes/functions.php:1148
5121
  #: includes/functions.php:1159 includes/functions.php:1162
5122
  #: includes/functions.php:1172 includes/functions.php:1180
5126
  #: includes/functions.php:1237 includes/functions.php:1253
5127
  #: includes/functions.php:1276 includes/functions.php:1370
5128
  #: includes/functions.php:1436 includes/functions.php:1442
5129
+ #: includes/functions.php:1448
5130
  msgid "This discount code is okay."
5131
  msgstr ""
5132
 
5133
+ #: includes/functions.php:1730 includes/functions.php:1134
5134
  #: includes/functions.php:1156 includes/functions.php:1172
5135
  #: includes/functions.php:1183 includes/functions.php:1186
5136
  #: includes/functions.php:1196 includes/functions.php:1205
5140
  #: includes/functions.php:1278 includes/functions.php:1301
5141
  #: includes/functions.php:1395 includes/functions.php:1397
5142
  #: includes/functions.php:1463 includes/functions.php:1469
5143
+ #: includes/functions.php:1475
5144
  msgid "and"
5145
  msgstr ""
5146
 
5147
+ #: includes/functions.php:2015 includes/functions.php:1319
5148
  #: includes/functions.php:1341 includes/functions.php:1361
5149
  #: includes/functions.php:1372 includes/functions.php:1375
5150
  #: includes/functions.php:1385 includes/functions.php:1394
5154
  #: includes/functions.php:1473 includes/functions.php:1496
5155
  #: includes/functions.php:1501 includes/functions.php:1620
5156
  #: includes/functions.php:1624 includes/functions.php:1691
5157
+ #: includes/functions.php:1697 includes/functions.php:1703
5158
  msgid "Sign Up for !!name!! Now"
5159
  msgstr ""
5160
 
5161
+ #: includes/functions.php:2021 includes/functions.php:1325
5162
  #: includes/functions.php:1347 includes/functions.php:1367
5163
  #: includes/functions.php:1378 includes/functions.php:1381
5164
  #: includes/functions.php:1391 includes/functions.php:1400
5168
  #: includes/functions.php:1479 includes/functions.php:1502
5169
  #: includes/functions.php:1507 includes/functions.php:1626
5170
  #: includes/functions.php:1630 includes/functions.php:1697
5171
+ #: includes/functions.php:1703 includes/functions.php:1709
5172
  msgid "Please specify a level id."
5173
  msgstr ""
5174
 
5362
  msgstr ""
5363
 
5364
  #: pages/billing.php:28 pages/billing.php:14 pages/billing.php:23
5365
+ #: pages/billing.php:26 pages/billing.php:28
5366
  #, php-format
5367
  msgid "Logged in as <strong>%s</strong>."
5368
  msgstr ""
5369
 
5370
  #: pages/billing.php:28 pages/billing.php:14 pages/billing.php:23
5371
+ #: pages/billing.php:26 pages/billing.php:28
5372
  msgid "logout"
5373
  msgstr ""
5374
 
5375
+ #: pages/billing.php:30 pages/cancel.php:60 pages/invoice.php:109
5376
+ #: pages/levels.php:35 shortcodes/pmpro_account.php:44
5377
+ #: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
5378
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
5379
+ #: pages/billing.php:28 pages/billing.php:30 pages/cancel.php:52
5380
+ #: pages/invoice.php:109 pages/levels.php:13 pages/levels.php:35
5381
+ #: shortcodes/pmpro_account.php:43 shortcodes/pmpro_account.php:44
5382
+ #: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:125
5383
+ #: shortcodes/pmpro_account.php:126
5384
  msgid "Level"
5385
  msgstr ""
5386
 
5387
  #: pages/billing.php:32 pages/account.php:14 pages/billing.php:18
5388
+ #: pages/billing.php:27 pages/billing.php:30 pages/billing.php:32
5389
  msgid "Membership Fee"
5390
  msgstr ""
5391
 
5392
  #: pages/billing.php:36 pages/account.php:18 pages/billing.php:22
5393
+ #: pages/billing.php:31 pages/billing.php:34 pages/billing.php:36
5394
+ #: pages/levels.php:70
5395
  #, php-format
5396
  msgid "%s every %d %s."
5397
  msgstr ""
5398
 
5399
  #: pages/billing.php:38 pages/account.php:20 pages/billing.php:24
5400
+ #: pages/billing.php:33 pages/billing.php:36 pages/billing.php:38
5401
+ #: pages/levels.php:66
5402
  #, php-format
5403
  msgid "%s per %s."
5404
  msgstr ""
5405
 
5406
  #: pages/billing.php:47 pages/account.php:25 pages/account.php:29
5407
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
5408
+ #: pages/billing.php:45 pages/billing.php:47
5409
  msgid "Duration"
5410
  msgstr ""
5411
 
5412
  #: pages/billing.php:57 pages/billing.php:39 pages/billing.php:43
5413
+ #: pages/billing.php:52 pages/billing.php:55 pages/billing.php:57
5414
  msgid ""
5415
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
5416
  "paypal.com\">login to PayPal here</a> to update your billing information."
5417
  msgstr ""
5418
 
5419
+ #: pages/billing.php:87 pages/checkout.php:333 pages/billing.php:65
5420
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
5421
+ #: pages/billing.php:83 pages/checkout.php:305 pages/checkout.php:307
5422
+ #: pages/checkout.php:309 pages/checkout.php:318 pages/checkout.php:321
5423
+ #: pages/checkout.php:324 pages/checkout.php:326 pages/checkout.php:328
5424
  msgid "First Name"
5425
  msgstr ""
5426
 
5427
+ #: pages/billing.php:91 pages/checkout.php:337 pages/billing.php:69
5428
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
5429
+ #: pages/billing.php:87 pages/checkout.php:309 pages/checkout.php:311
5430
+ #: pages/checkout.php:313 pages/checkout.php:322 pages/checkout.php:325
5431
+ #: pages/checkout.php:328 pages/checkout.php:330 pages/checkout.php:332
5432
  msgid "Last Name"
5433
  msgstr ""
5434
 
5435
+ #: pages/billing.php:95 pages/checkout.php:341 pages/billing.php:73
5436
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
5437
+ #: pages/billing.php:91 pages/checkout.php:313 pages/checkout.php:315
5438
+ #: pages/checkout.php:317 pages/checkout.php:326 pages/checkout.php:329
5439
+ #: pages/checkout.php:332 pages/checkout.php:334 pages/checkout.php:336
5440
  msgid "Address 1"
5441
  msgstr ""
5442
 
5443
+ #: pages/billing.php:99 pages/checkout.php:345 pages/billing.php:77
5444
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
5445
+ #: pages/billing.php:95 pages/checkout.php:317 pages/checkout.php:319
5446
+ #: pages/checkout.php:321 pages/checkout.php:330 pages/checkout.php:333
5447
+ #: pages/checkout.php:336 pages/checkout.php:338 pages/checkout.php:340
5448
  msgid "Address 2"
5449
  msgstr ""
5450
 
5451
+ #: pages/billing.php:109 pages/checkout.php:355 pages/billing.php:87
5452
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
5453
+ #: pages/billing.php:105 pages/checkout.php:327 pages/checkout.php:329
5454
+ #: pages/checkout.php:331 pages/checkout.php:340 pages/checkout.php:343
5455
+ #: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:350
5456
  msgid "City"
5457
  msgstr ""
5458
 
5459
+ #: pages/billing.php:113 pages/checkout.php:359 pages/billing.php:91
5460
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
5461
+ #: pages/billing.php:109 pages/checkout.php:331 pages/checkout.php:333
5462
+ #: pages/checkout.php:335 pages/checkout.php:344 pages/checkout.php:347
5463
+ #: pages/checkout.php:350 pages/checkout.php:352 pages/checkout.php:354
5464
  msgid "State"
5465
  msgstr ""
5466
 
5467
+ #: pages/billing.php:117 pages/checkout.php:363 pages/billing.php:95
5468
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
5469
+ #: pages/billing.php:113 pages/checkout.php:335 pages/checkout.php:337
5470
+ #: pages/checkout.php:339 pages/checkout.php:348 pages/checkout.php:351
5471
+ #: pages/checkout.php:354 pages/checkout.php:356 pages/checkout.php:358
5472
  msgid "Postal Code"
5473
  msgstr ""
5474
 
5475
+ #: pages/billing.php:126 pages/checkout.php:372 pages/billing.php:104
5476
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
5477
+ #: pages/billing.php:122 pages/checkout.php:344 pages/checkout.php:346
5478
+ #: pages/checkout.php:348 pages/checkout.php:357 pages/checkout.php:360
5479
+ #: pages/checkout.php:363 pages/checkout.php:365 pages/checkout.php:367
5480
  msgid "City, State Zip"
5481
  msgstr ""
5482
 
5483
+ #: pages/billing.php:179 pages/checkout.php:425 pages/billing.php:157
5484
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
5485
+ #: pages/billing.php:175 pages/checkout.php:397 pages/checkout.php:399
5486
+ #: pages/checkout.php:401 pages/checkout.php:410 pages/checkout.php:413
5487
+ #: pages/checkout.php:416 pages/checkout.php:418 pages/checkout.php:420
5488
  msgid "Country"
5489
  msgstr ""
5490
 
5491
+ #: pages/billing.php:204 pages/checkout.php:450 pages/billing.php:182
5492
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
5493
+ #: pages/billing.php:200 pages/checkout.php:422 pages/checkout.php:424
5494
+ #: pages/checkout.php:426 pages/checkout.php:435 pages/checkout.php:438
5495
+ #: pages/checkout.php:441 pages/checkout.php:443 pages/checkout.php:445
5496
  msgid "Phone"
5497
  msgstr ""
5498
 
5499
+ #: pages/billing.php:215 pages/checkout.php:227 pages/checkout.php:464
5500
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
5501
+ #: pages/billing.php:209 pages/billing.php:211 pages/checkout.php:204
5502
+ #: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:216
5503
+ #: pages/checkout.php:218 pages/checkout.php:220 pages/checkout.php:436
5504
+ #: pages/checkout.php:438 pages/checkout.php:440 pages/checkout.php:449
5505
+ #: pages/checkout.php:453 pages/checkout.php:455 pages/checkout.php:457
5506
+ #: pages/checkout.php:460
5507
  msgid "E-mail Address"
5508
  msgstr ""
5509
 
5510
+ #: pages/billing.php:219 pages/checkout.php:473 pages/billing.php:197
5511
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
5512
+ #: pages/billing.php:215 pages/checkout.php:445 pages/checkout.php:447
5513
+ #: pages/checkout.php:449 pages/checkout.php:458 pages/checkout.php:462
5514
+ #: pages/checkout.php:464 pages/checkout.php:466 pages/checkout.php:469
5515
  msgid "Confirm E-mail"
5516
  msgstr ""
5517
 
5518
+ #: pages/billing.php:247 pages/billing.php:217 pages/billing.php:221
5519
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
5520
+ #: pages/billing.php:238
5521
  msgid "Credit Card Information"
5522
  msgstr ""
5523
 
5524
+ #: pages/billing.php:248 pages/billing.php:217 pages/billing.php:221
5525
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
5526
+ #: pages/billing.php:239
5527
  #, php-format
5528
  msgid "We accept %s"
5529
  msgstr ""
5530
 
5531
+ #: pages/billing.php:417 pages/billing.php:309 pages/billing.php:313
5532
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
5533
+ #: pages/billing.php:360 pages/billing.php:364 pages/billing.php:408
5534
  msgid ""
5535
  "This subscription is not recurring. So you don't need to update your billing "
5536
  "information."
5537
  msgstr ""
5538
 
5539
+ #: pages/cancel.php:33 pages/cancel.php:14 pages/cancel.php:26
5540
  msgid "Are you sure you want to cancel your membership?"
5541
  msgstr ""
5542
 
5543
+ #: pages/cancel.php:40 pages/cancel.php:32
5544
  #, php-format
5545
  msgid "Are you sure you want to cancel your %s membership?"
5546
  msgstr ""
5547
 
5548
+ #: pages/cancel.php:45
5549
+ msgid "Yes, cancel this membership"
5550
  msgstr ""
5551
 
5552
+ #: pages/cancel.php:46
5553
+ msgid "No, keep this membership"
5554
  msgstr ""
5555
 
5556
+ #: pages/cancel.php:56 shortcodes/pmpro_account.php:40 pages/account.php:14
5557
+ #: pages/cancel.php:48 shortcodes/pmpro_account.php:39
5558
+ #: shortcodes/pmpro_account.php:40
5559
  msgid "My Memberships"
5560
  msgstr ""
5561
 
5562
+ #: pages/cancel.php:92 pages/cancel.php:77
5563
  msgid "Cancel All Memberships"
5564
  msgstr ""
5565
 
5566
+ #: pages/cancel.php:101 pages/cancel.php:22 pages/cancel.php:86
5567
  msgid "Click here to go to the home page."
5568
  msgstr ""
5569
 
5585
  msgid "You have selected the <strong>%s</strong> membership level."
5586
  msgstr ""
5587
 
5588
+ #: pages/checkout.php:68 pages/checkout.php:51 pages/checkout.php:53
5589
  #: pages/checkout.php:60 pages/checkout.php:61
5590
  #, php-format
5591
  msgid ""
5593
  "been applied to your order.</p>"
5594
  msgstr ""
5595
 
5596
+ #: pages/checkout.php:79 services/applydiscountcode.php:92
5597
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
5598
  #: pages/checkout.php:71 pages/checkout.php:72
5599
  #: services/applydiscountcode.php:74 services/applydiscountcode.php:75
5601
  msgid "Click here to change your discount code"
5602
  msgstr ""
5603
 
5604
+ #: pages/checkout.php:81 pages/checkout.php:64 pages/checkout.php:65
5605
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
5606
  msgid "Click here to enter your discount code"
5607
  msgstr ""
5608
 
5609
+ #: pages/checkout.php:81 pages/checkout.php:64 pages/checkout.php:65
5610
  #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
5611
  msgid "Do you have a discount code?"
5612
  msgstr ""
5613
 
5614
+ #: pages/checkout.php:182 pages/checkout.php:160 pages/checkout.php:163
5615
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
5616
  #: pages/checkout.php:175
5617
  msgid "Account Information"
5618
  msgstr ""
5619
 
5620
+ #: pages/checkout.php:183 pages/checkout.php:160 pages/checkout.php:163
5621
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
5622
  #: pages/checkout.php:176
5623
  msgid "Already have an account?"
5624
  msgstr ""
5625
 
5626
+ #: pages/checkout.php:183 pages/checkout.php:160 pages/checkout.php:163
5627
  #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
5628
  #: pages/checkout.php:176
5629
  msgid "Log in here"
5630
  msgstr ""
5631
 
5632
+ #: pages/checkout.php:209 pages/checkout.php:186 pages/checkout.php:189
5633
  #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
5634
  #: pages/checkout.php:202
5635
  msgid "Confirm Password"
5636
  msgstr ""
5637
 
5638
+ #: pages/checkout.php:236 pages/checkout.php:213 pages/checkout.php:216
5639
  #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
5640
  #: pages/checkout.php:229
5641
  msgid "Confirm E-mail Address"
5642
  msgstr ""
5643
 
5644
+ #: pages/checkout.php:255 pages/checkout.php:232 pages/checkout.php:235
5645
  #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
5646
  #: pages/checkout.php:248
5647
  msgid "Full Name"
5648
  msgstr ""
5649
 
5650
+ #: pages/checkout.php:256 pages/checkout.php:233 pages/checkout.php:236
5651
  #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
5652
  #: pages/checkout.php:249
5653
  msgid "LEAVE THIS BLANK"
5654
  msgstr ""
5655
 
5656
+ #: pages/checkout.php:280 pages/checkout.php:257 pages/checkout.php:260
5657
  #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
5658
  #: pages/checkout.php:273
5659
  #, php-format
5662
  "different account for this membership, <a href=\"%s\">log out now</a>."
5663
  msgstr ""
5664
 
5665
+ #: pages/checkout.php:296 pages/checkout.php:276 pages/checkout.php:278
5666
  #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:289
5667
  #: pages/checkout.php:292 pages/checkout.php:299
5668
  msgid "Choose your Payment Method"
5669
  msgstr ""
5670
 
5671
+ #: pages/checkout.php:305 pages/checkout.php:284 pages/checkout.php:286
5672
  #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:298
5673
  #: pages/checkout.php:300 pages/checkout.php:307
5674
  msgid "Check Out with a Credit Card Here"
5675
  msgstr ""
5676
 
5677
+ #: pages/checkout.php:693 pages/checkout.php:277 pages/checkout.php:284
5678
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
5679
+ #: pages/checkout.php:681 pages/checkout.php:686 pages/checkout.php:690
5680
+ #: pages/checkout.php:692 pages/checkout.php:696 pages/checkout.php:697
5681
  #, php-format
5682
  msgid "I agree to the %s"
5683
  msgstr ""
5684
 
5685
+ #: pages/checkout.php:713 pages/checkout.php:667 pages/checkout.php:674
5686
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
5687
+ #: pages/checkout.php:701 pages/checkout.php:706 pages/checkout.php:710
5688
+ #: pages/checkout.php:712 pages/checkout.php:716 pages/checkout.php:717
5689
  msgid "Complete Payment"
5690
  msgstr ""
5691
 
5692
+ #: pages/checkout.php:735 pages/checkout.php:687 pages/checkout.php:694
5693
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
5694
+ #: pages/checkout.php:723 pages/checkout.php:728 pages/checkout.php:732
5695
+ #: pages/checkout.php:734 pages/checkout.php:738 pages/checkout.php:739
5696
  msgid "Processing..."
5697
  msgstr ""
5698
 
5714
  "membership invoice has been sent to %s."
5715
  msgstr ""
5716
 
5717
+ #: pages/confirmation.php:47 pages/invoice.php:22 pages/confirmation.php:41
5718
  #: pages/invoice.php:22
5719
  #, php-format
5720
  msgid "Invoice #%s on %s"
5721
  msgstr ""
5722
 
5723
+ #: pages/confirmation.php:49 pages/invoice.php:24 pages/confirmation.php:43
5724
  #: pages/invoice.php:24
5725
  msgid "Print"
5726
  msgstr ""
5727
 
5728
+ #: pages/confirmation.php:52 pages/confirmation.php:115 pages/invoice.php:27
5729
  #: pages/confirmation.php:45 pages/confirmation.php:46
5730
  #: pages/confirmation.php:102 pages/confirmation.php:104 pages/invoice.php:26
5731
  #: pages/invoice.php:27
5732
  msgid "Account"
5733
  msgstr ""
5734
 
5735
+ #: pages/confirmation.php:55 pages/invoice.php:30 pages/account.php:29
5736
  #: pages/account.php:33 pages/confirmation.php:48 pages/confirmation.php:49
5737
  #: pages/invoice.php:29 pages/invoice.php:30
5738
  msgid "Membership Expires"
5739
  msgstr ""
5740
 
5741
+ #: pages/confirmation.php:69 pages/invoice.php:50 pages/account.php:105
5742
  #: pages/account.php:109 pages/confirmation.php:61 pages/confirmation.php:63
5743
  #: pages/invoice.php:48 pages/invoice.php:50
5744
  msgid "Payment Method"
5745
  msgstr ""
5746
 
5747
+ #: pages/confirmation.php:71 pages/invoice.php:52 pages/invoice.php:110
5748
  #: pages/confirmation.php:63 pages/confirmation.php:65 pages/invoice.php:50
5749
  #: pages/invoice.php:52 pages/invoice.php:107 pages/invoice.php:109
5750
  #: pages/invoice.php:110
5751
  msgid "Total Billed"
5752
  msgstr ""
5753
 
5754
+ #: pages/confirmation.php:88 pages/invoice.php:69 pages/confirmation.php:80
5755
  #: pages/confirmation.php:82 pages/invoice.php:67 pages/invoice.php:69
5756
  msgid "ending in"
5757
  msgstr ""
5758
 
5759
+ #: pages/confirmation.php:103 pages/confirmation.php:97
5760
  #, php-format
5761
  msgid ""
5762
  "Below are details about your membership account. A welcome email has been "
5763
  "sent to %s."
5764
  msgstr ""
5765
 
5766
+ #: pages/confirmation.php:116 pages/confirmation.php:103
5767
  #: pages/confirmation.php:105
5768
  msgid "Pending"
5769
  msgstr ""
5770
 
5771
+ #: pages/confirmation.php:124 pages/invoice.php:141 pages/confirmation.php:111
5772
  #: pages/confirmation.php:113 pages/invoice.php:139 pages/invoice.php:141
5773
  msgid "View Your Membership Account &rarr;"
5774
  msgstr ""
5775
 
5776
+ #: pages/confirmation.php:126 pages/confirmation.php:113
5777
  #: pages/confirmation.php:115
5778
  msgid ""
5779
  "If your account is not activated within a few minutes, please contact the "
5809
 
5810
  #: pages/levels.php:78 shortcodes/pmpro_account.php:60 pages/account.php:33
5811
  #: pages/levels.php:57 pages/levels.php:78 pages/levels.php:123
5812
+ #: shortcodes/pmpro_account.php:59 shortcodes/pmpro_account.php:60
5813
+ #: shortcodes/pmpro_account.php:61
5814
  msgid "Renew"
5815
  msgstr ""
5816
 
5829
  msgid "&larr; Return to Home"
5830
  msgstr ""
5831
 
5832
+ #: paid-memberships-pro.php:128 adminpages/orders.php:398
5833
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
5834
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
5835
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
5837
  msgid "Testing Only"
5838
  msgstr ""
5839
 
5840
+ #: paid-memberships-pro.php:133 paid-memberships-pro.php:120
5841
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
5842
  #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
5843
  #: paid-memberships-pro.php:131
5844
  msgid "PayPal Payflow Pro/PayPal Pro"
5845
  msgstr ""
5846
 
5847
+ #: paid-memberships-pro.php:138 paid-memberships-pro.php:125
5848
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
5849
  #: paid-memberships-pro.php:134 paid-memberships-pro.php:135
5850
  #: paid-memberships-pro.php:136
5851
  msgid "Cybersource"
5852
  msgstr ""
5853
 
5854
+ #: paid-memberships-pro.php:159 paid-memberships-pro.php:156
5855
  #: paid-memberships-pro.php:157
5856
  msgid "Once a month"
5857
  msgstr ""
5870
  "moments."
5871
  msgstr ""
5872
 
5873
+ #: preheaders/billing.php:273 preheaders/checkout.php:322
5874
  #: preheaders/billing.php:258 preheaders/billing.php:265
5875
  #: preheaders/billing.php:266 preheaders/billing.php:270
5876
  #: preheaders/billing.php:279 preheaders/checkout.php:332
5881
  msgid "Please complete all required fields."
5882
  msgstr ""
5883
 
5884
+ #: preheaders/billing.php:276 preheaders/checkout.php:330
5885
  #: preheaders/billing.php:263 preheaders/billing.php:268
5886
  #: preheaders/billing.php:269 preheaders/billing.php:273
5887
  #: preheaders/billing.php:284 preheaders/checkout.php:340
5892
  msgid "Your email addresses do not match. Please try again."
5893
  msgstr ""
5894
 
5895
+ #: preheaders/billing.php:279 preheaders/checkout.php:335
5896
  #: preheaders/billing.php:268 preheaders/billing.php:271
5897
  #: preheaders/billing.php:272 preheaders/billing.php:276
5898
  #: preheaders/billing.php:289 preheaders/checkout.php:345
5903
  msgid "The email address entered is in an invalid format. Please try again."
5904
  msgstr ""
5905
 
5906
+ #: preheaders/billing.php:283 preheaders/billing.php:274
5907
  #: preheaders/billing.php:275 preheaders/billing.php:276
5908
  #: preheaders/billing.php:280 preheaders/billing.php:295
5909
  msgid "All good!"
5910
  msgstr ""
5911
 
5912
+ #: preheaders/billing.php:353 preheaders/billing.php:340
5913
  #: preheaders/billing.php:345 preheaders/billing.php:346
5914
  #: preheaders/billing.php:350 preheaders/billing.php:370
5915
  #, php-format
5916
  msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
5917
  msgstr ""
5918
 
5919
+ #: preheaders/billing.php:359 preheaders/billing.php:347
5920
  #: preheaders/billing.php:351 preheaders/billing.php:352
5921
  #: preheaders/billing.php:356 preheaders/billing.php:378
5922
  #: preheaders/billing.php:380
5923
  msgid "Error updating billing information."
5924
  msgstr ""
5925
 
5926
+ #: preheaders/cancel.php:59 preheaders/cancel.php:24 preheaders/cancel.php:25
5927
  #: preheaders/cancel.php:28
5928
  msgid "Your membership has been cancelled."
5929
  msgstr ""
5930
 
5931
+ #: preheaders/checkout.php:34 preheaders/checkout.php:344
5932
  #: preheaders/checkout.php:28 preheaders/checkout.php:30
5933
  #: preheaders/checkout.php:31 preheaders/checkout.php:32
5934
  #: preheaders/checkout.php:34 preheaders/checkout.php:354
5939
  msgid "Invalid gateway."
5940
  msgstr ""
5941
 
5942
+ #: preheaders/checkout.php:54 preheaders/checkout.php:88
5943
  #: preheaders/checkout.php:89 preheaders/checkout.php:91
5944
  #: preheaders/checkout.php:95 preheaders/checkout.php:96
5945
  msgid "Checkout: Payment Information"
5946
  msgstr ""
5947
 
5948
+ #: preheaders/checkout.php:59 preheaders/checkout.php:100
5949
  #: preheaders/checkout.php:101
5950
  msgid "Set Up Your Account"
5951
  msgstr ""
5952
 
5953
+ #: preheaders/checkout.php:289 preheaders/checkout.php:300
5954
  #: preheaders/checkout.php:304 preheaders/checkout.php:331
5955
  #: preheaders/checkout.php:416 preheaders/checkout.php:421
5956
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
5957
  msgstr ""
5958
 
5959
+ #: preheaders/checkout.php:325 preheaders/checkout.php:335
5960
  #: preheaders/checkout.php:339 preheaders/checkout.php:367
5961
  #: preheaders/checkout.php:461 preheaders/checkout.php:468
5962
  #: preheaders/checkout.php:473 preheaders/checkout.php:485
5964
  msgid "Your passwords do not match. Please try again."
5965
  msgstr ""
5966
 
5967
+ #: preheaders/checkout.php:340 preheaders/checkout.php:350
5968
  #: preheaders/checkout.php:354 preheaders/checkout.php:382
5969
  #: preheaders/checkout.php:476 preheaders/checkout.php:483
5970
  #: preheaders/checkout.php:486 preheaders/checkout.php:488
5973
  msgid "Please check the box to agree to the %s."
5974
  msgstr ""
5975
 
5976
+ #: preheaders/checkout.php:347 preheaders/checkout.php:357
5977
  #: preheaders/checkout.php:361 preheaders/checkout.php:389
5978
  #: preheaders/checkout.php:483 preheaders/checkout.php:490
5979
  #: preheaders/checkout.php:495 preheaders/checkout.php:512
5981
  msgid "Are you a spammer?"
5982
  msgstr ""
5983
 
5984
+ #: preheaders/checkout.php:368 preheaders/checkout.php:377
5985
  #: preheaders/checkout.php:381 preheaders/checkout.php:410
5986
  #: preheaders/checkout.php:503 preheaders/checkout.php:510
5987
  #: preheaders/checkout.php:515 preheaders/checkout.php:518
5989
  msgid "That username is already taken. Please try another."
5990
  msgstr ""
5991
 
5992
+ #: preheaders/checkout.php:373 preheaders/checkout.php:382
5993
  #: preheaders/checkout.php:386 preheaders/checkout.php:415
5994
  #: preheaders/checkout.php:508 preheaders/checkout.php:515
5995
  #: preheaders/checkout.php:520 preheaders/checkout.php:524
5997
  msgid "That email address is already taken. Please try another."
5998
  msgstr ""
5999
 
6000
+ #: preheaders/checkout.php:404 preheaders/checkout.php:397
6001
  #: preheaders/checkout.php:399 preheaders/checkout.php:416
6002
  #: preheaders/checkout.php:420 preheaders/checkout.php:446
6003
  #: preheaders/checkout.php:525 preheaders/checkout.php:532
6007
  msgid "reCAPTCHA failed. (%s) Please try again."
6008
  msgstr ""
6009
 
6010
+ #: preheaders/checkout.php:491 preheaders/checkout.php:482
6011
  #: preheaders/checkout.php:484 preheaders/checkout.php:501
6012
  #: preheaders/checkout.php:505 preheaders/checkout.php:533
6013
  #: preheaders/checkout.php:647 preheaders/checkout.php:654
6016
  msgid "Payment accepted."
6017
  msgstr ""
6018
 
6019
+ #: preheaders/checkout.php:497 preheaders/checkout.php:490
6020
  #: preheaders/checkout.php:492 preheaders/checkout.php:509
6021
  #: preheaders/checkout.php:513 preheaders/checkout.php:539
6022
  #: preheaders/checkout.php:653 preheaders/checkout.php:660
6027
  "membership."
6028
  msgstr ""
6029
 
6030
+ #: preheaders/checkout.php:572 preheaders/checkout.php:550
6031
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
6032
  #: preheaders/checkout.php:571 preheaders/checkout.php:575
6033
  #: preheaders/checkout.php:581 preheaders/checkout.php:614
6040
  "Please contact us."
6041
  msgstr ""
6042
 
6043
+ #: preheaders/checkout.php:802 preheaders/checkout.php:691
6044
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
6045
  #: preheaders/checkout.php:712 preheaders/checkout.php:722
6046
  #: preheaders/checkout.php:730 preheaders/checkout.php:754
6054
  "submit this form again. Please contact the site owner to fix this issue."
6055
  msgstr ""
6056
 
6057
+ #: preheaders/checkout.php:805 preheaders/checkout.php:694
6058
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
6059
  #: preheaders/checkout.php:715 preheaders/checkout.php:725
6060
  #: preheaders/checkout.php:733 preheaders/checkout.php:757
6068
  "this form again. Please contact the site owner to fix this issue."
6069
  msgstr ""
6070
 
6071
+ #: preheaders/checkout.php:816 preheaders/checkout.php:705
6072
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
6073
  #: preheaders/checkout.php:726 preheaders/checkout.php:736
6074
  #: preheaders/checkout.php:744 preheaders/checkout.php:768
6082
  "will be processed."
6083
  msgstr ""
6084
 
6085
+ #: preheaders/checkout.php:818 preheaders/checkout.php:707
6086
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
6087
  #: preheaders/checkout.php:728 preheaders/checkout.php:738
6088
  #: preheaders/checkout.php:746 preheaders/checkout.php:770
6099
  msgid "Membership expired email sent to %s. "
6100
  msgstr ""
6101
 
6102
+ #: scheduled/crons.php:100 scheduled/crons.php:27 scheduled/crons.php:74
6103
  #: scheduled/crons.php:80 scheduled/crons.php:84 scheduled/crons.php:88
6104
  #: scheduled/crons.php:99
6105
  #, php-format
6106
  msgid "Membership expiring email sent to %s. "
6107
  msgstr ""
6108
 
6109
+ #: scheduled/crons.php:176 scheduled/crons.php:143 scheduled/crons.php:152
6110
  #: scheduled/crons.php:157 scheduled/crons.php:164 scheduled/crons.php:175
6111
  #, php-format
6112
  msgid "Credit card expiring email sent to %s. "
6113
  msgstr ""
6114
 
6115
+ #: scheduled/crons.php:232 scheduled/crons.php:104 scheduled/crons.php:196
6116
  #: scheduled/crons.php:208 scheduled/crons.php:210 scheduled/crons.php:220
6117
  #: scheduled/crons.php:231
6118
  #, php-format
6119
  msgid "Trial ending email sent to %s. "
6120
  msgstr ""
6121
 
6122
+ #: services/applydiscountcode.php:70 services/applydiscountcode.php:64
6123
  #: services/applydiscountcode.php:67
6124
  #, php-format
6125
  msgid "The %s code has been applied to your order. "
6126
  msgstr ""
6127
 
6128
+ #: services/applydiscountcode.php:100 services/applydiscountcode.php:82
6129
  #: services/applydiscountcode.php:83 services/applydiscountcode.php:86
6130
  #: services/applydiscountcode.php:97
6131
  #, php-format
6152
  "this user's membership is cancelled on your site if it should be."
6153
  msgstr ""
6154
 
6155
+ #: shortcodes/pmpro_account.php:45 pages/account.php:19
6156
+ #: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:45
6157
  msgid "Billing"
6158
  msgstr ""
6159
 
6160
  #: shortcodes/pmpro_account.php:64 pages/account.php:36
6161
+ #: shortcodes/pmpro_account.php:62 shortcodes/pmpro_account.php:64
6162
+ #: shortcodes/pmpro_account.php:65
6163
  msgid "Update Billing Info"
6164
  msgstr ""
6165
 
6166
  #: shortcodes/pmpro_account.php:70 pages/account.php:42
6167
+ #: shortcodes/pmpro_account.php:68 shortcodes/pmpro_account.php:70
6168
+ #: shortcodes/pmpro_account.php:71
6169
  msgid "Change"
6170
  msgstr ""
6171
 
6172
+ #: shortcodes/pmpro_account.php:93 pages/account.php:64
6173
+ #: shortcodes/pmpro_account.php:90 shortcodes/pmpro_account.php:92
6174
+ #: shortcodes/pmpro_account.php:93
6175
  msgid "View all Membership Options"
6176
  msgstr ""
6177
 
6178
+ #: shortcodes/pmpro_account.php:102 pages/account.php:46 pages/account.php:50
6179
  #: pages/account.php:71 shortcodes/pmpro_account.php:99
6180
+ #: shortcodes/pmpro_account.php:101 shortcodes/pmpro_account.php:102
6181
  msgid "My Account"
6182
  msgstr ""
6183
 
6184
+ #: shortcodes/pmpro_account.php:113 pages/account.php:55 pages/account.php:59
6185
  #: pages/account.php:80 shortcodes/pmpro_account.php:110
6186
+ #: shortcodes/pmpro_account.php:112 shortcodes/pmpro_account.php:113
6187
  msgid "Edit Profile"
6188
  msgstr ""
6189
 
6190
+ #: shortcodes/pmpro_account.php:114 pages/account.php:56 pages/account.php:60
6191
  #: pages/account.php:81 shortcodes/pmpro_account.php:111
6192
+ #: shortcodes/pmpro_account.php:113 shortcodes/pmpro_account.php:114
6193
  msgid "Change Password"
6194
  msgstr ""
6195
 
6196
+ #: shortcodes/pmpro_account.php:121 pages/account.php:87 pages/account.php:125
6197
  #: pages/account.php:129 shortcodes/pmpro_account.php:118
6198
+ #: shortcodes/pmpro_account.php:120 shortcodes/pmpro_account.php:121
6199
  msgid "Past Invoices"
6200
  msgstr ""
6201
 
6202
+ #: shortcodes/pmpro_account.php:127 pages/account.php:93
6203
+ #: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:126
6204
+ #: shortcodes/pmpro_account.php:127
6205
  msgid "Amount"
6206
  msgstr ""
6207
 
6208
+ #: shortcodes/pmpro_account.php:155 pages/account.php:121
6209
  #: pages/account.php:140 pages/account.php:144
6210
+ #: shortcodes/pmpro_account.php:152 shortcodes/pmpro_account.php:154
6211
+ #: shortcodes/pmpro_account.php:155
6212
  msgid "View All Invoices"
6213
  msgstr ""
6214
 
6215
+ #: shortcodes/pmpro_account.php:162 pages/account.php:128
6216
  #: pages/account.php:146 pages/account.php:150
6217
+ #: shortcodes/pmpro_account.php:159 shortcodes/pmpro_account.php:161
6218
+ #: shortcodes/pmpro_account.php:162
6219
  msgid "Member Links"
6220
  msgstr ""
6221
 
6458
  msgid "Cancel Membership"
6459
  msgstr ""
6460
 
6461
+ #: pages/cancel.php:17 pages/cancel.php:37
6462
+ msgid "Yes, cancel my account"
6463
+ msgstr ""
6464
+
6465
+ #: pages/cancel.php:19 pages/cancel.php:38
6466
+ msgid "No, keep my account"
6467
+ msgstr ""
6468
+
6469
  #: pages/checkout.php:51 pages/checkout.php:52
6470
  #, php-format
6471
  msgid "<p>The <strong>%s</strong> code has been applied to your order.</p>"
pages/billing.php CHANGED
@@ -69,7 +69,7 @@
69
  }
70
  ?>
71
 
72
- <?php
73
  $pmpro_include_billing_address_fields = apply_filters('pmpro_include_billing_address_fields', true);
74
  if($pmpro_include_billing_address_fields)
75
  {
69
  }
70
  ?>
71
 
72
+ <?php
73
  $pmpro_include_billing_address_fields = apply_filters('pmpro_include_billing_address_fields', true);
74
  if($pmpro_include_billing_address_fields)
75
  {
pages/cancel.php CHANGED
@@ -1,10 +1,17 @@
1
  <?php
2
- global $pmpro_msg, $pmpro_msgt, $pmpro_confirm, $current_user;
3
 
4
- if(isset($_REQUEST['level']))
5
- $level = $_REQUEST['level'];
6
- else
7
- $level = false;
 
 
 
 
 
 
 
8
  ?>
9
  <div id="pmpro_cancel">
10
  <?php
@@ -18,9 +25,9 @@
18
  <?php
19
  if(!$pmpro_confirm)
20
  {
21
- if($level)
22
  {
23
- if($level == "all")
24
  {
25
  ?>
26
  <p><?php _e('Are you sure you want to cancel your membership?', 'pmpro'); ?></p>
@@ -28,14 +35,15 @@
28
  }
29
  else
30
  {
 
31
  ?>
32
- <p><?php printf(__('Are you sure you want to cancel your %s membership?', 'pmpro'), $current_user->membership_level->name); ?></p>
33
  <?php
34
  }
35
  ?>
36
  <div class="pmpro_actionlinks">
37
- <a class="pmpro_btn pmpro_yeslink yeslink" href="<?php echo pmpro_url("cancel", "?confirm=true")?>"><?php _e('Yes, cancel my account', 'pmpro');?></a>
38
- <a class="pmpro_btn pmpro_cancel pmpro_nolink nolink" href="<?php echo pmpro_url("account")?>"><?php _e('No, keep my account', 'pmpro');?></a>
39
  </div>
40
  <?php
41
  }
@@ -55,26 +63,33 @@
55
  </tr>
56
  </thead>
57
  <tbody>
58
- <tr>
59
- <td class="pmpro_cancel-membership-levelname">
60
- <?php echo $current_user->membership_level->name?>
61
- </td>
62
- <td class="pmpro_cancel-membership-expiration">
63
- <?php
64
- if($current_user->membership_level->enddate)
65
- echo date_i18n(get_option('date_format'), $current_user->membership_level->enddate);
66
- else
67
- echo "---";
68
  ?>
69
- </td>
70
- <td class="pmpro_cancel-membership-cancel">
71
- <a href="<?php echo pmpro_url("cancel", "?level=" . $current_user->membership_level->id)?>"><?php _e("Cancel", "pmpro");?></a>
72
- </td>
73
- </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  </tbody>
75
  </table>
76
  <div class="pmpro_actionlinks">
77
- <a href="<?php echo pmpro_url("cancel", "?level=all"); ?>"><?php _e("Cancel All Memberships", "pmpro");?></a>
78
  </div>
79
  <?php
80
  }
1
  <?php
2
+ global $pmpro_msg, $pmpro_msgt, $pmpro_confirm, $current_user, $wpdb;
3
 
4
+ if(isset($_REQUEST['levelstocancel']) && $_REQUEST['levelstocancel'] !== 'all') {
5
+ //convert spaces back to +
6
+ $_REQUEST['levelstocancel'] = str_replace(array(' ', '%20'), '+', $_REQUEST['levelstocancel']);
7
+
8
+ //get the ids
9
+ $old_level_ids = array_map('intval', explode("+", preg_replace("[^0-9al\+]", "", $_REQUEST['levelstocancel'])));
10
+ } elseif(isset($_REQUEST['levelstocancel']) && $_REQUEST['levelstocancel'] == 'all') {
11
+ $old_level_ids = 'all';
12
+ } else {
13
+ $old_level_ids = false;
14
+ }
15
  ?>
16
  <div id="pmpro_cancel">
17
  <?php
25
  <?php
26
  if(!$pmpro_confirm)
27
  {
28
+ if($old_level_ids)
29
  {
30
+ if(!is_array($old_level_ids) && $old_level_ids == "all")
31
  {
32
  ?>
33
  <p><?php _e('Are you sure you want to cancel your membership?', 'pmpro'); ?></p>
35
  }
36
  else
37
  {
38
+ $level_names = $wpdb->get_col("SELECT name FROM $wpdb->pmpro_membership_levels WHERE id IN('" . implode("','", $old_level_ids) . "')");
39
  ?>
40
+ <p><?php printf(_n('Are you sure you want to cancel your %s membership?', 'Are you sure you want to cancel your %s memberships?', count($level_names), 'pmpro'), pmpro_implodeToEnglish($level_names)); ?></p>
41
  <?php
42
  }
43
  ?>
44
  <div class="pmpro_actionlinks">
45
+ <a class="pmpro_btn pmpro_yeslink yeslink" href="<?php echo pmpro_url("cancel", "?levelstocancel=" . esc_attr($_REQUEST['levelstocancel']) . "&confirm=true")?>"><?php _e('Yes, cancel this membership', 'pmpro');?></a>
46
+ <a class="pmpro_btn pmpro_cancel pmpro_nolink nolink" href="<?php echo pmpro_url("account")?>"><?php _e('No, keep this membership', 'pmpro');?></a>
47
  </div>
48
  <?php
49
  }
63
  </tr>
64
  </thead>
65
  <tbody>
66
+ <?php
67
+ $current_user->membership_levels = pmpro_getMembershipLevelsForUser($current_user->ID);
68
+ foreach($current_user->membership_levels as $level) {
 
 
 
 
 
 
 
69
  ?>
70
+ <tr>
71
+ <td class="pmpro_cancel-membership-levelname">
72
+ <?php echo $level->name?>
73
+ </td>
74
+ <td class="pmpro_cancel-membership-expiration">
75
+ <?php
76
+ if($level->enddate)
77
+ echo date_i18n(get_option('date_format'), $level->enddate);
78
+ else
79
+ echo "---";
80
+ ?>
81
+ </td>
82
+ <td class="pmpro_cancel-membership-cancel">
83
+ <a href="<?php echo pmpro_url("cancel", "?levelstocancel=" . $level->id)?>"><?php _e("Cancel", "pmpro");?></a>
84
+ </td>
85
+ </tr>
86
+ <?php
87
+ }
88
+ ?>
89
  </tbody>
90
  </table>
91
  <div class="pmpro_actionlinks">
92
+ <a href="<?php echo pmpro_url("cancel", "?levelstocancel=all"); ?>"><?php _e("Cancel All Memberships", "pmpro");?></a>
93
  </div>
94
  <?php
95
  }
pages/checkout.php CHANGED
@@ -52,8 +52,15 @@
52
  </p>
53
 
54
  <?php
55
- if(!empty($pmpro_level->description))
56
- echo apply_filters("the_content", stripslashes($pmpro_level->description));
 
 
 
 
 
 
 
57
  ?>
58
 
59
  <div id="pmpro_level_cost">
52
  </p>
53
 
54
  <?php
55
+ /**
56
+ * All devs to filter the level description at checkout.
57
+ * We also have a function in includes/filters.php that applies the the_content filters to this description.
58
+ * @param string $description The level description.
59
+ * @param object $pmpro_level The PMPro Level object.
60
+ */
61
+ $level_description = apply_filters('pmpro_level_description', $pmpro_level->description, $pmpro_level);
62
+ if(!empty($level_description))
63
+ echo $level_description;
64
  ?>
65
 
66
  <div id="pmpro_level_cost">
pages/confirmation.php CHANGED
@@ -27,13 +27,19 @@
27
 
28
  $confirmation_message .= "<p>" . sprintf(__('Below are details about your membership account and a receipt for your initial membership invoice. A welcome email with a copy of your initial membership invoice has been sent to %s.', 'pmpro'), $pmpro_invoice->user->user_email) . "</p>";
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
  $confirmation_message = apply_filters("pmpro_confirmation_message", $confirmation_message, $pmpro_invoice);
35
 
36
- echo apply_filters("the_content", $confirmation_message);
37
  ?>
38
 
39
 
@@ -96,6 +102,11 @@
96
  {
97
  $confirmation_message .= "<p>" . sprintf(__('Below are details about your membership account. A welcome email has been sent to %s.', 'pmpro'), $current_user->user_email) . "</p>";
98
 
 
 
 
 
 
99
  $confirmation_message = apply_filters("pmpro_confirmation_message", $confirmation_message, false);
100
 
101
  echo $confirmation_message;
27
 
28
  $confirmation_message .= "<p>" . sprintf(__('Below are details about your membership account and a receipt for your initial membership invoice. A welcome email with a copy of your initial membership invoice has been sent to %s.', 'pmpro'), $pmpro_invoice->user->user_email) . "</p>";
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.
36
+ * We also have a function in includes/filters.php that applies the the_content filters to this message.
37
+ * @param string $confirmation_message The confirmation message.
38
+ * @param object $pmpro_invoice The PMPro Invoice/Order object.
39
+ */
40
  $confirmation_message = apply_filters("pmpro_confirmation_message", $confirmation_message, $pmpro_invoice);
41
 
42
+ echo $confirmation_message;
43
  ?>
44
 
45
 
102
  {
103
  $confirmation_message .= "<p>" . sprintf(__('Below are details about your membership account. A welcome email has been sent to %s.', 'pmpro'), $current_user->user_email) . "</p>";
104
 
105
+ /**
106
+ * All devs to filter the confirmation message.
107
+ * Documented above.
108
+ * We also have a function in includes/filters.php that applies the the_content filters to this message.
109
+ */
110
  $confirmation_message = apply_filters("pmpro_confirmation_message", $confirmation_message, false);
111
 
112
  echo $confirmation_message;
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.8.10.4
7
  Author: Stranger Studios
8
  Author URI: http://www.strangerstudios.com
9
  Text Domain: pmpro
@@ -15,7 +15,7 @@ Domain Path: /languages
15
  */
16
 
17
  //version constant
18
- define("PMPRO_VERSION", "1.8.10.4");
19
  define("PMPRO_USER_AGENT", "Paid Memberships Pro v" . PMPRO_VERSION . "; " . site_url());
20
 
21
  //if the session has been started yet, start it (ignore if running from command line)
3
  Plugin Name: Paid Memberships Pro
4
  Plugin URI: http://www.paidmembershipspro.com
5
  Description: Plugin to Handle Memberships
6
+ Version: 1.8.11
7
  Author: Stranger Studios
8
  Author URI: http://www.strangerstudios.com
9
  Text Domain: pmpro
15
  */
16
 
17
  //version constant
18
+ define("PMPRO_VERSION", "1.8.11");
19
  define("PMPRO_USER_AGENT", "Paid Memberships Pro v" . PMPRO_VERSION . "; " . site_url());
20
 
21
  //if the session has been started yet, start it (ignore if running from command line)
preheaders/billing.php CHANGED
@@ -28,6 +28,9 @@ if (empty($user_order->gateway)) {
28
  $besecure = pmpro_getOption("use_ssl");
29
  }
30
 
 
 
 
31
  //code for stripe
32
  if ($gateway == "stripe") {
33
  //stripe js library
28
  $besecure = pmpro_getOption("use_ssl");
29
  }
30
 
31
+ //enqueue some scripts
32
+ wp_enqueue_script( 'jquery.creditCardValidator', plugins_url( '/js/jquery.creditCardValidator.js', dirname( __FILE__ ) ), array( 'jquery' ) );
33
+
34
  //code for stripe
35
  if ($gateway == "stripe") {
36
  //stripe js library
preheaders/cancel.php CHANGED
@@ -2,7 +2,7 @@
2
  global $besecure;
3
  $besecure = false;
4
 
5
- global $current_user, $pmpro_msg, $pmpro_msgt, $pmpro_confirm, $pmpro_error;
6
 
7
  //get level information for current user
8
  if($current_user->ID)
@@ -14,6 +14,28 @@
14
  exit;
15
  }
16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  //are we confirming a cancellation?
18
  if(isset($_REQUEST['confirm']))
19
  $pmpro_confirm = $_REQUEST['confirm'];
@@ -21,20 +43,29 @@
21
  $pmpro_confirm = false;
22
 
23
  if($pmpro_confirm) {
24
- $old_level_id = $current_user->membership_level->id;
25
- $worked = pmpro_changeMembershipLevel(false, $current_user->ID, 'cancelled');
26
- if($worked === true && empty($pmpro_error))
 
 
 
 
 
 
 
 
 
27
  {
28
  $pmpro_msg = __("Your membership has been cancelled.", 'pmpro');
29
  $pmpro_msgt = "pmpro_success";
30
 
31
  //send an email to the member
32
  $myemail = new PMProEmail();
33
- $myemail->sendCancelEmail();
34
 
35
  //send an email to the admin
36
  $myemail = new PMProEmail();
37
- $myemail->sendCancelAdminEmail($current_user, $old_level_id);
38
  } else {
39
  global $pmpro_error;
40
  $pmpro_msg = $pmpro_error;
2
  global $besecure;
3
  $besecure = false;
4
 
5
+ global $wpdb, $current_user, $pmpro_msg, $pmpro_msgt, $pmpro_confirm, $pmpro_error;
6
 
7
  //get level information for current user
8
  if($current_user->ID)
14
  exit;
15
  }
16
 
17
+ //using the old ?level param?
18
+ if(!empty($_REQUEST['level']) && empty($_REQUEST['levelstocancel'])) {
19
+ $_REQUEST['levelstocancel'] = $_REQUEST['level'];
20
+ }
21
+
22
+ //check if a level was passed in to cancel specifically
23
+ if(!empty($_REQUEST['levelstocancel']) && $_REQUEST['levelstocancel'] != 'all') {
24
+ //convert spaces back to +
25
+ $_REQUEST['levelstocancel'] = str_replace(array(' ', '%20'), '+', $_REQUEST['levelstocancel']);
26
+
27
+ //get the ids
28
+ $old_level_ids = array_map('intval', explode("+", preg_replace("[^0-9\+]", "", $_REQUEST['levelstocancel'])));
29
+
30
+ //make sure the user has their old level
31
+ if(!pmpro_hasMembershipLevel($old_level_ids)) {
32
+ wp_redirect(pmpro_url("levels"));
33
+ exit;
34
+ }
35
+ } else {
36
+ $old_level_ids = false; //cancel all levels
37
+ }
38
+
39
  //are we confirming a cancellation?
40
  if(isset($_REQUEST['confirm']))
41
  $pmpro_confirm = $_REQUEST['confirm'];
43
  $pmpro_confirm = false;
44
 
45
  if($pmpro_confirm) {
46
+ if(!empty($old_level_ids)) {
47
+ $worked = true;
48
+ foreach($old_level_ids as $old_level_id) {
49
+ $worked = $worked && pmpro_cancelMembershipLevel($old_level_id, $current_user->ID, 'cancelled');
50
+ }
51
+ }
52
+ else {
53
+ $old_level_ids = $wpdb->get_col("SELECT id FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $current_user->ID . "' AND status = 'active'");
54
+ $worked = pmpro_changeMembershipLevel(0, $current_user->ID, 'cancelled');
55
+ }
56
+
57
+ if($worked === true && empty($pmpro_error))
58
  {
59
  $pmpro_msg = __("Your membership has been cancelled.", 'pmpro');
60
  $pmpro_msgt = "pmpro_success";
61
 
62
  //send an email to the member
63
  $myemail = new PMProEmail();
64
+ $myemail->sendCancelEmail($current_user, $old_level_ids);
65
 
66
  //send an email to the admin
67
  $myemail = new PMProEmail();
68
+ $myemail->sendCancelAdminEmail($current_user, $old_level_ids);
69
  } else {
70
  global $pmpro_error;
71
  $pmpro_msg = $pmpro_error;
preheaders/checkout.php CHANGED
@@ -36,49 +36,7 @@ if ( ! in_array( $gateway, $valid_gateways ) ) {
36
  }
37
 
38
  //what level are they purchasing? (discount code passed)
39
- if ( ! empty( $_REQUEST['level'] ) && ! empty( $_REQUEST['discount_code'] ) ) {
40
- $discount_code = preg_replace( "/[^A-Za-z0-9\-]/", "", $_REQUEST['discount_code'] );
41
- $discount_code_id = $wpdb->get_var( "SELECT id FROM $wpdb->pmpro_discount_codes WHERE code = '" . $discount_code . "' LIMIT 1" );
42
-
43
- //check code
44
- $code_check = pmpro_checkDiscountCode( $discount_code, (int) $_REQUEST['level'], true );
45
- if ( $code_check[0] == false ) {
46
- //error
47
- $pmpro_msg = $code_check[1];
48
- $pmpro_msgt = "pmpro_error";
49
-
50
- //don't use this code
51
- $use_discount_code = false;
52
- } else {
53
- $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 = '" . (int) $_REQUEST['level'] . "' LIMIT 1";
54
- $pmpro_level = $wpdb->get_row( $sqlQuery );
55
-
56
- //if the discount code doesn't adjust the level, let's just get the straight level
57
- if ( empty( $pmpro_level ) ) {
58
- $pmpro_level = $wpdb->get_row( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . (int) $_REQUEST['level'] . "' LIMIT 1" );
59
- }
60
-
61
- //filter adjustments to the level
62
- $pmpro_level->code_id = $discount_code_id;
63
- $pmpro_level = apply_filters( "pmpro_discount_code_level", $pmpro_level, $discount_code_id );
64
-
65
- $use_discount_code = true;
66
- }
67
- }
68
-
69
- //what level are they purchasing? (no discount code)
70
- if ( empty( $pmpro_level ) && ! empty( $_REQUEST['level'] ) ) {
71
- $pmpro_level = $wpdb->get_row( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . esc_sql( $_REQUEST['level'] ) . "' AND allow_signups = 1 LIMIT 1" );
72
- } elseif ( empty( $pmpro_level ) ) {
73
- //check if a level is defined in custom fields
74
- $default_level = get_post_meta( $post->ID, "pmpro_default_level", true );
75
- if ( ! empty( $default_level ) ) {
76
- $pmpro_level = $wpdb->get_row( "SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . esc_sql( $default_level ) . "' AND allow_signups = 1 LIMIT 1" );
77
- }
78
- }
79
-
80
- //filter the level (for upgrades, etc)
81
- $pmpro_level = apply_filters( "pmpro_checkout_level", $pmpro_level );
82
 
83
  if ( empty( $pmpro_level->id ) ) {
84
  wp_redirect( pmpro_url( "levels" ) );
@@ -253,7 +211,7 @@ if ( isset( $_REQUEST['CVV'] ) ) {
253
  }
254
 
255
  if ( isset( $_REQUEST['discount_code'] ) ) {
256
- $discount_code = sanitize_text_field( $_REQUEST['discount_code'] );
257
  } else {
258
  $discount_code = "";
259
  }
@@ -680,14 +638,27 @@ if ( ! empty( $pmpro_confirmed ) ) {
680
  */
681
  $enddate = apply_filters( "pmpro_checkout_end_date", $enddate, $user_id, $pmpro_level, $startdate );
682
 
683
- //update membership_user table.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
684
  if ( ! empty( $discount_code ) && ! empty( $use_discount_code ) ) {
685
  $discount_code_id = $wpdb->get_var( "SELECT id FROM $wpdb->pmpro_discount_codes WHERE code = '" . esc_sql( $discount_code ) . "' LIMIT 1" );
686
  } else {
687
  $discount_code_id = "";
688
  }
689
 
690
-
691
  $custom_level = array(
692
  'user_id' => $user_id,
693
  'membership_id' => $pmpro_level->id,
@@ -795,21 +766,26 @@ if ( ! empty( $pmpro_confirmed ) ) {
795
  //hook
796
  do_action( "pmpro_after_checkout", $user_id, $morder ); //added $morder param in v2.0
797
 
798
- //setup some values for the emails
799
- if ( ! empty( $morder ) ) {
800
- $invoice = new MemberOrder( $morder->id );
801
- } else {
802
- $invoice = null;
803
- }
804
- $current_user->membership_level = $pmpro_level; //make sure they have the right level info
805
 
806
- //send email to member
807
- $pmproemail = new PMProEmail();
808
- $pmproemail->sendCheckoutEmail( $current_user, $invoice );
 
 
 
 
809
 
810
- //send email to admin
811
- $pmproemail = new PMProEmail();
812
- $pmproemail->sendCheckoutAdminEmail( $current_user, $invoice );
 
 
 
 
 
813
 
814
  //redirect to confirmation
815
  $rurl = pmpro_url( "confirmation", "?level=" . $pmpro_level->id );
36
  }
37
 
38
  //what level are they purchasing? (discount code passed)
39
+ $pmpro_level = pmpro_getLevelAtCheckout();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
 
41
  if ( empty( $pmpro_level->id ) ) {
42
  wp_redirect( pmpro_url( "levels" ) );
211
  }
212
 
213
  if ( isset( $_REQUEST['discount_code'] ) ) {
214
+ $discount_code = preg_replace( "/[^A-Za-z0-9\-]/", "", $_REQUEST['discount_code'] );
215
  } else {
216
  $discount_code = "";
217
  }
638
  */
639
  $enddate = apply_filters( "pmpro_checkout_end_date", $enddate, $user_id, $pmpro_level, $startdate );
640
 
641
+ //check code before adding it to the order
642
+ $code_check = pmpro_checkDiscountCode( $discount_code, $pmpro_level->id, true );
643
+ if ( $code_check[0] == false ) {
644
+ //error
645
+ $pmpro_msg = $code_check[1];
646
+ $pmpro_msgt = "pmpro_error";
647
+
648
+ //don't use this code
649
+ $use_discount_code = false;
650
+ } else {
651
+ //all okay
652
+ $use_discount_code = false;
653
+ }
654
+
655
+ //update membership_user table.
656
  if ( ! empty( $discount_code ) && ! empty( $use_discount_code ) ) {
657
  $discount_code_id = $wpdb->get_var( "SELECT id FROM $wpdb->pmpro_discount_codes WHERE code = '" . esc_sql( $discount_code ) . "' LIMIT 1" );
658
  } else {
659
  $discount_code_id = "";
660
  }
661
 
 
662
  $custom_level = array(
663
  'user_id' => $user_id,
664
  'membership_id' => $pmpro_level->id,
766
  //hook
767
  do_action( "pmpro_after_checkout", $user_id, $morder ); //added $morder param in v2.0
768
 
769
+ $sendemails = apply_filters( "pmpro_send_checkout_emails", true);
770
+
771
+ if($sendemails) { // Send the e-mails only if the flag is set to true
 
 
 
 
772
 
773
+ //setup some values for the emails
774
+ if ( ! empty( $morder ) ) {
775
+ $invoice = new MemberOrder( $morder->id );
776
+ } else {
777
+ $invoice = null;
778
+ }
779
+ $current_user->membership_level = $pmpro_level; //make sure they have the right level info
780
 
781
+ //send email to member
782
+ $pmproemail = new PMProEmail();
783
+ $pmproemail->sendCheckoutEmail( $current_user, $invoice );
784
+
785
+ //send email to admin
786
+ $pmproemail = new PMProEmail();
787
+ $pmproemail->sendCheckoutAdminEmail( $current_user, $invoice );
788
+ }
789
 
790
  //redirect to confirmation
791
  $rurl = pmpro_url( "confirmation", "?level=" . $pmpro_level->id );
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: strangerstudios
3
  Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
4
  Requires at least: 3.5
5
- Tested up to: 4.5.3
6
- Stable tag: 1.8.10.4
7
 
8
  A revenue-generating machine for membership sites. Unlimited levels with recurring payment, protected content and member management.
9
 
@@ -115,6 +115,28 @@ Not sure? You can find out by doing a bit a research.
115
  [View All Screenshots](http://www.paidmembershipspro.com/features/screenshots/)
116
 
117
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  = 1.8.10.4 =
119
  * BUG: Fixed issue where non-decimal currencies (e.g. Japanese Yen) were sending invalid amounts to the Stripe gateway.
120
  * BUG/ENHANCEMENT: If an invalid discount code is applied at checkout, we now set the code_level JS var to false. Along with updates to the Pay by Check addon, this fixes issues with the Pay by Check addon where users could not checkout when using a discount code that reduced the price to free.
2
  Contributors: strangerstudios
3
  Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
4
  Requires at least: 3.5
5
+ Tested up to: 4.6.1
6
+ Stable tag: 1.8.11
7
 
8
  A revenue-generating machine for membership sites. Unlimited levels with recurring payment, protected content and member management.
9
 
115
  [View All Screenshots](http://www.paidmembershipspro.com/features/screenshots/)
116
 
117
  == Changelog ==
118
+ = 1.8.11 =
119
+ * BUG: Fixed URL used when checking for addon updates.
120
+ * BUG: Now enqueueing the jquery.creditCardValidator.js file in Billing preheader.
121
+ * BUG: Fixed issues where PayPal IPN updates would sometimes log $0 instead of the actual billing amount.
122
+ * BUG: Fixed warnings in the PayPal IPN handler.
123
+ * BUG/ENHANCEMENT: Added pmpro_checkout_level filter and now using that filter to apply the_content filters to the level description at checkout. This allows you to turn off the the_content filters (e.g. processing shortcodes) by using remove_filter('pmpro_checkout_level', 'pmpro_pmpro_checkout_level'); in a custom plugin.
124
+ * BUG/ENHANCEMENT: Using the pmpro_confirmation_message filter on the confirmation page whether there is an invoice or not. Now also adding the the_content filters to the confirmation message. You can disable this by using remove_filter('pmpro_confirmation_message', 'pmpro_pmpro_confirmation_message'); in a custom plugin.
125
+ * ENHANCEMENT: Now tracking IPN event ids in order notes for recurring orders.
126
+ * ENHANCEMENT: Added pmpro_subscription_ipn_event_processed hook to IPN handler.
127
+ * ENHANCEMENT: Added pmpro_set_message filter to edit PMPro error messages. Passes the message and type.
128
+ * ENHANCEMENT: Now listing categories in hierarchical format in the Content Settings section of Membership Levels.
129
+ * ENHANCEMENT: Added pmpro_areLevelsFree() function to check if all levels in an array of levels are free.
130
+ * ENHANCEMENT: Added pmpro_getLevelsCost() - with an s - function to get the combined cost of multiple levels in an array.
131
+ * ENHANCEMENT: Added pmpro_getLevelsExpiration() - with an s - function to get the combined expiration text for multiple levels in array.
132
+ * ENHANCEMENT: Created the pmpro_getLevelAtCheckout function that modularizes some of the logic of creating the pmpro_level global at checkout.
133
+ * ENHANCEMENT: Added pmpro_members_list_user filter used on the admin members list and members list CSV export.
134
+ * ENHANCEMENT: Added a 4th parameter $cancel_level to pmpro_changeMembershipLevel(). If set, that level will definitely be cancelled locally and at the gateway. This parameter is also passed to the pmpro_before_change_membership_level and pmpro_after_change_membership_level hook.
135
+ * ENHANCEMENT: Added a new function pmpro_cancelMembershipLevel($level_id, $user_id, $old_level_status) that acts as a wrapper to pass the $cancel_level param to pmpro_changeMembershipLevel().
136
+ * ENHANCEMENT: Updated the cancel page on the frontend to support the Multiple Memberships per User addon. All memberships are shown. You can cancel individual memberships separately. The language of the confirm button mentions memberships vs account.
137
+ * ENHANCEMENT: Added pmpro_getMemberOrdersByCheckoutID($checkout_id) function to support Multiple Memberships per User and others using the checkout_id.
138
+ * ENHANCEMENT: Added a refund($order, $transaction_id) method to the PMPro_stripe class. This will be used by the Multiple Memberships per User addon and eventually used in other areas by the core pluginn.
139
+
140
  = 1.8.10.4 =
141
  * BUG: Fixed issue where non-decimal currencies (e.g. Japanese Yen) were sending invalid amounts to the Stripe gateway.
142
  * BUG/ENHANCEMENT: If an invalid discount code is applied at checkout, we now set the code_level JS var to false. Along with updates to the Pay by Check addon, this fixes issues with the Pay by Check addon where users could not checkout when using a discount code that reduced the price to free.
scheduled/crons.php CHANGED
@@ -58,20 +58,21 @@ function pmpro_cron_expiration_warnings()
58
 
59
  //look for memberships that are going to expire within one week (but we haven't emailed them within a week)
60
  $sqlQuery = $wpdb->prepare(
61
- "SELECT mu.user_id, mu.membership_id, mu.startdate, mu.enddate
62
- FROM {$wpdb->pmpro_memberships_users} AS mu
63
- LEFT JOIN {$wpdb->usermeta} AS um ON um.user_id = mu.user_id AND um.meta_key = %s
64
- INNER JOIN {$wpdb->users} AS u ON u.ID = mu.user_id AND (
65
- mu.membership_id <> 0 OR
66
- mu.membership_id <> NULL OR
67
- mu.membership_id <> 'NULL'
68
- )
69
- WHERE mu.status = 'active'
70
- AND mu.enddate IS NOT NULL
71
- AND mu.enddate <> ''
72
- AND mu.enddate <> '0000-00-00 00:00:00'
73
- AND DATE_SUB(mu.enddate, INTERVAL %d Day) <= %s
74
- AND (um.meta_value IS NULL OR DATE_ADD(um.meta_value, INTERVAL %d Day) <= %s)
 
75
  ORDER BY mu.enddate",
76
  "pmpro_expiration_notice",
77
  $pmpro_email_days_before_expiration,
58
 
59
  //look for memberships that are going to expire within one week (but we haven't emailed them within a week)
60
  $sqlQuery = $wpdb->prepare(
61
+ "SELECT
62
+ mu.user_id,
63
+ mu.membership_id,
64
+ mu.startdate,
65
+ mu.enddate
66
+ FROM {$wpdb->pmpro_memberships_users} AS mu
67
+ INNER JOIN {$wpdb->usermeta} AS um ON um.user_id = mu.user_id AND (
68
+ um.meta_key = %s AND
69
+ (um.meta_value IS NULL OR DATE_ADD(um.meta_value, INTERVAL %d DAY) <= %s)
70
+ )
71
+ WHERE mu.status = 'active'
72
+ AND mu.enddate IS NOT NULL
73
+ AND mu.enddate <> '0000-00-00 00:00:00'
74
+ AND DATE_SUB(mu.enddate, INTERVAL %d DAY) <= %s
75
+ AND (mu.membership_id <> 0 OR mu.membership_id <> NULL)
76
  ORDER BY mu.enddate",
77
  "pmpro_expiration_notice",
78
  $pmpro_email_days_before_expiration,
services/ipnhandler.php CHANGED
@@ -284,9 +284,9 @@ if ( $txn_type == "subscr_cancel" ) {
284
  (2) The user doesn't currently have the level attached to this order.
285
  */
286
 
287
- if ( $last_subscr_order->status == "cancelled" ) {
288
  ipnlog( "We've already processed this cancellation. Probably originated from WP/PMPro. (Order #" . $last_subscr_order->id . ", Subscription Transaction ID #" . $subscr_id . ")" );
289
- } elseif ( ! pmpro_hasMembershipLevel( $last_subsc_order->membership_id, $user->ID ) ) {
290
  ipnlog( "This user has a different level than the one associated with this order. Their membership was probably changed by an admin or through an upgrade/downgrade. (Order #" . $last_subscr_order->id . ", Subscription Transaction ID #" . $subscr_id . ")" );
291
  } else {
292
  pmpro_changeMembershipLevel( 0, $last_subscr_order->user_id, 'cancelled' );
@@ -481,6 +481,9 @@ function pmpro_ipnCheckReceiverEmail( $email ) {
481
  Change the membership level. We also update the membership order to include filtered valus.
482
  */
483
  function pmpro_ipnChangeMembershipLevel( $txn_id, &$morder ) {
 
 
 
484
  //filter for level
485
  $morder->membership_level = apply_filters( "pmpro_ipnhandler_level", $morder->membership_level, $morder->user_id );
486
 
@@ -544,7 +547,17 @@ function pmpro_ipnChangeMembershipLevel( $txn_id, &$morder ) {
544
 
545
  //add discount code use
546
  if ( ! empty( $discount_code ) && ! empty( $use_discount_code ) ) {
547
- $wpdb->query( "INSERT INTO $wpdb->pmpro_discount_codes_uses (code_id, user_id, order_id, timestamp) VALUES('" . $discount_code_id . "', '" . $morder->user_id . "', '" . $morder->id . "', '" . current_time( 'mysql' ) . "" );
 
 
 
 
 
 
 
 
 
 
548
  }
549
 
550
  //save first and last name fields
@@ -600,9 +613,9 @@ function pmpro_ipnFailedPayment( $last_order ) {
600
  $morder = new MemberOrder();
601
  $morder->user_id = $last_order->user_id;
602
 
603
- $user = new WP_User($last_order->user_id);
604
- $user->membership_level = pmpro_getMembershipLevelForUser($user->ID);
605
-
606
  //add billing information if appropriate
607
  if ( $last_order->gateway == "paypal" ) //website payments pro
608
  {
@@ -660,15 +673,18 @@ function pmpro_ipnSaveOrder( $txn_id, $last_order ) {
660
  $morder->payment_type = $last_order->payment_type;
661
 
662
  //set amount based on which PayPal type
663
- if ( $last_order->gateway == "paypal" ) {
664
- $morder->InitialPayment = $_POST['amount']; //not the initial payment, but the class is expecting that
665
- $morder->PaymentAmount = $_POST['amount'];
666
- } elseif ( $last_order->gateway == "paypalexpress" ) {
667
- $morder->InitialPayment = $_POST['amount']; //not the initial payment, but the class is expecting that
668
- $morder->PaymentAmount = $_POST['amount'];
669
- } elseif ( $last_order->gateway == "paypalstandard" ) {
670
- $morder->InitialPayment = $_POST['mc_gross']; //not the initial payment, but the class is expecting that
671
- $morder->PaymentAmount = $_POST['mc_gross'];
 
 
 
672
  }
673
 
674
  $morder->FirstName = $_POST['first_name'];
@@ -707,6 +723,26 @@ function pmpro_ipnSaveOrder( $txn_id, $last_order ) {
707
  $morder->timestamp = strtotime( $_POST['payment_date'] );
708
  }
709
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
710
  //save
711
  $morder->saveOrder();
712
  $morder->getMemberOrderByID( $morder->id );
284
  (2) The user doesn't currently have the level attached to this order.
285
  */
286
 
287
+ if ( isset($last_subsc_order->membership_id) && $last_subscr_order->status == "cancelled" ) {
288
  ipnlog( "We've already processed this cancellation. Probably originated from WP/PMPro. (Order #" . $last_subscr_order->id . ", Subscription Transaction ID #" . $subscr_id . ")" );
289
+ } elseif ( isset($last_subsc_order->membership_id) && ! pmpro_hasMembershipLevel( $last_subsc_order->membership_id, $user->ID ) ) {
290
  ipnlog( "This user has a different level than the one associated with this order. Their membership was probably changed by an admin or through an upgrade/downgrade. (Order #" . $last_subscr_order->id . ", Subscription Transaction ID #" . $subscr_id . ")" );
291
  } else {
292
  pmpro_changeMembershipLevel( 0, $last_subscr_order->user_id, 'cancelled' );
481
  Change the membership level. We also update the membership order to include filtered valus.
482
  */
483
  function pmpro_ipnChangeMembershipLevel( $txn_id, &$morder ) {
484
+
485
+ global $wpdb;
486
+
487
  //filter for level
488
  $morder->membership_level = apply_filters( "pmpro_ipnhandler_level", $morder->membership_level, $morder->user_id );
489
 
547
 
548
  //add discount code use
549
  if ( ! empty( $discount_code ) && ! empty( $use_discount_code ) ) {
550
+
551
+ $wpdb->query(
552
+ $wpdb->prepare(
553
+ "INSERT INTO {$wpdb->pmpro_discount_codes_uses}
554
+ ( code_id, user_id, order_id, timestamp )
555
+ VALUES( %d, %d, %s, %s )",
556
+ $discount_code_id),
557
+ $morder->user_id,
558
+ $morder->id,
559
+ current_time( 'mysql' )
560
+ );
561
  }
562
 
563
  //save first and last name fields
613
  $morder = new MemberOrder();
614
  $morder->user_id = $last_order->user_id;
615
 
616
+ $user = new WP_User( $last_order->user_id );
617
+ $user->membership_level = pmpro_getMembershipLevelForUser( $user->ID );
618
+
619
  //add billing information if appropriate
620
  if ( $last_order->gateway == "paypal" ) //website payments pro
621
  {
673
  $morder->payment_type = $last_order->payment_type;
674
 
675
  //set amount based on which PayPal type
676
+ if ( false !== stripos( $last_order->gateway, "paypal" ) ) {
677
+
678
+ if ( isset( $_POST['amount'] ) && ! empty( $_POST['amount'] ) ) {
679
+ $morder->InitialPayment = $_POST['amount']; //not the initial payment, but the class is expecting that
680
+ $morder->PaymentAmount = $_POST['amount'];
681
+ } elseif ( isset( $_POST['mc_gross'] ) && ! empty( $_POST['mc_gross'] ) ) {
682
+ $morder->InitialPayment = $_POST['mc_gross']; //not the initial payment, but the class is expecting that
683
+ $morder->PaymentAmount = $_POST['mc_gross'];
684
+ } elseif ( isset( $_POST['payment_gross'] ) && ! empty( $_POST['payment_gross' ] ) ) {
685
+ $morder->InitialPayment = $_POST['payment_gross']; //not the initial payment, but the class is expecting that
686
+ $morder->PaymentAmount = $_POST['payment_gross'];
687
+ }
688
  }
689
 
690
  $morder->FirstName = $_POST['first_name'];
723
  $morder->timestamp = strtotime( $_POST['payment_date'] );
724
  }
725
 
726
+ // Save the event ID for the last processed user/IPN (in case we want to be able to replay IPN requests)
727
+ $ipn_id = isset($_POST['ipn_track_id']) ? sanitize_text_field( $_POST['ipn_track_id'] ) : null;
728
+
729
+ // Allow extraction of the IPN Track ID from the order notes (if needed)
730
+ $morder->notes = "{$morder->notes} [IPN_ID]{$ipn_id}[/IPN_ID]";
731
+
732
+ /**
733
+ * Post processing for a specific subscription related IPN event ID
734
+ *
735
+ * @param string $ipn_id - The ipn_track_id from the PayPal IPN request
736
+ * @param MemberOrder $morder - The completed Member Order object for the IPN request
737
+ */
738
+ do_action('pmpro_subscription_ipn_event_processed', $ipn_id, $morder );
739
+
740
+ if ( ! is_null( $ipn_id ) ) {
741
+ if ( false === update_user_meta( $morder->user_id, "pmpro_last_{$morder->gateway}_ipn_id", $ipn_id )) {
742
+ ipnlog( "Unable to save the IPN event ID ({$ipn_id}) to usermeta for {$morder->user_id} " );
743
+ }
744
+ }
745
+
746
  //save
747
  $morder->saveOrder();
748
  $morder->getMemberOrderByID( $morder->id );
services/stripe-webhook.php CHANGED
@@ -460,7 +460,7 @@
460
  fwrite($loghandle, $logstr);
461
  fclose($loghandle);
462
  }
463
- elseif(defined('PMPRO_STRIPE_WEBHOOK_DEBUG'))
464
  {
465
  //email
466
  if(strpos(PMPRO_STRIPE_WEBHOOK_DEBUG, "@"))
460
  fwrite($loghandle, $logstr);
461
  fclose($loghandle);
462
  }
463
+ elseif(defined('PMPRO_STRIPE_WEBHOOK_DEBUG') && false !== PMPRO_STRIPE_WEBHOOK_DEBUG )
464
  {
465
  //email
466
  if(strpos(PMPRO_STRIPE_WEBHOOK_DEBUG, "@"))
shortcodes/pmpro_account.php CHANGED
@@ -29,10 +29,11 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
29
  {
30
  $ssorder = new MemberOrder();
31
  $ssorder->getLastMemberOrder();
32
- $invoices = $wpdb->get_results("SELECT *, UNIX_TIMESTAMP(timestamp) as timestamp FROM $wpdb->pmpro_membership_orders WHERE user_id = '$current_user->ID' AND status NOT IN('refunded', 'review', 'token', 'error') ORDER BY timestamp DESC LIMIT 6");
 
 
33
  ?>
34
  <div id="pmpro_account">
35
-
36
  <?php if(in_array('membership', $sections) || in_array('memberships', $sections)) { ?>
37
  <div id="pmpro_account-membership" class="pmpro_box">
38
 
@@ -47,17 +48,16 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
47
  </thead>
48
  <tbody>
49
  <?php
50
- //TODO: v2.0 will loop through levels here
51
- $level = $current_user->membership_level;
52
  ?>
53
  <tr>
54
  <td class="pmpro_account-membership-levelname">
55
- <?php echo $current_user->membership_level->name?>
56
  <div class="pmpro_actionlinks">
57
  <?php do_action("pmpro_member_action_links_before"); ?>
58
 
59
- <?php if( $current_user->membership_level->allow_signups && pmpro_isLevelExpiringSoon( $current_user->membership_level) ) { ?>
60
- <a href="<?php echo pmpro_url("checkout", "?level=" . $current_user->membership_level->id, "https")?>"><?php _e("Renew", "pmpro");?></a>
61
  <?php } ?>
62
 
63
  <?php if((isset($ssorder->status) && $ssorder->status == "success") && (isset($ssorder->gateway) && in_array($ssorder->gateway, array("authorizenet", "paypal", "stripe", "braintree", "payflow", "cybersource")))) { ?>
@@ -69,7 +69,7 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
69
  if(count($pmpro_levels) > 1 && !defined("PMPRO_DEFAULT_LEVEL")) { ?>
70
  <a href="<?php echo pmpro_url("levels")?>"><?php _e("Change", "pmpro");?></a>
71
  <?php } ?>
72
- <a href="<?php echo pmpro_url("cancel", "?level=" . $current_user->membership_level->id)?>"><?php _e("Cancel", "pmpro");?></a>
73
  <?php do_action("pmpro_member_action_links_after"); ?>
74
  </div> <!-- end pmpro_actionlinks -->
75
  </td>
@@ -78,13 +78,14 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
78
  </td>
79
  <td class="pmpro_account-membership-expiration">
80
  <?php
81
- if($current_user->membership_level->enddate)
82
- echo date(get_option('date_format'), $current_user->membership_level->enddate);
83
  else
84
  echo "---";
85
  ?>
86
  </td>
87
  </tr>
 
88
  </tbody>
89
  </table>
90
  <?php //Todo: If there are multiple levels defined that aren't all in the same group defined as upgrades/downgrades ?>
29
  {
30
  $ssorder = new MemberOrder();
31
  $ssorder->getLastMemberOrder();
32
+ $mylevels = pmpro_getMembershipLevelsForUser();
33
+ $pmpro_levels = pmpro_getAllLevels(false, true); // just to be sure - include only the ones that allow signups
34
+ $invoices = $wpdb->get_results("SELECT *, UNIX_TIMESTAMP(timestamp) as timestamp FROM $wpdb->pmpro_membership_orders WHERE user_id = '$current_user->ID' AND status NOT IN('refunded', 'review', 'token', 'error') ORDER BY timestamp DESC LIMIT 6");
35
  ?>
36
  <div id="pmpro_account">
 
37
  <?php if(in_array('membership', $sections) || in_array('memberships', $sections)) { ?>
38
  <div id="pmpro_account-membership" class="pmpro_box">
39
 
48
  </thead>
49
  <tbody>
50
  <?php
51
+ foreach($mylevels as $level) {
 
52
  ?>
53
  <tr>
54
  <td class="pmpro_account-membership-levelname">
55
+ <?php echo $level->name?>
56
  <div class="pmpro_actionlinks">
57
  <?php do_action("pmpro_member_action_links_before"); ?>
58
 
59
+ <?php if( array_key_exists($level->id, $pmpro_levels) && pmpro_isLevelExpiringSoon( $level ) ) { ?>
60
+ <a href="<?php echo pmpro_url("checkout", "?level=" . $level->id, "https")?>"><?php _e("Renew", "pmpro");?></a>
61
  <?php } ?>
62
 
63
  <?php if((isset($ssorder->status) && $ssorder->status == "success") && (isset($ssorder->gateway) && in_array($ssorder->gateway, array("authorizenet", "paypal", "stripe", "braintree", "payflow", "cybersource")))) { ?>
69
  if(count($pmpro_levels) > 1 && !defined("PMPRO_DEFAULT_LEVEL")) { ?>
70
  <a href="<?php echo pmpro_url("levels")?>"><?php _e("Change", "pmpro");?></a>
71
  <?php } ?>
72
+ <a href="<?php echo pmpro_url("cancel", "?levelstocancel=" . $level->id)?>"><?php _e("Cancel", "pmpro");?></a>
73
  <?php do_action("pmpro_member_action_links_after"); ?>
74
  </div> <!-- end pmpro_actionlinks -->
75
  </td>
78
  </td>
79
  <td class="pmpro_account-membership-expiration">
80
  <?php
81
+ if($level->enddate)
82
+ echo date(get_option('date_format'), $level->enddate);
83
  else
84
  echo "---";
85
  ?>
86
  </td>
87
  </tr>
88
+ <?php } ?>
89
  </tbody>
90
  </table>
91
  <?php //Todo: If there are multiple levels defined that aren't all in the same group defined as upgrades/downgrades ?>