Paid Memberships Pro - Version 1.8.10.1

Version Description

  • BUG: Fixed bugs in pmpro_hasMembershipLevel that caused shortcodes like [membership levels="0"] and [membership levels="-1"] to stop working.
Download this release

Release Info

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

Code changes from version 1.8.9.3 to 1.8.10.1

adminpages/addons.php CHANGED
@@ -31,7 +31,10 @@
31
  //get plugin status for filters
32
  if(!empty($_REQUEST['plugin_status']))
33
  $status = $_REQUEST['plugin_status'];
34
- else
 
 
 
35
  $status = "all";
36
 
37
  //split addons into groups for filtering
@@ -76,7 +79,7 @@
76
  <li class="all"><a href="admin.php?page=pmpro-addons&plugin_status=all" <?php if(empty($status) || $status == "all") { ?>class="current"<?php } ?>><?php _e('All', 'pmpro'); ?> <span class="count">(<?php echo count($addons);?>)</span></a> |</li>
77
  <li class="active"><a href="admin.php?page=pmpro-addons&plugin_status=active" <?php if($status == "active") { ?>class="current"<?php } ?>><?php _e('Active', 'pmpro'); ?> <span class="count">(<?php echo count($addons_active);?>)</span></a> |</li>
78
  <li class="inactive"><a href="admin.php?page=pmpro-addons&plugin_status=inactive" <?php if($status == "inactive") { ?>class="current"<?php } ?>><?php _e('Inactive', 'pmpro'); ?> <span class="count">(<?php echo count($addons_inactive);?>)</span></a> |</li>
79
- <li class="update"><a href="admin.php?page=pmpro-addons&plugin_status=update" <?php if($status == "update") { ?>class="current"<?php } ?>><?php _e('Update Available', 'pmpro'); ?><span class="count">(<?php echo count($addons_update);?>)</span></a> |</li>
80
  <li class="uninstalled"><a href="admin.php?page=pmpro-addons&plugin_status=uninstalled" <?php if($status == "uninstalled") { ?>class="current"<?php } ?>><?php _e('Not Installed', 'pmpro'); ?> <span class="count">(<?php echo count($addons_uninstalled);?>)</span></a></li>
81
  </ul>
82
 
@@ -259,7 +262,7 @@
259
  __( 'Visit plugin site' )
260
  );
261
  }
262
- $plugin_meta = apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data );
263
  echo implode( ' | ', $plugin_meta );
264
  ?>
265
  </div>
31
  //get plugin status for filters
32
  if(!empty($_REQUEST['plugin_status']))
33
  $status = $_REQUEST['plugin_status'];
34
+
35
+ //make sure we have an approved status
36
+ $approved_statuses = array('all', 'active', 'inactive', 'update', 'uninstalled');
37
+ if(empty($status) || !in_array($status, $approved_statuses))
38
  $status = "all";
39
 
40
  //split addons into groups for filtering
79
  <li class="all"><a href="admin.php?page=pmpro-addons&plugin_status=all" <?php if(empty($status) || $status == "all") { ?>class="current"<?php } ?>><?php _e('All', 'pmpro'); ?> <span class="count">(<?php echo count($addons);?>)</span></a> |</li>
80
  <li class="active"><a href="admin.php?page=pmpro-addons&plugin_status=active" <?php if($status == "active") { ?>class="current"<?php } ?>><?php _e('Active', 'pmpro'); ?> <span class="count">(<?php echo count($addons_active);?>)</span></a> |</li>
81
  <li class="inactive"><a href="admin.php?page=pmpro-addons&plugin_status=inactive" <?php if($status == "inactive") { ?>class="current"<?php } ?>><?php _e('Inactive', 'pmpro'); ?> <span class="count">(<?php echo count($addons_inactive);?>)</span></a> |</li>
82
+ <li class="update"><a href="admin.php?page=pmpro-addons&plugin_status=update" <?php if($status == "update") { ?>class="current"<?php } ?>><?php _e('Update Available', 'pmpro'); ?> <span class="count">(<?php echo count($addons_update);?>)</span></a> |</li>
83
  <li class="uninstalled"><a href="admin.php?page=pmpro-addons&plugin_status=uninstalled" <?php if($status == "uninstalled") { ?>class="current"<?php } ?>><?php _e('Not Installed', 'pmpro'); ?> <span class="count">(<?php echo count($addons_uninstalled);?>)</span></a></li>
84
  </ul>
85
 
262
  __( 'Visit plugin site' )
263
  );
264
  }
265
+ $plugin_meta = apply_filters( 'plugin_row_meta', $plugin_meta, $plugin_file, $plugin_data, $status);
266
  echo implode( ' | ', $plugin_meta );
267
  ?>
268
  </div>
adminpages/membershiplevels.php CHANGED
@@ -631,6 +631,10 @@
631
  <p><?php _e('Drag and drop membership levels to reorder them on the Levels page.', 'pmpro'); ?></p>
632
  <?php } ?>
633
 
 
 
 
 
634
  <table class="widefat membership-levels">
635
  <thead>
636
  <tr>
@@ -675,6 +679,18 @@
675
  </tbody>
676
  </table>
677
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
678
  }
679
  ?>
680
 
631
  <p><?php _e('Drag and drop membership levels to reorder them on the Levels page.', 'pmpro'); ?></p>
632
  <?php } ?>
633
 
634
+ <?php
635
+ //going to capture the output of this table so we can filter it
636
+ ob_start();
637
+ ?>
638
  <table class="widefat membership-levels">
639
  <thead>
640
  <tr>
679
  </tbody>
680
  </table>
681
  <?php
682
+ $table_html = ob_get_clean();
683
+
684
+ /**
685
+ * Filter to change the Membership Levels table
686
+ * @since 1.8.10
687
+ *
688
+ * @param string $table_html HTML of the membership levels table
689
+ * @param array $reordered_levels Array of membership levels
690
+ */
691
+ $table_html = apply_filters('pmpro_membership_levels_table', $table_html, $reordered_levels);
692
+
693
+ echo $table_html;
694
  }
695
  ?>
696
 
adminpages/memberslist-csv.php CHANGED
@@ -197,6 +197,12 @@
197
  if(!empty($limit))
198
  $sqlQuery .= "LIMIT {$start}, {$limit}";
199
 
 
 
 
 
 
 
200
  // Generate a temporary file to store the data in.
201
  $tmp_dir = sys_get_temp_dir();
202
  $filename = tempnam( $tmp_dir, 'pmpro_ml_');
197
  if(!empty($limit))
198
  $sqlQuery .= "LIMIT {$start}, {$limit}";
199
 
200
+ /**
201
+ * Filter to change/manipulate the SQL for the list of members export
202
+ * @since v1.9.0 Re-introduced
203
+ */
204
+ $sqlQuery = apply_filters('pmpro_members_list_sql', $sqlQuery);
205
+
206
  // Generate a temporary file to store the data in.
207
  $tmp_dir = sys_get_temp_dir();
208
  $filename = tempnam( $tmp_dir, 'pmpro_ml_');
adminpages/orders.php CHANGED
@@ -1199,6 +1199,9 @@ require_once( dirname( __FILE__ ) . "/admin_header.php" );
1199
  <?php if ( ! empty( $order->accountnumber ) ) { ?>
1200
  <?php echo $order->cardtype; ?>: x<?php echo last4( $order->accountnumber ); ?><br/>
1201
  <?php } ?>
 
 
 
1202
  <?php if ( ! empty( $order->billing->street ) ) { ?>
1203
  <?php echo $order->billing->street; ?><br/>
1204
  <?php if ( $order->billing->city && $order->billing->state ) { ?>
1199
  <?php if ( ! empty( $order->accountnumber ) ) { ?>
1200
  <?php echo $order->cardtype; ?>: x<?php echo last4( $order->accountnumber ); ?><br/>
1201
  <?php } ?>
1202
+ <?php if ( ! empty( $order->billing->name ) ) { ?>
1203
+ <?php echo $order->billing->name; ?><br/>
1204
+ <?php } ?>
1205
  <?php if ( ! empty( $order->billing->street ) ) { ?>
1206
  <?php echo $order->billing->street; ?><br/>
1207
  <?php if ( $order->billing->city && $order->billing->state ) { ?>
classes/class.memberorder.php CHANGED
@@ -39,6 +39,7 @@
39
  $order->subtotal = "";
40
  $order->tax = "";
41
  $order->couponamount = "";
 
42
  $order->total = "";
43
  $order->payment_type = "";
44
  $order->cardtype = "";
@@ -116,6 +117,7 @@
116
  $this->subtotal = $dbobj->subtotal;
117
  $this->tax = $dbobj->tax;
118
  $this->couponamount = $dbobj->couponamount;
 
119
  $this->certificate_id = $dbobj->certificate_id;
120
  $this->certificateamount = $dbobj->certificateamount;
121
  $this->total = $dbobj->total;
39
  $order->subtotal = "";
40
  $order->tax = "";
41
  $order->couponamount = "";
42
+ $order->checkout_id = "";
43
  $order->total = "";
44
  $order->payment_type = "";
45
  $order->cardtype = "";
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;
classes/gateways/class.pmprogateway_braintree.php CHANGED
@@ -55,8 +55,9 @@
55
  add_filter('pmpro_payment_option_fields', array('PMProGateway_braintree', 'pmpro_payment_option_fields'), 10, 2);
56
 
57
  //code to add at checkout if Braintree is the current gateway
58
- $gateway = pmpro_getGateway();
59
- if($gateway == "braintree")
 
60
  {
61
  add_action('pmpro_checkout_before_submit_button', array('PMProGateway_braintree', 'pmpro_checkout_before_submit_button'));
62
  add_filter('pmpro_checkout_order', array('PMProGateway_braintree', 'pmpro_checkout_order'));
55
  add_filter('pmpro_payment_option_fields', array('PMProGateway_braintree', 'pmpro_payment_option_fields'), 10, 2);
56
 
57
  //code to add at checkout if Braintree is the current gateway
58
+ $default_gateway = pmpro_getOption('gateway');
59
+ $current_gateway = pmpro_getGateway();
60
+ if($default_gateway == "braintree" || $current_gateway == "braintree")
61
  {
62
  add_action('pmpro_checkout_before_submit_button', array('PMProGateway_braintree', 'pmpro_checkout_before_submit_button'));
63
  add_filter('pmpro_checkout_order', array('PMProGateway_braintree', 'pmpro_checkout_order'));
classes/gateways/class.pmprogateway_check.php CHANGED
@@ -145,6 +145,7 @@
145
  */
146
  static function pmpro_checkout_after_payment_information_fields() {
147
  global $gateway;
 
148
 
149
  if($gateway == "check" && !pmpro_isLevelFree($pmpro_level)) {
150
  $instructions = pmpro_getOption("instructions");
145
  */
146
  static function pmpro_checkout_after_payment_information_fields() {
147
  global $gateway;
148
+ global $pmpro_level;
149
 
150
  if($gateway == "check" && !pmpro_isLevelFree($pmpro_level)) {
151
  $instructions = pmpro_getOption("instructions");
classes/gateways/class.pmprogateway_paypal.php CHANGED
@@ -43,9 +43,20 @@
43
  {
44
  add_filter('pmpro_checkout_default_submit_button', array('PMProGateway_paypal', 'pmpro_checkout_default_submit_button'));
45
  add_action('pmpro_checkout_after_form', array('PMProGateway_paypal', 'pmpro_checkout_after_form'));
 
46
  }
47
  }
48
 
 
 
 
 
 
 
 
 
 
 
49
  /**
50
  * Make sure this gateway is in the gateways list
51
  *
@@ -78,7 +89,8 @@
78
  'use_ssl',
79
  'tax_state',
80
  'tax_rate',
81
- 'accepted_credit_cards'
 
82
  );
83
 
84
  return $options;
@@ -150,6 +162,17 @@
150
  <input type="text" id="apisignature" name="apisignature" size="60" value="<?php echo esc_attr($values['apisignature'])?>" />
151
  </td>
152
  </tr>
 
 
 
 
 
 
 
 
 
 
 
153
  <tr class="gateway gateway_paypal gateway_paypalexpress gateway_paypalstandard" <?php if($gateway != "paypal" && $gateway != "paypalexpress" && $gateway != "paypalstandard") { ?>style="display: none;"<?php } ?>>
154
  <th scope="row" valign="top">
155
  <label><?php _e('IPN Handler URL', 'pmpro');?>:</label>
@@ -175,7 +198,7 @@
175
  <?php if($gateway == "paypal" || $gateway == "paypalexpress" || $gateway == "paypalstandard") { ?>
176
  <span id="pmpro_paypalexpress_checkout" <?php if(($gateway != "paypalexpress" && $gateway != "paypalstandard") || !$pmpro_requirebilling) { ?>style="display: none;"<?php } ?>>
177
  <input type="hidden" name="submit-checkout" value="1" />
178
- <input type="image" value="<?php _e('Check Out with PayPal', 'pmpro');?> &raquo;" src="<?php echo apply_filters("pmpro_paypal_button_image", "https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif");?>" />
179
  </span>
180
  <?php } ?>
181
 
43
  {
44
  add_filter('pmpro_checkout_default_submit_button', array('PMProGateway_paypal', 'pmpro_checkout_default_submit_button'));
45
  add_action('pmpro_checkout_after_form', array('PMProGateway_paypal', 'pmpro_checkout_after_form'));
46
+ add_action('http_api_curl', array('PMProGateway_paypal', 'http_api_curl'), 10, 3);
47
  }
48
  }
49
 
50
+ /**
51
+ * Update the SSLVERSION for CURL to support PayPal Express moving to TLS 1.2
52
+ *
53
+ * @since 1.8.9.1
54
+ */
55
+ static function http_api_curl($handle) {
56
+ if(strpos($url, 'paypal.com') !== false)
57
+ curl_setopt( $handle, CURLOPT_SSLVERSION, 6 );
58
+ }
59
+
60
  /**
61
  * Make sure this gateway is in the gateways list
62
  *
89
  'use_ssl',
90
  'tax_state',
91
  'tax_rate',
92
+ 'accepted_credit_cards',
93
+ 'paypalexpress_skip_confirmation'
94
  );
95
 
96
  return $options;
162
  <input type="text" id="apisignature" name="apisignature" size="60" value="<?php echo esc_attr($values['apisignature'])?>" />
163
  </td>
164
  </tr>
165
+ <tr class="gateway gateway_paypal gateway_paypalexpress" <?php if($gateway != "paypal" && $gateway != "paypalexpress") { ?>style="display: none;"<?php } ?>>
166
+ <th scope="row" valign="top">
167
+ <label for="paypalexpress_skip_confirmation"><?php _e('Confirmation Step', 'pmpro');?>:</label>
168
+ </th>
169
+ <td>
170
+ <select id="paypalexpress_skip_confirmation" name="paypalexpress_skip_confirmation">
171
+ <option value="0" <?php selected(pmpro_getOption('paypalexpress_skip_confirmation'), 0);?>>Require an extra confirmation after users return from PayPal Express.</option>
172
+ <option value="1" <?php selected(pmpro_getOption('paypalexpress_skip_confirmation'), 1);?>>Skip the extra confirmation after users return from PayPal Express.</option>
173
+ </select>
174
+ </td>
175
+ </tr>
176
  <tr class="gateway gateway_paypal gateway_paypalexpress gateway_paypalstandard" <?php if($gateway != "paypal" && $gateway != "paypalexpress" && $gateway != "paypalstandard") { ?>style="display: none;"<?php } ?>>
177
  <th scope="row" valign="top">
178
  <label><?php _e('IPN Handler URL', 'pmpro');?>:</label>
198
  <?php if($gateway == "paypal" || $gateway == "paypalexpress" || $gateway == "paypalstandard") { ?>
199
  <span id="pmpro_paypalexpress_checkout" <?php if(($gateway != "paypalexpress" && $gateway != "paypalstandard") || !$pmpro_requirebilling) { ?>style="display: none;"<?php } ?>>
200
  <input type="hidden" name="submit-checkout" value="1" />
201
+ <input type="image" class="pmpro_btn-submit-checkout" value="<?php _e('Check Out with PayPal', 'pmpro');?> &raquo;" src="<?php echo apply_filters("pmpro_paypal_button_image", "https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif");?>" />
202
  </span>
203
  <?php } ?>
204
 
classes/gateways/class.pmprogateway_paypalexpress.php CHANGED
@@ -59,9 +59,20 @@
59
  add_action('pmpro_checkout_before_processing', array('PMProGateway_paypalexpress', 'pmpro_checkout_before_processing'));
60
  add_filter('pmpro_checkout_default_submit_button', array('PMProGateway_paypalexpress', 'pmpro_checkout_default_submit_button'));
61
  add_action('pmpro_checkout_after_form', array('PMProGateway_paypalexpress', 'pmpro_checkout_after_form'));
 
62
  }
63
  }
64
 
 
 
 
 
 
 
 
 
 
 
65
  /**
66
  * Make sure this gateway is in the gateways list
67
  *
@@ -93,7 +104,8 @@
93
  'currency',
94
  'use_ssl',
95
  'tax_state',
96
- 'tax_rate'
 
97
  );
98
 
99
  return $options;
@@ -165,6 +177,17 @@
165
  <input type="text" id="apisignature" name="apisignature" size="60" value="<?php echo esc_attr($values['apisignature'])?>" />
166
  </td>
167
  </tr>
 
 
 
 
 
 
 
 
 
 
 
168
  <tr class="gateway gateway_paypal gateway_paypalexpress gateway_paypalstandard" <?php if($gateway != "paypal" && $gateway != "paypalexpress" && $gateway != "paypalstandard") { ?>style="display: none;"<?php } ?>>
169
  <th scope="row" valign="top">
170
  <label><?php _e('IPN Handler URL', 'pmpro');?>:</label>
@@ -279,7 +302,11 @@
279
  $pmpro_msgt = "pmpro_error";
280
  }
281
  }
282
- elseif(!empty($_REQUEST['confirm']))
 
 
 
 
283
  {
284
  $morder = new MemberOrder();
285
  $morder->getMemberOrderByPayPalToken($_REQUEST['token']);
@@ -408,7 +435,7 @@
408
  ?>
409
  <span id="pmpro_paypalexpress_checkout" <?php if(($gateway != "paypalexpress" && $gateway != "paypalstandard") || !$pmpro_requirebilling) { ?>style="display: none;"<?php } ?>>
410
  <input type="hidden" name="submit-checkout" value="1" />
411
- <input type="image" value="<?php _e('Check Out with PayPal', 'pmpro');?> &raquo;" src="<?php echo apply_filters("pmpro_paypal_button_image", "https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif");?>" />
412
  </span>
413
 
414
  <span id="pmpro_submit_span" <?php if(($gateway == "paypalexpress" || $gateway == "paypalstandard") && $pmpro_requirebilling) { ?>style="display: none;"<?php } ?>>
@@ -527,8 +554,8 @@
527
  $nvpStr .= "&CANCELURL=" . urlencode(pmpro_url("levels"));
528
 
529
  $account_optional = apply_filters('pmpro_paypal_account_optional', true);
530
- if ($account_optional)
531
- $nvpStr .= '&SOLUTIONTYPE=Sole&LANDINGPAGE=Billing';
532
 
533
  $nvpStr = apply_filters("pmpro_set_express_checkout_nvpstr", $nvpStr, $order);
534
 
59
  add_action('pmpro_checkout_before_processing', array('PMProGateway_paypalexpress', 'pmpro_checkout_before_processing'));
60
  add_filter('pmpro_checkout_default_submit_button', array('PMProGateway_paypalexpress', 'pmpro_checkout_default_submit_button'));
61
  add_action('pmpro_checkout_after_form', array('PMProGateway_paypalexpress', 'pmpro_checkout_after_form'));
62
+ add_action('http_api_curl', array('PMProGateway_paypalexpress', 'http_api_curl'), 10, 3);
63
  }
64
  }
65
 
66
+ /**
67
+ * Update the SSLVERSION for CURL to support PayPal Express moving to TLS 1.2
68
+ *
69
+ * @since 1.8.9.1
70
+ */
71
+ static function http_api_curl($handle, $r, $url) {
72
+ if(strpos($url, 'paypal.com') !== false)
73
+ curl_setopt( $handle, CURLOPT_SSLVERSION, 6 );
74
+ }
75
+
76
  /**
77
  * Make sure this gateway is in the gateways list
78
  *
104
  'currency',
105
  'use_ssl',
106
  'tax_state',
107
+ 'tax_rate',
108
+ 'paypalexpress_skip_confirmation'
109
  );
110
 
111
  return $options;
177
  <input type="text" id="apisignature" name="apisignature" size="60" value="<?php echo esc_attr($values['apisignature'])?>" />
178
  </td>
179
  </tr>
180
+ <tr class="gateway gateway_paypal gateway_paypalexpress" <?php if($gateway != "paypal" && $gateway != "paypalexpress") { ?>style="display: none;"<?php } ?>>
181
+ <th scope="row" valign="top">
182
+ <label for="paypalexpress_skip_confirmation"><?php _e('Confirmation Step', 'pmpro');?>:</label>
183
+ </th>
184
+ <td>
185
+ <select id="paypalexpress_skip_confirmation" name="paypalexpress_skip_confirmation">
186
+ <option value="0" <?php selected(pmpro_getOption('paypalexpress_skip_confirmation'), 0);?>>Require an extra confirmation after users return from PayPal Express.</option>
187
+ <option value="1" <?php selected(pmpro_getOption('paypalexpress_skip_confirmation'), 1);?>>Skip the extra confirmation after users return from PayPal Express.</option>
188
+ </select>
189
+ </td>
190
+ </tr>
191
  <tr class="gateway gateway_paypal gateway_paypalexpress gateway_paypalstandard" <?php if($gateway != "paypal" && $gateway != "paypalexpress" && $gateway != "paypalstandard") { ?>style="display: none;"<?php } ?>>
192
  <th scope="row" valign="top">
193
  <label><?php _e('IPN Handler URL', 'pmpro');?>:</label>
302
  $pmpro_msgt = "pmpro_error";
303
  }
304
  }
305
+
306
+ if(empty($pmpro_msg) &&
307
+ (!empty($_REQUEST['confirm']) ||
308
+ (pmpro_getOption('paypalexpress_skip_confirmation') && $pmpro_review))
309
+ )
310
  {
311
  $morder = new MemberOrder();
312
  $morder->getMemberOrderByPayPalToken($_REQUEST['token']);
435
  ?>
436
  <span id="pmpro_paypalexpress_checkout" <?php if(($gateway != "paypalexpress" && $gateway != "paypalstandard") || !$pmpro_requirebilling) { ?>style="display: none;"<?php } ?>>
437
  <input type="hidden" name="submit-checkout" value="1" />
438
+ <input type="image" class="pmpro_btn-submit-checkout" value="<?php _e('Check Out with PayPal', 'pmpro');?> &raquo;" src="<?php echo apply_filters("pmpro_paypal_button_image", "https://www.paypal.com/en_US/i/btn/btn_xpressCheckout.gif");?>" />
439
  </span>
440
 
441
  <span id="pmpro_submit_span" <?php if(($gateway == "paypalexpress" || $gateway == "paypalstandard") && $pmpro_requirebilling) { ?>style="display: none;"<?php } ?>>
554
  $nvpStr .= "&CANCELURL=" . urlencode(pmpro_url("levels"));
555
 
556
  $account_optional = apply_filters('pmpro_paypal_account_optional', true);
557
+ if ($account_optional)
558
+ $nvpStr .= '&SOLUTIONTYPE=Sole&LANDINGPAGE=Billing';
559
 
560
  $nvpStr = apply_filters("pmpro_set_express_checkout_nvpstr", $nvpStr, $order);
561
 
classes/gateways/class.pmprogateway_stripe.php CHANGED
@@ -33,7 +33,7 @@
33
  $this->loadStripeLibrary();
34
  Stripe::setApiKey(pmpro_getOption("stripe_secretkey"));
35
  Stripe::setAPIVersion("2015-07-13");
36
-
37
  return $this->gateway;
38
  }
39
 
@@ -106,8 +106,9 @@
106
  //add_filter('pmpro_next_payment', array('PMProGateway_stripe', 'pmpro_next_payment'), 10, 3);
107
 
108
  //code to add at checkout if Stripe is the current gateway
109
- $gateway = pmpro_getGateway();
110
- if($gateway == "stripe")
 
111
  {
112
  add_action('pmpro_checkout_preheader', array('PMProGateway_stripe', 'pmpro_checkout_preheader'));
113
  add_filter('pmpro_checkout_order', array('PMProGateway_stripe', 'pmpro_checkout_order'));
@@ -231,7 +232,9 @@
231
  {
232
  global $gateway, $pmpro_level;
233
 
234
- if($gateway == "stripe" && !pmpro_isLevelFree($pmpro_level))
 
 
235
  {
236
  //stripe js library
237
  wp_enqueue_script("stripe", "https://js.stripe.com/v2/", array(), NULL);
@@ -1198,8 +1201,8 @@
1198
  else
1199
  {
1200
  //find the user's last stripe order
1201
- $last_order = new MemberOrder();
1202
- $last_order->getLastMemberOrder($user_id, array('success', 'cancelled'), NULL, 'stripe', $order->gateway_environment);
1203
  if(!empty($last_order->payment_transaction_id))
1204
  $payment_transaction_id = $last_order->payment_transaction_id;
1205
  }
33
  $this->loadStripeLibrary();
34
  Stripe::setApiKey(pmpro_getOption("stripe_secretkey"));
35
  Stripe::setAPIVersion("2015-07-13");
36
+
37
  return $this->gateway;
38
  }
39
 
106
  //add_filter('pmpro_next_payment', array('PMProGateway_stripe', 'pmpro_next_payment'), 10, 3);
107
 
108
  //code to add at checkout if Stripe is the current gateway
109
+ $default_gateway = pmpro_getOption('gateway');
110
+ $current_gateway = pmpro_getGateway();
111
+ if($default_gateway == "stripe" || $current_gateway == "stripe")
112
  {
113
  add_action('pmpro_checkout_preheader', array('PMProGateway_stripe', 'pmpro_checkout_preheader'));
114
  add_filter('pmpro_checkout_order', array('PMProGateway_stripe', 'pmpro_checkout_order'));
232
  {
233
  global $gateway, $pmpro_level;
234
 
235
+ $default_gateway = pmpro_getOption("gateway");
236
+
237
+ if(($gateway == "stripe" || $default_gateway == "stripe") && !pmpro_isLevelFree($pmpro_level))
238
  {
239
  //stripe js library
240
  wp_enqueue_script("stripe", "https://js.stripe.com/v2/", array(), NULL);
1201
  else
1202
  {
1203
  //find the user's last stripe order
1204
+ $last_order = new MemberOrder();
1205
+ $last_order->getLastMemberOrder($user_id, array('success', 'cancelled'), NULL, 'stripe', $order->Gateway->gateway_environment);
1206
  if(!empty($last_order->payment_transaction_id))
1207
  $payment_transaction_id = $last_order->payment_transaction_id;
1208
  }
css/frontend.css CHANGED
@@ -113,7 +113,7 @@ form.pmpro_form .leftmar {
113
  margin: 8px 0 0 210px;
114
  }
115
  form.pmpro_form .pmpro_captcha {
116
- margin: 0 0 0 210px !important;
117
  }
118
  form.pmpro_form .pmpro_captcha div {
119
  clear: none;
@@ -413,7 +413,7 @@ li.pmpro_more {
413
  text-wrap: normal;
414
  white-space: normal;
415
  }
416
- form.pmpro_form .leftmar {
417
  margin: 2px 0 0 0;
418
  }
419
  form.pmpro_form .pmpro_submit {
113
  margin: 8px 0 0 210px;
114
  }
115
  form.pmpro_form .pmpro_captcha {
116
+ margin: 0 0 0 210px;
117
  }
118
  form.pmpro_form .pmpro_captcha div {
119
  clear: none;
413
  text-wrap: normal;
414
  white-space: normal;
415
  }
416
+ form.pmpro_form .leftmar, form.pmpro_form .pmpro_captcha {
417
  margin: 2px 0 0 0;
418
  }
419
  form.pmpro_form .pmpro_submit {
includes/currencies.php CHANGED
@@ -51,7 +51,8 @@
51
  'JPY' => array(
52
  'name' => __('Japanese Yen (&yen;)', 'pmpro'),
53
  'symbol' => '&yen;',
54
- 'position' => 'right'
 
55
  ),
56
  'MYR' => __('Malaysian Ringgits', 'pmpro'),
57
  'MXN' => __('Mexican Peso (&#36;)', 'pmpro'),
@@ -70,13 +71,19 @@
70
  'symbol' => 'R ',
71
  'position' => 'left'
72
  ),
73
- 'KRW' => __('South Korean Won', 'pmpro'),
 
 
 
74
  'SEK' => __('Swedish Krona', 'pmpro'),
75
  'CHF' => __('Swiss Franc', 'pmpro'),
76
  'TWD' => __('Taiwan New Dollars', 'pmpro'),
77
  'THB' => __('Thai Baht', 'pmpro'),
78
  'TRY' => __('Turkish Lira', 'pmpro'),
79
- 'VND' => __('Vietnamese Dong', 'pmpro')
 
 
 
80
  );
81
 
82
  $pmpro_currencies = apply_filters("pmpro_currencies", $pmpro_currencies);
51
  'JPY' => array(
52
  'name' => __('Japanese Yen (&yen;)', 'pmpro'),
53
  'symbol' => '&yen;',
54
+ 'position' => 'right',
55
+ 'decimals' => 0,
56
  ),
57
  'MYR' => __('Malaysian Ringgits', 'pmpro'),
58
  'MXN' => __('Mexican Peso (&#36;)', 'pmpro'),
71
  'symbol' => 'R ',
72
  'position' => 'left'
73
  ),
74
+ 'KRW' => array(
75
+ 'name' => __('South Korean Won', 'pmpro'),
76
+ 'decimals' => 0,
77
+ ),
78
  'SEK' => __('Swedish Krona', 'pmpro'),
79
  'CHF' => __('Swiss Franc', 'pmpro'),
80
  'TWD' => __('Taiwan New Dollars', 'pmpro'),
81
  'THB' => __('Thai Baht', 'pmpro'),
82
  'TRY' => __('Turkish Lira', 'pmpro'),
83
+ 'VND' => array(
84
+ 'name' => __('Vietnamese Dong', 'pmpro'),
85
+ 'decimals' => 0,
86
+ ),
87
  );
88
 
89
  $pmpro_currencies = apply_filters("pmpro_currencies", $pmpro_currencies);
includes/functions.php CHANGED
@@ -644,14 +644,12 @@ function pmpro_hasMembershipLevel($levels = NULL, $user_id = NULL)
644
  if(empty($user_id)) //no user_id passed, check the current user
645
  {
646
  $user_id = $current_user->ID;
647
- $membership_levels = $current_user->membership_levels;
648
  }
649
- elseif(is_numeric($user_id)) //get membership levels for given user
650
- {
651
  $membership_levels = pmpro_getMembershipLevelsForUser($user_id);
652
- }
653
  else
654
- return false; //invalid user_id
655
 
656
  if($levels === "0" || $levels === 0) //if 0 was passed, return true if they have no level and false if they have any
657
  {
@@ -668,18 +666,29 @@ function pmpro_hasMembershipLevel($levels = NULL, $user_id = NULL)
668
  $levels = array($levels);
669
  }
670
 
671
- if(empty($membership_levels))
672
  {
673
- //user has no levels just check if 0, L, -1, or e was sent in one of the levels
674
- if(in_array(0, $levels, true) || in_array("0", $levels))
675
- $return = true;
 
 
 
 
 
 
 
 
 
 
 
676
  elseif(in_array("L", $levels) || in_array("l", $levels))
677
- $return = (!empty($user_id) && $user_id == $current_user->ID);
678
  elseif(in_array("-L", $levels) || in_array("-l", $levels))
679
- $return = (empty($user_id) || $user_id != $current_user->ID);
680
  elseif(in_array("E", $levels) || in_array("e", $levels)) {
681
  $sql = "SELECT id FROM $wpdb->pmpro_memberships_users WHERE user_id=$user_id AND status='expired' LIMIT 1";
682
- $expired = $wpdb->get_var($sql);
683
  $return = !empty($expired);
684
  }
685
  }
@@ -699,7 +708,7 @@ function pmpro_hasMembershipLevel($levels = NULL, $user_id = NULL)
699
  if(empty($user_id) || $user_id != $current_user->ID)
700
  $return = true;
701
  }
702
- elseif($level == "0" || strtoupper($level) == "E")
703
  {
704
  continue; //user with levels so not a "non-member" or expired
705
  }
@@ -709,6 +718,7 @@ function pmpro_hasMembershipLevel($levels = NULL, $user_id = NULL)
709
  $level_obj = pmpro_getLevel(is_numeric($level) ? abs(intval($level)) : $level); //make sure our level is in a proper format
710
  if(empty($level_obj)){continue;} //invalid level
711
  $found_level = false;
 
712
  foreach($membership_levels as $membership_level)
713
  {
714
  if($membership_level->id == $level_obj->id) //found a match
@@ -823,8 +833,9 @@ function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status
823
  *
824
  * @param int $level_id ID of the level changed to.
825
  * @param int $user_id ID of the user changed.
 
826
  */
827
- do_action("pmpro_before_change_membership_level", $level_id, $user_id);
828
 
829
  //should we cancel their gateway subscriptions?
830
  $pmpro_cancel_previous_subscriptions = true;
@@ -1411,8 +1422,19 @@ function pmpro_checkDiscountCode($code, $level_id = NULL, $return_errors = false
1411
  }
1412
  }
1413
 
1414
- //allow filter
1415
- $pmpro_check_discount_code = apply_filters("pmpro_check_discount_code", !$error, $dbcode, $level_id, $code);
 
 
 
 
 
 
 
 
 
 
 
1416
  if(is_string($pmpro_check_discount_code))
1417
  $error = $pmpro_check_discount_code; //string returned, this is an error
1418
  elseif(!$pmpro_check_discount_code && !$error)
@@ -2096,7 +2118,7 @@ function pmpro_formatPrice($price)
2096
  global $pmpro_currency, $pmpro_currency_symbol, $pmpro_currencies;
2097
 
2098
  //start with the price formatted with two decimals
2099
- $formatted = number_format($price, 2);
2100
 
2101
  //settings stored in array?
2102
  if(!empty($pmpro_currencies[$pmpro_currency]) && is_array($pmpro_currencies[$pmpro_currency]))
644
  if(empty($user_id)) //no user_id passed, check the current user
645
  {
646
  $user_id = $current_user->ID;
 
647
  }
648
+
649
+ if(!empty($user_id) && is_numeric($user_id)) //get membership levels for given user
650
  $membership_levels = pmpro_getMembershipLevelsForUser($user_id);
 
651
  else
652
+ $membership_levels = NULL; //non-users don't have levels
653
 
654
  if($levels === "0" || $levels === 0) //if 0 was passed, return true if they have no level and false if they have any
655
  {
666
  $levels = array($levels);
667
  }
668
 
669
+ if(empty($membership_levels)) //user has no levels just check if 0, L, -1, or e was sent in one of the levels
670
  {
671
+ //check for negative level
672
+ $negative_level = false;
673
+ foreach($levels as $level) {
674
+ if(intval($level) < 0) {
675
+ $negative_level = true;
676
+ break;
677
+ }
678
+ }
679
+
680
+ //are we looking for non-members or not?
681
+ if($negative_level)
682
+ return true; //-1/etc, negative level
683
+ elseif(in_array(0, $levels, true) || in_array("0", $levels))
684
+ $return = true; //0 level
685
  elseif(in_array("L", $levels) || in_array("l", $levels))
686
+ $return = (!empty($user_id) && $user_id == $current_user->ID); //L, logged in users
687
  elseif(in_array("-L", $levels) || in_array("-l", $levels))
688
+ $return = (empty($user_id) || $user_id != $current_user->ID); //-L, not logged in users
689
  elseif(in_array("E", $levels) || in_array("e", $levels)) {
690
  $sql = "SELECT id FROM $wpdb->pmpro_memberships_users WHERE user_id=$user_id AND status='expired' LIMIT 1";
691
+ $expired = $wpdb->get_var($sql); //E, expired members
692
  $return = !empty($expired);
693
  }
694
  }
708
  if(empty($user_id) || $user_id != $current_user->ID)
709
  $return = true;
710
  }
711
+ elseif($level === "0" || $level === 0 || strtoupper($level) === "E")
712
  {
713
  continue; //user with levels so not a "non-member" or expired
714
  }
718
  $level_obj = pmpro_getLevel(is_numeric($level) ? abs(intval($level)) : $level); //make sure our level is in a proper format
719
  if(empty($level_obj)){continue;} //invalid level
720
  $found_level = false;
721
+
722
  foreach($membership_levels as $membership_level)
723
  {
724
  if($membership_level->id == $level_obj->id) //found a match
833
  *
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;
1422
  }
1423
  }
1424
 
1425
+ /**
1426
+ * Filter the results of the discount code check.
1427
+ * @since 1.7.13.1
1428
+ *
1429
+ * @param bool $okay true if code check is okay or false if there was an error
1430
+ * @param object $dbcode Object containing code data from the database row
1431
+ * @param int $level_id ID of the level the user is checking out for.
1432
+ * @param string $code Discount code string.
1433
+ *
1434
+ * @return mixed $okay true if okay, false or error message string if not okay
1435
+ */
1436
+ $okay = !$error;
1437
+ $pmpro_check_discount_code = apply_filters("pmpro_check_discount_code", $okay, $dbcode, $level_id, $code);
1438
  if(is_string($pmpro_check_discount_code))
1439
  $error = $pmpro_check_discount_code; //string returned, this is an error
1440
  elseif(!$pmpro_check_discount_code && !$error)
2118
  global $pmpro_currency, $pmpro_currency_symbol, $pmpro_currencies;
2119
 
2120
  //start with the price formatted with two decimals
2121
+ $formatted = number_format((double)$price, 2);
2122
 
2123
  //settings stored in array?
2124
  if(!empty($pmpro_currencies[$pmpro_currency]) && is_array($pmpro_currencies[$pmpro_currency]))
includes/setup.sql CHANGED
@@ -133,6 +133,7 @@ CREATE TABLE `wp_pmpro_membership_orders` (
133
  `subtotal` varchar(16) NOT NULL DEFAULT '',
134
  `tax` varchar(16) NOT NULL DEFAULT '',
135
  `couponamount` varchar(16) NOT NULL DEFAULT '',
 
136
  `certificate_id` int(11) NOT NULL DEFAULT '0',
137
  `certificateamount` varchar(16) NOT NULL DEFAULT '',
138
  `total` varchar(16) NOT NULL DEFAULT '',
@@ -162,7 +163,8 @@ CREATE TABLE `wp_pmpro_membership_orders` (
162
  KEY `payment_transaction_id` (`payment_transaction_id`),
163
  KEY `subscription_transaction_id` (`subscription_transaction_id`),
164
  KEY `affiliate_id` (`affiliate_id`),
165
- KEY `affiliate_subid` (`affiliate_subid`)
 
166
  );
167
 
168
  -- --------------------------------------------------------
133
  `subtotal` varchar(16) NOT NULL DEFAULT '',
134
  `tax` varchar(16) NOT NULL DEFAULT '',
135
  `couponamount` varchar(16) NOT NULL DEFAULT '',
136
+ `checkout_id` int(11) NOT NULL DEFAULT '0',
137
  `certificate_id` int(11) NOT NULL DEFAULT '0',
138
  `certificateamount` varchar(16) NOT NULL DEFAULT '',
139
  `total` varchar(16) NOT NULL DEFAULT '',
163
  KEY `payment_transaction_id` (`payment_transaction_id`),
164
  KEY `subscription_transaction_id` (`subscription_transaction_id`),
165
  KEY `affiliate_id` (`affiliate_id`),
166
+ KEY `affiliate_subid` (`affiliate_subid`),
167
+ KEY `checkout_id` (`checkout_id`)
168
  );
169
 
170
  -- --------------------------------------------------------
includes/upgradecheck.php CHANGED
@@ -169,11 +169,11 @@ function pmpro_checkForUpgrades()
169
  v1.8.9.2 (db v1.9)
170
  * Changed 'code' column of pmpro_membership_orders table to 32 characters.
171
  */
172
- if($pmpro_db_version < 1.9) {
173
  pmpro_db_delta();
174
 
175
- $pmpro_db_version = 1.9;
176
- pmpro_setOption("db_version", "1.9");
177
  }
178
 
179
  /*
@@ -184,6 +184,30 @@ function pmpro_checkForUpgrades()
184
  if($pmpro_db_version < 1.91) {
185
  $pmpro_db_version = pmpro_upgrade_1_8_9_3();
186
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
187
  }
188
 
189
  function pmpro_db_delta()
@@ -246,6 +270,7 @@ function pmpro_db_delta()
246
  `subtotal` varchar(16) NOT NULL DEFAULT '',
247
  `tax` varchar(16) NOT NULL DEFAULT '',
248
  `couponamount` varchar(16) NOT NULL DEFAULT '',
 
249
  `certificate_id` int(11) NOT NULL DEFAULT '0',
250
  `certificateamount` varchar(16) NOT NULL DEFAULT '',
251
  `total` varchar(16) NOT NULL DEFAULT '',
@@ -275,7 +300,8 @@ function pmpro_db_delta()
275
  KEY `payment_transaction_id` (`payment_transaction_id`),
276
  KEY `subscription_transaction_id` (`subscription_transaction_id`),
277
  KEY `affiliate_id` (`affiliate_id`),
278
- KEY `affiliate_subid` (`affiliate_subid`)
 
279
  );
280
  ";
281
  dbDelta($sqlQuery);
169
  v1.8.9.2 (db v1.9)
170
  * Changed 'code' column of pmpro_membership_orders table to 32 characters.
171
  */
172
+ if($pmpro_db_version < 1.892) {
173
  pmpro_db_delta();
174
 
175
+ $pmpro_db_version = 1.892;
176
+ pmpro_setOption("db_version", "1.892");
177
  }
178
 
179
  /*
184
  if($pmpro_db_version < 1.91) {
185
  $pmpro_db_version = pmpro_upgrade_1_8_9_3();
186
  }
187
+
188
+ /*
189
+ v1.8.10 (db v1.92)
190
+
191
+ Added checkout_id column to pmpro_membership_orders
192
+ */
193
+ if($pmpro_db_version < 1.92) {
194
+ pmpro_db_delta();
195
+
196
+ $pmpro_db_version = 1.92;
197
+ pmpro_setOption("db_version", "1.92");
198
+ }
199
+
200
+ /*
201
+ v1.8.10.2 (db v1.93)
202
+
203
+ Run dbDelta again to fix broken/missing orders tables.
204
+ */
205
+ if($pmpro_db_version < 1.93) {
206
+ pmpro_db_delta();
207
+
208
+ $pmpro_db_version = 1.93;
209
+ pmpro_setOption("db_version", "1.93");
210
+ }
211
  }
212
 
213
  function pmpro_db_delta()
270
  `subtotal` varchar(16) NOT NULL DEFAULT '',
271
  `tax` varchar(16) NOT NULL DEFAULT '',
272
  `couponamount` varchar(16) NOT NULL DEFAULT '',
273
+ `checkout_id` int(11) NOT NULL DEFAULT '0',
274
  `certificate_id` int(11) NOT NULL DEFAULT '0',
275
  `certificateamount` varchar(16) NOT NULL DEFAULT '',
276
  `total` varchar(16) NOT NULL DEFAULT '',
300
  KEY `payment_transaction_id` (`payment_transaction_id`),
301
  KEY `subscription_transaction_id` (`subscription_transaction_id`),
302
  KEY `affiliate_id` (`affiliate_id`),
303
+ KEY `affiliate_subid` (`affiliate_subid`),
304
+ KEY `checkout_id` (`checkout_id`)
305
  );
306
  ";
307
  dbDelta($sqlQuery);
languages/pmpro-sr_RS.mo ADDED
Binary file
languages/pmpro-sr_RS.po ADDED
@@ -0,0 +1,2758 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: pmpro\n"
4
+ "POT-Creation-Date: 2014-01-31 10:16+0100\n"
5
+ "PO-Revision-Date: 2016-07-16 15:03+0200\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
8
+ "MIME-Version: 1.0\n"
9
+ "Content-Type: text/plain; charset=UTF-8\n"
10
+ "Content-Transfer-Encoding: 8bit\n"
11
+ "X-Generator: Poedit 1.8.8\n"
12
+ "X-Poedit-KeywordsList: __;_;_e;_ex;_x;_n\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "Language: en_GB\n"
15
+ "X-Poedit-SearchPath-0: includes\n"
16
+ "X-Poedit-SearchPath-1: .\n"
17
+ "X-Poedit-SearchPath-2: classes\n"
18
+ "X-Poedit-SearchPath-3: preheaders\n"
19
+ "X-Poedit-SearchPath-4: pages\n"
20
+ "X-Poedit-SearchPath-5: adminpages\n"
21
+ "X-Poedit-SearchPath-6: classes/gateways\n"
22
+ "X-Poedit-SearchPath-7: services\n"
23
+ "X-Poedit-SearchPath-8: shortcodes\n"
24
+ "X-Poedit-SearchPath-9: scheduled\n"
25
+
26
+ #: includes/localization.php:23
27
+ msgid "Day"
28
+ msgstr "Dan"
29
+
30
+ #: includes/localization.php:25
31
+ msgid "Week"
32
+ msgstr "Sedmica"
33
+
34
+ #: includes/localization.php:27
35
+ msgid "Month"
36
+ msgstr "Mjesec"
37
+
38
+ #: includes/localization.php:29
39
+ msgid "Year"
40
+ msgstr "Godina"
41
+
42
+ #: includes/currencies.php:7 includes/currencies.php:44
43
+ msgid "US Dollars (&#36;)"
44
+ msgstr "Američki dolar"
45
+
46
+ #: includes/currencies.php:8 includes/currencies.php:47
47
+ msgid "Euros (&euro;)"
48
+ msgstr "Evro"
49
+
50
+ #: includes/currencies.php:9 includes/currencies.php:46
51
+ msgid "Pounds Sterling (&pound;)"
52
+ msgstr "Funta"
53
+
54
+ #: includes/currencies.php:10
55
+ msgid "Australian Dollars (&#36;)"
56
+ msgstr "Australijski dolar"
57
+
58
+ #: includes/currencies.php:11
59
+ msgid "Brazilian Real (&#36;)"
60
+ msgstr ""
61
+
62
+ #: includes/currencies.php:12 includes/currencies.php:45
63
+ msgid "Canadian Dollars (&#36;)"
64
+ msgstr "Kanadski dolar"
65
+
66
+ #: includes/currencies.php:13
67
+ msgid "Chinese Yuan"
68
+ msgstr "Kineski jen"
69
+
70
+ #: includes/currencies.php:14
71
+ msgid "Czech Koruna"
72
+ msgstr "Češka kruna"
73
+
74
+ #: includes/currencies.php:15
75
+ msgid "Danish Krone"
76
+ msgstr "Danska kruna"
77
+
78
+ #: includes/currencies.php:16
79
+ msgid "Hong Kong Dollar (&#36;)"
80
+ msgstr ""
81
+
82
+ #: includes/currencies.php:17
83
+ msgid "Hungarian Forint"
84
+ msgstr ""
85
+
86
+ #: includes/currencies.php:18
87
+ msgid "Indian Rupee"
88
+ msgstr ""
89
+
90
+ #: includes/currencies.php:19
91
+ msgid "Indonesia Rupiah"
92
+ msgstr ""
93
+
94
+ #: includes/currencies.php:20
95
+ msgid "Israeli Shekel"
96
+ msgstr ""
97
+
98
+ #: includes/currencies.php:21
99
+ msgid "Japanese Yen (&yen;)"
100
+ msgstr ""
101
+
102
+ #: includes/currencies.php:22
103
+ msgid "Malaysian Ringgits"
104
+ msgstr ""
105
+
106
+ #: includes/currencies.php:23
107
+ msgid "Mexican Peso (&#36;)"
108
+ msgstr ""
109
+
110
+ #: includes/currencies.php:24
111
+ msgid "New Zealand Dollar (&#36;)"
112
+ msgstr ""
113
+
114
+ #: includes/currencies.php:25
115
+ msgid "Norwegian Krone"
116
+ msgstr ""
117
+
118
+ #: includes/currencies.php:26
119
+ msgid "Philippine Pesos"
120
+ msgstr ""
121
+
122
+ #: includes/currencies.php:27
123
+ msgid "Polish Zloty"
124
+ msgstr ""
125
+
126
+ #: includes/currencies.php:28
127
+ msgid "Singapore Dollar (&#36;)"
128
+ msgstr ""
129
+
130
+ #: includes/currencies.php:29
131
+ msgid "South African Rand"
132
+ msgstr ""
133
+
134
+ #: includes/currencies.php:30
135
+ msgid "South Korean Won"
136
+ msgstr ""
137
+
138
+ #: includes/currencies.php:31
139
+ msgid "Swedish Krona"
140
+ msgstr ""
141
+
142
+ #: includes/currencies.php:32
143
+ msgid "Swiss Franc"
144
+ msgstr ""
145
+
146
+ #: includes/currencies.php:33
147
+ msgid "Taiwan New Dollars"
148
+ msgstr ""
149
+
150
+ #: includes/currencies.php:34
151
+ msgid "Thai Baht"
152
+ msgstr ""
153
+
154
+ #: includes/currencies.php:35
155
+ msgid "Turkish Lira"
156
+ msgstr ""
157
+
158
+ #: includes/currencies.php:36
159
+ msgid "Vietnamese Dong"
160
+ msgstr ""
161
+
162
+ #: includes/metaboxes.php:38
163
+ msgid ""
164
+ "This post is already protected for this level because it is within a category "
165
+ "that requires membership."
166
+ msgstr ""
167
+ "Ovaj post je već zaštićen za ovaj nivo jer se nalazi u kategoriji za koju je "
168
+ "potrebno članstvo."
169
+
170
+ #: includes/metaboxes.php:99 includes/metaboxes.php:100
171
+ msgid "Require Membership"
172
+ msgstr "Potrebno Članstvo"
173
+
174
+ #: includes/adminpages.php:9 includes/adminpages.php:39
175
+ msgid "Memberships"
176
+ msgstr "Članstvo"
177
+
178
+ #: includes/adminpages.php:10 includes/adminpages.php:49
179
+ msgid "Page Settings"
180
+ msgstr "Postavke Stranice."
181
+
182
+ #: includes/adminpages.php:11 includes/adminpages.php:54
183
+ msgid "Payment Settings"
184
+ msgstr "Postavke Plaćanja."
185
+
186
+ #: includes/adminpages.php:12 includes/adminpages.php:59
187
+ #: adminpages/emailsettings.php:60
188
+ msgid "Email Settings"
189
+ msgstr "Email postavke"
190
+
191
+ #: includes/adminpages.php:13 includes/adminpages.php:64
192
+ #: adminpages/advancedsettings.php:79
193
+ msgid "Advanced Settings"
194
+ msgstr "Napredne Postavke"
195
+
196
+ #: includes/adminpages.php:14 includes/adminpages.php:69
197
+ #: adminpages/admin_header.php:154
198
+ msgid "Add Ons"
199
+ msgstr "Dodaci"
200
+
201
+ #: includes/adminpages.php:15 includes/adminpages.php:74
202
+ #: adminpages/memberslist.php:25
203
+ msgid "Members List"
204
+ msgstr "Lista Članova"
205
+
206
+ #: includes/adminpages.php:16 includes/adminpages.php:79
207
+ msgid "Reports"
208
+ msgstr "Izvještaji"
209
+
210
+ #: includes/adminpages.php:17 includes/adminpages.php:84
211
+ #: adminpages/orders.php:520
212
+ msgid "Orders"
213
+ msgstr "Narudžbe"
214
+
215
+ #: includes/adminpages.php:18 includes/adminpages.php:89
216
+ msgid "Discount Codes"
217
+ msgstr "Kodovi za Popuste"
218
+
219
+ #: includes/adminpages.php:44 adminpages/membershiplevels.php:496
220
+ #: adminpages/admin_header.php:149
221
+ msgid "Membership Levels"
222
+ msgstr "Nivoi Članstva"
223
+
224
+ #: includes/profile.php:27 pages/invoice.php:28 pages/invoice.php:51
225
+ #: pages/checkout.php:33 pages/confirmation.php:47 pages/confirmation.php:64
226
+ #: pages/confirmation.php:105 adminpages/orders.php:601
227
+ msgid "Membership Level"
228
+ msgstr "Nivo Članstva"
229
+
230
+ #: includes/profile.php:36
231
+ msgid "Current Level"
232
+ msgstr "Trenutni Nivo"
233
+
234
+ #: includes/profile.php:39
235
+ msgid "None"
236
+ msgstr "Nijedan"
237
+
238
+ #: includes/profile.php:84
239
+ msgid "User is not paying."
240
+ msgstr "Korisnik ne plaća."
241
+
242
+ #: includes/profile.php:120 adminpages/memberslist.php:159
243
+ #: adminpages/discountcodes.php:550 adminpages/reports/login.php:145
244
+ msgid "Expires"
245
+ msgstr "Ističe"
246
+
247
+ #: includes/profile.php:123 adminpages/membershiplevels.php:569
248
+ #: adminpages/paymentsettings.php:448 adminpages/paymentsettings.php:473
249
+ #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:187
250
+ #: adminpages/advancedsettings.php:199
251
+ msgid "No"
252
+ msgstr "Ne"
253
+
254
+ #: includes/profile.php:124 adminpages/membershiplevels.php:569
255
+ #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:474
256
+ #: adminpages/advancedsettings.php:188
257
+ msgid "Yes"
258
+ msgstr "Da"
259
+
260
+ #: includes/functions.php:196
261
+ #, php-format
262
+ msgid "The price for membership is <strong>%s</strong> now"
263
+ msgstr "Cijena članstva je <strong>%s</strong> sada"
264
+
265
+ #: includes/functions.php:205
266
+ #, php-format
267
+ msgid " and then <strong>%s per %s for %d more %s</strong>."
268
+ msgstr "pa onda <strong>%s po %s za %d više %s</strong>."
269
+
270
+ #: includes/functions.php:209
271
+ #, php-format
272
+ msgid " and then <strong>%s every %d %s for %d more %s</strong>."
273
+ msgstr "a onda <strong> %s svaki %d %s za %d više %s</strong>."
274
+
275
+ #: includes/functions.php:214
276
+ #, php-format
277
+ msgid " and then <strong>%s after %d %s</strong>."
278
+ msgstr "a ond <strong> %s poslije %d %s</string>."
279
+
280
+ #: includes/functions.php:220
281
+ #, php-format
282
+ msgid " and then <strong>%s per %s</strong>."
283
+ msgstr "a onda <strong>%s po %s</strong>."
284
+
285
+ #: includes/functions.php:224
286
+ #, php-format
287
+ msgid " and then <strong>%s every %d %s</strong>."
288
+ msgstr "a onda <strong> %s svaki %d %s</strong>."
289
+
290
+ #: includes/functions.php:241 pages/levels.php:82
291
+ msgid "After your initial payment, your first payment is Free."
292
+ msgstr "Naredna uplaata nakon vaše početne uplate je besplatna"
293
+
294
+ #: includes/functions.php:245 pages/levels.php:86
295
+ #, php-format
296
+ msgid "After your initial payment, your first %d payments are Free."
297
+ msgstr "Poslije vaše prvobitne uplate, vaša naredna %d uplata je Besplatna."
298
+
299
+ #: includes/functions.php:252 pages/levels.php:93
300
+ #, php-format
301
+ msgid "After your initial payment, your first payment will cost %s."
302
+ msgstr "Nakon vaše prvobitne uplate, vaša naredna uplata će da iznosi %s."
303
+
304
+ #: includes/functions.php:256 pages/levels.php:97
305
+ #, php-format
306
+ msgid "After your initial payment, your first %d payments will cost %s."
307
+ msgstr "Nakon vaše prvobitne uplate , vaša naredna %d uplata će da iznosi %s."
308
+
309
+ #: includes/functions.php:267
310
+ #, php-format
311
+ msgid "Customers in %s will be charged %s%% tax."
312
+ msgstr "Korisnici u %s će biti naplaćeni %s%% tax."
313
+
314
+ #: includes/functions.php:281
315
+ #, php-format
316
+ msgid "Membership expires after %d %s."
317
+ msgstr "Članstvo ističe nakon %d %s."
318
+
319
+ #: includes/functions.php:517
320
+ msgid "User ID not found."
321
+ msgstr "Korisnički ID nije pronađen."
322
+
323
+ #: includes/functions.php:534
324
+ msgid "Invalid level."
325
+ msgstr "Nevažećo nivo."
326
+
327
+ #: includes/functions.php:545
328
+ msgid "not changing?"
329
+ msgstr "Ne mijenjate?"
330
+
331
+ #: includes/functions.php:562 includes/functions.php:609
332
+ #: includes/functions.php:618
333
+ msgid "Error interacting with database"
334
+ msgstr "Greška u interakciji sa bazom podataka."
335
+
336
+ #: includes/functions.php:659 includes/functions.php:698
337
+ msgid "Membership level not found."
338
+ msgstr "Nivo Članstva nije pronađen."
339
+
340
+ #: includes/functions.php:1080
341
+ msgid "The discount code could not be found."
342
+ msgstr "Kod za popust nije pronađen."
343
+
344
+ #: includes/functions.php:1096
345
+ #, php-format
346
+ msgid "This discount code goes into effect on %s."
347
+ msgstr "Kod za popust važi za %s"
348
+
349
+ #: includes/functions.php:1105
350
+ #, php-format
351
+ msgid "This discount code expired on %s."
352
+ msgstr "Kod za popust je istekao %s."
353
+
354
+ #: includes/functions.php:1117
355
+ msgid "This discount code is no longer valid."
356
+ msgstr "Kod za popust nije više važeći."
357
+
358
+ #: includes/functions.php:1132
359
+ msgid "This discount code does not apply to this membership level."
360
+ msgstr "Kod za popust ne važi za ovaj nivo članstva."
361
+
362
+ #: includes/functions.php:1140
363
+ msgid "This discount code is okay."
364
+ msgstr "Kod za popust je važeći."
365
+
366
+ #: includes/functions.php:1164
367
+ msgid "and"
368
+ msgstr "i"
369
+
370
+ #: includes/functions.php:1349
371
+ msgid "Sign Up for !!name!! Now"
372
+ msgstr "Prijavite Se za !!name!! Sada"
373
+
374
+ #: includes/functions.php:1355
375
+ msgid "Please specify a level id."
376
+ msgstr "Molimo Vas da odredite ID nivoa."
377
+
378
+ #: pages/invoice.php:22 pages/confirmation.php:41
379
+ #, php-format
380
+ msgid "Invoice #%s on %s"
381
+ msgstr "Faktura #%s na %s"
382
+
383
+ #: pages/invoice.php:27 pages/confirmation.php:46 pages/confirmation.php:104
384
+ msgid "Account"
385
+ msgstr "Nalog"
386
+
387
+ #: pages/invoice.php:30 pages/account.php:29 pages/confirmation.php:49
388
+ msgid "Membership Expires"
389
+ msgstr "Članstvo ističe"
390
+
391
+ #: pages/invoice.php:33 pages/checkout.php:66 pages/checkout.php:76
392
+ #: pages/checkout.php:577 pages/confirmation.php:52
393
+ #: classes/class.pmproemail.php:228 classes/class.pmproemail.php:237
394
+ #: classes/class.pmproemail.php:246 classes/class.pmproemail.php:325
395
+ #: classes/class.pmproemail.php:334 classes/class.pmproemail.php:645
396
+ msgid "Discount Code"
397
+ msgstr "Kod za Popust"
398
+
399
+ #: pages/invoice.php:48 pages/account.php:90 pages/checkout.php:325
400
+ #: pages/confirmation.php:61 pages/billing.php:58 adminpages/memberslist.php:150
401
+ msgid "Billing Address"
402
+ msgstr "Adresa za naplatu"
403
+
404
+ #: pages/invoice.php:50 pages/account.php:105 pages/confirmation.php:63
405
+ msgid "Payment Method"
406
+ msgstr "Metoda plaćanja"
407
+
408
+ #: pages/invoice.php:52 pages/invoice.php:109 pages/confirmation.php:65
409
+ msgid "Total Billed"
410
+ msgstr "Ukupno naplaćeno"
411
+
412
+ #: pages/invoice.php:69 pages/confirmation.php:82
413
+ msgid "ending in"
414
+ msgstr "Ističe za"
415
+
416
+ #: pages/invoice.php:70 pages/confirmation.php:83
417
+ #: adminpages/membershiplevels.php:516
418
+ msgid "Expiration"
419
+ msgstr "Isticanje"
420
+
421
+ #: pages/invoice.php:79
422
+ msgid "Subtotal"
423
+ msgstr "Suma stavke"
424
+
425
+ #: pages/invoice.php:80 adminpages/orders.php:304
426
+ msgid "Tax"
427
+ msgstr "Porez"
428
+
429
+ #: pages/invoice.php:82
430
+ msgid "Coupon"
431
+ msgstr "Kupon"
432
+
433
+ #: pages/invoice.php:84 adminpages/orders.php:320 adminpages/orders.php:602
434
+ msgid "Total"
435
+ msgstr "Ukupno"
436
+
437
+ #: pages/invoice.php:107 adminpages/orders.php:442 adminpages/orders.php:607
438
+ msgid "Date"
439
+ msgstr "Datum"
440
+
441
+ #: pages/invoice.php:108
442
+ msgid "Invoice #"
443
+ msgstr "Faktura #"
444
+
445
+ #: pages/invoice.php:122
446
+ msgid "View Invoice"
447
+ msgstr "Pregled Fakture"
448
+
449
+ #: pages/invoice.php:134
450
+ msgid "No invoices found."
451
+ msgstr "Faktura nije pronađena"
452
+
453
+ #: pages/invoice.php:141 pages/confirmation.php:113
454
+ msgid "View Your Membership Account &rarr;"
455
+ msgstr "Pregled vašeg naloga članstva &rarr;"
456
+
457
+ #: pages/invoice.php:145
458
+ msgid "&larr; View All Invoices"
459
+ msgstr "&rarr; Prikaži sve Fakture"
460
+
461
+ #: pages/account.php:10
462
+ msgid "Your membership is <strong>active</strong>."
463
+ msgstr "Vaše članstvo je <strong>aktivno</strong>."
464
+
465
+ #: pages/account.php:12 pages/billing.php:16 pages/levels.php:13
466
+ msgid "Level"
467
+ msgstr "Nivo"
468
+
469
+ #: pages/account.php:14 pages/billing.php:18
470
+ msgid "Membership Fee"
471
+ msgstr "Provizija za Članstvo"
472
+
473
+ #: pages/account.php:25 pages/billing.php:29
474
+ msgid "Duration"
475
+ msgstr "Trajanje"
476
+
477
+ #: pages/account.php:34
478
+ #, php-format
479
+ msgid "Your first payment will cost %s."
480
+ msgstr "Vaša prva uplata će da iznosi %s."
481
+
482
+ #: pages/account.php:38
483
+ #, php-format
484
+ msgid "Your first %d payments will cost %s."
485
+ msgstr "Vaša prva %d uplata će da iznosi %s."
486
+
487
+ #: pages/account.php:46
488
+ msgid "My Account"
489
+ msgstr "Moj Nalog"
490
+
491
+ #: pages/account.php:51 pages/checkout.php:171 adminpages/memberslist.php:145
492
+ msgid "Username"
493
+ msgstr "Korisničko Ime"
494
+
495
+ #: pages/account.php:52 adminpages/memberslist.php:148
496
+ #: adminpages/admin_header.php:152
497
+ msgid "Email"
498
+ msgstr ""
499
+
500
+ #: pages/account.php:55
501
+ msgid "Edit Profile"
502
+ msgstr "Uredi Profil"
503
+
504
+ #: pages/account.php:56
505
+ msgid "Change Password"
506
+ msgstr "Promijnite Lozinku"
507
+
508
+ #: pages/account.php:87
509
+ msgid "Billing Information"
510
+ msgstr "Informacije o Plaćanju"
511
+
512
+ #: pages/account.php:114
513
+ msgid "Edit Billing Information"
514
+ msgstr "Uredi Informacije o Plaćanju"
515
+
516
+ #: pages/account.php:125
517
+ msgid "Past Invoices"
518
+ msgstr "Stare Fakture"
519
+
520
+ #: pages/account.php:140
521
+ msgid "View All Invoices"
522
+ msgstr "Prikaži Sve Fakture"
523
+
524
+ #: pages/account.php:146
525
+ msgid "Member Links"
526
+ msgstr "Korisnički Linkovi"
527
+
528
+ #: pages/account.php:152
529
+ msgid "Update Billing Information"
530
+ msgstr "Ažurirajte Informacije o Plaćanju"
531
+
532
+ #: pages/account.php:155
533
+ msgid "Change Membership Level"
534
+ msgstr "Promijenite Nivo Članstva"
535
+
536
+ #: pages/account.php:157
537
+ msgid "Cancel Membership"
538
+ msgstr "Otkažite Članstvo"
539
+
540
+ #: pages/checkout.php:26
541
+ msgid ""
542
+ "Almost done. Review the membership information and pricing below then "
543
+ "<strong>click the \"Complete Payment\" button</strong> to finish your order."
544
+ msgstr ""
545
+ "Još malo pa gotovo. Pregledajte informacije o članstvu i plaćanju pa <strong> "
546
+ "kliknite na \"Dovršite Plaćanje\" dugme</strong> da završite Vašu narudžbu."
547
+
548
+ #: pages/checkout.php:33
549
+ msgid "change"
550
+ msgstr "promijeniti"
551
+
552
+ #: pages/checkout.php:41
553
+ #, php-format
554
+ msgid "You have selected the <strong>%s</strong> membership level."
555
+ msgstr "Izabrali ste <strong>%s</strong> nivo članstva."
556
+
557
+ #: pages/checkout.php:51
558
+ #, php-format
559
+ msgid ""
560
+ "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
561
+ "been applied to your order.</p>"
562
+ msgstr ""
563
+ "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> kod je "
564
+ "primijenjen na Vašoj narudžbi."
565
+
566
+ #: pages/checkout.php:62 services/applydiscountcode.php:75
567
+ msgid "Click here to change your discount code"
568
+ msgstr "Kliknote ovdje da promijenite kod za popust"
569
+
570
+ #: pages/checkout.php:64
571
+ msgid "Do you have a discount code?"
572
+ msgstr "Da li imate kod za popust?"
573
+
574
+ #: pages/checkout.php:64
575
+ msgid "Click here to enter your discount code"
576
+ msgstr "Kliknite ovdje da unestete Vaš kod za popust."
577
+
578
+ #: pages/checkout.php:78 pages/checkout.php:579
579
+ msgid "Apply"
580
+ msgstr "Primijeniti"
581
+
582
+ #: pages/checkout.php:163
583
+ msgid "Already have an account?"
584
+ msgstr "Već imate nalog?"
585
+
586
+ #: pages/checkout.php:163
587
+ msgid "Log in here"
588
+ msgstr "Prijavite se ovdje"
589
+
590
+ #: pages/checkout.php:163
591
+ msgid "Account Information"
592
+ msgstr "Informacije o Nalogu"
593
+
594
+ #: pages/checkout.php:180 adminpages/paymentsettings.php:233
595
+ msgid "Password"
596
+ msgstr "Lozinka"
597
+
598
+ #: pages/checkout.php:189
599
+ msgid "Confirm Password"
600
+ msgstr "Potvrdite Lozinku"
601
+
602
+ #: pages/checkout.php:207 pages/checkout.php:464 pages/billing.php:193
603
+ msgid "E-mail Address"
604
+ msgstr "E-mail Adresa"
605
+
606
+ #: pages/checkout.php:216
607
+ msgid "Confirm E-mail Address"
608
+ msgstr "Potvrdite E-mail Adresu"
609
+
610
+ #: pages/checkout.php:235
611
+ msgid "Full Name"
612
+ msgstr "Puno Ime"
613
+
614
+ #: pages/checkout.php:236
615
+ msgid "LEAVE THIS BLANK"
616
+ msgstr "OSTAVITE PRAZNO"
617
+
618
+ #: pages/checkout.php:260
619
+ #, php-format
620
+ msgid ""
621
+ "You are logged in as <strong>%s</strong>. If you would like to use a "
622
+ "different account for this membership, <a href=\"%s\">log out now</a>."
623
+ msgstr ""
624
+ "Prijavljeni ste kao <strong>%s</strong>. Ako želite da koristite drugi nalog "
625
+ "za ovo članstvo, <a href=\"%s\">odjavite se sada</a>."
626
+
627
+ #: pages/checkout.php:288
628
+ #, php-format
629
+ msgid "I agree to the %s"
630
+ msgstr "Saglasan sam sa %s"
631
+
632
+ #: pages/checkout.php:303
633
+ msgid "Choose your Payment Method"
634
+ msgstr "Odaberite Vaš Način Plačanja"
635
+
636
+ #: pages/checkout.php:311
637
+ msgid "Check Out with a Credit Card Here"
638
+ msgstr "Platite sa Kreditnom Karticom Ovdje"
639
+
640
+ #: pages/checkout.php:313 pages/checkout.php:686
641
+ msgid "Check Out with PayPal"
642
+ msgstr "Platite sa Paypal"
643
+
644
+ #: pages/checkout.php:332 pages/billing.php:65
645
+ msgid "First Name"
646
+ msgstr "Ime"
647
+
648
+ #: pages/checkout.php:336 pages/billing.php:69
649
+ msgid "Last Name"
650
+ msgstr "Prezime"
651
+
652
+ #: pages/checkout.php:340 pages/billing.php:73
653
+ msgid "Address 1"
654
+ msgstr "Adresa 1"
655
+
656
+ #: pages/checkout.php:344 pages/billing.php:77
657
+ msgid "Address 2"
658
+ msgstr "Adresa 2"
659
+
660
+ #: pages/checkout.php:354 pages/billing.php:87
661
+ msgid "City"
662
+ msgstr "Grad"
663
+
664
+ #: pages/checkout.php:358 pages/billing.php:91
665
+ msgid "State"
666
+ msgstr "Oblast"
667
+
668
+ #: pages/checkout.php:362 pages/billing.php:95
669
+ msgid "Postal Code"
670
+ msgstr "Poštanski Broj"
671
+
672
+ #: pages/checkout.php:371 pages/billing.php:104
673
+ msgid "City, State Zip"
674
+ msgstr "Grad, Oblast Poštanski broj "
675
+
676
+ #: pages/checkout.php:424 pages/billing.php:157
677
+ msgid "Country"
678
+ msgstr "Država"
679
+
680
+ #: pages/checkout.php:449 pages/billing.php:182
681
+ msgid "Phone"
682
+ msgstr "Telefon"
683
+
684
+ #: pages/checkout.php:473 pages/billing.php:197
685
+ msgid "Confirm E-mail"
686
+ msgstr "Potvrdite E-mail"
687
+
688
+ #: pages/checkout.php:504
689
+ #, php-format
690
+ msgid "We Accept %s"
691
+ msgstr "Mi Prihvatamo %s"
692
+
693
+ #: pages/checkout.php:504
694
+ msgid "Payment Information"
695
+ msgstr "Informacije o Plaćanju"
696
+
697
+ #: pages/checkout.php:521 pages/billing.php:234 adminpages/orders.php:339
698
+ msgid "Card Type"
699
+ msgstr "Tip Kartice"
700
+
701
+ #: pages/checkout.php:531 pages/billing.php:244
702
+ msgid "Card Number"
703
+ msgstr "Broj Kartice"
704
+
705
+ #: pages/checkout.php:536 pages/billing.php:249 adminpages/discountcodes.php:367
706
+ msgid "Expiration Date"
707
+ msgstr "Datum Isteka"
708
+
709
+ #: pages/checkout.php:568 pages/billing.php:281
710
+ msgid "CVV"
711
+ msgstr "CVV (Sigurnosni broj)"
712
+
713
+ #: pages/checkout.php:569 pages/billing.php:282
714
+ msgid "what's this?"
715
+ msgstr "šta je to?"
716
+
717
+ #: pages/checkout.php:678
718
+ msgid "Complete Payment"
719
+ msgstr "Dovršite Plaćanje"
720
+
721
+ #: pages/checkout.php:692
722
+ msgid "Submit and Pay with 2CheckOut"
723
+ msgstr "Podnesite i Platite sa 2CheckOut"
724
+
725
+ #: pages/checkout.php:692
726
+ msgid "Submit and Check Out"
727
+ msgstr "Podnesite i Platite"
728
+
729
+ #: pages/checkout.php:692
730
+ msgid "Submit and Confirm"
731
+ msgstr "Podnesite i Potvrdite"
732
+
733
+ #: pages/checkout.php:698
734
+ msgid "Processing..."
735
+ msgstr "Obrada..."
736
+
737
+ #: pages/cancel.php:14
738
+ msgid "Are you sure you want to cancel your membership?"
739
+ msgstr "Da li ste sigurni da želite da otkažete Vaše članstvo?"
740
+
741
+ #: pages/cancel.php:17
742
+ msgid "Yes, cancel my account"
743
+ msgstr "Da, otkažite moje članstvo"
744
+
745
+ #: pages/cancel.php:19
746
+ msgid "No, keep my account"
747
+ msgstr "Ne, zadržite moj nalog"
748
+
749
+ #: pages/cancel.php:22
750
+ msgid "Click here to go to the home page."
751
+ msgstr "Klikite ovdje da odete na naslovnu stranu."
752
+
753
+ #: pages/confirmation.php:12
754
+ msgid ""
755
+ "Your payment has been submitted. Your membership will be activated shortly."
756
+ msgstr "Vaša uplata je podnesena. Vaše članstvo će uskoro biti aktivirano."
757
+
758
+ #: pages/confirmation.php:14
759
+ #, php-format
760
+ msgid "Thank you for your membership to %s. Your %s membership is now active."
761
+ msgstr ""
762
+ "Hvala vam na Vašem učlanjivanju na %s. Vaše %s članstvo je sada aktivno."
763
+
764
+ #: pages/confirmation.php:28
765
+ #, php-format
766
+ msgid ""
767
+ "Below are details about your membership account and a receipt for your "
768
+ "initial membership invoice. A welcome email with a copy of your initial "
769
+ "membership invoice has been sent to %s."
770
+ msgstr ""
771
+ "Ispod su detalji o Vašem nalogu i račun za Vašu prvu člansku fakturu. E-mail "
772
+ "dobrodošlice sa kopijom Vaše prve članske fakture je poslat na %s."
773
+
774
+ #: pages/confirmation.php:43
775
+ msgid "Print"
776
+ msgstr "Štampaj"
777
+
778
+ #: pages/confirmation.php:97
779
+ #, php-format
780
+ msgid ""
781
+ "Below are details about your membership account. A welcome email with has "
782
+ "been sent to %s."
783
+ msgstr "Ispod su detalji o vašem nalogu. Email dobrodošlice je poslat na %s."
784
+
785
+ #: pages/confirmation.php:105
786
+ msgid "Pending"
787
+ msgstr "Na čekanju"
788
+
789
+ #: pages/confirmation.php:115
790
+ msgid ""
791
+ "If your account is not activated within a few minutes, please contact the "
792
+ "site owner."
793
+ msgstr ""
794
+ "Ako Vaš nalog nije aktiviran unutar nekoliko minuta, molimo Vas da nas "
795
+ "kontaktirate."
796
+
797
+ #: pages/billing.php:14
798
+ #, php-format
799
+ msgid "Logged in as <strong>%s</strong>."
800
+ msgstr "Prijavljen kao <strong>%s</strong>."
801
+
802
+ #: pages/billing.php:14
803
+ msgid "logout"
804
+ msgstr "odjavi se"
805
+
806
+ #: pages/billing.php:39
807
+ msgid ""
808
+ "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
809
+ "paypal.com\">login to PayPal here</a> to update your billing information."
810
+ msgstr ""
811
+ "Vašom pretplatom upravlja PayPal. Molim Vas <a href=\"http://www.paypal.com"
812
+ "\"> prijavite se na PayPal ovdje</a> da ažurirate Vaše informacije o plaćanju."
813
+
814
+ #: pages/billing.php:78 adminpages/paymentsettings.php:457
815
+ msgid "optional"
816
+ msgstr "opciono"
817
+
818
+ #: pages/billing.php:217
819
+ #, php-format
820
+ msgid "We accept %s"
821
+ msgstr "Mi prihvatamo %s"
822
+
823
+ #: pages/billing.php:217
824
+ msgid "Credit Card Information"
825
+ msgstr "Informacije o Kreditnoj Kartici"
826
+
827
+ #: pages/billing.php:294
828
+ msgid "Update"
829
+ msgstr "Ažuriraj"
830
+
831
+ #: pages/billing.php:295 adminpages/orders.php:511
832
+ msgid "Cancel"
833
+ msgstr "Otkaži"
834
+
835
+ #: pages/billing.php:309
836
+ msgid ""
837
+ "This subscription is not recurring. So you don't need to update your billing "
838
+ "information."
839
+ msgstr ""
840
+ "Pretlata se ne ponavlja. Tako da ne treba da ažurirate Vaše informacije o "
841
+ "plačanju"
842
+
843
+ #: pages/levels.php:14 adminpages/membershiplevels.php:337
844
+ #: adminpages/membershiplevels.php:513 adminpages/discountcodes.php:427
845
+ msgid "Initial Payment"
846
+ msgstr "Početna Uplata"
847
+
848
+ #: pages/levels.php:15
849
+ msgid "Subscription Information"
850
+ msgstr "Informacije o Pretpalti"
851
+
852
+ #: pages/levels.php:33
853
+ msgid "--"
854
+ msgstr ""
855
+
856
+ #: pages/levels.php:43
857
+ msgid "Free"
858
+ msgstr "Besplatno"
859
+
860
+ #: pages/levels.php:51
861
+ #, php-format
862
+ msgid "%s per %s for %d more %s."
863
+ msgstr "%s po %s za %d više %s."
864
+
865
+ #: pages/levels.php:55
866
+ #, php-format
867
+ msgid "%s every %d %s for %d more %s."
868
+ msgstr "%s svaki %d %s za %d više %s."
869
+
870
+ #: pages/levels.php:60
871
+ #, php-format
872
+ msgid "%s after %d %s."
873
+ msgstr "%s poslije %d %s."
874
+
875
+ #: pages/levels.php:66
876
+ #, php-format
877
+ msgid "%s per %s."
878
+ msgstr "%s po %s."
879
+
880
+ #: pages/levels.php:70
881
+ #, php-format
882
+ msgid "%s every %d %s."
883
+ msgstr "%s svaki %d %s."
884
+
885
+ #: pages/levels.php:113 pages/levels.php:115
886
+ msgid "Select"
887
+ msgstr "Izaberite"
888
+
889
+ #: pages/levels.php:123
890
+ msgid "Renew"
891
+ msgstr "Obnovite"
892
+
893
+ #: pages/levels.php:129
894
+ msgid "Your&nbsp;Level"
895
+ msgstr "Vaš&nbsp;Nivo"
896
+
897
+ #: pages/levels.php:145
898
+ msgid "&larr; Return to Your Account"
899
+ msgstr "&larr; Vratite se na Vaš Nalog"
900
+
901
+ #: pages/levels.php:147
902
+ msgid "&larr; Return to Home"
903
+ msgstr "&larr; Vratite se na Naslovnu"
904
+
905
+ #: classes/class.memberorder.php:543
906
+ #, php-format
907
+ msgid ""
908
+ "There was an error canceling the subscription for user with ID=%s. You will "
909
+ "want to check your payment gateway to see if their subscription is still "
910
+ "active."
911
+ msgstr ""
912
+ "Deslia se greška prilikom otkazivanja pretplateza korisnika sa ID=%s. Trebali "
913
+ "bi da provjerite da li je pretplata još uvijek aktivna."
914
+
915
+ #: classes/class.pmproemail.php:37
916
+ #, php-format
917
+ msgid "An Email From %s"
918
+ msgstr "Email od %s"
919
+
920
+ #: classes/class.pmproemail.php:122
921
+ #, php-format
922
+ msgid "Your membership at %s has been CANCELLED"
923
+ msgstr "Vaša pretplata na %s je OTKAZANA"
924
+
925
+ #: classes/class.pmproemail.php:144
926
+ #, php-format
927
+ msgid "Membership for %s at %s has been CANCELLED"
928
+ msgstr "Članstvo za %s na %s je OTKAZANO"
929
+
930
+ #: classes/class.pmproemail.php:175
931
+ #, php-format
932
+ msgid "Your membership confirmation for %s"
933
+ msgstr "Vaša potvrda članstva za %s"
934
+
935
+ #: classes/class.pmproemail.php:253 classes/class.pmproemail.php:346
936
+ #: classes/class.pmproemail.php:651
937
+ #, php-format
938
+ msgid "This membership will expire on %s."
939
+ msgstr "Ovo članstvo će da istekne %s."
940
+
941
+ #: classes/class.pmproemail.php:275
942
+ #, php-format
943
+ msgid "Member Checkout for %s at %s"
944
+ msgstr "Korisnik Plaća za %s na %s"
945
+
946
+ #: classes/class.pmproemail.php:363
947
+ #, php-format
948
+ msgid "Your billing information has been udpated at %s"
949
+ msgstr "Vaše informacije o plaćanju su ažurirane na %s"
950
+
951
+ #: classes/class.pmproemail.php:416
952
+ #, php-format
953
+ msgid "Billing information has been udpated for %s at %s"
954
+ msgstr "Informacije o plaćanju su ažurirane za %s na %s"
955
+
956
+ #: classes/class.pmproemail.php:464
957
+ #, php-format
958
+ msgid "Membership Payment Failed at %s"
959
+ msgstr "Plaćanje za članstvo neuspješno na %s"
960
+
961
+ #: classes/class.pmproemail.php:510
962
+ #, php-format
963
+ msgid "Membership Payment Failed For %s at %s"
964
+ msgstr "Plaćanje za članstvo neuspjećno za %s na%s"
965
+
966
+ #: classes/class.pmproemail.php:557
967
+ #, php-format
968
+ msgid "Credit Card on File Expiring Soon at %s"
969
+ msgstr "Kreditna Kartica Uskoro Ističe na %s"
970
+
971
+ #: classes/class.pmproemail.php:605
972
+ #, php-format
973
+ msgid "INVOICE for %s membership"
974
+ msgstr "Faktura za %s članstvo"
975
+
976
+ #: classes/class.pmproemail.php:676
977
+ #, php-format
978
+ msgid "Your trial at %s is ending soon"
979
+ msgstr "Vaša proba na %s se uskoro završava"
980
+
981
+ #: classes/class.pmproemail.php:710
982
+ #, php-format
983
+ msgid "Your membership at %s has ended"
984
+ msgstr "Vaše članstvo na %s je isteklo"
985
+
986
+ #: classes/class.pmproemail.php:735
987
+ #, php-format
988
+ msgid "Your membership at %s will end soon"
989
+ msgstr "Vaše članstvo na %s uskoro ističe"
990
+
991
+ #: classes/class.pmproemail.php:755
992
+ #, php-format
993
+ msgid "Your membership at %s has been changed"
994
+ msgstr "Vaše članstvo na %s je promijenjeno"
995
+
996
+ #: classes/class.pmproemail.php:759
997
+ #, php-format
998
+ msgid "The new level is %s."
999
+ msgstr "Novi nivo je %s."
1000
+
1001
+ #: classes/class.pmproemail.php:761
1002
+ msgid "Your membership has been cancelled"
1003
+ msgstr "Vaše članstvo je otkazano"
1004
+
1005
+ #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:803
1006
+ #, php-format
1007
+ msgid "This membership will expire on %s"
1008
+ msgstr "Ovo članstvo će da istekne na %s"
1009
+
1010
+ #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:807
1011
+ msgid "This membership does not expire"
1012
+ msgstr "Ovo članstvo nema rok za isticanje"
1013
+
1014
+ #: classes/class.pmproemail.php:793
1015
+ #, php-format
1016
+ msgid "Membership for %s at %s has been changed"
1017
+ msgstr "Članstvo za %s na%s je promijenjeno"
1018
+
1019
+ #: classes/class.pmproemail.php:797
1020
+ #, php-format
1021
+ msgid "The new level is %s. This membership is free"
1022
+ msgstr "Novi nivo je %s. Ovo članstvo je besplatno"
1023
+
1024
+ #: classes/class.pmproemail.php:799
1025
+ msgid "membership has been cancelled"
1026
+ msgstr "članstvo je otkazano"
1027
+
1028
+ #: classes/gateways/class.pmprogateway_check.php:60
1029
+ #: classes/gateways/class.pmprogateway_paypal.php:27
1030
+ #: classes/gateways/class.pmprogateway_authorizenet.php:55
1031
+ #: classes/gateways/class.pmprogateway_payflowpro.php:27
1032
+ #: classes/gateways/class.pmprogateway_sagepay.php:81
1033
+ #: classes/gateways/class.pmprogateway.php:55
1034
+ #: classes/gateways/class.pmprogateway_cybersource.php:57
1035
+ msgid "Unknown error: Authorization failed."
1036
+ msgstr "Nepoznata greška: Ovlašćenje nije uspijelo."
1037
+
1038
+ #: classes/gateways/class.pmprogateway_check.php:111
1039
+ #: classes/gateways/class.pmprogateway_check.php:116
1040
+ #: classes/gateways/class.pmprogateway_check.php:134
1041
+ #: classes/gateways/class.pmprogateway_paypal.php:50
1042
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
1043
+ #: classes/gateways/class.pmprogateway_authorizenet.php:111
1044
+ #: classes/gateways/class.pmprogateway_authorizenet.php:128
1045
+ #: classes/gateways/class.pmprogateway_payflowpro.php:50
1046
+ #: classes/gateways/class.pmprogateway_payflowpro.php:55
1047
+ #: classes/gateways/class.pmprogateway_sagepay.php:140
1048
+ #: classes/gateways/class.pmprogateway_sagepay.php:145
1049
+ #: classes/gateways/class.pmprogateway_sagepay.php:168
1050
+ #: classes/gateways/class.pmprogateway.php:106
1051
+ #: classes/gateways/class.pmprogateway.php:111
1052
+ #: classes/gateways/class.pmprogateway.php:129
1053
+ #: classes/gateways/class.pmprogateway_cybersource.php:108
1054
+ #: classes/gateways/class.pmprogateway_cybersource.php:113
1055
+ #: classes/gateways/class.pmprogateway_cybersource.php:131
1056
+ msgid "Unknown error: Payment failed."
1057
+ msgstr "Nepoznata greška: Plaćanje nije uspijelo."
1058
+
1059
+ #: classes/gateways/class.pmprogateway_check.php:118
1060
+ #: classes/gateways/class.pmprogateway_authorizenet.php:112
1061
+ #: classes/gateways/class.pmprogateway_sagepay.php:147
1062
+ #: classes/gateways/class.pmprogateway.php:113
1063
+ #: classes/gateways/class.pmprogateway_cybersource.php:115
1064
+ msgid ""
1065
+ "A partial payment was made that we could not void. Please contact the site "
1066
+ "owner immediately to correct this."
1067
+ msgstr ""
1068
+ "Izvršena je djelimična naplata koju nismo mogli poništiti. Molimo Vas da "
1069
+ "kontaktirate vlasnika što prije da bi riješili ovo."
1070
+
1071
+ #: classes/gateways/class.pmprogateway_braintree.php:61
1072
+ #: classes/gateways/class.pmprogateway_stripe.php:53
1073
+ msgid "Unknown error: Initial payment failed."
1074
+ msgstr "Nepoznata greška: Početna uplata nije uspijela."
1075
+
1076
+ #: classes/gateways/class.pmprogateway_braintree.php:120
1077
+ msgid "Error during settlement:"
1078
+ msgstr "Greška prilikom namirenja:"
1079
+
1080
+ #: classes/gateways/class.pmprogateway_braintree.php:129
1081
+ msgid "Error during charge:"
1082
+ msgstr "Greška prilikom naplate:"
1083
+
1084
+ #: classes/gateways/class.pmprogateway_braintree.php:198
1085
+ msgid "Failed to update customer."
1086
+ msgstr "Neuspjeh prilikom ažuriranja korisnika."
1087
+
1088
+ #: classes/gateways/class.pmprogateway_braintree.php:246
1089
+ msgid "Failed to create customer."
1090
+ msgstr "Neuspjeh prilikom kreiranja korisnika"
1091
+
1092
+ #: classes/gateways/class.pmprogateway_braintree.php:253
1093
+ msgid "Error creating customer record with Braintree:"
1094
+ msgstr "Greška prilikom kreiranja korisničkog zapisa sa Braintree:"
1095
+
1096
+ #: classes/gateways/class.pmprogateway_braintree.php:344
1097
+ msgid "Error subscribing customer to plan with Braintree:"
1098
+ msgstr "Greška prilikom pretplaćivanja korisnika na Braintree:"
1099
+
1100
+ #: classes/gateways/class.pmprogateway_braintree.php:359
1101
+ msgid "Failed to subscribe with Braintree:"
1102
+ msgstr "Neuspjeh prilikom pretplate na Braintree:"
1103
+
1104
+ #: classes/gateways/class.pmprogateway_braintree.php:397
1105
+ #: classes/gateways/class.pmprogateway_braintree.php:410
1106
+ #: classes/gateways/class.pmprogateway_braintree.php:417
1107
+ #: classes/gateways/class.pmprogateway_stripe.php:344
1108
+ #: classes/gateways/class.pmprogateway_stripe.php:354
1109
+ msgid "Could not find the subscription."
1110
+ msgstr "Neuspjeh prilikom potrage za pretplatom."
1111
+
1112
+ #: classes/gateways/class.pmprogateway_paypal.php:57
1113
+ #: classes/gateways/class.pmprogateway_payflowpro.php:57
1114
+ msgid ""
1115
+ "A partial payment was made that we could not refund. Please contact the site "
1116
+ "owner immediately to correct this."
1117
+ msgstr ""
1118
+ "Izvršena je djelimična naplata koja mogla biti povraćena. Molimo Vas da "
1119
+ "kontaktirate vlasknika što prije da bi riješili ovo."
1120
+
1121
+ #: classes/gateways/class.pmprogateway_authorizenet.php:187
1122
+ #: adminpages/memberslist.php:151 adminpages/pagesettings.php:51
1123
+ #: adminpages/reports/login.php:143
1124
+ msgid "Membership"
1125
+ msgstr "Članstvo"
1126
+
1127
+ #: classes/gateways/class.pmprogateway_authorizenet.php:787
1128
+ #: classes/gateways/class.pmprogateway_authorizenet.php:788
1129
+ msgid "Could not connect to Authorize.net"
1130
+ msgstr "Neupjeh prilikom uspostavljanja veze sa Authorize.net"
1131
+
1132
+ #: classes/gateways/class.pmprogateway_stripe.php:192
1133
+ msgid "Error creating customer record with Stripe:"
1134
+ msgstr "Greška prilikom kreiranja korisničkog naloga Stripe:"
1135
+
1136
+ #: classes/gateways/class.pmprogateway_stripe.php:279
1137
+ msgid "Error creating plan with Stripe:"
1138
+ msgstr "Greška prilikom kreiranja plana sa Stripe:"
1139
+
1140
+ #: classes/gateways/class.pmprogateway_stripe.php:295
1141
+ msgid "Error subscribing customer to plan with Stripe:"
1142
+ msgstr "Greška prilikom pretplate korisnika na Stripe:"
1143
+
1144
+ #: adminpages/membershiplevels.php:5 adminpages/orders.php:5
1145
+ #: adminpages/memberslist.php:5 adminpages/paymentsettings.php:5
1146
+ #: adminpages/pagesettings.php:5 adminpages/discountcodes.php:5
1147
+ #: adminpages/memberslist-csv.php:5 adminpages/addons.php:5
1148
+ #: adminpages/emailsettings.php:5 adminpages/advancedsettings.php:5
1149
+ #: adminpages/orders-csv.php:5
1150
+ msgid "You do not have permissions to perform this action."
1151
+ msgstr "Nemate ovlaščenje da izvršite ovu naredbu."
1152
+
1153
+ #: adminpages/membershiplevels.php:118
1154
+ msgid "Membership level updated successfully."
1155
+ msgstr "Nivo članstva je uspješno ažuriran."
1156
+
1157
+ #: adminpages/membershiplevels.php:124
1158
+ msgid "Error updating membership level."
1159
+ msgstr "Greška prilikom ažuriranja nivoa članstva."
1160
+
1161
+ #: adminpages/membershiplevels.php:141
1162
+ msgid "Membership level added successfully."
1163
+ msgstr "Nivo članstva je uspješno dodat."
1164
+
1165
+ #: adminpages/membershiplevels.php:146
1166
+ msgid "Error adding membership level."
1167
+ msgstr "Greška prilikom dodavanja nivoa članstva."
1168
+
1169
+ #: adminpages/membershiplevels.php:179
1170
+ #, php-format
1171
+ msgid ""
1172
+ "There was an error canceling the subscription for user with ID=%d. You will "
1173
+ "want to check your payment gateway to see if their subscription is still "
1174
+ "active."
1175
+ msgstr ""
1176
+ "Došlo je do greške prilikom otkazivanja pretplate za korisnika sa ID=%d. "
1177
+ "Trebali bi da provjerite da li je njihova pretplata još uvijek aktivna."
1178
+
1179
+ #: adminpages/membershiplevels.php:182
1180
+ msgid "Last Invoice"
1181
+ msgstr "Poslednja Faktura"
1182
+
1183
+ #: adminpages/membershiplevels.php:196
1184
+ msgid "Membership level deleted successfully."
1185
+ msgstr "Nivo članstva je uspješno izbrisan."
1186
+
1187
+ #: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:207
1188
+ msgid "Error deleting membership level."
1189
+ msgstr "Greška prilikom brisanja nivoa članstva."
1190
+
1191
+ #: adminpages/membershiplevels.php:222
1192
+ msgid "Edit Membership Level"
1193
+ msgstr "Uredite Nivo Članstva"
1194
+
1195
+ #: adminpages/membershiplevels.php:224
1196
+ msgid "Add New Membership Level"
1197
+ msgstr "Dodajte Novi Nivo Članstva"
1198
+
1199
+ #: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:511
1200
+ #: adminpages/orders.php:597 adminpages/memberslist.php:144
1201
+ #: adminpages/discountcodes.php:306 adminpages/discountcodes.php:547
1202
+ #: adminpages/reports/login.php:140
1203
+ msgid "ID"
1204
+ msgstr ""
1205
+
1206
+ #: adminpages/membershiplevels.php:291 adminpages/membershiplevels.php:512
1207
+ #: adminpages/reports/login.php:142
1208
+ msgid "Name"
1209
+ msgstr "Ime"
1210
+
1211
+ #: adminpages/membershiplevels.php:296
1212
+ msgid "Description"
1213
+ msgstr "Opis"
1214
+
1215
+ #: adminpages/membershiplevels.php:314
1216
+ msgid "Confirmation Message"
1217
+ msgstr "Potvrdna Poruka"
1218
+
1219
+ #: adminpages/membershiplevels.php:333
1220
+ msgid "Billing Details"
1221
+ msgstr "Informacije o Plaćnju"
1222
+
1223
+ #: adminpages/membershiplevels.php:338 adminpages/discountcodes.php:428
1224
+ msgid "The initial amount collected at registration."
1225
+ msgstr "Iznos prvobitne uplate prikupljen prilikom registracije."
1226
+
1227
+ #: adminpages/membershiplevels.php:342 adminpages/discountcodes.php:432
1228
+ msgid "Recurring Subscription"
1229
+ msgstr "Ponavljajuća Pretplata"
1230
+
1231
+ #: adminpages/membershiplevels.php:343 adminpages/discountcodes.php:433
1232
+ msgid "Check if this level has a recurring subscription payment."
1233
+ msgstr "Potvrdite ako ovaj nivo ima ponavljajuće plaćanje pretplate."
1234
+
1235
+ #: adminpages/membershiplevels.php:347
1236
+ msgid "Billing Amount"
1237
+ msgstr "Iznost za Plaćanje"
1238
+
1239
+ #: adminpages/membershiplevels.php:349
1240
+ msgid "per"
1241
+ msgstr "po"
1242
+
1243
+ #: adminpages/membershiplevels.php:353
1244
+ msgid "Day(s)"
1245
+ msgstr "Dan(a)"
1246
+
1247
+ #: adminpages/membershiplevels.php:353
1248
+ msgid "Week(s)"
1249
+ msgstr "Sedmica"
1250
+
1251
+ #: adminpages/membershiplevels.php:353
1252
+ msgid "Month(s)"
1253
+ msgstr "Mjesec(i)"
1254
+
1255
+ #: adminpages/membershiplevels.php:353
1256
+ msgid "Year(s)"
1257
+ msgstr "Godin(a)"
1258
+
1259
+ #: adminpages/membershiplevels.php:362 adminpages/discountcodes.php:451
1260
+ msgid "The amount to be billed one cycle after the initial payment."
1261
+ msgstr "Iznos prve naplate prvog ciklusa poslije prvobitne naplate."
1262
+
1263
+ #: adminpages/membershiplevels.php:364
1264
+ msgid ""
1265
+ "Stripe integration currently only supports billing periods of \"Week\", "
1266
+ "\"Month\" or \"Year\"."
1267
+ msgstr ""
1268
+ "Stripe integracija trenuto samo podržava periode naplate od \"Sedmica\", "
1269
+ "\"Mjesec\" ili \"Godina\"."
1270
+
1271
+ #: adminpages/membershiplevels.php:366
1272
+ msgid ""
1273
+ "Braintree integration currently only supports billing periods of \"Month\" or "
1274
+ "\"Year\"."
1275
+ msgstr ""
1276
+ "Braintree integracija trenutno samo podržava periode naplate od \"Mjesec\" "
1277
+ "ili \"Godina\"."
1278
+
1279
+ #: adminpages/membershiplevels.php:368
1280
+ msgid ""
1281
+ "Payflow integration currently only supports billing frequencies of 1 and "
1282
+ "billing periods of \"Week\", \"Month\" or \"Year\"."
1283
+ msgstr ""
1284
+ "Payflow integracija trenutno samo podržava učestalost naplate od 1 i periode "
1285
+ "naplate od \"Sedmica\", \"Mjesec\" ili \"Godina\""
1286
+
1287
+ #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1288
+ #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:184
1289
+ msgid "Note"
1290
+ msgstr "Obratite"
1291
+
1292
+ #: adminpages/membershiplevels.php:372
1293
+ msgid ""
1294
+ "After saving this level, make note of the ID and create a \"Plan\" in your "
1295
+ "Braintree dashboard with the same settings and the \"Plan ID\" set to "
1296
+ "<em>pmpro_#</em>, where # is the level ID."
1297
+ msgstr ""
1298
+
1299
+ #: adminpages/membershiplevels.php:374
1300
+ msgid ""
1301
+ "You will need to create a \"Plan\" in your Braintree dashboard with the same "
1302
+ "settings and the \"Plan ID\" set to"
1303
+ msgstr ""
1304
+
1305
+ #: adminpages/membershiplevels.php:380 adminpages/discountcodes.php:456
1306
+ msgid "Billing Cycle Limit"
1307
+ msgstr "Granica Ciklusa Plaćanja"
1308
+
1309
+ #: adminpages/membershiplevels.php:384 adminpages/discountcodes.php:459
1310
+ msgid ""
1311
+ "The <strong>total</strong> number of recurring billing cycles for this level, "
1312
+ "including the trial period (if applicable) but not including the initial "
1313
+ "payment. Set to zero if membership is indefinite."
1314
+ msgstr ""
1315
+
1316
+ #: adminpages/membershiplevels.php:386
1317
+ msgid ""
1318
+ "Stripe integration currently does not support billing limits. You can still "
1319
+ "set an expiration date below."
1320
+ msgstr ""
1321
+ "Stripe integracija trenutno ne pordržava granice plaćanja. Međutim možete da "
1322
+ "podesite datum isteka ispod."
1323
+
1324
+ #: adminpages/membershiplevels.php:393 adminpages/discountcodes.php:464
1325
+ msgid "Custom Trial"
1326
+ msgstr "Custom Proba"
1327
+
1328
+ #: adminpages/membershiplevels.php:395 adminpages/discountcodes.php:465
1329
+ msgid "Check to add a custom trial period."
1330
+ msgstr "Potvrdite da dodate poseban probni period"
1331
+
1332
+ #: adminpages/membershiplevels.php:398
1333
+ msgid ""
1334
+ "2Checkout integration does not support custom trials. You can do one period "
1335
+ "trials by setting an initial payment different from the billing amount."
1336
+ msgstr ""
1337
+ "2Checkout integracija ne podržaava posebne probne periode. Možete dodati "
1338
+ "jednokratne probne periode tako što ćete postaviti prvobitnu naplatu "
1339
+ "različitu od obične naplate."
1340
+
1341
+ #: adminpages/membershiplevels.php:404 adminpages/discountcodes.php:469
1342
+ msgid "Trial Billing Amount"
1343
+ msgstr "Iznos Naplat Za Probni Period"
1344
+
1345
+ #: adminpages/membershiplevels.php:407 adminpages/discountcodes.php:472
1346
+ msgid "for the first"
1347
+ msgstr "za prvi"
1348
+
1349
+ #: adminpages/membershiplevels.php:409 adminpages/discountcodes.php:474
1350
+ msgid "subscription payments"
1351
+ msgstr "plaćanje pretplate"
1352
+
1353
+ #: adminpages/membershiplevels.php:412
1354
+ msgid ""
1355
+ "Stripe integration currently does not support trial amounts greater than $0."
1356
+ msgstr "Stripe integracija trenutno ne podržava probne periode veće od $0."
1357
+
1358
+ #: adminpages/membershiplevels.php:416
1359
+ msgid ""
1360
+ "Braintree integration currently does not support trial amounts greater than "
1361
+ "$0."
1362
+ msgstr "Braintree integracija trenutno ne podržava probne periode veće od $0."
1363
+
1364
+ #: adminpages/membershiplevels.php:420
1365
+ msgid ""
1366
+ "Payflow integration currently does not support trial amounts greater than $0."
1367
+ msgstr "Payflow integracija trenutno ne podržava probne periode veće od $0."
1368
+
1369
+ #: adminpages/membershiplevels.php:428
1370
+ msgid "Other Settings"
1371
+ msgstr "Druge Postavke"
1372
+
1373
+ #: adminpages/membershiplevels.php:432
1374
+ msgid "Disable New Signups"
1375
+ msgstr "Onesposobi Nove Prijave"
1376
+
1377
+ #: adminpages/membershiplevels.php:433
1378
+ msgid ""
1379
+ "Check to hide this level from the membership levels page and disable "
1380
+ "registration."
1381
+ msgstr ""
1382
+ "Potvrdi da sakrijete nivo sa strane nivoa članstva i onesposobite "
1383
+ "registraciju."
1384
+
1385
+ #: adminpages/membershiplevels.php:437 adminpages/discountcodes.php:479
1386
+ msgid "Membership Expiration"
1387
+ msgstr "Isticanje Članstva"
1388
+
1389
+ #: adminpages/membershiplevels.php:438 adminpages/discountcodes.php:480
1390
+ msgid "Check this to set when membership access expires."
1391
+ msgstr "Potvrdite ovo da postavite kada ističe članstvo."
1392
+
1393
+ #: adminpages/membershiplevels.php:442 adminpages/discountcodes.php:484
1394
+ msgid "Expires In"
1395
+ msgstr "Ističe za"
1396
+
1397
+ #: adminpages/membershiplevels.php:455 adminpages/discountcodes.php:497
1398
+ msgid ""
1399
+ "Set the duration of membership access. Note that the any future payments "
1400
+ "(recurring subscription, if any) will be cancelled when the membership "
1401
+ "expires."
1402
+ msgstr ""
1403
+ "Postavite trajanje članstva. Sva buduća plaćanja (pretplate ili drugo) će "
1404
+ "biti otkazana kada članstvo istekne."
1405
+
1406
+ #: adminpages/membershiplevels.php:463
1407
+ msgid "Content Settings"
1408
+ msgstr "Postavke Sadržaja"
1409
+
1410
+ #: adminpages/membershiplevels.php:467
1411
+ msgid "Categories"
1412
+ msgstr "Kategorije"
1413
+
1414
+ #: adminpages/membershiplevels.php:496
1415
+ msgid "Add New Level"
1416
+ msgstr "Dodaj Novi Nivo"
1417
+
1418
+ #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:502
1419
+ msgid "Search Levels"
1420
+ msgstr "Pretraži Nivoe"
1421
+
1422
+ #: adminpages/membershiplevels.php:514
1423
+ msgid "Billing Cycle"
1424
+ msgstr "Ciklus Plaćanja"
1425
+
1426
+ #: adminpages/membershiplevels.php:515
1427
+ msgid "Trial Cycle"
1428
+ msgstr "Ciklus Probe"
1429
+
1430
+ #: adminpages/membershiplevels.php:517
1431
+ msgid "Allow Signups"
1432
+ msgstr "Dopusti Registracije"
1433
+
1434
+ #: adminpages/membershiplevels.php:540
1435
+ msgid "FREE"
1436
+ msgstr "BESPLATNO"
1437
+
1438
+ #: adminpages/membershiplevels.php:549
1439
+ msgid "every"
1440
+ msgstr "svaki"
1441
+
1442
+ #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:559
1443
+ #: adminpages/reports/memberships.php:304 adminpages/reports/memberships.php:315
1444
+ #: adminpages/reports/sales.php:203 adminpages/reports/sales.php:214
1445
+ msgid "for"
1446
+ msgstr "za"
1447
+
1448
+ #: adminpages/membershiplevels.php:566
1449
+ msgid "After"
1450
+ msgstr "Poslije"
1451
+
1452
+ #: adminpages/membershiplevels.php:570 adminpages/orders.php:658
1453
+ #: adminpages/discountcodes.php:614
1454
+ msgid "edit"
1455
+ msgstr "uredi"
1456
+
1457
+ #: adminpages/membershiplevels.php:571 adminpages/orders.php:661
1458
+ msgid "copy"
1459
+ msgstr "kopiraj"
1460
+
1461
+ #: adminpages/membershiplevels.php:572
1462
+ #, php-format
1463
+ msgid ""
1464
+ "Are you sure you want to delete membership level %s? All subscriptions will "
1465
+ "be cancelled."
1466
+ msgstr ""
1467
+ "Da li ste sigurni da želite da obrišete nivo članstva %s? Sve pretplate će da "
1468
+ "budu otkazane."
1469
+
1470
+ #: adminpages/membershiplevels.php:572 adminpages/orders.php:664
1471
+ #: adminpages/discountcodes.php:617
1472
+ msgid "delete"
1473
+ msgstr "obriši"
1474
+
1475
+ #: adminpages/orders.php:26
1476
+ msgid "Order deleted successfully."
1477
+ msgstr "Narudžba uspješno obrisana."
1478
+
1479
+ #: adminpages/orders.php:31
1480
+ msgid "Error deleting order."
1481
+ msgstr "Greška prilikom brisanja narudžbe."
1482
+
1483
+ #: adminpages/orders.php:119
1484
+ msgid "Order saved successfully."
1485
+ msgstr "Narudžba je uspješno sačuvana."
1486
+
1487
+ #: adminpages/orders.php:124
1488
+ msgid "Error updating order timestamp."
1489
+ msgstr "Greška prilikom ažuriranja vremenske oznake."
1490
+
1491
+ #: adminpages/orders.php:130
1492
+ msgid "Error saving order."
1493
+ msgstr "Greška prilikom saviranja narudžbe."
1494
+
1495
+ #: adminpages/orders.php:195
1496
+ msgid "Order"
1497
+ msgstr "Narudžba"
1498
+
1499
+ #: adminpages/orders.php:197
1500
+ msgid "New Order"
1501
+ msgstr "Nova Narudžba"
1502
+
1503
+ #: adminpages/orders.php:211 adminpages/discountcodes.php:307
1504
+ msgid "This will be generated when you save."
1505
+ msgstr "Ovo će da generiše kada sačuvate."
1506
+
1507
+ #: adminpages/orders.php:215 adminpages/orders.php:598
1508
+ #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:548
1509
+ msgid "Code"
1510
+ msgstr "Kod"
1511
+
1512
+ #: adminpages/orders.php:220
1513
+ msgid "Randomly generated for you."
1514
+ msgstr "Nasumično generisan za Vas."
1515
+
1516
+ #: adminpages/orders.php:225
1517
+ msgid "User ID"
1518
+ msgstr "Korisnički ID"
1519
+
1520
+ #: adminpages/orders.php:234
1521
+ msgid "Membership Level ID"
1522
+ msgstr "ID Nivoa Članstva"
1523
+
1524
+ #: adminpages/orders.php:243
1525
+ msgid "Billing Name"
1526
+ msgstr "Ime za Naplatu"
1527
+
1528
+ #: adminpages/orders.php:251
1529
+ msgid "Billing Street"
1530
+ msgstr "Ime Ulice za Naplatu"
1531
+
1532
+ #: adminpages/orders.php:258
1533
+ msgid "Billing City"
1534
+ msgstr "Ime Grada za Naplatu"
1535
+
1536
+ #: adminpages/orders.php:265
1537
+ msgid "Billing State"
1538
+ msgstr "Ime Oblasti za Naplatu"
1539
+
1540
+ #: adminpages/orders.php:272
1541
+ msgid "Billing Postal Code"
1542
+ msgstr "Poštanski broj"
1543
+
1544
+ #: adminpages/orders.php:279
1545
+ msgid "Billing Country"
1546
+ msgstr "Ime Države za Naplatu"
1547
+
1548
+ #: adminpages/orders.php:287
1549
+ msgid "Billing Phone"
1550
+ msgstr "Broj Telefona za Naplatu"
1551
+
1552
+ #: adminpages/orders.php:296
1553
+ msgid "Sub Total"
1554
+ msgstr "Ukupna Suma"
1555
+
1556
+ #: adminpages/orders.php:312
1557
+ msgid "Coupon Amount"
1558
+ msgstr "Iznos Kupona"
1559
+
1560
+ #: adminpages/orders.php:325
1561
+ msgid "Should be subtotal + tax - couponamount."
1562
+ msgstr "Trebalo bi da bude ukupna suma + porez - iznoskupona"
1563
+
1564
+ #: adminpages/orders.php:330
1565
+ msgid "Payment Type"
1566
+ msgstr "Tip Plaćanja"
1567
+
1568
+ #: adminpages/orders.php:335
1569
+ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1570
+ msgstr "npr. PayPal Express, PayPal Standard, Credit Card."
1571
+
1572
+ #: adminpages/orders.php:344
1573
+ msgid "e.g. Visa, MasterCard, AMEX, etc"
1574
+ msgstr "npr. Visa, MasterCard, AMEX, etc"
1575
+
1576
+ #: adminpages/orders.php:348 adminpages/paymentsettings.php:357
1577
+ msgid "Account Number"
1578
+ msgstr "Broj Računa"
1579
+
1580
+ #: adminpages/orders.php:353
1581
+ msgid "Obscure all but last 4 digits."
1582
+ msgstr "Sve nejasno sem posljednje 4 cifre."
1583
+
1584
+ #: adminpages/orders.php:358
1585
+ msgid "Expiration Month"
1586
+ msgstr "Mjesec Isteka"
1587
+
1588
+ #: adminpages/orders.php:365
1589
+ msgid "Expiration Year"
1590
+ msgstr "Godina Isteka"
1591
+
1592
+ #: adminpages/orders.php:373 adminpages/orders.php:606
1593
+ msgid "Status"
1594
+ msgstr "Status"
1595
+
1596
+ #: adminpages/orders.php:394 adminpages/orders.php:604
1597
+ msgid "Gateway"
1598
+ msgstr "Prolaz za Plaćanje"
1599
+
1600
+ #: adminpages/orders.php:398
1601
+ msgid "Testing Only"
1602
+ msgstr "Samo Testiram"
1603
+
1604
+ #: adminpages/orders.php:399 adminpages/paymentsettings.php:163
1605
+ msgid "Pay by Check"
1606
+ msgstr "Plati Čekom"
1607
+
1608
+ #: adminpages/orders.php:411 adminpages/paymentsettings.php:189
1609
+ msgid "Gateway Environment"
1610
+ msgstr "Okruženje Prolaza za Ppla ćanje"
1611
+
1612
+ #: adminpages/orders.php:415 adminpages/paymentsettings.php:193
1613
+ msgid "Sandbox/Testing"
1614
+ msgstr "Sandbox/Testiranje"
1615
+
1616
+ #: adminpages/orders.php:416 adminpages/paymentsettings.php:194
1617
+ msgid "Live/Production"
1618
+ msgstr "Uživo/Produkcija"
1619
+
1620
+ #: adminpages/orders.php:423
1621
+ msgid "Payment Transaction ID"
1622
+ msgstr "ID Transakcije za Plaćanje"
1623
+
1624
+ #: adminpages/orders.php:428
1625
+ msgid "Generated by the gateway. Useful to cross reference orders."
1626
+ msgstr "Generisano..."
1627
+
1628
+ #: adminpages/orders.php:432
1629
+ msgid "Subscription Transaction ID"
1630
+ msgstr "ID Transakcije za Pretplatu"
1631
+
1632
+ #: adminpages/orders.php:437
1633
+ msgid "Generated by the gateway. Useful to cross reference subscriptions."
1634
+ msgstr ""
1635
+
1636
+ #: adminpages/orders.php:477
1637
+ msgid "Affiliate ID"
1638
+ msgstr "ID Partnera (Affiliate)"
1639
+
1640
+ #: adminpages/orders.php:485
1641
+ msgid "Affiliate SubID"
1642
+ msgstr "SubID Partnera ( Affiliate)"
1643
+
1644
+ #: adminpages/orders.php:495
1645
+ msgid "Notes"
1646
+ msgstr "Belješke"
1647
+
1648
+ #: adminpages/orders.php:510
1649
+ msgid "Save Order"
1650
+ msgstr "Sačuvaj Narudžbu"
1651
+
1652
+ #: adminpages/orders.php:521
1653
+ msgid "Add New Order"
1654
+ msgstr "Dodaj Novu Narudžbu"
1655
+
1656
+ #: adminpages/orders.php:522 adminpages/memberslist.php:26
1657
+ msgid "Export to CSV"
1658
+ msgstr "Izvedi do CSV"
1659
+
1660
+ #: adminpages/orders.php:535 adminpages/orders.php:538
1661
+ msgid "Search Orders"
1662
+ msgstr "Pretraži Narudžbe"
1663
+
1664
+ #: adminpages/orders.php:590
1665
+ #, php-format
1666
+ msgid "%d orders found."
1667
+ msgstr "%d pronađene narudžbe"
1668
+
1669
+ #: adminpages/orders.php:599 adminpages/paymentsettings.php:225
1670
+ #: adminpages/reports/login.php:141
1671
+ msgid "User"
1672
+ msgstr "Korisnik"
1673
+
1674
+ #: adminpages/orders.php:603 adminpages/orders.php:651
1675
+ msgid "Payment"
1676
+ msgstr "Plaćanje"
1677
+
1678
+ #: adminpages/orders.php:605
1679
+ msgid "Transaction IDs"
1680
+ msgstr "Transakcijski ID"
1681
+
1682
+ #: adminpages/orders.php:630
1683
+ msgid "deleted"
1684
+ msgstr "obrisano"
1685
+
1686
+ #: adminpages/orders.php:653
1687
+ msgid "Subscription"
1688
+ msgstr "Pretplata"
1689
+
1690
+ #: adminpages/orders.php:664
1691
+ #, php-format
1692
+ msgid ""
1693
+ "Deleting orders is permanent and can affect active users. Are you sure you "
1694
+ "want to delete order %s?"
1695
+ msgstr ""
1696
+ "Brisanje narudžbi je trajno i može da utiče na aktivne korisnike. Da li ste "
1697
+ "sigurni da želite da obrišete narudžbu %s?"
1698
+
1699
+ #: adminpages/orders.php:674
1700
+ msgid "No orders found."
1701
+ msgstr "Nijedna narudžba nije pronađena"
1702
+
1703
+ #: adminpages/memberslist.php:30 adminpages/reports/memberships.php:292
1704
+ #: adminpages/reports/login.php:65 adminpages/reports/sales.php:193
1705
+ msgid "Show"
1706
+ msgstr "Prikaži"
1707
+
1708
+ #: adminpages/memberslist.php:32 adminpages/reports/memberships.php:317
1709
+ #: adminpages/reports/login.php:67 adminpages/reports/sales.php:216
1710
+ msgid "All Levels"
1711
+ msgstr "Svi Nivoi"
1712
+
1713
+ #: adminpages/memberslist.php:42
1714
+ msgid "Old Members"
1715
+ msgstr "Stari Članovi"
1716
+
1717
+ #: adminpages/memberslist.php:47 adminpages/memberslist.php:50
1718
+ msgid "Search Members"
1719
+ msgstr "Pretraži Članove"
1720
+
1721
+ #: adminpages/memberslist.php:136
1722
+ #, php-format
1723
+ msgid "%d members found."
1724
+ msgstr "%d članova pronađeno."
1725
+
1726
+ #: adminpages/memberslist.php:146
1727
+ msgid "First&nbsp;Name"
1728
+ msgstr "Prvo&nbsp;Ime"
1729
+
1730
+ #: adminpages/memberslist.php:147
1731
+ msgid "Last&nbsp;Name"
1732
+ msgstr "Zadnje&nbsp;Ime"
1733
+
1734
+ #: adminpages/memberslist.php:152
1735
+ msgid "Fee"
1736
+ msgstr "Provizija"
1737
+
1738
+ #: adminpages/memberslist.php:153 adminpages/reports/login.php:144
1739
+ msgid "Joined"
1740
+ msgstr "Učlanjen"
1741
+
1742
+ #: adminpages/memberslist.php:157
1743
+ msgid "Ended"
1744
+ msgstr "Završen"
1745
+
1746
+ #: adminpages/memberslist.php:212
1747
+ msgid "Never"
1748
+ msgstr "Nikad"
1749
+
1750
+ #: adminpages/memberslist.php:223 adminpages/reports/login.php:210
1751
+ msgid "No members found."
1752
+ msgstr "Nijedan član nije pronađen."
1753
+
1754
+ #: adminpages/memberslist.php:223 adminpages/reports/login.php:210
1755
+ msgid "Search all levels"
1756
+ msgstr "Pretraži sve nivoe."
1757
+
1758
+ #: adminpages/paymentsettings.php:78
1759
+ msgid "Your payment settings have been updated."
1760
+ msgstr "Vaše informacije o plaćanju su ažurirane."
1761
+
1762
+ #: adminpages/paymentsettings.php:150 adminpages/paymentsettings.php:158
1763
+ msgid "Payment Gateway"
1764
+ msgstr "Prolazi za Plaćanje (npr. PayPal)"
1765
+
1766
+ #: adminpages/paymentsettings.php:150
1767
+ msgid "SSL Settings"
1768
+ msgstr "SSL Postavke"
1769
+
1770
+ #: adminpages/paymentsettings.php:179
1771
+ msgid ""
1772
+ "This gateway option is in beta. Some functionality may not be available. "
1773
+ "Please contact Paid Memberships Pro with any issues you run into. "
1774
+ "<strong>Please be sure to upgrade Paid Memberships Pro to the latest versions "
1775
+ "when available.</strong>"
1776
+ msgstr ""
1777
+
1778
+ #: adminpages/paymentsettings.php:184
1779
+ msgid ""
1780
+ "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
1781
+ "Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank"
1782
+ "\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-paypal-"
1783
+ "standard-paid-memberships-pro/\">More information on why can be found here.</"
1784
+ "a>"
1785
+ msgstr ""
1786
+ "Ne preporučujemo korišćenje PayPal Standrad. Preporučujemo korišćenje PayPal "
1787
+ "Express, Website Payments Pro (Legacy), or PayPalPro (Payflow Pro). <a target="
1788
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-paypal-"
1789
+ "standard-paid-memberships-pro/\">Za više informacija posjetite.</a>"
1790
+
1791
+ #: adminpages/paymentsettings.php:209
1792
+ msgid "Partner"
1793
+ msgstr ""
1794
+
1795
+ #: adminpages/paymentsettings.php:217
1796
+ msgid "Vendor"
1797
+ msgstr "Prodavač"
1798
+
1799
+ #: adminpages/paymentsettings.php:241
1800
+ msgid "Gateway Account Email"
1801
+ msgstr "Email Prolaza za Plaćanje (npr. Email Paypal)"
1802
+
1803
+ #: adminpages/paymentsettings.php:249 adminpages/paymentsettings.php:341
1804
+ msgid "API Username"
1805
+ msgstr "API Korisničko Ime"
1806
+
1807
+ #: adminpages/paymentsettings.php:257 adminpages/paymentsettings.php:349
1808
+ msgid "API Password"
1809
+ msgstr "API Lozinka"
1810
+
1811
+ #: adminpages/paymentsettings.php:265
1812
+ msgid "API Signature"
1813
+ msgstr "API Potpis"
1814
+
1815
+ #: adminpages/paymentsettings.php:274
1816
+ msgid "Login Name"
1817
+ msgstr "Ime za Prijavu"
1818
+
1819
+ #: adminpages/paymentsettings.php:282
1820
+ msgid "Transaction Key"
1821
+ msgstr "Ključ za Transakciju"
1822
+
1823
+ #: adminpages/paymentsettings.php:291
1824
+ msgid "Secret Key"
1825
+ msgstr "Tajni Ključ"
1826
+
1827
+ #: adminpages/paymentsettings.php:299
1828
+ msgid "Publishable Key"
1829
+ msgstr "Ključ koji se može objaviti"
1830
+
1831
+ #: adminpages/paymentsettings.php:308 adminpages/paymentsettings.php:374
1832
+ msgid "Merchant ID"
1833
+ msgstr "ID Trgovca"
1834
+
1835
+ #: adminpages/paymentsettings.php:316
1836
+ msgid "Public Key"
1837
+ msgstr "Javni Ključ"
1838
+
1839
+ #: adminpages/paymentsettings.php:324
1840
+ msgid "Private Key"
1841
+ msgstr "Privatni Ključ"
1842
+
1843
+ #: adminpages/paymentsettings.php:332
1844
+ msgid "Client-Side Encryption Key"
1845
+ msgstr ""
1846
+
1847
+ #: adminpages/paymentsettings.php:365
1848
+ msgid "Secret Word"
1849
+ msgstr "Tajna Riječ"
1850
+
1851
+ #: adminpages/paymentsettings.php:382
1852
+ msgid "Transaction Security Key"
1853
+ msgstr "Sigurnosi Ključ za Transakciju"
1854
+
1855
+ #: adminpages/paymentsettings.php:390
1856
+ msgid "Encryption key"
1857
+ msgstr ""
1858
+
1859
+ #: adminpages/paymentsettings.php:400
1860
+ msgid "Currency"
1861
+ msgstr "Valuta"
1862
+
1863
+ #: adminpages/paymentsettings.php:420
1864
+ msgid "Accepted Credit Card Types"
1865
+ msgstr "Odobreni Tipovi Kreditnih kartica"
1866
+
1867
+ #: adminpages/paymentsettings.php:434
1868
+ msgid "Instructions"
1869
+ msgstr "Upustvo"
1870
+
1871
+ #: adminpages/paymentsettings.php:438
1872
+ msgid ""
1873
+ "Who to write the check out to. Where to mail it. Shown on checkout, "
1874
+ "confirmation, and invoice pages."
1875
+ msgstr ""
1876
+ "Na koga osloviti ček. Gdje ga poslati. Prikaži na strani za provjeru, "
1877
+ "potvrđivanje i fakturi."
1878
+
1879
+ #: adminpages/paymentsettings.php:444
1880
+ msgid "Show Billing Address Fields"
1881
+ msgstr "Prikaži Polja Adrese za Plaćanje"
1882
+
1883
+ #: adminpages/paymentsettings.php:451
1884
+ msgid ""
1885
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
1886
+ "the checkout page.<br /><strong>If No, make sure you disable address "
1887
+ "verification in the Stripe dashboard settings.</strong>"
1888
+ msgstr "Stripe nije potrbna polja za adresu za plaćanje"
1889
+
1890
+ #: adminpages/paymentsettings.php:457
1891
+ msgid "Sales Tax"
1892
+ msgstr "Porez Na Prodaju"
1893
+
1894
+ #: adminpages/paymentsettings.php:460
1895
+ msgid "Tax State"
1896
+ msgstr "Stanje Poreza"
1897
+
1898
+ #: adminpages/paymentsettings.php:461
1899
+ msgid "abbreviation, e.g. \"PA\""
1900
+ msgstr ""
1901
+
1902
+ #: adminpages/paymentsettings.php:463
1903
+ msgid "decimal, e.g. \"0.06\""
1904
+ msgstr ""
1905
+
1906
+ #: adminpages/paymentsettings.php:464
1907
+ msgid ""
1908
+ "US only. If values are given, tax will be applied for any members ordering "
1909
+ "from the selected state.<br />For non-US or more complex tax rules, use the "
1910
+ "<a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-"
1911
+ "taxes-paid-memberships-pro/\">pmpro_tax filter</a>."
1912
+ msgstr ""
1913
+
1914
+ #: adminpages/paymentsettings.php:469
1915
+ msgid "Force SSL"
1916
+ msgstr ""
1917
+
1918
+ #: adminpages/paymentsettings.php:475
1919
+ msgid "Yes (with JavaScript redirects)"
1920
+ msgstr ""
1921
+
1922
+ #: adminpages/paymentsettings.php:482
1923
+ msgid "SSL Seal Code"
1924
+ msgstr ""
1925
+
1926
+ #: adminpages/paymentsettings.php:491
1927
+ msgid "HTTPS Nuclear Option"
1928
+ msgstr ""
1929
+
1930
+ #: adminpages/paymentsettings.php:494
1931
+ msgid ""
1932
+ "Use the \"Nuclear Option\" to use secure (HTTPS) URLs on your secure pages. "
1933
+ "Check this if you are using SSL and have warnings on your checkout pages."
1934
+ msgstr ""
1935
+
1936
+ #: adminpages/paymentsettings.php:499
1937
+ msgid "IPN Handler URL"
1938
+ msgstr ""
1939
+
1940
+ #: adminpages/paymentsettings.php:502
1941
+ msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
1942
+ msgstr ""
1943
+
1944
+ #: adminpages/paymentsettings.php:507
1945
+ msgid "TwoCheckout INS URL"
1946
+ msgstr ""
1947
+
1948
+ #: adminpages/paymentsettings.php:510
1949
+ msgid ""
1950
+ "To fully integrate with 2Checkout, be sure to set your 2Checkout INS URL "
1951
+ msgstr ""
1952
+
1953
+ #: adminpages/paymentsettings.php:515
1954
+ msgid "Silent Post URL"
1955
+ msgstr ""
1956
+
1957
+ #: adminpages/paymentsettings.php:518
1958
+ msgid ""
1959
+ "To fully integrate with Authorize.net, be sure to set your Silent Post URL to"
1960
+ msgstr ""
1961
+
1962
+ #: adminpages/paymentsettings.php:523 adminpages/paymentsettings.php:531
1963
+ msgid "Web Hook URL"
1964
+ msgstr ""
1965
+
1966
+ #: adminpages/paymentsettings.php:526
1967
+ msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
1968
+ msgstr ""
1969
+
1970
+ #: adminpages/paymentsettings.php:535
1971
+ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
1972
+ msgstr ""
1973
+
1974
+ #: adminpages/paymentsettings.php:546 adminpages/pagesettings.php:223
1975
+ #: adminpages/advancedsettings.php:284
1976
+ msgid "Save Settings"
1977
+ msgstr "Sačuvaj promijene"
1978
+
1979
+ #: adminpages/reports.php:37
1980
+ msgid "Details"
1981
+ msgstr "Detalji"
1982
+
1983
+ #: adminpages/admin_header.php:25
1984
+ msgid "Add a membership level to get started."
1985
+ msgstr "Dodaj nivo članstva za početak"
1986
+
1987
+ #: adminpages/admin_header.php:27
1988
+ msgid "Set up the membership pages"
1989
+ msgstr "Postavi strane za korisnike"
1990
+
1991
+ #: adminpages/admin_header.php:29
1992
+ msgid "Set up your SSL certificate and payment gateway"
1993
+ msgstr ""
1994
+
1995
+ #: adminpages/admin_header.php:38
1996
+ msgid ""
1997
+ "The billing details for some of your membership levels is not supported by "
1998
+ "Stripe."
1999
+ msgstr ""
2000
+ "Informacije o plaćanju za neke nivoe članstva nisu podržane od strane Stripe."
2001
+
2002
+ #: adminpages/admin_header.php:46
2003
+ msgid ""
2004
+ "The billing details for this level are not supported by Stripe. Please review "
2005
+ "the notes in the Billing Details section below."
2006
+ msgstr ""
2007
+ "Informacije oplaćanju za ovaj nivo nisu podržane od strane Stripe. Molimo vas "
2008
+ "da provjerite unesene podatke ispod."
2009
+
2010
+ #: adminpages/admin_header.php:50 adminpages/admin_header.php:70
2011
+ #: adminpages/admin_header.php:90 adminpages/admin_header.php:111
2012
+ msgid "The levels with issues are highlighted below."
2013
+ msgstr "Nivoi sa greškama su podvučeni ispod."
2014
+
2015
+ #: adminpages/admin_header.php:52 adminpages/admin_header.php:72
2016
+ #: adminpages/admin_header.php:92 adminpages/admin_header.php:113
2017
+ msgid "Please edit your levels"
2018
+ msgstr "Molimo Vas da uredite vaše nivoe."
2019
+
2020
+ #: adminpages/admin_header.php:58
2021
+ msgid ""
2022
+ "The billing details for some of your membership levels is not supported by "
2023
+ "Payflow."
2024
+ msgstr ""
2025
+ "Informacije o plaćanju za neke nivoe članstva nisu podržane od strane Payflow."
2026
+
2027
+ #: adminpages/admin_header.php:66
2028
+ msgid ""
2029
+ "The billing details for this level are not supported by Payflow. Please "
2030
+ "review the notes in the Billing Details section below."
2031
+ msgstr ""
2032
+ "Informacije oplaćanju za ovaj nivo nisu podržane od strane Payfllow ."
2033
+ "Molimovas da provjerite unesene podatke ispod."
2034
+
2035
+ #: adminpages/admin_header.php:78
2036
+ msgid ""
2037
+ "The billing details for some of your membership levels is not supported by "
2038
+ "Braintree."
2039
+ msgstr ""
2040
+ "Informacije o plaćanju za neke nivoe članstva nisu podržane od strane "
2041
+ "Braintree."
2042
+
2043
+ #: adminpages/admin_header.php:86
2044
+ msgid ""
2045
+ "The billing details for this level are not supported by Braintree. Please "
2046
+ "review the notes in the Billing Details section below."
2047
+ msgstr ""
2048
+ "Informacije oplaćanju za ovaj nivo nisu podržane od strane Braintrree.Molimo "
2049
+ "vas da provjerite unesene podatke ispod."
2050
+
2051
+ #: adminpages/admin_header.php:98
2052
+ msgid ""
2053
+ "The billing details for some of your membership levels is not supported by "
2054
+ "TwoCheckout."
2055
+ msgstr ""
2056
+ "Informacije o plaćanju za neke nivoe članstva nisu podržane od strane "
2057
+ "TwoCheckout."
2058
+
2059
+ #: adminpages/admin_header.php:107
2060
+ msgid ""
2061
+ "The billing details for this level are not supported by 2Checkout. Please "
2062
+ "review the notes in the Billing Details section below."
2063
+ msgstr ""
2064
+ "Informacije oplaćanju za ovaj nivo nisu podržane od strane 2Checkout. Molimo "
2065
+ "vas da provjerite unesene podatke ispod."
2066
+
2067
+ #: adminpages/admin_header.php:127
2068
+ msgid "Plugin Support"
2069
+ msgstr "Podrška za Dodatak"
2070
+
2071
+ #: adminpages/admin_header.php:127
2072
+ msgid "User Forum"
2073
+ msgstr "Forum za Korisnike"
2074
+
2075
+ #: adminpages/admin_header.php:150 adminpages/pagesettings.php:92
2076
+ msgid "Pages"
2077
+ msgstr "Stranice"
2078
+
2079
+ #: adminpages/admin_header.php:151
2080
+ msgid "Payment Gateway &amp; SSL"
2081
+ msgstr ""
2082
+
2083
+ #: adminpages/admin_header.php:153
2084
+ msgid "Advanced"
2085
+ msgstr "Napredno"
2086
+
2087
+ #: adminpages/pagesettings.php:83
2088
+ msgid "The following pages have been created for you"
2089
+ msgstr "Naredne stranice su kreirane za Vas"
2090
+
2091
+ #: adminpages/pagesettings.php:98
2092
+ msgid ""
2093
+ "Manage the WordPress pages assigned to each required Paid Memberships Pro "
2094
+ "page."
2095
+ msgstr ""
2096
+ "Upravljaj stranicama dodeljenim za svaku potrebnu Paid Membership Pro "
2097
+ "stranicu."
2098
+
2099
+ #: adminpages/pagesettings.php:104
2100
+ msgid ""
2101
+ "Assign the WordPress pages for each required Paid Memberships Pro page or"
2102
+ msgstr ""
2103
+ "Dodjeli svaku Wordpress stranicu za svaku potrebnu Paid Membership Pro "
2104
+ "stranicu ili"
2105
+
2106
+ #: adminpages/pagesettings.php:104
2107
+ msgid "click here to let us generate them for you"
2108
+ msgstr "Kliknite ovdje dami generišemo stranice za vas"
2109
+
2110
+ #: adminpages/pagesettings.php:112
2111
+ msgid "Account Page"
2112
+ msgstr "Stranica Naloga"
2113
+
2114
+ #: adminpages/pagesettings.php:119 adminpages/pagesettings.php:134
2115
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:165
2116
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:197
2117
+ #: adminpages/pagesettings.php:213
2118
+ msgid "edit page"
2119
+ msgstr "uredi stranicu"
2120
+
2121
+ #: adminpages/pagesettings.php:121 adminpages/pagesettings.php:136
2122
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:167
2123
+ #: adminpages/pagesettings.php:183 adminpages/pagesettings.php:199
2124
+ #: adminpages/pagesettings.php:215
2125
+ msgid "view page"
2126
+ msgstr "prikaži stranicu"
2127
+
2128
+ #: adminpages/pagesettings.php:123 adminpages/pagesettings.php:138
2129
+ #: adminpages/pagesettings.php:153 adminpages/pagesettings.php:169
2130
+ #: adminpages/pagesettings.php:185 adminpages/pagesettings.php:201
2131
+ #: adminpages/pagesettings.php:217
2132
+ msgid "Include the shortcode"
2133
+ msgstr "Obuhvati i shortcode"
2134
+
2135
+ #: adminpages/pagesettings.php:127
2136
+ msgid "Billing Information Page"
2137
+ msgstr "Stranica Za Informacije o Palćanju"
2138
+
2139
+ #: adminpages/pagesettings.php:142
2140
+ msgid "Cancel Page"
2141
+ msgstr "Zatvori Stranicu"
2142
+
2143
+ #: adminpages/pagesettings.php:158
2144
+ msgid "Checkout Page"
2145
+ msgstr ""
2146
+
2147
+ #: adminpages/pagesettings.php:174
2148
+ msgid "Confirmation Page"
2149
+ msgstr "Stranica za Potvrdu"
2150
+
2151
+ #: adminpages/pagesettings.php:190
2152
+ msgid "Invoice Page"
2153
+ msgstr "Stranica Za Frakturu"
2154
+
2155
+ #: adminpages/pagesettings.php:206
2156
+ msgid "Levels Page"
2157
+ msgstr "Stranica za Nivoe"
2158
+
2159
+ #: adminpages/discountcodes.php:48
2160
+ msgid "Discount code updated successfully."
2161
+ msgstr "Kod za popust je uspješno ažuriran."
2162
+
2163
+ #: adminpages/discountcodes.php:55
2164
+ msgid "Error updating discount code. That code may already be in use."
2165
+ msgstr ""
2166
+ "Greška prilikom ažuriranja koda za popust. Taj kod je vjerovatno već "
2167
+ "iskoripćen."
2168
+
2169
+ #: adminpages/discountcodes.php:64
2170
+ msgid "Discount code added successfully."
2171
+ msgstr "Kod za popust je uspješno dodat."
2172
+
2173
+ #: adminpages/discountcodes.php:71
2174
+ msgid "Error adding discount code. That code may already be in use."
2175
+ msgstr ""
2176
+ "Greška prilikom dodavanja koda za popust. Taj kod je vjerovatno već "
2177
+ "iskorišćen-"
2178
+
2179
+ #: adminpages/discountcodes.php:196
2180
+ #, php-format
2181
+ msgid "Error saving values for the %s level."
2182
+ msgstr "Greška prilikom saviranja vrijednosti za %s nivo"
2183
+
2184
+ #: adminpages/discountcodes.php:204
2185
+ msgid "There were errors updating the level values: "
2186
+ msgstr "Doščo je dogreške prilikom ažuriranaj vrijednosti nivoa"
2187
+
2188
+ #: adminpages/discountcodes.php:234
2189
+ #, php-format
2190
+ msgid "Code %s deleted successfully."
2191
+ msgstr "Kod %s je uspješno izbrisan"
2192
+
2193
+ #: adminpages/discountcodes.php:239
2194
+ msgid ""
2195
+ "Error deleting discount code. The code was only partially deleted. Please try "
2196
+ "again."
2197
+ msgstr ""
2198
+ "Greška prilikom brisanja koda za popust. Kod jes samo djelimično izbrisan. "
2199
+ "Pokušajte ponovo."
2200
+
2201
+ #: adminpages/discountcodes.php:245
2202
+ msgid "Error deleting code. Please try again."
2203
+ msgstr "Greška prilikom brisanja koda. Pokušajte ponovo."
2204
+
2205
+ #: adminpages/discountcodes.php:251
2206
+ msgid "Code not found."
2207
+ msgstr "Kod nije pronađen."
2208
+
2209
+ #: adminpages/discountcodes.php:264
2210
+ msgid "Edit Discount Code"
2211
+ msgstr "Uredi Kod Za Popust"
2212
+
2213
+ #: adminpages/discountcodes.php:266 adminpages/discountcodes.php:526
2214
+ msgid "Add New Discount Code"
2215
+ msgstr "Dodaj Novi Kod Za Popust"
2216
+
2217
+ #: adminpages/discountcodes.php:349
2218
+ msgid "Start Date"
2219
+ msgstr "Datum Početka"
2220
+
2221
+ #: adminpages/discountcodes.php:385 adminpages/discountcodes.php:551
2222
+ msgid "Uses"
2223
+ msgstr "Korisnici"
2224
+
2225
+ #: adminpages/discountcodes.php:388
2226
+ msgid "Leave blank for unlimited uses."
2227
+ msgstr "Ostavi prazno za neograničeno korišćenje"
2228
+
2229
+ #: adminpages/discountcodes.php:437
2230
+ msgid "Billing Ammount"
2231
+ msgstr "Iznos Naplate"
2232
+
2233
+ #: adminpages/discountcodes.php:525
2234
+ msgid "Memberships Discount Codes"
2235
+ msgstr "Kodovi za Popust Itnosa Članstva"
2236
+
2237
+ #: adminpages/discountcodes.php:535
2238
+ msgid "Search Discount Codes"
2239
+ msgstr "Pretraži kodove za popust"
2240
+
2241
+ #: adminpages/discountcodes.php:538 adminpages/reports/login.php:81
2242
+ msgid "Search"
2243
+ msgstr "Pretraga"
2244
+
2245
+ #: adminpages/discountcodes.php:549
2246
+ msgid "Starts"
2247
+ msgstr "Početak"
2248
+
2249
+ #: adminpages/discountcodes.php:552
2250
+ msgid "Levels"
2251
+ msgstr "Nivoi"
2252
+
2253
+ #: adminpages/discountcodes.php:570
2254
+ msgid ""
2255
+ "Discount codes allow you to offer your memberships at discounted prices to "
2256
+ "select customers."
2257
+ msgstr ""
2258
+ "Kodvi za popust dopuštaju da ponudiš članstvo na popustu za određene članove."
2259
+
2260
+ #: adminpages/discountcodes.php:570
2261
+ msgid "Create your first discount code now"
2262
+ msgstr "Napravi prvi kod za popust sada"
2263
+
2264
+ #: adminpages/discountcodes.php:617
2265
+ #, php-format
2266
+ msgid ""
2267
+ "Are you sure you want to delete the %s discount code? The subscriptions for "
2268
+ "existing users will not change, but new users will not be able to use this "
2269
+ "code anymore."
2270
+ msgstr ""
2271
+ "Da li ste sigurni da želite da obrišete %s kod za popust? Pretplata za "
2272
+ "postojeće članove se neće izmijeniti ali budući članovi neće moći da koriste "
2273
+ "ovaj kod."
2274
+
2275
+ #: adminpages/addons.php:79
2276
+ msgid "Enabled"
2277
+ msgstr "Omogućeno"
2278
+
2279
+ #: adminpages/addons.php:79
2280
+ msgid "Disabled"
2281
+ msgstr "Onemogućeno"
2282
+
2283
+ #: adminpages/emailsettings.php:61
2284
+ msgid ""
2285
+ "By default, system generated emails are sent from "
2286
+ "<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
2287
+ "address using the fields below."
2288
+ msgstr ""
2289
+
2290
+ #: adminpages/emailsettings.php:63
2291
+ msgid ""
2292
+ "To modify the appearance of system generated emails, add the files "
2293
+ "<em>email_header.html</em> and <em>email_footer.html</em> to your theme's "
2294
+ "directory. This will modify both the WordPress default messages as well as "
2295
+ "messages generated by Paid Memberships Pro. <a title=\"Paid Memberships Pro - "
2296
+ "Member Communications\" target=\"_blank\" href=\"http://www."
2297
+ "paidmembershipspro.com/documentation/member-communications/\">Click here to "
2298
+ "learn more about Paid Memberships Pro emails</a>."
2299
+ msgstr ""
2300
+
2301
+ #: adminpages/emailsettings.php:69
2302
+ msgid "From Email"
2303
+ msgstr ""
2304
+
2305
+ #: adminpages/emailsettings.php:77
2306
+ msgid "From Name"
2307
+ msgstr ""
2308
+
2309
+ #: adminpages/emailsettings.php:86
2310
+ msgid "Send the site admin emails"
2311
+ msgstr "Pošalji email adminu sajta"
2312
+
2313
+ #: adminpages/emailsettings.php:92
2314
+ msgid "Checkout"
2315
+ msgstr ""
2316
+
2317
+ #: adminpages/emailsettings.php:96
2318
+ msgid "when a member checks out."
2319
+ msgstr ""
2320
+
2321
+ #: adminpages/emailsettings.php:101
2322
+ msgid "Admin Changes"
2323
+ msgstr "Promijene Admina"
2324
+
2325
+ #: adminpages/emailsettings.php:105
2326
+ msgid "when an admin changes a user's membership level through the dashboard."
2327
+ msgstr "kada admin promijeni nivo korisnika preko nadzorne ploče."
2328
+
2329
+ #: adminpages/emailsettings.php:110
2330
+ msgid "Cancellation"
2331
+ msgstr "Otkazivanje"
2332
+
2333
+ #: adminpages/emailsettings.php:114
2334
+ msgid "when a user cancels his or her account."
2335
+ msgstr "kada korisnik ukine svoj nalog"
2336
+
2337
+ #: adminpages/emailsettings.php:119
2338
+ msgid "Bill Updates"
2339
+ msgstr "Ažuriranje informacije o plaćanju"
2340
+
2341
+ #: adminpages/emailsettings.php:123
2342
+ msgid "when a user updates his or her billing information."
2343
+ msgstr "kada korisnik ažurira svoje informacije o plaćanju"
2344
+
2345
+ #: adminpages/emailsettings.php:129
2346
+ msgid "Send members emails"
2347
+ msgstr "Pošalji korisnicima email"
2348
+
2349
+ #: adminpages/emailsettings.php:135
2350
+ msgid "New Users"
2351
+ msgstr "Novi Korsinik"
2352
+
2353
+ #: adminpages/emailsettings.php:139
2354
+ msgid ""
2355
+ "Default WP notification email. (Recommended: Leave unchecked. Members will "
2356
+ "still get an email confirmation from PMPro after checkout.)"
2357
+ msgstr "Zadan WP email notifikacija"
2358
+
2359
+ #: adminpages/advancedsettings.php:35
2360
+ msgid "Your advanced settings have been updated."
2361
+ msgstr "Vaše napredne postavke su ažurirane."
2362
+
2363
+ #: adminpages/advancedsettings.php:85
2364
+ msgid "Message for Logged-in Non-members"
2365
+ msgstr "Poruka za neprijavljene korisnike."
2366
+
2367
+ #: adminpages/advancedsettings.php:89
2368
+ msgid ""
2369
+ "This message replaces the post content for non-members. Available variables"
2370
+ msgstr "Ova poruka zamijenjuje sadržaj posta za neprijavljene korisnike"
2371
+
2372
+ #: adminpages/advancedsettings.php:94
2373
+ msgid "Message for Logged-out Users"
2374
+ msgstr "Poruka za odjavljene korisnike"
2375
+
2376
+ #: adminpages/advancedsettings.php:98
2377
+ msgid "This message replaces the post content for logged-out visitors."
2378
+ msgstr "Ova poruka zamijnjuje sadržaj posta za odjavljene korisnike"
2379
+
2380
+ #: adminpages/advancedsettings.php:103
2381
+ msgid "Message for RSS Feed"
2382
+ msgstr ""
2383
+
2384
+ #: adminpages/advancedsettings.php:107
2385
+ msgid "This message replaces the post content in RSS feeds."
2386
+ msgstr ""
2387
+
2388
+ #: adminpages/advancedsettings.php:113
2389
+ msgid "Show Excerpts to Non-Members?"
2390
+ msgstr ""
2391
+
2392
+ #: adminpages/advancedsettings.php:117
2393
+ msgid "No - Hide excerpts."
2394
+ msgstr ""
2395
+
2396
+ #: adminpages/advancedsettings.php:118
2397
+ msgid "Yes - Show excerpts."
2398
+ msgstr ""
2399
+
2400
+ #: adminpages/advancedsettings.php:129
2401
+ msgid "Hide Ads From All Members"
2402
+ msgstr "Sakrij Reklame Od Svih Članova"
2403
+
2404
+ #: adminpages/advancedsettings.php:130
2405
+ msgid "Hide Ads From Certain Members"
2406
+ msgstr "Sakrij Reklame od Određenih Korisnika"
2407
+
2408
+ #: adminpages/advancedsettings.php:137
2409
+ msgid "Ads from the following plugins will be automatically turned off"
2410
+ msgstr "Reklame od sljedećih dodataka če automatski biti isključene"
2411
+
2412
+ #: adminpages/advancedsettings.php:138
2413
+ msgid "To hide ads in your template code, use code like the following"
2414
+ msgstr "Da bi sakrili reklame u vašem html kodu koristite sljedeći kod"
2415
+
2416
+ #: adminpages/advancedsettings.php:149
2417
+ msgid "Choose Levels to Hide Ads From"
2418
+ msgstr "Izaberi nivo od kojih da saktiješ reklame"
2419
+
2420
+ #: adminpages/advancedsettings.php:183
2421
+ msgid "Redirect all traffic from registration page to /susbcription/?"
2422
+ msgstr ""
2423
+ "Preusmjeri sav saobraćaj na stranice za registraciju na stranicu za pretplatu?"
2424
+
2425
+ #: adminpages/advancedsettings.php:183
2426
+ msgid "multisite only"
2427
+ msgstr ""
2428
+
2429
+ #: adminpages/advancedsettings.php:195
2430
+ msgid "Use reCAPTCHA?"
2431
+ msgstr "Koristi reCAPTCHA?"
2432
+
2433
+ #: adminpages/advancedsettings.php:200
2434
+ msgid "Yes - Free memberships only."
2435
+ msgstr "Da- samo besplatni korisnici."
2436
+
2437
+ #: adminpages/advancedsettings.php:201
2438
+ msgid "Yes - All memberships."
2439
+ msgstr "Da - Svi korisnici"
2440
+
2441
+ #: adminpages/advancedsettings.php:203
2442
+ msgid "A free reCAPTCHA key is required."
2443
+ msgstr "Besplatni reCAPTCHA kod je potreban."
2444
+
2445
+ #: adminpages/advancedsettings.php:203
2446
+ msgid "Click here to signup for reCAPTCHA"
2447
+ msgstr "Klikni ovdje da se prijaviš za reCPATCHA"
2448
+
2449
+ #: adminpages/advancedsettings.php:209
2450
+ msgid "reCAPTCHA Public Key"
2451
+ msgstr ""
2452
+
2453
+ #: adminpages/advancedsettings.php:212
2454
+ msgid "reCAPTCHA Private Key"
2455
+ msgstr ""
2456
+
2457
+ #: adminpages/advancedsettings.php:218
2458
+ msgid "Require Terms of Service on signups?"
2459
+ msgstr "Potrebni uslovi korišćenja na registaciji?"
2460
+
2461
+ #: adminpages/advancedsettings.php:225
2462
+ msgid ""
2463
+ "If yes, create a WordPress page containing your TOS agreement and assign it "
2464
+ "using the dropdown above."
2465
+ msgstr ""
2466
+ "Ako da, onda kreiraj WP stranicu na kojoj ćete prikazati vaše uslove "
2467
+ "korišćenja."
2468
+
2469
+ #: adminpages/reports/memberships.php:18 adminpages/reports/memberships.php:288
2470
+ msgid "Membership Stats"
2471
+ msgstr "Status Pretplate"
2472
+
2473
+ #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:195
2474
+ msgid "Daily"
2475
+ msgstr "Dnevni"
2476
+
2477
+ #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:196
2478
+ msgid "Monthly"
2479
+ msgstr "Mjesečni"
2480
+
2481
+ #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:197
2482
+ msgid "Annual"
2483
+ msgstr "Godišnji"
2484
+
2485
+ #: adminpages/reports/memberships.php:299
2486
+ msgid "Signups vs. Cancellations"
2487
+ msgstr "Prijave vs. Otkazivanja"
2488
+
2489
+ #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:230
2490
+ msgid "Generate Report"
2491
+ msgstr "Generiši Izvještaj"
2492
+
2493
+ #: adminpages/reports/login.php:16
2494
+ msgid "Visits, Views, and Logins"
2495
+ msgstr "Posjete, Pregledi, i Prijave"
2496
+
2497
+ #: adminpages/reports/login.php:26
2498
+ msgid "Visits Today"
2499
+ msgstr "Posjete Danas"
2500
+
2501
+ #: adminpages/reports/login.php:27 adminpages/reports/login.php:147
2502
+ msgid "Visits This Month"
2503
+ msgstr "Posjete Ovog Mjeseca"
2504
+
2505
+ #: adminpages/reports/login.php:28
2506
+ msgid "Visits All Time"
2507
+ msgstr "Posjete od Početka"
2508
+
2509
+ #: adminpages/reports/login.php:31
2510
+ msgid "Views Today"
2511
+ msgstr "Pregleda Danas"
2512
+
2513
+ #: adminpages/reports/login.php:32 adminpages/reports/login.php:149
2514
+ msgid "Views This Month"
2515
+ msgstr "Pregleda Ovog Mjeseca"
2516
+
2517
+ #: adminpages/reports/login.php:33
2518
+ msgid "Views All Time"
2519
+ msgstr "Pregleda Od Početka"
2520
+
2521
+ #: adminpages/reports/login.php:36
2522
+ msgid "Logins Today"
2523
+ msgstr "Prijava Danas"
2524
+
2525
+ #: adminpages/reports/login.php:37 adminpages/reports/login.php:152
2526
+ msgid "Logins This Month"
2527
+ msgstr "Prijava Ovog Mjeseca"
2528
+
2529
+ #: adminpages/reports/login.php:38
2530
+ msgid "Logins All Time"
2531
+ msgstr "Prijava od Početka"
2532
+
2533
+ #: adminpages/reports/login.php:61
2534
+ msgid "Visits, Views, and Logins Report"
2535
+ msgstr "Posjete, Pregledi, i Izvještaji Prijava"
2536
+
2537
+ #: adminpages/reports/login.php:66
2538
+ msgid "All Users"
2539
+ msgstr "Svi Korisnici"
2540
+
2541
+ #: adminpages/reports/login.php:146
2542
+ msgid "Last Visit"
2543
+ msgstr "Posljedna Posjeta"
2544
+
2545
+ #: adminpages/reports/login.php:148
2546
+ msgid "Total Visits"
2547
+ msgstr "Ukupno Posjeta"
2548
+
2549
+ #: adminpages/reports/login.php:150
2550
+ msgid "Total Views"
2551
+ msgstr "Ukupno Pregleda"
2552
+
2553
+ #: adminpages/reports/login.php:151
2554
+ msgid "Last Login"
2555
+ msgstr "Posljednja Prijava"
2556
+
2557
+ #: adminpages/reports/login.php:153
2558
+ msgid "Total Logins"
2559
+ msgstr "Ukupno Prijava"
2560
+
2561
+ #: adminpages/reports/sales.php:18
2562
+ msgid "Sales and Revenue (Testing/Sandbox)"
2563
+ msgstr "Prodaje i Prihod (Testiranje/Sandbox)"
2564
+
2565
+ #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:189
2566
+ msgid "Sales and Revenue"
2567
+ msgstr "Prodaje i Prihod"
2568
+
2569
+ #: adminpages/reports/sales.php:200
2570
+ msgid "Revenue"
2571
+ msgstr "Prijod"
2572
+
2573
+ #: adminpages/reports/sales.php:201
2574
+ msgid "Sales"
2575
+ msgstr "Prodaje"
2576
+
2577
+ #: scheduled/crons.php:31
2578
+ #, php-format
2579
+ msgid "Membership expired email sent to %s. "
2580
+ msgstr "Pretplata je istekla email poslat na %s."
2581
+
2582
+ #: scheduled/crons.php:384 scheduled/crons.php:440
2583
+ #, php-format
2584
+ msgid "Membership expiring email sent to %s. "
2585
+ msgstr "Pretplata ističe email poslat na %s."
2586
+
2587
+ #: scheduled/crons.php:509
2588
+ #, php-format
2589
+ msgid "Credit card expiring email sent to %s. "
2590
+ msgstr "Kreditna Kartica ističe email poslat na %s."
2591
+
2592
+ #: scheduled/crons.php:562
2593
+ #, php-format
2594
+ msgid "Trial ending email sent to %s. "
2595
+ msgstr "Probni period se završava email poslat na %s."
2596
+
2597
+ #: services/stripe-webhook.php:176
2598
+ #, php-format
2599
+ msgid ""
2600
+ "%s has had their payment subscription cancelled by Stripe. Please check that "
2601
+ "this user's membership is cancelled on your site if it should be."
2602
+ msgstr ""
2603
+ "%s je pretlata otkazana od strane Stripe. Molimo provjerite da li je "
2604
+ "pretplata ovog korisnika otkazana ako treba da bude."
2605
+
2606
+ #: services/authnet-silent-post.php:133
2607
+ msgid ""
2608
+ "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
2609
+ "Information From Authorize.net"
2610
+ msgstr ""
2611
+
2612
+ #: services/applydiscountcode.php:64
2613
+ #, php-format
2614
+ msgid "The %s code has been applied to your order. "
2615
+ msgstr "Ovaj %s kode je primenjen na vašoj narudžbi."
2616
+
2617
+ #: services/applydiscountcode.php:83
2618
+ #, php-format
2619
+ msgid "The <strong>%s</strong> code has been applied to your order."
2620
+ msgstr " <strong>%s</strong>kod je primenjen na vašoj porudžbini."
2621
+
2622
+ #: preheaders/account.php:7 preheaders/levels.php:19
2623
+ msgid "Your membership status has been updated - Thank you!"
2624
+ msgstr "Vaš status članstvaj je ažuriran - Hvala Vam!"
2625
+
2626
+ #: preheaders/account.php:11 preheaders/levels.php:23
2627
+ msgid ""
2628
+ "Sorry, your request could not be completed - please try again in a few "
2629
+ "moments."
2630
+ msgstr ""
2631
+ "Oprostite, ali vađ zahtjev nije mogao biti dovršen - molmo da pokušate ponovo "
2632
+ "kasnije"
2633
+
2634
+ #: preheaders/checkout.php:28 preheaders/checkout.php:509
2635
+ msgid "Invalid gateway."
2636
+ msgstr ""
2637
+
2638
+ #: preheaders/checkout.php:96
2639
+ msgid "Checkout: Payment Information"
2640
+ msgstr "Informacije o Plaćanju"
2641
+
2642
+ #: preheaders/checkout.php:109
2643
+ msgid "Set up Your Account"
2644
+ msgstr "Podesite Vaš Nalog"
2645
+
2646
+ #: preheaders/checkout.php:482 preheaders/billing.php:258
2647
+ msgid "Please complete all required fields."
2648
+ msgstr "Molimo popunite sva polja."
2649
+
2650
+ #: preheaders/checkout.php:486
2651
+ msgid "Your passwords do not match. Please try again."
2652
+ msgstr "Vaše lozinke se ne poklapaju. Pokušajte ponovo."
2653
+
2654
+ #: preheaders/checkout.php:492 preheaders/billing.php:263
2655
+ msgid "Your email addresses do not match. Please try again."
2656
+ msgstr "Vaše email adrese se ne poklapaju. Pokušajte ponovo."
2657
+
2658
+ #: preheaders/checkout.php:498 preheaders/billing.php:268
2659
+ msgid "The email address entered is in an invalid format. Please try again."
2660
+ msgstr "Unesena email adresa je nevažećg formata. Pokušajte ponovo."
2661
+
2662
+ #: preheaders/checkout.php:504
2663
+ #, php-format
2664
+ msgid "Please check the box to agree to the %s."
2665
+ msgstr "Molmo potvrdite kvadratić da ste saglasni sa %s."
2666
+
2667
+ #: preheaders/checkout.php:513
2668
+ msgid "Are you a spammer?"
2669
+ msgstr "Da li ste spamer?"
2670
+
2671
+ #: preheaders/checkout.php:536
2672
+ msgid "That username is already taken. Please try another."
2673
+ msgstr "To korisničko ime je već iskorišćeno. Unesite drugo."
2674
+
2675
+ #: preheaders/checkout.php:542
2676
+ msgid "That email address is already taken. Please try another."
2677
+ msgstr "Ta email adresa je već iskorišćena. Unesite drugu."
2678
+
2679
+ #: preheaders/checkout.php:562
2680
+ #, php-format
2681
+ msgid "reCAPTCHA failed. (%s) Please try again."
2682
+ msgstr "reCAPTCHA neuspješno (%s) Pokušajte ponovo."
2683
+
2684
+ #: preheaders/checkout.php:702
2685
+ msgid "Payment accepted."
2686
+ msgstr "Uplata prihvaćena."
2687
+
2688
+ #: preheaders/checkout.php:710
2689
+ msgid ""
2690
+ "Unknown error generating account. Please contact us to set up your membership."
2691
+ msgstr ""
2692
+ "Nepoznata greška. Molmo kontaktirajte nas da vam uspostavimo račun manuelno."
2693
+
2694
+ #: preheaders/checkout.php:754 preheaders/checkout.php:823
2695
+ msgid "The PayPal Token was lost."
2696
+ msgstr ""
2697
+
2698
+ #: preheaders/checkout.php:860
2699
+ msgid ""
2700
+ "Your payment was accepted, but there was an error setting up your account. "
2701
+ "Please contact us."
2702
+ msgstr ""
2703
+ "Vaša uplata je prihvaćena, ali došlo je do greške prilikom upostavljnja vašeg "
2704
+ "računa. Molimo kontaktirajte nas."
2705
+
2706
+ #: preheaders/checkout.php:1046
2707
+ msgid ""
2708
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
2709
+ "authorized, but we cancelled the order immediately. You should not try to "
2710
+ "submit this form again. Please contact the site owner to fix this issue."
2711
+ msgstr ""
2712
+ "BITNO: Nešto je krenulo naopako prilikom kreiranja pretplate. Vaša kreditna "
2713
+ "kartica je odobrena , ali je narudžba odmah odbijena. Nebi trebali da "
2714
+ "pokušavate da podnesete prijavu ponovo. Molimo kontaktirajte nas radi "
2715
+ "rješavanja datog problema."
2716
+
2717
+ #: preheaders/checkout.php:1051
2718
+ msgid ""
2719
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
2720
+ "was charged, but we couldn't assign your membership. You should not submit "
2721
+ "this form again. Please contact the site owner to fix this issue."
2722
+ msgstr ""
2723
+ "BITNO: Nešto je krenulo naopako prilikom kreiranja pretplate. Vaša kreditna "
2724
+ "kartica je naplaćena ali nsimo uspijeli da vam dodjelimo članstvo. Ne bi "
2725
+ "trebali da podnesete ovu prijavu ponovo. Molimo da nas kontaktirate da "
2726
+ "riješimo pomenuti problem"
2727
+
2728
+ #: preheaders/checkout.php:1064
2729
+ #, php-format
2730
+ msgid ""
2731
+ "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments will "
2732
+ "be processed."
2733
+ msgstr ""
2734
+ "Morate <a href=\"%s\">uspostaviti Prolaz za Plaćanje</a> prije nego ijedna "
2735
+ "naplata bude procesirana."
2736
+
2737
+ #: preheaders/checkout.php:1066
2738
+ msgid "A Payment Gateway must be set up before any payments will be processed."
2739
+ msgstr ""
2740
+ "Prolaz za Plaćanje mora biti uspostavljen prije nego što ijedna naplata bude "
2741
+ "procesirana."
2742
+
2743
+ #: preheaders/cancel.php:24
2744
+ msgid "Your membership has been cancelled."
2745
+ msgstr "Vaša pretplata je otkazana."
2746
+
2747
+ #: preheaders/billing.php:274
2748
+ msgid "All good!"
2749
+ msgstr "Sve je dobro!"
2750
+
2751
+ #: preheaders/billing.php:340
2752
+ #, php-format
2753
+ msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
2754
+ msgstr "Ažuriranje informacija. <a href=\"%s\">&laquo; nazad na moj nalog</a>"
2755
+
2756
+ #: preheaders/billing.php:347
2757
+ msgid "Error updating billing information."
2758
+ msgstr "Greška prilikom ažuriranja informacija o plaćanju."
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-05-06 12:20-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"
@@ -23,15 +23,16 @@ msgstr ""
23
  #: adminpages/addons.php:21 adminpages/advancedsettings.php:5
24
  #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
25
  #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
26
- #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
27
- #: adminpages/orders-print.php:12 adminpages/orders.php:5
 
28
  #: adminpages/pagesettings.php:4 adminpages/pagesettings.php:5
29
  #: adminpages/paymentsettings.php:5 adminpages/updates.php:5
30
  #: includes/license.php:36
31
  msgid "You do not have permissions to perform this action."
32
  msgstr ""
33
 
34
- #: adminpages/addons.php:64 adminpages/admin_header.php:170
35
  #: includes/adminpages.php:53 includes/adminpages.php:151
36
  #: adminpages/addons.php:64 adminpages/addons.php:80
37
  #: adminpages/admin_header.php:133 adminpages/admin_header.php:154
@@ -43,67 +44,68 @@ msgstr ""
43
  msgid "Add Ons"
44
  msgstr ""
45
 
46
- #: adminpages/addons.php:71 adminpages/addons.php:71 adminpages/addons.php:87
47
  #, php-format
48
  msgid "Last checked on %s at %s."
49
  msgstr ""
50
 
51
- #: adminpages/addons.php:72 adminpages/addons.php:72 adminpages/addons.php:88
52
  msgid "Check Again"
53
  msgstr ""
54
 
55
- #: adminpages/addons.php:76 adminpages/orders.php:850 adminpages/addons.php:76
56
  #: adminpages/addons.php:92 adminpages/orders.php:605
57
  #: adminpages/orders.php:712 adminpages/orders.php:741
 
58
  msgid "All"
59
  msgstr ""
60
 
61
- #: adminpages/addons.php:77 adminpages/addons.php:77 adminpages/addons.php:93
62
  msgid "Active"
63
  msgstr ""
64
 
65
- #: adminpages/addons.php:78 adminpages/addons.php:78 adminpages/addons.php:94
66
  msgid "Inactive"
67
  msgstr ""
68
 
69
- #: adminpages/addons.php:79 adminpages/addons.php:79 adminpages/addons.php:95
70
  msgid "Update Available"
71
  msgstr ""
72
 
73
- #: adminpages/addons.php:80 adminpages/addons.php:80 adminpages/addons.php:96
74
  msgid "Not Installed"
75
  msgstr ""
76
 
77
- #: adminpages/addons.php:93 adminpages/addons.php:93 adminpages/addons.php:109
78
  msgid "Add On Name"
79
  msgstr ""
80
 
81
- #: adminpages/addons.php:94 adminpages/addons.php:94 adminpages/addons.php:110
82
  msgid "Type"
83
  msgstr ""
84
 
85
- #: adminpages/addons.php:95 adminpages/membershiplevels.php:300
86
  #: adminpages/addons.php:95 adminpages/addons.php:111
87
  #: adminpages/membershiplevels.php:296 adminpages/membershiplevels.php:298
88
  #: adminpages/membershiplevels.php:300
89
  msgid "Description"
90
  msgstr ""
91
 
92
- #: adminpages/addons.php:118 adminpages/addons.php:118
93
  #: adminpages/addons.php:134
94
  msgid "No Add Ons found."
95
  msgstr ""
96
 
97
- #: adminpages/addons.php:179 adminpages/addons.php:184
98
- #: adminpages/addons.php:196 adminpages/addons.php:179
99
  #: adminpages/addons.php:184 adminpages/addons.php:195
100
  #: adminpages/addons.php:196 adminpages/addons.php:200
101
  #: adminpages/addons.php:212
102
  msgid "Install Now"
103
  msgstr ""
104
 
105
- #: adminpages/addons.php:185 adminpages/addons.php:191
106
- #: adminpages/addons.php:197 adminpages/addons.php:203
107
  #: adminpages/addons.php:185 adminpages/addons.php:191
108
  #: adminpages/addons.php:197 adminpages/addons.php:201
109
  #: adminpages/addons.php:203 adminpages/addons.php:207
@@ -111,95 +113,95 @@ msgstr ""
111
  msgid "Download"
112
  msgstr ""
113
 
114
- #: adminpages/addons.php:190 adminpages/addons.php:202
115
  #: adminpages/addons.php:190 adminpages/addons.php:202
116
  #: adminpages/addons.php:206 adminpages/addons.php:218
117
  msgid "Update License"
118
  msgstr ""
119
 
120
- #: adminpages/addons.php:208 adminpages/addons.php:208
121
  #: adminpages/addons.php:224
122
  msgid "Deactivate"
123
  msgstr ""
124
 
125
- #: adminpages/addons.php:208 adminpages/addons.php:208
126
  #: adminpages/addons.php:224
127
  #, php-format
128
  msgid "Deactivate %s"
129
  msgstr ""
130
 
131
- #: adminpages/addons.php:212 adminpages/addons.php:212
132
  #: adminpages/addons.php:228
133
  msgid "Activate"
134
  msgstr ""
135
 
136
- #: adminpages/addons.php:212 adminpages/addons.php:212
137
  #: adminpages/addons.php:228
138
  #, php-format
139
  msgid "Activate %s"
140
  msgstr ""
141
 
142
- #: adminpages/addons.php:213 adminpages/addons.php:213
143
  #: adminpages/addons.php:229
144
  msgid "Delete"
145
  msgstr ""
146
 
147
- #: adminpages/addons.php:213 adminpages/addons.php:213
148
  #: adminpages/addons.php:229
149
  #, php-format
150
  msgid "Delete %s"
151
  msgstr ""
152
 
153
- #: adminpages/addons.php:223 adminpages/addons.php:223
154
  #: adminpages/addons.php:239
155
  msgid "PMPro Free"
156
  msgstr ""
157
 
158
- #: adminpages/addons.php:225 adminpages/addons.php:225
159
  #: adminpages/addons.php:241
160
  msgid "PMPro Core"
161
  msgstr ""
162
 
163
- #: adminpages/addons.php:227 adminpages/addons.php:227
164
  #: adminpages/addons.php:243
165
  msgid "PMPro Plus"
166
  msgstr ""
167
 
168
- #: adminpages/addons.php:229 adminpages/addons.php:229
169
  #: adminpages/addons.php:245
170
  msgid "WordPress.org"
171
  msgstr ""
172
 
173
- #: adminpages/addons.php:231 shortcodes/pmpro_account.php:146
174
  #: adminpages/addons.php:231 adminpages/addons.php:247
175
  #: shortcodes/pmpro_account.php:146
176
  msgid "N/A"
177
  msgstr ""
178
 
179
- #: adminpages/addons.php:240 adminpages/addons.php:240
180
  #: adminpages/addons.php:256
181
  #, php-format
182
  msgid "Version %s"
183
  msgstr ""
184
 
185
- #: adminpages/addons.php:245 adminpages/addons.php:245
186
  #: adminpages/addons.php:261
187
  #, php-format
188
  msgid "By %s"
189
  msgstr ""
190
 
191
- #: adminpages/addons.php:252 adminpages/addons.php:252
192
  #: adminpages/addons.php:268
193
  #, php-format
194
  msgid "More information about %s"
195
  msgstr ""
196
 
197
- #: adminpages/addons.php:254 adminpages/addons.php:254
198
  #: adminpages/addons.php:270
199
  msgid "View details"
200
  msgstr ""
201
 
202
- #: adminpages/addons.php:259 adminpages/addons.php:259
203
  #: adminpages/addons.php:275
204
  msgid "Visit plugin site"
205
  msgstr ""
@@ -320,7 +322,7 @@ msgid "Payment Gateway &amp; SSL"
320
  msgstr ""
321
 
322
  #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
323
- #: shortcodes/pmpro_account.php:109 adminpages/admin_header.php:131
324
  #: adminpages/admin_header.php:152 adminpages/admin_header.php:162
325
  #: adminpages/memberslist.php:115 adminpages/memberslist.php:148
326
  #: adminpages/memberslist.php:158 adminpages/memberslist.php:168
@@ -436,9 +438,9 @@ msgid "Hide Ads From Members?"
436
  msgstr ""
437
 
438
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
439
- #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:668
440
  #: adminpages/paymentsettings.php:210
441
- #: classes/gateways/class.pmprogateway_stripe.php:208 includes/profile.php:110
442
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
443
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:187
444
  #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
@@ -455,7 +457,8 @@ msgstr ""
455
  #: classes/gateways/class.pmprogateway_stripe.php:173
456
  #: classes/gateways/class.pmprogateway_stripe.php:174
457
  #: classes/gateways/class.pmprogateway_stripe.php:184
458
- #: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:101
 
459
  #: includes/profile.php:105 includes/profile.php:110 includes/profile.php:121
460
  #: includes/profile.php:123
461
  msgid "No"
@@ -496,9 +499,9 @@ msgstr ""
496
  msgid "multisite only"
497
  msgstr ""
498
 
499
- #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:668
500
  #: adminpages/paymentsettings.php:211
501
- #: classes/gateways/class.pmprogateway_stripe.php:209 includes/profile.php:111
502
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
503
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:563
504
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
@@ -512,7 +515,8 @@ msgstr ""
512
  #: classes/gateways/class.pmprogateway_stripe.php:174
513
  #: classes/gateways/class.pmprogateway_stripe.php:175
514
  #: classes/gateways/class.pmprogateway_stripe.php:185
515
- #: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:102
 
516
  #: includes/profile.php:106 includes/profile.php:111 includes/profile.php:122
517
  #: includes/profile.php:124
518
  msgid "Yes"
@@ -655,8 +659,8 @@ msgid "Add New Discount Code"
655
  msgstr ""
656
 
657
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:587
658
- #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:637
659
- #: adminpages/memberslist.php:164 adminpages/orders.php:1103
660
  #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
661
  #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
662
  #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
@@ -673,31 +677,34 @@ msgstr ""
673
  #: adminpages/memberslist.php:164 adminpages/orders.php:597
674
  #: adminpages/orders.php:900 adminpages/orders.php:910
675
  #: adminpages/orders.php:937 adminpages/orders.php:966
676
- #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
677
- #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
 
678
  #: adminpages/templates/orders-print.php:75
679
  msgid "ID"
680
  msgstr ""
681
 
682
- #: adminpages/discountcodes.php:312 adminpages/orders.php:344
683
  #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
684
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
685
  #: adminpages/orders.php:211 adminpages/orders.php:261
686
- #: adminpages/orders.php:333 adminpages/orders.php:362
 
687
  msgid "This will be generated when you save."
688
  msgstr ""
689
 
690
  #: adminpages/discountcodes.php:316 adminpages/discountcodes.php:588
691
- #: adminpages/orders.php:349 adminpages/orders.php:1104
692
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
693
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
694
  #: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
695
  #: adminpages/discountcodes.php:586 adminpages/discountcodes.php:587
696
  #: adminpages/discountcodes.php:588 adminpages/orders.php:215
697
  #: adminpages/orders.php:265 adminpages/orders.php:337
698
- #: adminpages/orders.php:366 adminpages/orders.php:598
699
- #: adminpages/orders.php:901 adminpages/orders.php:911
700
- #: adminpages/orders.php:938 adminpages/orders.php:967
 
701
  msgid "Code"
702
  msgstr ""
703
 
@@ -708,8 +715,8 @@ msgid "Start Date"
708
  msgstr ""
709
 
710
  #: adminpages/discountcodes.php:372
711
- #: classes/gateways/class.pmprogateway_braintree.php:326
712
- #: classes/gateways/class.pmprogateway_stripe.php:500 pages/billing.php:268
713
  #: pages/checkout.php:575 adminpages/discountcodes.php:367
714
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
715
  #: adminpages/discountcodes.php:372
@@ -722,7 +729,8 @@ msgstr ""
722
  #: classes/gateways/class.pmprogateway_stripe.php:465
723
  #: classes/gateways/class.pmprogateway_stripe.php:469
724
  #: classes/gateways/class.pmprogateway_stripe.php:495
725
- #: classes/gateways/class.pmprogateway_stripe.php:498 pages/billing.php:249
 
726
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
727
  #: pages/billing.php:268 pages/checkout.php:508 pages/checkout.php:524
728
  #: pages/checkout.php:525 pages/checkout.php:532 pages/checkout.php:553
@@ -799,7 +807,7 @@ msgstr ""
799
 
800
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
801
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
802
- #: classes/gateways/class.pmprogateway_stripe.php:567
803
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
804
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
805
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -815,12 +823,13 @@ msgstr ""
815
  #: classes/gateways/class.pmprogateway_stripe.php:536
816
  #: classes/gateways/class.pmprogateway_stripe.php:562
817
  #: classes/gateways/class.pmprogateway_stripe.php:566
 
818
  msgid "Day(s)"
819
  msgstr ""
820
 
821
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
822
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
823
- #: classes/gateways/class.pmprogateway_stripe.php:567
824
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
825
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
826
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -836,12 +845,13 @@ msgstr ""
836
  #: classes/gateways/class.pmprogateway_stripe.php:536
837
  #: classes/gateways/class.pmprogateway_stripe.php:562
838
  #: classes/gateways/class.pmprogateway_stripe.php:566
 
839
  msgid "Month(s)"
840
  msgstr ""
841
 
842
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
843
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
844
- #: classes/gateways/class.pmprogateway_stripe.php:567
845
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
846
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
847
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -857,12 +867,13 @@ msgstr ""
857
  #: classes/gateways/class.pmprogateway_stripe.php:536
858
  #: classes/gateways/class.pmprogateway_stripe.php:562
859
  #: classes/gateways/class.pmprogateway_stripe.php:566
 
860
  msgid "Week(s)"
861
  msgstr ""
862
 
863
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
864
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
865
- #: classes/gateways/class.pmprogateway_stripe.php:567
866
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
867
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
868
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -878,6 +889,7 @@ msgstr ""
878
  #: classes/gateways/class.pmprogateway_stripe.php:536
879
  #: classes/gateways/class.pmprogateway_stripe.php:562
880
  #: classes/gateways/class.pmprogateway_stripe.php:566
 
881
  msgid "Year(s)"
882
  msgstr ""
883
 
@@ -1062,8 +1074,8 @@ msgid ""
1062
  "select customers."
1063
  msgstr ""
1064
 
1065
- #: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:670
1066
- #: adminpages/orders.php:1205 adminpages/discountcodes.php:614
1067
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
1068
  #: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
1069
  #: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:564
@@ -1074,6 +1086,7 @@ msgstr ""
1074
  #: adminpages/orders.php:961 adminpages/orders.php:979
1075
  #: adminpages/orders.php:989 adminpages/orders.php:992
1076
  #: adminpages/orders.php:1021 adminpages/orders.php:1050
 
1077
  msgid "edit"
1078
  msgstr ""
1079
 
@@ -1088,8 +1101,8 @@ msgid ""
1088
  "code anymore."
1089
  msgstr ""
1090
 
1091
- #: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:670
1092
- #: adminpages/orders.php:1211 adminpages/discountcodes.php:617
1093
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
1094
  #: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
1095
  #: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:566
@@ -1100,6 +1113,7 @@ msgstr ""
1100
  #: adminpages/orders.php:967 adminpages/orders.php:985
1101
  #: adminpages/orders.php:995 adminpages/orders.php:998
1102
  #: adminpages/orders.php:1027 adminpages/orders.php:1056
 
1103
  msgid "delete"
1104
  msgstr ""
1105
 
@@ -1272,7 +1286,7 @@ msgstr ""
1272
  msgid "Add New Membership Level"
1273
  msgstr ""
1274
 
1275
- #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:638
1276
  #: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
1277
  #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
1278
  #: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
@@ -1289,7 +1303,7 @@ msgstr ""
1289
  msgid "Confirmation Message"
1290
  msgstr ""
1291
 
1292
- #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:639
1293
  #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1294
  #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:338
1295
  #: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:585
@@ -1298,7 +1312,7 @@ msgid "Billing Details"
1298
  msgstr ""
1299
 
1300
  #: adminpages/membershiplevels.php:372
1301
- #: classes/gateways/class.pmprogateway_stripe.php:665
1302
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1303
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1304
  #: adminpages/membershiplevels.php:373
@@ -1308,6 +1322,7 @@ msgstr ""
1308
  #: classes/gateways/class.pmprogateway_stripe.php:634
1309
  #: classes/gateways/class.pmprogateway_stripe.php:660
1310
  #: classes/gateways/class.pmprogateway_stripe.php:664
 
1311
  msgid "per"
1312
  msgstr ""
1313
 
@@ -1346,8 +1361,8 @@ msgstr ""
1346
 
1347
  #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1348
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1349
- #: classes/gateways/class.pmprogateway_paypal.php:118
1350
- #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1351
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1352
  #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1353
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
@@ -1454,14 +1469,15 @@ msgstr ""
1454
  msgid "Save Level"
1455
  msgstr ""
1456
 
1457
- #: adminpages/membershiplevels.php:518 adminpages/orders.php:765
1458
- #: pages/billing.php:348 pages/cancel.php:71 shortcodes/pmpro_account.php:73
1459
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1460
  #: adminpages/orders.php:511 adminpages/orders.php:561
1461
- #: adminpages/orders.php:633 adminpages/orders.php:662 pages/account.php:44
1462
- #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1463
- #: pages/billing.php:339 pages/billing.php:342 pages/billing.php:344
1464
- #: pages/billing.php:348 pages/cancel.php:71 shortcodes/pmpro_account.php:70
 
1465
  #: shortcodes/pmpro_account.php:73
1466
  msgid "Cancel"
1467
  msgstr ""
@@ -1491,9 +1507,9 @@ msgstr ""
1491
  msgid "Drag and drop membership levels to reorder them on the Levels page."
1492
  msgstr ""
1493
 
1494
- #: adminpages/membershiplevels.php:640 pages/cancel.php:53
1495
  #: pages/confirmation.php:83 pages/invoice.php:70
1496
- #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1497
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1498
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1499
  #: adminpages/membershiplevels.php:586 adminpages/membershiplevels.php:639
@@ -1503,7 +1519,7 @@ msgstr ""
1503
  msgid "Expiration"
1504
  msgstr ""
1505
 
1506
- #: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:511
1507
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1508
  #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1509
  #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:640
@@ -1511,7 +1527,7 @@ msgstr ""
1511
  msgid "Allow Signups"
1512
  msgstr ""
1513
 
1514
- #: adminpages/membershiplevels.php:656 adminpages/membershiplevels.php:534
1515
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1516
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1517
  #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:655
@@ -1519,7 +1535,7 @@ msgstr ""
1519
  msgid "FREE"
1520
  msgstr ""
1521
 
1522
- #: adminpages/membershiplevels.php:665 adminpages/membershiplevels.php:560
1523
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1524
  #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1525
  #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:664
@@ -1527,7 +1543,7 @@ msgstr ""
1527
  msgid "After"
1528
  msgstr ""
1529
 
1530
- #: adminpages/membershiplevels.php:670 adminpages/membershiplevels.php:566
1531
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1532
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1533
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
@@ -1538,7 +1554,7 @@ msgid ""
1538
  "be cancelled."
1539
  msgstr ""
1540
 
1541
- #: adminpages/membershiplevels.php:670 adminpages/orders.php:1208
1542
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1543
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1544
  #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
@@ -1546,7 +1562,7 @@ msgstr ""
1546
  #: adminpages/orders.php:661 adminpages/orders.php:964
1547
  #: adminpages/orders.php:982 adminpages/orders.php:992
1548
  #: adminpages/orders.php:995 adminpages/orders.php:1024
1549
- #: adminpages/orders.php:1053
1550
  msgid "copy"
1551
  msgstr ""
1552
 
@@ -1559,20 +1575,20 @@ msgstr ""
1559
  msgid "Members List"
1560
  msgstr ""
1561
 
1562
- #: adminpages/memberslist.php:26 adminpages/orders.php:833
1563
  #: adminpages/memberslist.php:26 adminpages/orders.php:522
1564
  #: adminpages/orders.php:591 adminpages/orders.php:698
1565
- #: adminpages/orders.php:727
1566
  msgid "Export to CSV"
1567
  msgstr ""
1568
 
1569
- #: adminpages/memberslist.php:30 adminpages/orders.php:848
1570
  #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:276
1571
  #: adminpages/reports/sales.php:202 adminpages/memberslist.php:30
1572
  #: adminpages/orders.php:603 adminpages/orders.php:710
1573
- #: adminpages/orders.php:739 adminpages/reports/login.php:65
1574
- #: adminpages/reports/login.php:67 adminpages/reports/login.php:83
1575
- #: adminpages/reports/memberships.php:256
1576
  #: adminpages/reports/memberships.php:263
1577
  #: adminpages/reports/memberships.php:276
1578
  #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
@@ -1622,7 +1638,7 @@ msgid "%d members found."
1622
  msgstr ""
1623
 
1624
  #: adminpages/memberslist.php:165 pages/checkout.php:184
1625
- #: shortcodes/pmpro_account.php:108 adminpages/memberslist.php:112
1626
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1627
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1628
  #: pages/account.php:76 pages/checkout.php:168 pages/checkout.php:171
@@ -1644,7 +1660,7 @@ msgstr ""
1644
  msgid "Last&nbsp;Name"
1645
  msgstr ""
1646
 
1647
- #: adminpages/memberslist.php:170 pages/billing.php:74 pages/checkout.php:319
1648
  #: pages/confirmation.php:61 pages/invoice.php:48
1649
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1650
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
@@ -1703,169 +1719,176 @@ msgstr ""
1703
  msgid "Search all levels"
1704
  msgstr ""
1705
 
1706
- #: adminpages/orders.php:146 adminpages/orders.php:155
 
1707
  msgid "Invoice emailed successfully."
1708
  msgstr ""
1709
 
1710
- #: adminpages/orders.php:149 adminpages/orders.php:160
 
1711
  msgid "Error emailing invoice."
1712
  msgstr ""
1713
 
1714
  #: adminpages/orders.php:162 adminpages/orders.php:26 adminpages/orders.php:67
1715
- #: adminpages/orders.php:175
1716
  msgid "Order deleted successfully."
1717
  msgstr ""
1718
 
1719
  #: adminpages/orders.php:165 adminpages/orders.php:31 adminpages/orders.php:72
1720
- #: adminpages/orders.php:180
1721
  msgid "Error deleting order."
1722
  msgstr ""
1723
 
1724
- #: adminpages/orders.php:284 adminpages/orders.php:119
1725
  #: adminpages/orders.php:169 adminpages/orders.php:270
 
1726
  msgid "Order saved successfully."
1727
  msgstr ""
1728
 
1729
- #: adminpages/orders.php:287 adminpages/orders.php:124
1730
  #: adminpages/orders.php:174 adminpages/orders.php:275
 
1731
  msgid "Error updating order timestamp."
1732
  msgstr ""
1733
 
1734
- #: adminpages/orders.php:291 adminpages/orders.php:130
1735
  #: adminpages/orders.php:180 adminpages/orders.php:281
 
1736
  msgid "Error saving order."
1737
  msgstr ""
1738
 
1739
- #: adminpages/orders.php:321 adminpages/orders.php:195
1740
  #: adminpages/orders.php:245 adminpages/orders.php:317
1741
- #: adminpages/orders.php:346
1742
  msgid "Order"
1743
  msgstr ""
1744
 
1745
- #: adminpages/orders.php:323 adminpages/orders.php:197
1746
  #: adminpages/orders.php:247 adminpages/orders.php:319
1747
- #: adminpages/orders.php:348
1748
  msgid "New Order"
1749
  msgstr ""
1750
 
1751
- #: adminpages/orders.php:359 adminpages/orders.php:220
1752
  #: adminpages/orders.php:270 adminpages/orders.php:342
1753
- #: adminpages/orders.php:371
1754
  msgid "Randomly generated for you."
1755
  msgstr ""
1756
 
1757
- #: adminpages/orders.php:364 adminpages/orders.php:225
1758
  #: adminpages/orders.php:275 adminpages/orders.php:347
1759
- #: adminpages/orders.php:376
1760
  msgid "User ID"
1761
  msgstr ""
1762
 
1763
- #: adminpages/orders.php:376 adminpages/orders.php:234
1764
  #: adminpages/orders.php:284 adminpages/orders.php:356
1765
- #: adminpages/orders.php:385
1766
  msgid "Membership Level ID"
1767
  msgstr ""
1768
 
1769
- #: adminpages/orders.php:389 adminpages/orders.php:243
1770
  #: adminpages/orders.php:293 adminpages/orders.php:365
1771
- #: adminpages/orders.php:394
1772
  msgid "Billing Name"
1773
  msgstr ""
1774
 
1775
- #: adminpages/orders.php:401 adminpages/orders.php:251
1776
  #: adminpages/orders.php:301 adminpages/orders.php:373
1777
- #: adminpages/orders.php:402
1778
  msgid "Billing Street"
1779
  msgstr ""
1780
 
1781
- #: adminpages/orders.php:412 adminpages/orders.php:258
1782
  #: adminpages/orders.php:308 adminpages/orders.php:380
1783
- #: adminpages/orders.php:409
1784
  msgid "Billing City"
1785
  msgstr ""
1786
 
1787
- #: adminpages/orders.php:423 adminpages/orders.php:265
1788
  #: adminpages/orders.php:315 adminpages/orders.php:387
1789
- #: adminpages/orders.php:416
1790
  msgid "Billing State"
1791
  msgstr ""
1792
 
1793
- #: adminpages/orders.php:434 adminpages/orders.php:272
1794
  #: adminpages/orders.php:322 adminpages/orders.php:394
1795
- #: adminpages/orders.php:423
1796
  msgid "Billing Postal Code"
1797
  msgstr ""
1798
 
1799
- #: adminpages/orders.php:445 adminpages/orders.php:279
1800
  #: adminpages/orders.php:329 adminpages/orders.php:401
1801
- #: adminpages/orders.php:430
1802
  msgid "Billing Country"
1803
  msgstr ""
1804
 
1805
- #: adminpages/orders.php:457 adminpages/orders.php:287
1806
  #: adminpages/orders.php:337 adminpages/orders.php:409
1807
- #: adminpages/orders.php:438
1808
  msgid "Billing Phone"
1809
  msgstr ""
1810
 
1811
- #: adminpages/orders.php:470 adminpages/orders.php:296
1812
  #: adminpages/orders.php:346 adminpages/orders.php:418
1813
- #: adminpages/orders.php:447
1814
  msgid "Sub Total"
1815
  msgstr ""
1816
 
1817
- #: adminpages/orders.php:481 adminpages/templates/orders-email.php:60
1818
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1819
  #: adminpages/orders.php:304 adminpages/orders.php:354
1820
  #: adminpages/orders.php:426 adminpages/orders.php:455
1821
- #: adminpages/templates/orders-email.php:60
1822
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:78
1823
  #: pages/invoice.php:80
1824
  msgid "Tax"
1825
  msgstr ""
1826
 
1827
- #: adminpages/orders.php:492 adminpages/orders.php:312
1828
  #: adminpages/orders.php:362 adminpages/orders.php:434
1829
- #: adminpages/orders.php:463
1830
  msgid "Coupon Amount"
1831
  msgstr ""
1832
 
1833
- #: adminpages/orders.php:504 adminpages/orders.php:1108
1834
  #: adminpages/templates/orders-email.php:64
1835
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1836
  #: adminpages/orders.php:320 adminpages/orders.php:370
1837
  #: adminpages/orders.php:442 adminpages/orders.php:471
1838
- #: adminpages/orders.php:602 adminpages/orders.php:905
1839
- #: adminpages/orders.php:915 adminpages/orders.php:942
1840
- #: adminpages/orders.php:971 adminpages/templates/orders-email.php:64
 
1841
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:82
1842
  #: pages/invoice.php:84
1843
  msgid "Total"
1844
  msgstr ""
1845
 
1846
- #: adminpages/orders.php:513 adminpages/orders.php:325
1847
  #: adminpages/orders.php:375 adminpages/orders.php:447
1848
- #: adminpages/orders.php:476
1849
  msgid "Should be subtotal + tax - couponamount."
1850
  msgstr ""
1851
 
1852
- #: adminpages/orders.php:518 adminpages/orders.php:330
1853
  #: adminpages/orders.php:380 adminpages/orders.php:452
1854
- #: adminpages/orders.php:481
1855
  msgid "Payment Type"
1856
  msgstr ""
1857
 
1858
- #: adminpages/orders.php:528 adminpages/orders.php:335
1859
  #: adminpages/orders.php:385 adminpages/orders.php:457
1860
- #: adminpages/orders.php:486
1861
  msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1862
  msgstr ""
1863
 
1864
- #: adminpages/orders.php:532
1865
- #: classes/gateways/class.pmprogateway_braintree.php:309
1866
- #: classes/gateways/class.pmprogateway_stripe.php:452 pages/billing.php:253
1867
  #: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
1868
  #: adminpages/orders.php:461 adminpages/orders.php:490
 
1869
  #: classes/gateways/class.pmprogateway_braintree.php:291
1870
  #: classes/gateways/class.pmprogateway_braintree.php:304
1871
  #: classes/gateways/class.pmprogateway_braintree.php:306
@@ -1875,7 +1898,8 @@ msgstr ""
1875
  #: classes/gateways/class.pmprogateway_stripe.php:419
1876
  #: classes/gateways/class.pmprogateway_stripe.php:423
1877
  #: classes/gateways/class.pmprogateway_stripe.php:447
1878
- #: classes/gateways/class.pmprogateway_stripe.php:450 pages/billing.php:234
 
1879
  #: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
1880
  #: pages/billing.php:253 pages/checkout.php:493 pages/checkout.php:507
1881
  #: pages/checkout.php:510 pages/checkout.php:516 pages/checkout.php:517
@@ -1883,314 +1907,337 @@ msgstr ""
1883
  msgid "Card Type"
1884
  msgstr ""
1885
 
1886
- #: adminpages/orders.php:540 adminpages/orders.php:344
1887
  #: adminpages/orders.php:394 adminpages/orders.php:466
1888
- #: adminpages/orders.php:495
1889
  msgid "e.g. Visa, MasterCard, AMEX, etc"
1890
  msgstr ""
1891
 
1892
- #: adminpages/orders.php:544
1893
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
1894
  #: adminpages/orders.php:348 adminpages/orders.php:398
1895
  #: adminpages/orders.php:470 adminpages/orders.php:499
1896
- #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
 
1897
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
1898
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
1899
  #: classes/gateways/class.pmprogateway_twocheckout.php:148
1900
  msgid "Account Number"
1901
  msgstr ""
1902
 
1903
- #: adminpages/orders.php:553 adminpages/orders.php:353
1904
  #: adminpages/orders.php:403 adminpages/orders.php:475
1905
- #: adminpages/orders.php:504
1906
  msgid "Obscure all but last 4 digits."
1907
  msgstr ""
1908
 
1909
- #: adminpages/orders.php:561 adminpages/orders.php:358
1910
  #: adminpages/orders.php:408 adminpages/orders.php:480
1911
- #: adminpages/orders.php:509
1912
  msgid "Expiration Month"
1913
  msgstr ""
1914
 
1915
- #: adminpages/orders.php:569 adminpages/orders.php:365
1916
  #: adminpages/orders.php:415 adminpages/orders.php:487
1917
- #: adminpages/orders.php:516
1918
  msgid "Expiration Year"
1919
  msgstr ""
1920
 
1921
- #: adminpages/orders.php:579 adminpages/orders.php:1112
1922
  #: adminpages/orders.php:373 adminpages/orders.php:423
1923
  #: adminpages/orders.php:495 adminpages/orders.php:524
1924
- #: adminpages/orders.php:606 adminpages/orders.php:909
1925
- #: adminpages/orders.php:919 adminpages/orders.php:946
1926
- #: adminpages/orders.php:975
 
1927
  msgid "Status"
1928
  msgstr ""
1929
 
1930
- #: adminpages/orders.php:612 adminpages/orders.php:1110
1931
  #: adminpages/orders.php:394 adminpages/orders.php:444
1932
  #: adminpages/orders.php:516 adminpages/orders.php:545
1933
- #: adminpages/orders.php:604 adminpages/orders.php:907
1934
- #: adminpages/orders.php:917 adminpages/orders.php:944
1935
- #: adminpages/orders.php:973
 
1936
  msgid "Gateway"
1937
  msgstr ""
1938
 
1939
- #: adminpages/orders.php:633 adminpages/paymentsettings.php:124
1940
  #: adminpages/orders.php:411 adminpages/orders.php:461
1941
  #: adminpages/orders.php:462 adminpages/orders.php:534
1942
- #: adminpages/orders.php:563 adminpages/paymentsettings.php:124
1943
- #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
1944
- #: adminpages/paymentsettings.php:184
1945
  msgid "Gateway Environment"
1946
  msgstr ""
1947
 
1948
- #: adminpages/orders.php:640 adminpages/paymentsettings.php:128
1949
  #: adminpages/orders.php:415 adminpages/orders.php:465
1950
  #: adminpages/orders.php:466 adminpages/orders.php:538
1951
- #: adminpages/orders.php:567 adminpages/paymentsettings.php:128
1952
- #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
1953
- #: adminpages/paymentsettings.php:188
1954
  msgid "Sandbox/Testing"
1955
  msgstr ""
1956
 
1957
- #: adminpages/orders.php:642 adminpages/paymentsettings.php:129
1958
  #: adminpages/orders.php:416 adminpages/orders.php:466
1959
  #: adminpages/orders.php:467 adminpages/orders.php:539
1960
- #: adminpages/orders.php:568 adminpages/paymentsettings.php:129
1961
- #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
1962
- #: adminpages/paymentsettings.php:189
1963
  msgid "Live/Production"
1964
  msgstr ""
1965
 
1966
- #: adminpages/orders.php:650 adminpages/orders.php:423
1967
  #: adminpages/orders.php:473 adminpages/orders.php:474
1968
  #: adminpages/orders.php:546 adminpages/orders.php:575
 
1969
  msgid "Payment Transaction ID"
1970
  msgstr ""
1971
 
1972
- #: adminpages/orders.php:659 adminpages/orders.php:428
1973
  #: adminpages/orders.php:478 adminpages/orders.php:479
1974
  #: adminpages/orders.php:551 adminpages/orders.php:580
 
1975
  msgid "Generated by the gateway. Useful to cross reference orders."
1976
  msgstr ""
1977
 
1978
- #: adminpages/orders.php:664 adminpages/orders.php:432
1979
  #: adminpages/orders.php:482 adminpages/orders.php:483
1980
  #: adminpages/orders.php:555 adminpages/orders.php:584
 
1981
  msgid "Subscription Transaction ID"
1982
  msgstr ""
1983
 
1984
- #: adminpages/orders.php:674 adminpages/orders.php:437
1985
  #: adminpages/orders.php:487 adminpages/orders.php:488
1986
  #: adminpages/orders.php:560 adminpages/orders.php:589
 
1987
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
1988
  msgstr ""
1989
 
1990
- #: adminpages/orders.php:679 adminpages/orders.php:1113 pages/invoice.php:107
1991
- #: shortcodes/pmpro_account.php:125 adminpages/orders.php:442
1992
  #: adminpages/orders.php:492 adminpages/orders.php:493
1993
  #: adminpages/orders.php:565 adminpages/orders.php:594
1994
- #: adminpages/orders.php:607 adminpages/orders.php:910
1995
- #: adminpages/orders.php:920 adminpages/orders.php:947
1996
- #: adminpages/orders.php:976 pages/account.php:91 pages/invoice.php:105
 
1997
  #: pages/invoice.php:107 shortcodes/pmpro_account.php:122
1998
  #: shortcodes/pmpro_account.php:125
1999
  msgid "Date"
2000
  msgstr ""
2001
 
2002
- #: adminpages/orders.php:716 adminpages/orders.php:477
2003
  #: adminpages/orders.php:527 adminpages/orders.php:599
2004
- #: adminpages/orders.php:628
2005
  msgid "Affiliate ID"
2006
  msgstr ""
2007
 
2008
- #: adminpages/orders.php:728 adminpages/orders.php:485
2009
  #: adminpages/orders.php:535 adminpages/orders.php:607
2010
- #: adminpages/orders.php:636
2011
  msgid "Affiliate SubID"
2012
  msgstr ""
2013
 
2014
- #: adminpages/orders.php:742 adminpages/orders.php:495
2015
  #: adminpages/orders.php:545 adminpages/orders.php:617
2016
- #: adminpages/orders.php:646
2017
  msgid "Notes"
2018
  msgstr ""
2019
 
2020
- #: adminpages/orders.php:764 adminpages/orders.php:510
2021
  #: adminpages/orders.php:560 adminpages/orders.php:632
2022
- #: adminpages/orders.php:661
2023
  msgid "Save Order"
2024
  msgstr ""
2025
 
2026
- #: adminpages/orders.php:800 adminpages/orders.php:667
2027
- #: adminpages/orders.php:696
2028
  msgid "Email Invoice"
2029
  msgstr ""
2030
 
2031
- #: adminpages/orders.php:803 adminpages/orders.php:670
2032
- #: adminpages/orders.php:699
2033
  msgid "Send an invoice for this order to: "
2034
  msgstr ""
2035
 
2036
- #: adminpages/orders.php:805 adminpages/orders.php:672
2037
- #: adminpages/orders.php:701
2038
  msgid "Send Email"
2039
  msgstr ""
2040
 
2041
- #: adminpages/orders.php:810 includes/adminpages.php:56
2042
  #: includes/adminpages.php:172 adminpages/orders.php:520
2043
  #: adminpages/orders.php:570 adminpages/orders.php:677
2044
- #: adminpages/orders.php:706 includes/adminpages.php:17
2045
- #: includes/adminpages.php:55 includes/adminpages.php:56
2046
- #: includes/adminpages.php:84 includes/adminpages.php:156
2047
- #: includes/adminpages.php:163 includes/adminpages.php:167
2048
- #: includes/adminpages.php:172
2049
  msgid "Orders"
2050
  msgstr ""
2051
 
2052
- #: adminpages/orders.php:812 adminpages/orders.php:521
2053
  #: adminpages/orders.php:571 adminpages/orders.php:678
2054
- #: adminpages/orders.php:707
2055
  msgid "Add New Order"
2056
  msgstr ""
2057
 
2058
- #: adminpages/orders.php:852 adminpages/orders.php:606
2059
  #: adminpages/orders.php:713 adminpages/orders.php:742
 
2060
  msgid "Within a Date Range"
2061
  msgstr ""
2062
 
2063
- #: adminpages/orders.php:854 adminpages/orders.php:607
2064
  #: adminpages/orders.php:714 adminpages/orders.php:743
 
2065
  msgid "Predefined Date Range"
2066
  msgstr ""
2067
 
2068
- #: adminpages/orders.php:856 adminpages/orders.php:608
2069
  #: adminpages/orders.php:715 adminpages/orders.php:744
 
2070
  msgid "Within a Level"
2071
  msgstr ""
2072
 
2073
- #: adminpages/orders.php:858 adminpages/orders.php:609
2074
  #: adminpages/orders.php:716 adminpages/orders.php:745
 
2075
  msgid "Within a Status"
2076
  msgstr ""
2077
 
2078
- #: adminpages/orders.php:861 adminpages/orders.php:612
2079
  #: adminpages/orders.php:719 adminpages/orders.php:748
 
2080
  msgid "From"
2081
  msgstr ""
2082
 
2083
- #: adminpages/orders.php:876 adminpages/orders.php:624
2084
  #: adminpages/orders.php:731 adminpages/orders.php:760
 
2085
  msgid "To"
2086
  msgstr ""
2087
 
2088
- #: adminpages/orders.php:889 adminpages/orders.php:636
2089
  #: adminpages/orders.php:743 adminpages/orders.php:772
 
2090
  msgid "filter by "
2091
  msgstr ""
2092
 
2093
- #: adminpages/orders.php:932 adminpages/orders.php:674
2094
  #: adminpages/orders.php:780 adminpages/orders.php:809
 
2095
  msgid "Filter"
2096
  msgstr ""
2097
 
2098
- #: adminpages/orders.php:1029 adminpages/orders.php:1032
2099
  #: adminpages/orders.php:535 adminpages/orders.php:538
2100
  #: adminpages/orders.php:777 adminpages/orders.php:780
2101
  #: adminpages/orders.php:883 adminpages/orders.php:886
2102
  #: adminpages/orders.php:912 adminpages/orders.php:915
 
2103
  msgid "Search Orders"
2104
  msgstr ""
2105
 
2106
- #: adminpages/orders.php:1096 adminpages/orders.php:590
2107
  #: adminpages/orders.php:893 adminpages/orders.php:903
2108
  #: adminpages/orders.php:930 adminpages/orders.php:959
 
2109
  #, php-format
2110
  msgid "%d orders found."
2111
  msgstr ""
2112
 
2113
- #: adminpages/orders.php:1105 adminpages/reports/login.php:159
2114
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
2115
  #: adminpages/orders.php:599 adminpages/orders.php:902
2116
  #: adminpages/orders.php:912 adminpages/orders.php:939
2117
- #: adminpages/orders.php:968 adminpages/paymentsettings.php:211
2118
- #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
2119
- #: adminpages/reports/login.php:141 adminpages/reports/login.php:143
2120
- #: adminpages/reports/login.php:159
2121
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
2122
  msgid "User"
2123
  msgstr ""
2124
 
2125
- #: adminpages/orders.php:1107 includes/init.php:243 includes/profile.php:27
2126
  #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
2127
  #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
2128
  #: adminpages/orders.php:601 adminpages/orders.php:904
2129
  #: adminpages/orders.php:914 adminpages/orders.php:941
2130
- #: adminpages/orders.php:970 includes/init.php:214 includes/init.php:217
2131
- #: includes/init.php:218 includes/init.php:220 includes/init.php:222
2132
- #: includes/init.php:230 includes/init.php:238 includes/init.php:243
2133
- #: includes/profile.php:25 includes/profile.php:27 pages/checkout.php:33
2134
- #: pages/checkout.php:34 pages/checkout.php:35 pages/checkout.php:42
2135
- #: pages/confirmation.php:46 pages/confirmation.php:47
2136
  #: pages/confirmation.php:62 pages/confirmation.php:64
2137
  #: pages/confirmation.php:103 pages/confirmation.php:105 pages/invoice.php:27
2138
  #: pages/invoice.php:28 pages/invoice.php:49 pages/invoice.php:51
2139
  msgid "Membership Level"
2140
  msgstr ""
2141
 
2142
- #: adminpages/orders.php:1109 adminpages/orders.php:1186
2143
  #: adminpages/orders.php:603 adminpages/orders.php:651
2144
  #: adminpages/orders.php:906 adminpages/orders.php:916
2145
  #: adminpages/orders.php:943 adminpages/orders.php:954
2146
  #: adminpages/orders.php:972 adminpages/orders.php:982
2147
  #: adminpages/orders.php:1011 adminpages/orders.php:1040
 
2148
  msgid "Payment"
2149
  msgstr ""
2150
 
2151
- #: adminpages/orders.php:1111 adminpages/orders.php:605
2152
  #: adminpages/orders.php:908 adminpages/orders.php:918
2153
  #: adminpages/orders.php:945 adminpages/orders.php:974
 
2154
  msgid "Transaction IDs"
2155
  msgstr ""
2156
 
2157
- #: adminpages/orders.php:1141 adminpages/orders.php:630
2158
  #: adminpages/orders.php:933 adminpages/orders.php:943
2159
  #: adminpages/orders.php:972 adminpages/orders.php:1001
 
2160
  msgid "deleted"
2161
  msgstr ""
2162
 
2163
- #: adminpages/orders.php:1192 adminpages/orders.php:653
2164
  #: adminpages/orders.php:956 adminpages/orders.php:974
2165
  #: adminpages/orders.php:984 adminpages/orders.php:1013
2166
- #: adminpages/orders.php:1042
2167
  msgid "Subscription"
2168
  msgstr ""
2169
 
2170
- #: adminpages/orders.php:1211 adminpages/orders.php:664
2171
  #: adminpages/orders.php:967 adminpages/orders.php:985
2172
  #: adminpages/orders.php:995 adminpages/orders.php:998
2173
  #: adminpages/orders.php:1027 adminpages/orders.php:1056
 
2174
  #, php-format
2175
  msgid ""
2176
  "Deleting orders is permanent and can affect active users. Are you sure you "
2177
  "want to delete order %s?"
2178
  msgstr ""
2179
 
2180
- #: adminpages/orders.php:1215 adminpages/orders.php:1030
2181
- #: adminpages/orders.php:1059
2182
  msgid "print"
2183
  msgstr ""
2184
 
2185
- #: adminpages/orders.php:1219 adminpages/orders.php:1033
2186
- #: adminpages/orders.php:1062
2187
  msgid "email"
2188
  msgstr ""
2189
 
2190
- #: adminpages/orders.php:1228 adminpages/orders.php:674
2191
  #: adminpages/orders.php:977 adminpages/orders.php:995
2192
  #: adminpages/orders.php:1005 adminpages/orders.php:1008
2193
  #: adminpages/orders.php:1043 adminpages/orders.php:1072
 
2194
  msgid "No orders found."
2195
  msgstr ""
2196
 
@@ -2447,7 +2494,7 @@ msgstr ""
2447
  msgid "Sales Tax"
2448
  msgstr ""
2449
 
2450
- #: adminpages/paymentsettings.php:188 pages/billing.php:94
2451
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2452
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2453
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
@@ -2819,7 +2866,7 @@ msgstr ""
2819
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2820
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2821
  #: classes/class.memberorder.php:697 classes/class.memberorder.php:699
2822
- #: includes/cleanup.php:24
2823
  #, php-format
2824
  msgid ""
2825
  "There was an error canceling the subscription for user with ID=%s. You will "
@@ -2856,8 +2903,8 @@ msgstr ""
2856
  #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2857
  #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2858
  #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:659
2859
- #: classes/gateways/class.pmprogateway_braintree.php:367
2860
- #: classes/gateways/class.pmprogateway_stripe.php:541 pages/checkout.php:76
2861
  #: pages/checkout.php:86 pages/checkout.php:612 pages/confirmation.php:52
2862
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2863
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
@@ -2877,13 +2924,15 @@ msgstr ""
2877
  #: classes/gateways/class.pmprogateway_braintree.php:349
2878
  #: classes/gateways/class.pmprogateway_braintree.php:362
2879
  #: classes/gateways/class.pmprogateway_braintree.php:364
 
2880
  #: classes/gateways/class.pmprogateway_braintree.php:368
2881
  #: classes/gateways/class.pmprogateway_stripe.php:495
2882
  #: classes/gateways/class.pmprogateway_stripe.php:496
2883
  #: classes/gateways/class.pmprogateway_stripe.php:506
2884
  #: classes/gateways/class.pmprogateway_stripe.php:510
2885
  #: classes/gateways/class.pmprogateway_stripe.php:536
2886
- #: classes/gateways/class.pmprogateway_stripe.php:540 pages/checkout.php:66
 
2887
  #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2888
  #: pages/checkout.php:76 pages/checkout.php:77 pages/checkout.php:78
2889
  #: pages/checkout.php:85 pages/checkout.php:86 pages/checkout.php:549
@@ -2990,7 +3039,7 @@ msgstr ""
2990
  #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
2991
  #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
2992
  #: classes/class.pmproemail.php:800 classes/class.pmproemail.php:809
2993
- #: classes/class.pmproemail.php:811
2994
  #, php-format
2995
  msgid "The new level is %s"
2996
  msgstr ""
@@ -3006,9 +3055,10 @@ msgstr ""
3006
  #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
3007
  #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
3008
  #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
3009
- #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:779
3010
- #: classes/class.pmproemail.php:803 classes/class.pmproemail.php:806
3011
- #: classes/class.pmproemail.php:815 classes/class.pmproemail.php:817
 
3012
  #, php-format
3013
  msgid "This membership will expire on %s"
3014
  msgstr ""
@@ -3017,37 +3067,38 @@ msgstr ""
3017
  #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
3018
  #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
3019
  #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
3020
- #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:783
3021
- #: classes/class.pmproemail.php:807 classes/class.pmproemail.php:810
3022
- #: classes/class.pmproemail.php:819 classes/class.pmproemail.php:821
 
3023
  msgid "This membership does not expire"
3024
  msgstr ""
3025
 
3026
  #: classes/class.pmproemail.php:806 classes/class.pmproemail.php:679
3027
  #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
3028
  #: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
3029
- #: classes/class.pmproemail.php:807
3030
  #, php-format
3031
  msgid "Membership for %s at %s has been changed"
3032
  msgstr ""
3033
 
3034
  #: classes/class.pmproemail.php:812 classes/class.pmproemail.php:799
3035
  #: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
3036
- #: classes/class.pmproemail.php:813
3037
  msgid "Membership has been cancelled"
3038
  msgstr ""
3039
 
3040
  #: classes/class.pmproemail.php:849 classes/class.pmproemail.php:848
3041
- #: classes/class.pmproemail.php:850
3042
  msgid "Invoice for Order #: "
3043
  msgstr ""
3044
 
3045
  #: classes/gateways/class.pmprogateway.php:55
3046
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
3047
- #: classes/gateways/class.pmprogateway_check.php:193
3048
  #: classes/gateways/class.pmprogateway_cybersource.php:171
3049
  #: classes/gateways/class.pmprogateway_payflowpro.php:164
3050
- #: classes/gateways/class.pmprogateway_paypal.php:249
3051
  #: classes/gateways/class.pmprogateway.php:55
3052
  #: classes/gateways/class.pmprogateway_authorizenet.php:55
3053
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
@@ -3069,15 +3120,15 @@ msgstr ""
3069
  #: classes/gateways/class.pmprogateway_authorizenet.php:222
3070
  #: classes/gateways/class.pmprogateway_authorizenet.php:227
3071
  #: classes/gateways/class.pmprogateway_authorizenet.php:244
3072
- #: classes/gateways/class.pmprogateway_check.php:245
3073
- #: classes/gateways/class.pmprogateway_check.php:250
3074
- #: classes/gateways/class.pmprogateway_check.php:268
3075
  #: classes/gateways/class.pmprogateway_cybersource.php:222
3076
  #: classes/gateways/class.pmprogateway_cybersource.php:227
3077
  #: classes/gateways/class.pmprogateway_cybersource.php:245
3078
  #: classes/gateways/class.pmprogateway_payflowpro.php:187
3079
  #: classes/gateways/class.pmprogateway_payflowpro.php:192
3080
- #: classes/gateways/class.pmprogateway_paypal.php:272
3081
  #: classes/gateways/class.pmprogateway.php:106
3082
  #: classes/gateways/class.pmprogateway.php:111
3083
  #: classes/gateways/class.pmprogateway.php:129
@@ -3114,7 +3165,7 @@ msgstr ""
3114
 
3115
  #: classes/gateways/class.pmprogateway.php:113
3116
  #: classes/gateways/class.pmprogateway_authorizenet.php:228
3117
- #: classes/gateways/class.pmprogateway_check.php:252
3118
  #: classes/gateways/class.pmprogateway_cybersource.php:229
3119
  #: classes/gateways/class.pmprogateway.php:113
3120
  #: classes/gateways/class.pmprogateway_authorizenet.php:112
@@ -3185,7 +3236,7 @@ msgstr ""
3185
  msgid "Could not connect to Authorize.net"
3186
  msgstr ""
3187
 
3188
- #: classes/gateways/class.pmprogateway_braintree.php:76
3189
  #: paid-memberships-pro.php:134
3190
  #: classes/gateways/class.pmprogateway_braintree.php:63
3191
  #: classes/gateways/class.pmprogateway_braintree.php:76
@@ -3195,13 +3246,13 @@ msgstr ""
3195
  msgid "Braintree Payments"
3196
  msgstr ""
3197
 
3198
- #: classes/gateways/class.pmprogateway_braintree.php:132
3199
  #: classes/gateways/class.pmprogateway_braintree.php:119
3200
  #: classes/gateways/class.pmprogateway_braintree.php:132
3201
  msgid "Braintree Settings"
3202
  msgstr ""
3203
 
3204
- #: classes/gateways/class.pmprogateway_braintree.php:137
3205
  #: classes/gateways/class.pmprogateway_cybersource.php:106
3206
  #: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
3207
  #: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
@@ -3212,7 +3263,7 @@ msgstr ""
3212
  msgid "Merchant ID"
3213
  msgstr ""
3214
 
3215
- #: classes/gateways/class.pmprogateway_braintree.php:145
3216
  #: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
3217
  #: adminpages/paymentsettings.php:311
3218
  #: classes/gateways/class.pmprogateway_braintree.php:132
@@ -3220,7 +3271,7 @@ msgstr ""
3220
  msgid "Public Key"
3221
  msgstr ""
3222
 
3223
- #: classes/gateways/class.pmprogateway_braintree.php:153
3224
  #: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
3225
  #: adminpages/paymentsettings.php:319
3226
  #: classes/gateways/class.pmprogateway_braintree.php:140
@@ -3228,7 +3279,7 @@ msgstr ""
3228
  msgid "Private Key"
3229
  msgstr ""
3230
 
3231
- #: classes/gateways/class.pmprogateway_braintree.php:161
3232
  #: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
3233
  #: adminpages/paymentsettings.php:327
3234
  #: classes/gateways/class.pmprogateway_braintree.php:148
@@ -3236,8 +3287,8 @@ msgstr ""
3236
  msgid "Client-Side Encryption Key"
3237
  msgstr ""
3238
 
3239
- #: classes/gateways/class.pmprogateway_braintree.php:169
3240
- #: classes/gateways/class.pmprogateway_stripe.php:216
3241
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
3242
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
3243
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
@@ -3248,10 +3299,11 @@ msgstr ""
3248
  #: classes/gateways/class.pmprogateway_stripe.php:182
3249
  #: classes/gateways/class.pmprogateway_stripe.php:192
3250
  #: classes/gateways/class.pmprogateway_stripe.php:214
 
3251
  msgid "Web Hook URL"
3252
  msgstr ""
3253
 
3254
- #: classes/gateways/class.pmprogateway_braintree.php:173
3255
  #: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
3256
  #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
3257
  #: classes/gateways/class.pmprogateway_braintree.php:160
@@ -3259,8 +3311,8 @@ msgstr ""
3259
  msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
3260
  msgstr ""
3261
 
3262
- #: classes/gateways/class.pmprogateway_braintree.php:286
3263
- #: classes/gateways/class.pmprogateway_stripe.php:429 pages/checkout.php:503
3264
  #: classes/gateways/class.pmprogateway_braintree.php:270
3265
  #: classes/gateways/class.pmprogateway_braintree.php:283
3266
  #: classes/gateways/class.pmprogateway_braintree.php:285
@@ -3270,15 +3322,16 @@ msgstr ""
3270
  #: classes/gateways/class.pmprogateway_stripe.php:398
3271
  #: classes/gateways/class.pmprogateway_stripe.php:402
3272
  #: classes/gateways/class.pmprogateway_stripe.php:426
3273
- #: classes/gateways/class.pmprogateway_stripe.php:427 pages/checkout.php:476
 
3274
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3275
  #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
3276
  #: pages/checkout.php:503
3277
  msgid "Payment Information"
3278
  msgstr ""
3279
 
3280
- #: classes/gateways/class.pmprogateway_braintree.php:287
3281
- #: classes/gateways/class.pmprogateway_stripe.php:430 pages/checkout.php:504
3282
  #: classes/gateways/class.pmprogateway_braintree.php:270
3283
  #: classes/gateways/class.pmprogateway_braintree.php:283
3284
  #: classes/gateways/class.pmprogateway_braintree.php:285
@@ -3288,7 +3341,8 @@ msgstr ""
3288
  #: classes/gateways/class.pmprogateway_stripe.php:398
3289
  #: classes/gateways/class.pmprogateway_stripe.php:402
3290
  #: classes/gateways/class.pmprogateway_stripe.php:426
3291
- #: classes/gateways/class.pmprogateway_stripe.php:428 pages/checkout.php:476
 
3292
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3293
  #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
3294
  #: pages/checkout.php:504
@@ -3296,8 +3350,8 @@ msgstr ""
3296
  msgid "We Accept %s"
3297
  msgstr ""
3298
 
3299
- #: classes/gateways/class.pmprogateway_braintree.php:321
3300
- #: classes/gateways/class.pmprogateway_stripe.php:495 pages/billing.php:263
3301
  #: pages/checkout.php:570
3302
  #: classes/gateways/class.pmprogateway_braintree.php:303
3303
  #: classes/gateways/class.pmprogateway_braintree.php:316
@@ -3308,7 +3362,8 @@ msgstr ""
3308
  #: classes/gateways/class.pmprogateway_stripe.php:460
3309
  #: classes/gateways/class.pmprogateway_stripe.php:464
3310
  #: classes/gateways/class.pmprogateway_stripe.php:490
3311
- #: classes/gateways/class.pmprogateway_stripe.php:493 pages/billing.php:244
 
3312
  #: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
3313
  #: pages/billing.php:263 pages/checkout.php:503 pages/checkout.php:519
3314
  #: pages/checkout.php:520 pages/checkout.php:527 pages/checkout.php:548
@@ -3316,61 +3371,67 @@ msgstr ""
3316
  msgid "Card Number"
3317
  msgstr ""
3318
 
3319
- #: classes/gateways/class.pmprogateway_braintree.php:358
3320
- #: classes/gateways/class.pmprogateway_stripe.php:532 pages/billing.php:301
3321
  #: pages/checkout.php:605
3322
  #: classes/gateways/class.pmprogateway_braintree.php:340
3323
  #: classes/gateways/class.pmprogateway_braintree.php:353
3324
  #: classes/gateways/class.pmprogateway_braintree.php:355
 
3325
  #: classes/gateways/class.pmprogateway_braintree.php:359
3326
  #: classes/gateways/class.pmprogateway_stripe.php:486
3327
  #: classes/gateways/class.pmprogateway_stripe.php:487
3328
  #: classes/gateways/class.pmprogateway_stripe.php:497
3329
  #: classes/gateways/class.pmprogateway_stripe.php:501
3330
  #: classes/gateways/class.pmprogateway_stripe.php:527
3331
- #: classes/gateways/class.pmprogateway_stripe.php:531 pages/billing.php:281
 
3332
  #: pages/billing.php:285 pages/billing.php:294 pages/billing.php:297
3333
  #: pages/billing.php:301 pages/checkout.php:540 pages/checkout.php:556
3334
  #: pages/checkout.php:557 pages/checkout.php:564 pages/checkout.php:585
3335
- #: pages/checkout.php:594 pages/checkout.php:603 pages/checkout.php:607
3336
- #: pages/checkout.php:608
3337
  msgid "CVV"
3338
  msgstr ""
3339
 
3340
- #: classes/gateways/class.pmprogateway_braintree.php:359
3341
- #: classes/gateways/class.pmprogateway_stripe.php:533 pages/billing.php:302
3342
  #: pages/checkout.php:606
3343
  #: classes/gateways/class.pmprogateway_braintree.php:341
3344
  #: classes/gateways/class.pmprogateway_braintree.php:354
3345
  #: classes/gateways/class.pmprogateway_braintree.php:356
 
3346
  #: classes/gateways/class.pmprogateway_braintree.php:360
3347
  #: classes/gateways/class.pmprogateway_stripe.php:487
3348
  #: classes/gateways/class.pmprogateway_stripe.php:488
3349
  #: classes/gateways/class.pmprogateway_stripe.php:498
3350
  #: classes/gateways/class.pmprogateway_stripe.php:502
3351
  #: classes/gateways/class.pmprogateway_stripe.php:528
3352
- #: classes/gateways/class.pmprogateway_stripe.php:532 pages/billing.php:282
 
3353
  #: pages/billing.php:286 pages/billing.php:295 pages/billing.php:298
3354
  #: pages/billing.php:302 pages/checkout.php:541 pages/checkout.php:557
3355
  #: pages/checkout.php:558 pages/checkout.php:565 pages/checkout.php:586
3356
- #: pages/checkout.php:595 pages/checkout.php:604 pages/checkout.php:608
3357
- #: pages/checkout.php:609
3358
  msgid "what's this?"
3359
  msgstr ""
3360
 
3361
- #: classes/gateways/class.pmprogateway_braintree.php:369
3362
- #: classes/gateways/class.pmprogateway_stripe.php:543 pages/checkout.php:88
3363
  #: pages/checkout.php:614
3364
  #: classes/gateways/class.pmprogateway_braintree.php:351
3365
  #: classes/gateways/class.pmprogateway_braintree.php:364
3366
  #: classes/gateways/class.pmprogateway_braintree.php:366
 
3367
  #: classes/gateways/class.pmprogateway_braintree.php:370
3368
  #: classes/gateways/class.pmprogateway_stripe.php:497
3369
  #: classes/gateways/class.pmprogateway_stripe.php:498
3370
  #: classes/gateways/class.pmprogateway_stripe.php:508
3371
  #: classes/gateways/class.pmprogateway_stripe.php:512
3372
  #: classes/gateways/class.pmprogateway_stripe.php:538
3373
- #: classes/gateways/class.pmprogateway_stripe.php:542 pages/checkout.php:78
 
3374
  #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3375
  #: pages/checkout.php:88 pages/checkout.php:551 pages/checkout.php:567
3376
  #: pages/checkout.php:568 pages/checkout.php:575 pages/checkout.php:596
@@ -3379,12 +3440,13 @@ msgstr ""
3379
  msgid "Apply"
3380
  msgstr ""
3381
 
3382
- #: classes/gateways/class.pmprogateway_braintree.php:424
3383
- #: classes/gateways/class.pmprogateway_stripe.php:1073
3384
  #: classes/gateways/class.pmprogateway_braintree.php:61
3385
  #: classes/gateways/class.pmprogateway_braintree.php:406
3386
  #: classes/gateways/class.pmprogateway_braintree.php:419
3387
  #: classes/gateways/class.pmprogateway_braintree.php:421
 
3388
  #: classes/gateways/class.pmprogateway_braintree.php:425
3389
  #: classes/gateways/class.pmprogateway_stripe.php:53
3390
  #: classes/gateways/class.pmprogateway_stripe.php:1011
@@ -3394,82 +3456,90 @@ msgstr ""
3394
  #: classes/gateways/class.pmprogateway_stripe.php:1040
3395
  #: classes/gateways/class.pmprogateway_stripe.php:1068
3396
  #: classes/gateways/class.pmprogateway_stripe.php:1072
 
3397
  msgid "Unknown error: Initial payment failed."
3398
  msgstr ""
3399
 
3400
- #: classes/gateways/class.pmprogateway_braintree.php:483
3401
  #: classes/gateways/class.pmprogateway_braintree.php:120
3402
  #: classes/gateways/class.pmprogateway_braintree.php:465
3403
  #: classes/gateways/class.pmprogateway_braintree.php:478
3404
  #: classes/gateways/class.pmprogateway_braintree.php:480
 
3405
  #: classes/gateways/class.pmprogateway_braintree.php:484
3406
  msgid "Error during settlement:"
3407
  msgstr ""
3408
 
3409
- #: classes/gateways/class.pmprogateway_braintree.php:492
3410
  #: classes/gateways/class.pmprogateway_braintree.php:129
3411
  #: classes/gateways/class.pmprogateway_braintree.php:474
3412
  #: classes/gateways/class.pmprogateway_braintree.php:487
3413
  #: classes/gateways/class.pmprogateway_braintree.php:489
 
3414
  #: classes/gateways/class.pmprogateway_braintree.php:493
3415
  msgid "Error during charge:"
3416
  msgstr ""
3417
 
3418
- #: classes/gateways/class.pmprogateway_braintree.php:584
3419
  #: classes/gateways/class.pmprogateway_braintree.php:198
3420
  #: classes/gateways/class.pmprogateway_braintree.php:221
3421
  #: classes/gateways/class.pmprogateway_braintree.php:566
3422
  #: classes/gateways/class.pmprogateway_braintree.php:579
3423
  #: classes/gateways/class.pmprogateway_braintree.php:581
 
3424
  #: classes/gateways/class.pmprogateway_braintree.php:585
3425
  msgid "Failed to update customer."
3426
  msgstr ""
3427
 
3428
- #: classes/gateways/class.pmprogateway_braintree.php:632
3429
  #: classes/gateways/class.pmprogateway_braintree.php:246
3430
  #: classes/gateways/class.pmprogateway_braintree.php:269
3431
  #: classes/gateways/class.pmprogateway_braintree.php:614
3432
  #: classes/gateways/class.pmprogateway_braintree.php:627
3433
  #: classes/gateways/class.pmprogateway_braintree.php:629
 
3434
  #: classes/gateways/class.pmprogateway_braintree.php:633
3435
  msgid "Failed to create customer."
3436
  msgstr ""
3437
 
3438
- #: classes/gateways/class.pmprogateway_braintree.php:639
3439
  #: classes/gateways/class.pmprogateway_braintree.php:253
3440
  #: classes/gateways/class.pmprogateway_braintree.php:276
3441
  #: classes/gateways/class.pmprogateway_braintree.php:621
3442
  #: classes/gateways/class.pmprogateway_braintree.php:634
3443
  #: classes/gateways/class.pmprogateway_braintree.php:636
 
3444
  #: classes/gateways/class.pmprogateway_braintree.php:640
3445
  msgid "Error creating customer record with Braintree:"
3446
  msgstr ""
3447
 
3448
- #: classes/gateways/class.pmprogateway_braintree.php:739
3449
  #: classes/gateways/class.pmprogateway_braintree.php:344
3450
  #: classes/gateways/class.pmprogateway_braintree.php:345
3451
  #: classes/gateways/class.pmprogateway_braintree.php:376
3452
  #: classes/gateways/class.pmprogateway_braintree.php:721
3453
  #: classes/gateways/class.pmprogateway_braintree.php:734
3454
  #: classes/gateways/class.pmprogateway_braintree.php:736
 
3455
  #: classes/gateways/class.pmprogateway_braintree.php:740
3456
  msgid "Error subscribing customer to plan with Braintree:"
3457
  msgstr ""
3458
 
3459
- #: classes/gateways/class.pmprogateway_braintree.php:754
3460
  #: classes/gateways/class.pmprogateway_braintree.php:359
3461
  #: classes/gateways/class.pmprogateway_braintree.php:360
3462
  #: classes/gateways/class.pmprogateway_braintree.php:391
3463
  #: classes/gateways/class.pmprogateway_braintree.php:736
3464
  #: classes/gateways/class.pmprogateway_braintree.php:749
3465
  #: classes/gateways/class.pmprogateway_braintree.php:751
 
3466
  #: classes/gateways/class.pmprogateway_braintree.php:755
3467
  msgid "Failed to subscribe with Braintree:"
3468
  msgstr ""
3469
 
3470
- #: classes/gateways/class.pmprogateway_braintree.php:792
3471
- #: classes/gateways/class.pmprogateway_braintree.php:805
3472
- #: classes/gateways/class.pmprogateway_braintree.php:812
3473
  #: classes/gateways/class.pmprogateway_braintree.php:397
3474
  #: classes/gateways/class.pmprogateway_braintree.php:398
3475
  #: classes/gateways/class.pmprogateway_braintree.php:410
@@ -3482,13 +3552,16 @@ msgstr ""
3482
  #: classes/gateways/class.pmprogateway_braintree.php:774
3483
  #: classes/gateways/class.pmprogateway_braintree.php:787
3484
  #: classes/gateways/class.pmprogateway_braintree.php:789
 
3485
  #: classes/gateways/class.pmprogateway_braintree.php:793
3486
  #: classes/gateways/class.pmprogateway_braintree.php:794
3487
  #: classes/gateways/class.pmprogateway_braintree.php:800
3488
  #: classes/gateways/class.pmprogateway_braintree.php:802
 
3489
  #: classes/gateways/class.pmprogateway_braintree.php:806
3490
  #: classes/gateways/class.pmprogateway_braintree.php:807
3491
  #: classes/gateways/class.pmprogateway_braintree.php:809
 
3492
  #: classes/gateways/class.pmprogateway_braintree.php:813
3493
  #: classes/gateways/class.pmprogateway_stripe.php:343
3494
  #: classes/gateways/class.pmprogateway_stripe.php:344
@@ -3502,7 +3575,7 @@ msgstr ""
3502
  msgid "Could not find the subscription."
3503
  msgstr ""
3504
 
3505
- #: classes/gateways/class.pmprogateway_check.php:48
3506
  #: paid-memberships-pro.php:127 adminpages/orders.php:399
3507
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3508
  #: adminpages/paymentsettings.php:159
@@ -3513,19 +3586,19 @@ msgstr ""
3513
  msgid "Pay by Check"
3514
  msgstr ""
3515
 
3516
- #: classes/gateways/class.pmprogateway_check.php:100
3517
  #: classes/gateways/class.pmprogateway_check.php:100
3518
  msgid "Pay by Check Settings"
3519
  msgstr ""
3520
 
3521
- #: classes/gateways/class.pmprogateway_check.php:105
3522
  #: adminpages/paymentsettings.php:389 adminpages/paymentsettings.php:415
3523
  #: adminpages/paymentsettings.php:420 adminpages/paymentsettings.php:422
3524
  #: classes/gateways/class.pmprogateway_check.php:105
3525
  msgid "Instructions"
3526
  msgstr ""
3527
 
3528
- #: classes/gateways/class.pmprogateway_check.php:109
3529
  #: adminpages/paymentsettings.php:393 adminpages/paymentsettings.php:419
3530
  #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:426
3531
  #: classes/gateways/class.pmprogateway_check.php:109
@@ -3607,7 +3680,7 @@ msgid ""
3607
  msgstr ""
3608
 
3609
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3610
- #: classes/gateways/class.pmprogateway_paypal.php:279
3611
  #: classes/gateways/class.pmprogateway_payflowpro.php:57
3612
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3613
  #: classes/gateways/class.pmprogateway_paypal.php:57
@@ -3618,7 +3691,7 @@ msgid ""
3618
  "owner immediately to correct this."
3619
  msgstr ""
3620
 
3621
- #: classes/gateways/class.pmprogateway_paypal.php:57
3622
  #: paid-memberships-pro.php:130
3623
  #: classes/gateways/class.pmprogateway_paypal.php:57
3624
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
@@ -3627,8 +3700,8 @@ msgstr ""
3627
  msgid "PayPal Website Payments Pro"
3628
  msgstr ""
3629
 
3630
- #: classes/gateways/class.pmprogateway_paypal.php:113
3631
- #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3632
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3633
  #: classes/gateways/class.pmprogateway_paypal.php:113
3634
  #: classes/gateways/class.pmprogateway_paypalexpress.php:118
@@ -3637,8 +3710,8 @@ msgstr ""
3637
  msgid "PayPal Settings"
3638
  msgstr ""
3639
 
3640
- #: classes/gateways/class.pmprogateway_paypal.php:118
3641
- #: classes/gateways/class.pmprogateway_paypalexpress.php:133
3642
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3643
  #: adminpages/paymentsettings.php:179
3644
  #: classes/gateways/class.pmprogateway_paypal.php:118
@@ -3653,8 +3726,8 @@ msgid ""
3653
  "here.</a>"
3654
  msgstr ""
3655
 
3656
- #: classes/gateways/class.pmprogateway_paypal.php:123
3657
- #: classes/gateways/class.pmprogateway_paypalexpress.php:138
3658
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3659
  #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3660
  #: adminpages/paymentsettings.php:236
@@ -3665,8 +3738,8 @@ msgstr ""
3665
  msgid "Gateway Account Email"
3666
  msgstr ""
3667
 
3668
- #: classes/gateways/class.pmprogateway_paypal.php:131
3669
- #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3670
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3671
  #: classes/gateways/class.pmprogateway_twocheckout.php:119
3672
  #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
@@ -3682,8 +3755,8 @@ msgstr ""
3682
  msgid "API Username"
3683
  msgstr ""
3684
 
3685
- #: classes/gateways/class.pmprogateway_paypal.php:139
3686
- #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3687
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3688
  #: classes/gateways/class.pmprogateway_twocheckout.php:128
3689
  #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
@@ -3699,8 +3772,8 @@ msgstr ""
3699
  msgid "API Password"
3700
  msgstr ""
3701
 
3702
- #: classes/gateways/class.pmprogateway_paypal.php:147
3703
- #: classes/gateways/class.pmprogateway_paypalexpress.php:162
3704
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3705
  #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3706
  #: adminpages/paymentsettings.php:260
@@ -3711,8 +3784,13 @@ msgstr ""
3711
  msgid "API Signature"
3712
  msgstr ""
3713
 
3714
- #: classes/gateways/class.pmprogateway_paypal.php:155
3715
- #: classes/gateways/class.pmprogateway_paypalexpress.php:170
 
 
 
 
 
3716
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3717
  #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3718
  #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
@@ -3723,16 +3801,16 @@ msgstr ""
3723
  msgid "IPN Handler URL"
3724
  msgstr ""
3725
 
3726
- #: classes/gateways/class.pmprogateway_paypal.php:158
3727
  #: classes/gateways/class.pmprogateway_paypal.php:158
3728
  msgid ""
3729
  "This URL is passed to PayPal for all new charges and subscriptions. You "
3730
  "SHOULD NOT set this in your PayPal account settings."
3731
  msgstr ""
3732
 
3733
- #: classes/gateways/class.pmprogateway_paypal.php:178
3734
- #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3735
- #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3736
  #: pages/checkout.php:302 classes/gateways/class.pmprogateway_paypal.php:178
3737
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3738
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
@@ -3744,24 +3822,25 @@ msgstr ""
3744
  msgid "Check Out with PayPal"
3745
  msgstr ""
3746
 
3747
- #: classes/gateways/class.pmprogateway_paypal.php:184
3748
- #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3749
- #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3750
- #: pages/checkout.php:724 classes/gateways/class.pmprogateway_paypal.php:184
3751
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3752
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3753
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3754
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3755
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3756
- #: pages/checkout.php:722 pages/checkout.php:728 pages/checkout.php:729
 
3757
  msgid "Submit and Check Out"
3758
  msgstr ""
3759
 
3760
- #: classes/gateways/class.pmprogateway_paypal.php:184
3761
- #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3762
- #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3763
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
3764
- #: pages/checkout.php:724 classes/gateways/class.pmprogateway_paypal.php:184
3765
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3766
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3767
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
@@ -3770,13 +3849,14 @@ msgstr ""
3770
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3771
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3772
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3773
- #: pages/checkout.php:722 pages/checkout.php:728 pages/checkout.php:729
 
3774
  msgid "Submit and Confirm"
3775
  msgstr ""
3776
 
3777
- #: classes/gateways/class.pmprogateway_paypal.php:608
3778
- #: classes/gateways/class.pmprogateway_paypalexpress.php:752
3779
- #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3780
  #: classes/gateways/class.pmprogateway_paypal.php:385
3781
  #: classes/gateways/class.pmprogateway_paypal.php:605
3782
  #: classes/gateways/class.pmprogateway_paypal.php:607
@@ -3798,7 +3878,7 @@ msgid ""
3798
  "to make sure you are not charged going forward."
3799
  msgstr ""
3800
 
3801
- #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3802
  #: paid-memberships-pro.php:129
3803
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3804
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
@@ -3808,7 +3888,7 @@ msgstr ""
3808
  msgid "PayPal Express"
3809
  msgstr ""
3810
 
3811
- #: classes/gateways/class.pmprogateway_paypalexpress.php:173
3812
  #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
3813
  #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3814
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
@@ -3816,8 +3896,8 @@ msgstr ""
3816
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3817
  msgstr ""
3818
 
3819
- #: classes/gateways/class.pmprogateway_paypalexpress.php:278
3820
- #: classes/gateways/class.pmprogateway_paypalexpress.php:330
3821
  #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3822
  #: classes/gateways/class.pmprogateway_paypalexpress.php:278
3823
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
@@ -3849,141 +3929,154 @@ msgstr ""
3849
 
3850
  #: classes/gateways/class.pmprogateway_stripe.php:55
3851
  #: classes/gateways/class.pmprogateway_stripe.php:51
 
3852
  #, php-format
3853
  msgid ""
3854
  "The %s gateway depends on the %s PHP extension. Please enable it, or ask "
3855
  "your hosting provider to enable it"
3856
  msgstr ""
3857
 
3858
- #: classes/gateways/class.pmprogateway_stripe.php:128
3859
  #: paid-memberships-pro.php:128
3860
  #: classes/gateways/class.pmprogateway_stripe.php:93
3861
  #: classes/gateways/class.pmprogateway_stripe.php:94
3862
  #: classes/gateways/class.pmprogateway_stripe.php:104
3863
  #: classes/gateways/class.pmprogateway_stripe.php:126
 
3864
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3865
  #: paid-memberships-pro.php:125 paid-memberships-pro.php:126
3866
  #: paid-memberships-pro.php:127 paid-memberships-pro.php:128
3867
  msgid "Stripe"
3868
  msgstr ""
3869
 
3870
- #: classes/gateways/class.pmprogateway_stripe.php:183
3871
  #: classes/gateways/class.pmprogateway_stripe.php:148
3872
  #: classes/gateways/class.pmprogateway_stripe.php:149
3873
  #: classes/gateways/class.pmprogateway_stripe.php:159
3874
  #: classes/gateways/class.pmprogateway_stripe.php:181
 
3875
  msgid "Stripe Settings"
3876
  msgstr ""
3877
 
3878
- #: classes/gateways/class.pmprogateway_stripe.php:188
3879
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3880
  #: adminpages/paymentsettings.php:286
3881
  #: classes/gateways/class.pmprogateway_stripe.php:153
3882
  #: classes/gateways/class.pmprogateway_stripe.php:154
3883
  #: classes/gateways/class.pmprogateway_stripe.php:164
3884
  #: classes/gateways/class.pmprogateway_stripe.php:186
 
3885
  msgid "Secret Key"
3886
  msgstr ""
3887
 
3888
- #: classes/gateways/class.pmprogateway_stripe.php:196
3889
  #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3890
  #: adminpages/paymentsettings.php:294
3891
  #: classes/gateways/class.pmprogateway_stripe.php:161
3892
  #: classes/gateways/class.pmprogateway_stripe.php:162
3893
  #: classes/gateways/class.pmprogateway_stripe.php:172
3894
  #: classes/gateways/class.pmprogateway_stripe.php:194
 
3895
  msgid "Publishable Key"
3896
  msgstr ""
3897
 
3898
- #: classes/gateways/class.pmprogateway_stripe.php:204
3899
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3900
  #: adminpages/paymentsettings.php:432
3901
  #: classes/gateways/class.pmprogateway_stripe.php:169
3902
  #: classes/gateways/class.pmprogateway_stripe.php:170
3903
  #: classes/gateways/class.pmprogateway_stripe.php:180
3904
  #: classes/gateways/class.pmprogateway_stripe.php:202
 
3905
  msgid "Show Billing Address Fields"
3906
  msgstr ""
3907
 
3908
- #: classes/gateways/class.pmprogateway_stripe.php:211
3909
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3910
  #: classes/gateways/class.pmprogateway_stripe.php:176
3911
  #: classes/gateways/class.pmprogateway_stripe.php:177
3912
  #: classes/gateways/class.pmprogateway_stripe.php:187
3913
  #: classes/gateways/class.pmprogateway_stripe.php:209
 
3914
  msgid ""
3915
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3916
  "the checkout page.<br /><strong>If No, make sure you disable address "
3917
  "verification in the Stripe dashboard settings.</strong>"
3918
  msgstr ""
3919
 
3920
- #: classes/gateways/class.pmprogateway_stripe.php:219
3921
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3922
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3923
  #: classes/gateways/class.pmprogateway_stripe.php:184
3924
  #: classes/gateways/class.pmprogateway_stripe.php:185
3925
  #: classes/gateways/class.pmprogateway_stripe.php:195
3926
  #: classes/gateways/class.pmprogateway_stripe.php:217
 
3927
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3928
  msgstr ""
3929
 
3930
- #: classes/gateways/class.pmprogateway_stripe.php:613
3931
  #: classes/gateways/class.pmprogateway_stripe.php:567
3932
  #: classes/gateways/class.pmprogateway_stripe.php:568
3933
  #: classes/gateways/class.pmprogateway_stripe.php:578
3934
  #: classes/gateways/class.pmprogateway_stripe.php:582
3935
  #: classes/gateways/class.pmprogateway_stripe.php:608
3936
  #: classes/gateways/class.pmprogateway_stripe.php:612
 
3937
  msgid "Subscription Updates"
3938
  msgstr ""
3939
 
3940
- #: classes/gateways/class.pmprogateway_stripe.php:617
3941
  #: classes/gateways/class.pmprogateway_stripe.php:571
3942
  #: classes/gateways/class.pmprogateway_stripe.php:572
3943
  #: classes/gateways/class.pmprogateway_stripe.php:582
3944
  #: classes/gateways/class.pmprogateway_stripe.php:586
3945
  #: classes/gateways/class.pmprogateway_stripe.php:612
3946
  #: classes/gateways/class.pmprogateway_stripe.php:616
 
3947
  msgid ""
3948
  "Subscription updates, allow you to change the member's subscription values "
3949
  "at predefined times. Be sure to click Update Profile after making changes."
3950
  msgstr ""
3951
 
3952
- #: classes/gateways/class.pmprogateway_stripe.php:619
3953
  #: classes/gateways/class.pmprogateway_stripe.php:573
3954
  #: classes/gateways/class.pmprogateway_stripe.php:574
3955
  #: classes/gateways/class.pmprogateway_stripe.php:584
3956
  #: classes/gateways/class.pmprogateway_stripe.php:588
3957
  #: classes/gateways/class.pmprogateway_stripe.php:614
3958
  #: classes/gateways/class.pmprogateway_stripe.php:618
 
3959
  msgid ""
3960
  "Subscription updates, allow you to change the member's subscription values "
3961
  "at predefined times. Be sure to click Update User after making changes."
3962
  msgstr ""
3963
 
3964
- #: classes/gateways/class.pmprogateway_stripe.php:624 pages/billing.php:347
3965
  #: classes/gateways/class.pmprogateway_stripe.php:578
3966
  #: classes/gateways/class.pmprogateway_stripe.php:579
3967
  #: classes/gateways/class.pmprogateway_stripe.php:589
3968
  #: classes/gateways/class.pmprogateway_stripe.php:593
3969
  #: classes/gateways/class.pmprogateway_stripe.php:619
3970
- #: classes/gateways/class.pmprogateway_stripe.php:623 pages/billing.php:294
 
3971
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
3972
  #: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
3973
  msgid "Update"
3974
  msgstr ""
3975
 
3976
- #: classes/gateways/class.pmprogateway_stripe.php:817
3977
  #: classes/gateways/class.pmprogateway_stripe.php:769
3978
  #: classes/gateways/class.pmprogateway_stripe.php:770
3979
  #: classes/gateways/class.pmprogateway_stripe.php:780
3980
  #: classes/gateways/class.pmprogateway_stripe.php:784
3981
  #: classes/gateways/class.pmprogateway_stripe.php:812
3982
  #: classes/gateways/class.pmprogateway_stripe.php:816
 
3983
  msgid "Could not cancel the old subscription. Updates have not been processed."
3984
  msgstr ""
3985
 
3986
- #: classes/gateways/class.pmprogateway_stripe.php:1300
3987
  #: classes/gateways/class.pmprogateway_stripe.php:190
3988
  #: classes/gateways/class.pmprogateway_stripe.php:192
3989
  #: classes/gateways/class.pmprogateway_stripe.php:199
@@ -3998,18 +4091,20 @@ msgstr ""
3998
  #: classes/gateways/class.pmprogateway_stripe.php:1246
3999
  #: classes/gateways/class.pmprogateway_stripe.php:1256
4000
  #: classes/gateways/class.pmprogateway_stripe.php:1260
 
4001
  msgid "Error creating customer record with Stripe:"
4002
  msgstr ""
4003
 
4004
- #: classes/gateways/class.pmprogateway_stripe.php:1357
4005
  #: classes/gateways/class.pmprogateway_stripe.php:1275
4006
  #: classes/gateways/class.pmprogateway_stripe.php:1303
4007
  #: classes/gateways/class.pmprogateway_stripe.php:1313
4008
  #: classes/gateways/class.pmprogateway_stripe.php:1317
 
4009
  msgid "Error getting subscription with Stripe:"
4010
  msgstr ""
4011
 
4012
- #: classes/gateways/class.pmprogateway_stripe.php:1507
4013
  #: classes/gateways/class.pmprogateway_stripe.php:278
4014
  #: classes/gateways/class.pmprogateway_stripe.php:279
4015
  #: classes/gateways/class.pmprogateway_stripe.php:286
@@ -4032,10 +4127,11 @@ msgstr ""
4032
  #: classes/gateways/class.pmprogateway_stripe.php:1453
4033
  #: classes/gateways/class.pmprogateway_stripe.php:1463
4034
  #: classes/gateways/class.pmprogateway_stripe.php:1467
 
4035
  msgid "Error creating plan with Stripe:"
4036
  msgstr ""
4037
 
4038
- #: classes/gateways/class.pmprogateway_stripe.php:1538
4039
  #: classes/gateways/class.pmprogateway_stripe.php:294
4040
  #: classes/gateways/class.pmprogateway_stripe.php:295
4041
  #: classes/gateways/class.pmprogateway_stripe.php:302
@@ -4053,10 +4149,11 @@ msgstr ""
4053
  #: classes/gateways/class.pmprogateway_stripe.php:1484
4054
  #: classes/gateways/class.pmprogateway_stripe.php:1494
4055
  #: classes/gateways/class.pmprogateway_stripe.php:1498
 
4056
  msgid "Error subscribing customer to plan with Stripe:"
4057
  msgstr ""
4058
 
4059
- #: classes/gateways/class.pmprogateway_stripe.php:1634
4060
  #: classes/gateways/class.pmprogateway_stripe.php:383
4061
  #: classes/gateways/class.pmprogateway_stripe.php:389
4062
  #: classes/gateways/class.pmprogateway_stripe.php:410
@@ -4071,10 +4168,11 @@ msgstr ""
4071
  #: classes/gateways/class.pmprogateway_stripe.php:1580
4072
  #: classes/gateways/class.pmprogateway_stripe.php:1590
4073
  #: classes/gateways/class.pmprogateway_stripe.php:1594
 
4074
  msgid "Could not cancel old subscription."
4075
  msgstr ""
4076
 
4077
- #: classes/gateways/class.pmprogateway_stripe.php:1651
4078
  #: classes/gateways/class.pmprogateway_stripe.php:1533
4079
  #: classes/gateways/class.pmprogateway_stripe.php:1534
4080
  #: classes/gateways/class.pmprogateway_stripe.php:1535
@@ -4086,6 +4184,7 @@ msgstr ""
4086
  #: classes/gateways/class.pmprogateway_stripe.php:1597
4087
  #: classes/gateways/class.pmprogateway_stripe.php:1607
4088
  #: classes/gateways/class.pmprogateway_stripe.php:1611
 
4089
  msgid "Could not find the customer."
4090
  msgstr ""
4091
 
@@ -4235,7 +4334,7 @@ msgstr ""
4235
  msgid "Visit Customer Support Forum"
4236
  msgstr ""
4237
 
4238
- #: includes/currencies.php:17 includes/currencies.php:87
4239
  #: includes/currencies.php:7 includes/currencies.php:17
4240
  #: includes/currencies.php:37 includes/currencies.php:44
4241
  #: includes/currencies.php:64 includes/currencies.php:68
@@ -4244,7 +4343,7 @@ msgstr ""
4244
  msgid "US Dollars (&#36;)"
4245
  msgstr ""
4246
 
4247
- #: includes/currencies.php:19 includes/currencies.php:90
4248
  #: includes/currencies.php:8 includes/currencies.php:9
4249
  #: includes/currencies.php:19 includes/currencies.php:40
4250
  #: includes/currencies.php:47 includes/currencies.php:67
@@ -4253,7 +4352,7 @@ msgstr ""
4253
  msgid "Euros (&euro;)"
4254
  msgstr ""
4255
 
4256
- #: includes/currencies.php:24 includes/currencies.php:89
4257
  #: includes/currencies.php:9 includes/currencies.php:14
4258
  #: includes/currencies.php:24 includes/currencies.php:39
4259
  #: includes/currencies.php:46 includes/currencies.php:66
@@ -4277,7 +4376,7 @@ msgstr ""
4277
  msgid "Brazilian Real (R&#36;)"
4278
  msgstr ""
4279
 
4280
- #: includes/currencies.php:35 includes/currencies.php:88
4281
  #: includes/currencies.php:12 includes/currencies.php:24
4282
  #: includes/currencies.php:34 includes/currencies.php:35
4283
  #: includes/currencies.php:38 includes/currencies.php:45
@@ -4347,108 +4446,108 @@ msgstr ""
4347
  msgid "Japanese Yen (&yen;)"
4348
  msgstr ""
4349
 
4350
- #: includes/currencies.php:56 includes/currencies.php:19
4351
  #: includes/currencies.php:22 includes/currencies.php:38
4352
  #: includes/currencies.php:45 includes/currencies.php:55
4353
  #: includes/currencies.php:56
4354
  msgid "Malaysian Ringgits"
4355
  msgstr ""
4356
 
4357
- #: includes/currencies.php:57 includes/currencies.php:20
4358
  #: includes/currencies.php:23 includes/currencies.php:39
4359
  #: includes/currencies.php:46 includes/currencies.php:56
4360
  #: includes/currencies.php:57
4361
  msgid "Mexican Peso (&#36;)"
4362
  msgstr ""
4363
 
4364
- #: includes/currencies.php:58 includes/currencies.php:58
4365
  msgid "Nigerian Naira (&#8358;)"
4366
  msgstr ""
4367
 
4368
- #: includes/currencies.php:59 includes/currencies.php:21
4369
  #: includes/currencies.php:24 includes/currencies.php:40
4370
  #: includes/currencies.php:47 includes/currencies.php:57
4371
  #: includes/currencies.php:59
4372
  msgid "New Zealand Dollar (&#36;)"
4373
  msgstr ""
4374
 
4375
- #: includes/currencies.php:60 includes/currencies.php:22
4376
  #: includes/currencies.php:25 includes/currencies.php:41
4377
  #: includes/currencies.php:48 includes/currencies.php:58
4378
  #: includes/currencies.php:60
4379
  msgid "Norwegian Krone"
4380
  msgstr ""
4381
 
4382
- #: includes/currencies.php:61 includes/currencies.php:23
4383
  #: includes/currencies.php:26 includes/currencies.php:42
4384
  #: includes/currencies.php:49 includes/currencies.php:59
4385
  #: includes/currencies.php:61
4386
  msgid "Philippine Pesos"
4387
  msgstr ""
4388
 
4389
- #: includes/currencies.php:62 includes/currencies.php:24
4390
  #: includes/currencies.php:27 includes/currencies.php:43
4391
  #: includes/currencies.php:50 includes/currencies.php:60
4392
  #: includes/currencies.php:62
4393
  msgid "Polish Zloty"
4394
  msgstr ""
4395
 
4396
- #: includes/currencies.php:64 includes/currencies.php:25
4397
  #: includes/currencies.php:28 includes/currencies.php:45
4398
  #: includes/currencies.php:52 includes/currencies.php:62
4399
  #: includes/currencies.php:64
4400
  msgid "Singapore Dollar (&#36;)"
4401
  msgstr ""
4402
 
4403
- #: includes/currencies.php:69 includes/currencies.php:50
4404
  #: includes/currencies.php:57 includes/currencies.php:67
4405
  #: includes/currencies.php:69
4406
  msgid "South African Rand (R)"
4407
  msgstr ""
4408
 
4409
- #: includes/currencies.php:73 includes/currencies.php:30
4410
  #: includes/currencies.php:50 includes/currencies.php:54
4411
  #: includes/currencies.php:61 includes/currencies.php:71
4412
  #: includes/currencies.php:73
4413
  msgid "South Korean Won"
4414
  msgstr ""
4415
 
4416
- #: includes/currencies.php:74 includes/currencies.php:26
4417
  #: includes/currencies.php:31 includes/currencies.php:51
4418
  #: includes/currencies.php:55 includes/currencies.php:62
4419
  #: includes/currencies.php:72 includes/currencies.php:74
4420
  msgid "Swedish Krona"
4421
  msgstr ""
4422
 
4423
- #: includes/currencies.php:75 includes/currencies.php:27
4424
  #: includes/currencies.php:32 includes/currencies.php:52
4425
  #: includes/currencies.php:56 includes/currencies.php:63
4426
  #: includes/currencies.php:73 includes/currencies.php:75
4427
  msgid "Swiss Franc"
4428
  msgstr ""
4429
 
4430
- #: includes/currencies.php:76 includes/currencies.php:28
4431
  #: includes/currencies.php:33 includes/currencies.php:53
4432
  #: includes/currencies.php:57 includes/currencies.php:64
4433
  #: includes/currencies.php:74 includes/currencies.php:76
4434
  msgid "Taiwan New Dollars"
4435
  msgstr ""
4436
 
4437
- #: includes/currencies.php:77 includes/currencies.php:29
4438
  #: includes/currencies.php:34 includes/currencies.php:54
4439
  #: includes/currencies.php:58 includes/currencies.php:65
4440
  #: includes/currencies.php:75 includes/currencies.php:77
4441
  msgid "Thai Baht"
4442
  msgstr ""
4443
 
4444
- #: includes/currencies.php:78 includes/currencies.php:35
4445
  #: includes/currencies.php:55 includes/currencies.php:59
4446
  #: includes/currencies.php:66 includes/currencies.php:76
4447
  #: includes/currencies.php:78
4448
  msgid "Turkish Lira"
4449
  msgstr ""
4450
 
4451
- #: includes/currencies.php:79 includes/currencies.php:36
4452
  #: includes/currencies.php:56 includes/currencies.php:60
4453
  #: includes/currencies.php:67 includes/currencies.php:77
4454
  #: includes/currencies.php:79
@@ -4459,7 +4558,8 @@ msgstr ""
4459
  #: includes/functions.php:196 includes/functions.php:200
4460
  #: includes/functions.php:202 includes/functions.php:203
4461
  #: includes/functions.php:204 includes/functions.php:207
4462
- #: includes/functions.php:243 includes/functions.php:315
 
4463
  #, php-format
4464
  msgid "The price for membership is <strong>%s</strong> now"
4465
  msgstr ""
@@ -4467,7 +4567,8 @@ msgstr ""
4467
  #: includes/functions.php:311 includes/functions.php:202
4468
  #: includes/functions.php:204 includes/functions.php:205
4469
  #: includes/functions.php:206 includes/functions.php:209
4470
- #: includes/functions.php:245 includes/functions.php:317
 
4471
  #, php-format
4472
  msgid "<strong>%s</strong> now"
4473
  msgstr ""
@@ -4476,13 +4577,14 @@ msgstr ""
4476
  #: includes/functions.php:205 includes/functions.php:211
4477
  #: includes/functions.php:213 includes/functions.php:214
4478
  #: includes/functions.php:215 includes/functions.php:218
4479
- #: includes/functions.php:254 includes/functions.php:326
 
4480
  #, php-format
4481
  msgid " and then <strong>%s per %s for %d more %s</strong>."
4482
  msgstr ""
4483
 
4484
  #: includes/functions.php:324 includes/functions.php:258
4485
- #: includes/functions.php:330
4486
  #, php-format
4487
  msgid " and then <strong>%s every %d %s for %d more payments</strong>."
4488
  msgstr ""
@@ -4491,7 +4593,8 @@ msgstr ""
4491
  #: includes/functions.php:214 includes/functions.php:220
4492
  #: includes/functions.php:222 includes/functions.php:223
4493
  #: includes/functions.php:224 includes/functions.php:227
4494
- #: includes/functions.php:263 includes/functions.php:335
 
4495
  #, php-format
4496
  msgid " and then <strong>%s after %d %s</strong>."
4497
  msgstr ""
@@ -4499,14 +4602,16 @@ msgstr ""
4499
  #: includes/functions.php:337 includes/functions.php:228
4500
  #: includes/functions.php:229 includes/functions.php:230
4501
  #: includes/functions.php:231 includes/functions.php:235
4502
- #: includes/functions.php:271 includes/functions.php:343
 
4503
  #, php-format
4504
  msgid "The price for membership is <strong>%s per %s</strong>."
4505
  msgstr ""
4506
 
4507
  #: includes/functions.php:339 includes/functions.php:230
4508
  #: includes/functions.php:233 includes/functions.php:237
4509
- #: includes/functions.php:273 includes/functions.php:345
 
4510
  #, php-format
4511
  msgid "<strong>%s per %s</strong>."
4512
  msgstr ""
@@ -4514,14 +4619,16 @@ msgstr ""
4514
  #: includes/functions.php:344 includes/functions.php:233
4515
  #: includes/functions.php:234 includes/functions.php:235
4516
  #: includes/functions.php:238 includes/functions.php:242
4517
- #: includes/functions.php:278 includes/functions.php:350
 
4518
  #, php-format
4519
  msgid "The price for membership is <strong>%s every %d %s</strong>."
4520
  msgstr ""
4521
 
4522
  #: includes/functions.php:346 includes/functions.php:237
4523
  #: includes/functions.php:240 includes/functions.php:244
4524
- #: includes/functions.php:280 includes/functions.php:352
 
4525
  #, php-format
4526
  msgid "<strong>%s every %d %s</strong>."
4527
  msgstr ""
@@ -4531,7 +4638,8 @@ msgstr ""
4531
  #: includes/functions.php:238 includes/functions.php:239
4532
  #: includes/functions.php:240 includes/functions.php:242
4533
  #: includes/functions.php:245 includes/functions.php:249
4534
- #: includes/functions.php:285 includes/functions.php:357
 
4535
  #, php-format
4536
  msgid " and then <strong>%s per %s</strong>."
4537
  msgstr ""
@@ -4541,7 +4649,8 @@ msgstr ""
4541
  #: includes/functions.php:242 includes/functions.php:243
4542
  #: includes/functions.php:244 includes/functions.php:246
4543
  #: includes/functions.php:249 includes/functions.php:253
4544
- #: includes/functions.php:289 includes/functions.php:361
 
4545
  #, php-format
4546
  msgid " and then <strong>%s every %d %s</strong>."
4547
  msgstr ""
@@ -4551,7 +4660,8 @@ msgstr ""
4551
  #: includes/functions.php:260 includes/functions.php:261
4552
  #: includes/functions.php:262 includes/functions.php:264
4553
  #: includes/functions.php:267 includes/functions.php:271
4554
- #: includes/functions.php:307 includes/functions.php:379 pages/levels.php:82
 
4555
  msgid "After your initial payment, your first payment is Free."
4556
  msgstr ""
4557
 
@@ -4560,7 +4670,8 @@ msgstr ""
4560
  #: includes/functions.php:264 includes/functions.php:265
4561
  #: includes/functions.php:266 includes/functions.php:268
4562
  #: includes/functions.php:271 includes/functions.php:275
4563
- #: includes/functions.php:311 includes/functions.php:383 pages/levels.php:86
 
4564
  #, php-format
4565
  msgid "After your initial payment, your first %d payments are Free."
4566
  msgstr ""
@@ -4570,7 +4681,8 @@ msgstr ""
4570
  #: includes/functions.php:271 includes/functions.php:272
4571
  #: includes/functions.php:273 includes/functions.php:275
4572
  #: includes/functions.php:278 includes/functions.php:282
4573
- #: includes/functions.php:318 includes/functions.php:390 pages/levels.php:93
 
4574
  #, php-format
4575
  msgid "After your initial payment, your first payment will cost %s."
4576
  msgstr ""
@@ -4580,7 +4692,8 @@ msgstr ""
4580
  #: includes/functions.php:275 includes/functions.php:276
4581
  #: includes/functions.php:277 includes/functions.php:279
4582
  #: includes/functions.php:282 includes/functions.php:286
4583
- #: includes/functions.php:322 includes/functions.php:394 pages/levels.php:97
 
4584
  #, php-format
4585
  msgid "After your initial payment, your first %d payments will cost %s."
4586
  msgstr ""
@@ -4590,7 +4703,8 @@ msgstr ""
4590
  #: includes/functions.php:286 includes/functions.php:287
4591
  #: includes/functions.php:288 includes/functions.php:290
4592
  #: includes/functions.php:293 includes/functions.php:297
4593
- #: includes/functions.php:333 includes/functions.php:405
 
4594
  #, php-format
4595
  msgid "Customers in %s will be charged %s%% tax."
4596
  msgstr ""
@@ -4600,7 +4714,8 @@ msgstr ""
4600
  #: includes/functions.php:300 includes/functions.php:301
4601
  #: includes/functions.php:302 includes/functions.php:304
4602
  #: includes/functions.php:307 includes/functions.php:311
4603
- #: includes/functions.php:347 includes/functions.php:419
 
4604
  #, php-format
4605
  msgid "Membership expires after %d %s."
4606
  msgstr ""
@@ -4612,7 +4727,7 @@ msgstr ""
4612
  #: includes/functions.php:569 includes/functions.php:570
4613
  #: includes/functions.php:576 includes/functions.php:592
4614
  #: includes/functions.php:615 includes/functions.php:694
4615
- #: includes/functions.php:766
4616
  msgid "User ID not found."
4617
  msgstr ""
4618
 
@@ -4623,7 +4738,8 @@ msgstr ""
4623
  #: includes/functions.php:586 includes/functions.php:587
4624
  #: includes/functions.php:589 includes/functions.php:596
4625
  #: includes/functions.php:612 includes/functions.php:635
4626
- #: includes/functions.php:714 includes/functions.php:786
 
4627
  msgid "Invalid level."
4628
  msgstr ""
4629
 
@@ -4634,12 +4750,12 @@ msgstr ""
4634
  #: includes/functions.php:597 includes/functions.php:598
4635
  #: includes/functions.php:600 includes/functions.php:607
4636
  #: includes/functions.php:623 includes/functions.php:646
4637
- #: includes/functions.php:725 includes/functions.php:797
 
4638
  msgid "not changing?"
4639
  msgstr ""
4640
 
4641
- #: includes/functions.php:808 includes/functions.php:881
4642
- #: includes/functions.php:905 includes/functions.php:537
4643
  #: includes/functions.php:559 includes/functions.php:570
4644
  #: includes/functions.php:581 includes/functions.php:582
4645
  #: includes/functions.php:583 includes/functions.php:590
@@ -4658,13 +4774,19 @@ msgstr ""
4658
  #: includes/functions.php:700 includes/functions.php:707
4659
  #: includes/functions.php:722 includes/functions.php:723
4660
  #: includes/functions.php:742 includes/functions.php:746
4661
- #: includes/functions.php:814 includes/functions.php:815
4662
- #: includes/functions.php:839 includes/functions.php:887
4663
- #: includes/functions.php:911
 
4664
  msgid "Error interacting with database"
4665
  msgstr ""
4666
 
4667
- #: includes/functions.php:947 includes/functions.php:986
 
 
 
 
 
4668
  #: includes/functions.php:629 includes/functions.php:651
4669
  #: includes/functions.php:667 includes/functions.php:668
4670
  #: includes/functions.php:678 includes/functions.php:681
@@ -4679,21 +4801,23 @@ msgstr ""
4679
  #: includes/functions.php:778 includes/functions.php:780
4680
  #: includes/functions.php:787 includes/functions.php:803
4681
  #: includes/functions.php:826 includes/functions.php:881
4682
- #: includes/functions.php:920 includes/functions.php:953
 
4683
  #: includes/functions.php:992
4684
  msgid "Membership level not found."
4685
  msgstr ""
4686
 
4687
- #: includes/functions.php:1356 includes/functions.php:1100
4688
  #: includes/functions.php:1101 includes/functions.php:1118
4689
  #: includes/functions.php:1142 includes/functions.php:1143
4690
  #: includes/functions.php:1150 includes/functions.php:1157
4691
  #: includes/functions.php:1173 includes/functions.php:1196
4692
- #: includes/functions.php:1290 includes/functions.php:1362
 
4693
  msgid "No code was given to check."
4694
  msgstr ""
4695
 
4696
- #: includes/functions.php:1365 includes/functions.php:1050
4697
  #: includes/functions.php:1072 includes/functions.php:1088
4698
  #: includes/functions.php:1099 includes/functions.php:1102
4699
  #: includes/functions.php:1109 includes/functions.php:1110
@@ -4702,11 +4826,11 @@ msgstr ""
4702
  #: includes/functions.php:1152 includes/functions.php:1159
4703
  #: includes/functions.php:1166 includes/functions.php:1182
4704
  #: includes/functions.php:1205 includes/functions.php:1299
4705
- #: includes/functions.php:1371
4706
  msgid "The discount code could not be found."
4707
  msgstr ""
4708
 
4709
- #: includes/functions.php:1380 includes/functions.php:1066
4710
  #: includes/functions.php:1088 includes/functions.php:1104
4711
  #: includes/functions.php:1115 includes/functions.php:1118
4712
  #: includes/functions.php:1124 includes/functions.php:1125
@@ -4715,12 +4839,12 @@ msgstr ""
4715
  #: includes/functions.php:1167 includes/functions.php:1174
4716
  #: includes/functions.php:1181 includes/functions.php:1197
4717
  #: includes/functions.php:1220 includes/functions.php:1314
4718
- #: includes/functions.php:1386
4719
  #, php-format
4720
  msgid "This discount code goes into effect on %s."
4721
  msgstr ""
4722
 
4723
- #: includes/functions.php:1387 includes/functions.php:1075
4724
  #: includes/functions.php:1097 includes/functions.php:1113
4725
  #: includes/functions.php:1124 includes/functions.php:1127
4726
  #: includes/functions.php:1131 includes/functions.php:1132
@@ -4729,12 +4853,12 @@ msgstr ""
4729
  #: includes/functions.php:1174 includes/functions.php:1181
4730
  #: includes/functions.php:1188 includes/functions.php:1204
4731
  #: includes/functions.php:1227 includes/functions.php:1321
4732
- #: includes/functions.php:1393
4733
  #, php-format
4734
  msgid "This discount code expired on %s."
4735
  msgstr ""
4736
 
4737
- #: includes/functions.php:1397 includes/functions.php:1087
4738
  #: includes/functions.php:1109 includes/functions.php:1125
4739
  #: includes/functions.php:1136 includes/functions.php:1139
4740
  #: includes/functions.php:1141 includes/functions.php:1142
@@ -4743,11 +4867,11 @@ msgstr ""
4743
  #: includes/functions.php:1184 includes/functions.php:1191
4744
  #: includes/functions.php:1198 includes/functions.php:1214
4745
  #: includes/functions.php:1237 includes/functions.php:1331
4746
- #: includes/functions.php:1403
4747
  msgid "This discount code is no longer valid."
4748
  msgstr ""
4749
 
4750
- #: includes/functions.php:1410 includes/functions.php:1102
4751
  #: includes/functions.php:1124 includes/functions.php:1140
4752
  #: includes/functions.php:1151 includes/functions.php:1154
4753
  #: includes/functions.php:1155 includes/functions.php:1164
@@ -4755,11 +4879,12 @@ msgstr ""
4755
  #: includes/functions.php:1196 includes/functions.php:1197
4756
  #: includes/functions.php:1204 includes/functions.php:1211
4757
  #: includes/functions.php:1227 includes/functions.php:1250
4758
- #: includes/functions.php:1344 includes/functions.php:1416
 
4759
  msgid "This discount code does not apply to this membership level."
4760
  msgstr ""
4761
 
4762
- #: includes/functions.php:1436 includes/functions.php:1110
4763
  #: includes/functions.php:1132 includes/functions.php:1148
4764
  #: includes/functions.php:1159 includes/functions.php:1162
4765
  #: includes/functions.php:1172 includes/functions.php:1180
@@ -4768,11 +4893,11 @@ msgstr ""
4768
  #: includes/functions.php:1223 includes/functions.php:1230
4769
  #: includes/functions.php:1237 includes/functions.php:1253
4770
  #: includes/functions.php:1276 includes/functions.php:1370
4771
- #: includes/functions.php:1442
4772
  msgid "This discount code is okay."
4773
  msgstr ""
4774
 
4775
- #: includes/functions.php:1463 includes/functions.php:1134
4776
  #: includes/functions.php:1156 includes/functions.php:1172
4777
  #: includes/functions.php:1183 includes/functions.php:1186
4778
  #: includes/functions.php:1196 includes/functions.php:1205
@@ -4781,11 +4906,11 @@ msgstr ""
4781
  #: includes/functions.php:1255 includes/functions.php:1262
4782
  #: includes/functions.php:1278 includes/functions.php:1301
4783
  #: includes/functions.php:1395 includes/functions.php:1397
4784
- #: includes/functions.php:1469
4785
  msgid "and"
4786
  msgstr ""
4787
 
4788
- #: includes/functions.php:1691 includes/functions.php:1319
4789
  #: includes/functions.php:1341 includes/functions.php:1361
4790
  #: includes/functions.php:1372 includes/functions.php:1375
4791
  #: includes/functions.php:1385 includes/functions.php:1394
@@ -4794,11 +4919,12 @@ msgstr ""
4794
  #: includes/functions.php:1450 includes/functions.php:1457
4795
  #: includes/functions.php:1473 includes/functions.php:1496
4796
  #: includes/functions.php:1501 includes/functions.php:1620
4797
- #: includes/functions.php:1624 includes/functions.php:1697
 
4798
  msgid "Sign Up for !!name!! Now"
4799
  msgstr ""
4800
 
4801
- #: includes/functions.php:1697 includes/functions.php:1325
4802
  #: includes/functions.php:1347 includes/functions.php:1367
4803
  #: includes/functions.php:1378 includes/functions.php:1381
4804
  #: includes/functions.php:1391 includes/functions.php:1400
@@ -4807,7 +4933,8 @@ msgstr ""
4807
  #: includes/functions.php:1456 includes/functions.php:1463
4808
  #: includes/functions.php:1479 includes/functions.php:1502
4809
  #: includes/functions.php:1507 includes/functions.php:1626
4810
- #: includes/functions.php:1630 includes/functions.php:1703
 
4811
  msgid "Please specify a level id."
4812
  msgstr ""
4813
 
@@ -4957,14 +5084,15 @@ msgstr ""
4957
  msgid "Paid Memberships Pro Data Update Required"
4958
  msgstr ""
4959
 
4960
- #: includes/updates.php:111
4961
  #, php-format
4962
  msgid ""
4963
  "(1) <a target=\"_blank\" href=\"%s\">Backup your WordPress database</a></"
4964
  "strong> and then (2) <a href=\"%s\">click here to start the update</a>."
4965
  msgstr ""
4966
 
4967
- #: includes/updates.php:132 includes/updates.php:123 includes/updates.php:136
 
4968
  msgid "All Paid Memberships Pro updates have finished."
4969
  msgstr ""
4970
 
@@ -4999,20 +5127,20 @@ msgid ""
4999
  "register to read."
5000
  msgstr ""
5001
 
5002
- #: pages/billing.php:26 pages/billing.php:14 pages/billing.php:23
5003
  #: pages/billing.php:26
5004
  #, php-format
5005
  msgid "Logged in as <strong>%s</strong>."
5006
  msgstr ""
5007
 
5008
- #: pages/billing.php:26 pages/billing.php:14 pages/billing.php:23
5009
  #: pages/billing.php:26
5010
  msgid "logout"
5011
  msgstr ""
5012
 
5013
- #: pages/billing.php:28 pages/cancel.php:52 pages/invoice.php:109
5014
- #: pages/levels.php:35 shortcodes/pmpro_account.php:44
5015
- #: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
5016
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
5017
  #: pages/billing.php:28 pages/cancel.php:52 pages/invoice.php:109
5018
  #: pages/levels.php:13 pages/levels.php:35 shortcodes/pmpro_account.php:44
@@ -5020,37 +5148,37 @@ msgstr ""
5020
  msgid "Level"
5021
  msgstr ""
5022
 
5023
- #: pages/billing.php:30 pages/account.php:14 pages/billing.php:18
5024
  #: pages/billing.php:27 pages/billing.php:30
5025
  msgid "Membership Fee"
5026
  msgstr ""
5027
 
5028
- #: pages/billing.php:34 pages/account.php:18 pages/billing.php:22
5029
  #: pages/billing.php:31 pages/billing.php:34 pages/levels.php:70
5030
  #, php-format
5031
  msgid "%s every %d %s."
5032
  msgstr ""
5033
 
5034
- #: pages/billing.php:36 pages/account.php:20 pages/billing.php:24
5035
  #: pages/billing.php:33 pages/billing.php:36 pages/levels.php:66
5036
  #, php-format
5037
  msgid "%s per %s."
5038
  msgstr ""
5039
 
5040
- #: pages/billing.php:45 pages/account.php:25 pages/account.php:29
5041
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
5042
  #: pages/billing.php:45
5043
  msgid "Duration"
5044
  msgstr ""
5045
 
5046
- #: pages/billing.php:55 pages/billing.php:39 pages/billing.php:43
5047
  #: pages/billing.php:52 pages/billing.php:55
5048
  msgid ""
5049
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
5050
  "paypal.com\">login to PayPal here</a> to update your billing information."
5051
  msgstr ""
5052
 
5053
- #: pages/billing.php:81 pages/checkout.php:326 pages/billing.php:65
5054
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
5055
  #: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
5056
  #: pages/checkout.php:318 pages/checkout.php:321 pages/checkout.php:324
@@ -5058,7 +5186,7 @@ msgstr ""
5058
  msgid "First Name"
5059
  msgstr ""
5060
 
5061
- #: pages/billing.php:85 pages/checkout.php:330 pages/billing.php:69
5062
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
5063
  #: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
5064
  #: pages/checkout.php:322 pages/checkout.php:325 pages/checkout.php:328
@@ -5066,7 +5194,7 @@ msgstr ""
5066
  msgid "Last Name"
5067
  msgstr ""
5068
 
5069
- #: pages/billing.php:89 pages/checkout.php:334 pages/billing.php:73
5070
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
5071
  #: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
5072
  #: pages/checkout.php:326 pages/checkout.php:329 pages/checkout.php:332
@@ -5074,7 +5202,7 @@ msgstr ""
5074
  msgid "Address 1"
5075
  msgstr ""
5076
 
5077
- #: pages/billing.php:93 pages/checkout.php:338 pages/billing.php:77
5078
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
5079
  #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
5080
  #: pages/checkout.php:330 pages/checkout.php:333 pages/checkout.php:336
@@ -5082,7 +5210,7 @@ msgstr ""
5082
  msgid "Address 2"
5083
  msgstr ""
5084
 
5085
- #: pages/billing.php:103 pages/checkout.php:348 pages/billing.php:87
5086
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
5087
  #: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:331
5088
  #: pages/checkout.php:340 pages/checkout.php:343 pages/checkout.php:346
@@ -5090,7 +5218,7 @@ msgstr ""
5090
  msgid "City"
5091
  msgstr ""
5092
 
5093
- #: pages/billing.php:107 pages/checkout.php:352 pages/billing.php:91
5094
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
5095
  #: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:335
5096
  #: pages/checkout.php:344 pages/checkout.php:347 pages/checkout.php:350
@@ -5098,7 +5226,7 @@ msgstr ""
5098
  msgid "State"
5099
  msgstr ""
5100
 
5101
- #: pages/billing.php:111 pages/checkout.php:356 pages/billing.php:95
5102
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
5103
  #: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:339
5104
  #: pages/checkout.php:348 pages/checkout.php:351 pages/checkout.php:354
@@ -5106,7 +5234,7 @@ msgstr ""
5106
  msgid "Postal Code"
5107
  msgstr ""
5108
 
5109
- #: pages/billing.php:120 pages/checkout.php:365 pages/billing.php:104
5110
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
5111
  #: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:348
5112
  #: pages/checkout.php:357 pages/checkout.php:360 pages/checkout.php:363
@@ -5114,7 +5242,7 @@ msgstr ""
5114
  msgid "City, State Zip"
5115
  msgstr ""
5116
 
5117
- #: pages/billing.php:173 pages/checkout.php:418 pages/billing.php:157
5118
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
5119
  #: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:401
5120
  #: pages/checkout.php:410 pages/checkout.php:413 pages/checkout.php:416
@@ -5122,7 +5250,7 @@ msgstr ""
5122
  msgid "Country"
5123
  msgstr ""
5124
 
5125
- #: pages/billing.php:198 pages/checkout.php:443 pages/billing.php:182
5126
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
5127
  #: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:426
5128
  #: pages/checkout.php:435 pages/checkout.php:438 pages/checkout.php:441
@@ -5130,7 +5258,7 @@ msgstr ""
5130
  msgid "Phone"
5131
  msgstr ""
5132
 
5133
- #: pages/billing.php:209 pages/checkout.php:220 pages/checkout.php:457
5134
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
5135
  #: pages/billing.php:209 pages/checkout.php:204 pages/checkout.php:207
5136
  #: pages/checkout.php:209 pages/checkout.php:216 pages/checkout.php:218
@@ -5140,7 +5268,7 @@ msgstr ""
5140
  msgid "E-mail Address"
5141
  msgstr ""
5142
 
5143
- #: pages/billing.php:213 pages/checkout.php:466 pages/billing.php:197
5144
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
5145
  #: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:449
5146
  #: pages/checkout.php:458 pages/checkout.php:462 pages/checkout.php:464
@@ -5148,18 +5276,18 @@ msgstr ""
5148
  msgid "Confirm E-mail"
5149
  msgstr ""
5150
 
5151
- #: pages/billing.php:234 pages/billing.php:217 pages/billing.php:221
5152
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
5153
  msgid "Credit Card Information"
5154
  msgstr ""
5155
 
5156
- #: pages/billing.php:235 pages/billing.php:217 pages/billing.php:221
5157
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
5158
  #, php-format
5159
  msgid "We accept %s"
5160
  msgstr ""
5161
 
5162
- #: pages/billing.php:364 pages/billing.php:309 pages/billing.php:313
5163
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
5164
  #: pages/billing.php:360 pages/billing.php:364
5165
  msgid ""
@@ -5184,7 +5312,7 @@ msgstr ""
5184
  msgid "No, keep my account"
5185
  msgstr ""
5186
 
5187
- #: pages/cancel.php:48 shortcodes/pmpro_account.php:40 pages/account.php:14
5188
  #: pages/cancel.php:48 shortcodes/pmpro_account.php:40
5189
  msgid "My Memberships"
5190
  msgstr ""
@@ -5304,25 +5432,25 @@ msgstr ""
5304
  msgid "Check Out with a Credit Card Here"
5305
  msgstr ""
5306
 
5307
- #: pages/checkout.php:692 pages/checkout.php:277 pages/checkout.php:284
5308
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
5309
- #: pages/checkout.php:681 pages/checkout.php:690 pages/checkout.php:696
5310
- #: pages/checkout.php:697
5311
  #, php-format
5312
  msgid "I agree to the %s"
5313
  msgstr ""
5314
 
5315
- #: pages/checkout.php:712 pages/checkout.php:667 pages/checkout.php:674
5316
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
5317
- #: pages/checkout.php:701 pages/checkout.php:710 pages/checkout.php:716
5318
- #: pages/checkout.php:717
5319
  msgid "Complete Payment"
5320
  msgstr ""
5321
 
5322
- #: pages/checkout.php:734 pages/checkout.php:687 pages/checkout.php:694
5323
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
5324
- #: pages/checkout.php:723 pages/checkout.php:732 pages/checkout.php:738
5325
- #: pages/checkout.php:739
5326
  msgid "Processing..."
5327
  msgstr ""
5328
 
@@ -5437,7 +5565,7 @@ msgstr ""
5437
  msgid "Select"
5438
  msgstr ""
5439
 
5440
- #: pages/levels.php:78 shortcodes/pmpro_account.php:61 pages/account.php:33
5441
  #: pages/levels.php:57 pages/levels.php:78 pages/levels.php:123
5442
  #: shortcodes/pmpro_account.php:59 shortcodes/pmpro_account.php:61
5443
  msgid "Renew"
@@ -5503,10 +5631,10 @@ msgstr ""
5503
  #: preheaders/billing.php:258 preheaders/billing.php:265
5504
  #: preheaders/billing.php:266 preheaders/billing.php:270
5505
  #: preheaders/billing.php:279 preheaders/checkout.php:332
5506
- #: preheaders/checkout.php:336 preheaders/checkout.php:458
5507
- #: preheaders/checkout.php:464 preheaders/checkout.php:465
5508
- #: preheaders/checkout.php:470 preheaders/checkout.php:481
5509
- #: preheaders/checkout.php:482
5510
  msgid "Please complete all required fields."
5511
  msgstr ""
5512
 
@@ -5514,10 +5642,10 @@ msgstr ""
5514
  #: preheaders/billing.php:263 preheaders/billing.php:268
5515
  #: preheaders/billing.php:269 preheaders/billing.php:273
5516
  #: preheaders/billing.php:284 preheaders/checkout.php:340
5517
- #: preheaders/checkout.php:344 preheaders/checkout.php:466
5518
- #: preheaders/checkout.php:473 preheaders/checkout.php:474
5519
- #: preheaders/checkout.php:478 preheaders/checkout.php:491
5520
- #: preheaders/checkout.php:492
5521
  msgid "Your email addresses do not match. Please try again."
5522
  msgstr ""
5523
 
@@ -5525,10 +5653,10 @@ msgstr ""
5525
  #: preheaders/billing.php:268 preheaders/billing.php:271
5526
  #: preheaders/billing.php:272 preheaders/billing.php:276
5527
  #: preheaders/billing.php:289 preheaders/checkout.php:345
5528
- #: preheaders/checkout.php:349 preheaders/checkout.php:471
5529
- #: preheaders/checkout.php:478 preheaders/checkout.php:480
5530
- #: preheaders/checkout.php:483 preheaders/checkout.php:497
5531
- #: preheaders/checkout.php:498
5532
  msgid "The email address entered is in an invalid format. Please try again."
5533
  msgstr ""
5534
 
@@ -5560,7 +5688,8 @@ msgstr ""
5560
  #: preheaders/checkout.php:34 preheaders/checkout.php:386
5561
  #: preheaders/checkout.php:28 preheaders/checkout.php:30
5562
  #: preheaders/checkout.php:31 preheaders/checkout.php:32
5563
- #: preheaders/checkout.php:354 preheaders/checkout.php:358
 
5564
  #: preheaders/checkout.php:480 preheaders/checkout.php:487
5565
  #: preheaders/checkout.php:491 preheaders/checkout.php:492
5566
  #: preheaders/checkout.php:508 preheaders/checkout.php:509
@@ -5574,79 +5703,82 @@ msgid "Checkout: Payment Information"
5574
  msgstr ""
5575
 
5576
  #: preheaders/checkout.php:101 preheaders/checkout.php:100
 
5577
  msgid "Set Up Your Account"
5578
  msgstr ""
5579
 
5580
  #: preheaders/checkout.php:331 preheaders/checkout.php:300
5581
- #: preheaders/checkout.php:304 preheaders/checkout.php:416
5582
- #: preheaders/checkout.php:421
5583
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
5584
  msgstr ""
5585
 
5586
  #: preheaders/checkout.php:367 preheaders/checkout.php:335
5587
- #: preheaders/checkout.php:339 preheaders/checkout.php:461
5588
- #: preheaders/checkout.php:468 preheaders/checkout.php:473
5589
- #: preheaders/checkout.php:485 preheaders/checkout.php:486
 
5590
  msgid "Your passwords do not match. Please try again."
5591
  msgstr ""
5592
 
5593
  #: preheaders/checkout.php:382 preheaders/checkout.php:350
5594
- #: preheaders/checkout.php:354 preheaders/checkout.php:476
5595
- #: preheaders/checkout.php:483 preheaders/checkout.php:486
5596
- #: preheaders/checkout.php:488 preheaders/checkout.php:503
5597
- #: preheaders/checkout.php:504
5598
  #, php-format
5599
  msgid "Please check the box to agree to the %s."
5600
  msgstr ""
5601
 
5602
  #: preheaders/checkout.php:389 preheaders/checkout.php:357
5603
- #: preheaders/checkout.php:361 preheaders/checkout.php:483
5604
- #: preheaders/checkout.php:490 preheaders/checkout.php:495
5605
- #: preheaders/checkout.php:512 preheaders/checkout.php:513
 
5606
  msgid "Are you a spammer?"
5607
  msgstr ""
5608
 
5609
  #: preheaders/checkout.php:410 preheaders/checkout.php:377
5610
- #: preheaders/checkout.php:381 preheaders/checkout.php:503
5611
- #: preheaders/checkout.php:510 preheaders/checkout.php:515
5612
- #: preheaders/checkout.php:518 preheaders/checkout.php:535
5613
- #: preheaders/checkout.php:536
5614
  msgid "That username is already taken. Please try another."
5615
  msgstr ""
5616
 
5617
  #: preheaders/checkout.php:415 preheaders/checkout.php:382
5618
- #: preheaders/checkout.php:386 preheaders/checkout.php:508
5619
- #: preheaders/checkout.php:515 preheaders/checkout.php:520
5620
- #: preheaders/checkout.php:524 preheaders/checkout.php:541
5621
- #: preheaders/checkout.php:542
5622
  msgid "That email address is already taken. Please try another."
5623
  msgstr ""
5624
 
5625
  #: preheaders/checkout.php:446 preheaders/checkout.php:397
5626
  #: preheaders/checkout.php:399 preheaders/checkout.php:416
5627
- #: preheaders/checkout.php:420 preheaders/checkout.php:525
5628
- #: preheaders/checkout.php:532 preheaders/checkout.php:537
5629
- #: preheaders/checkout.php:544 preheaders/checkout.php:561
5630
- #: preheaders/checkout.php:562
5631
  #, php-format
5632
  msgid "reCAPTCHA failed. (%s) Please try again."
5633
  msgstr ""
5634
 
5635
  #: preheaders/checkout.php:533 preheaders/checkout.php:482
5636
  #: preheaders/checkout.php:484 preheaders/checkout.php:501
5637
- #: preheaders/checkout.php:505 preheaders/checkout.php:647
5638
- #: preheaders/checkout.php:654 preheaders/checkout.php:659
5639
- #: preheaders/checkout.php:683 preheaders/checkout.php:701
5640
- #: preheaders/checkout.php:702
5641
  msgid "Payment accepted."
5642
  msgstr ""
5643
 
5644
  #: preheaders/checkout.php:539 preheaders/checkout.php:490
5645
  #: preheaders/checkout.php:492 preheaders/checkout.php:509
5646
- #: preheaders/checkout.php:513 preheaders/checkout.php:653
5647
- #: preheaders/checkout.php:660 preheaders/checkout.php:665
5648
- #: preheaders/checkout.php:691 preheaders/checkout.php:709
5649
- #: preheaders/checkout.php:710
5650
  msgid ""
5651
  "Unknown error generating account. Please contact us to set up your "
5652
  "membership."
@@ -5655,10 +5787,11 @@ msgstr ""
5655
  #: preheaders/checkout.php:614 preheaders/checkout.php:550
5656
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
5657
  #: preheaders/checkout.php:571 preheaders/checkout.php:575
5658
- #: preheaders/checkout.php:581 preheaders/checkout.php:785
5659
- #: preheaders/checkout.php:792 preheaders/checkout.php:797
5660
- #: preheaders/checkout.php:825 preheaders/checkout.php:844
5661
- #: preheaders/checkout.php:859 preheaders/checkout.php:860
 
5662
  msgid ""
5663
  "Your payment was accepted, but there was an error setting up your account. "
5664
  "Please contact us."
@@ -5668,10 +5801,10 @@ msgstr ""
5668
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
5669
  #: preheaders/checkout.php:712 preheaders/checkout.php:722
5670
  #: preheaders/checkout.php:730 preheaders/checkout.php:754
5671
- #: preheaders/checkout.php:953 preheaders/checkout.php:960
5672
- #: preheaders/checkout.php:970 preheaders/checkout.php:983
5673
- #: preheaders/checkout.php:1030 preheaders/checkout.php:1045
5674
- #: preheaders/checkout.php:1046
5675
  msgid ""
5676
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5677
  "authorized, but we cancelled the order immediately. You should not try to "
@@ -5682,10 +5815,10 @@ msgstr ""
5682
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
5683
  #: preheaders/checkout.php:715 preheaders/checkout.php:725
5684
  #: preheaders/checkout.php:733 preheaders/checkout.php:757
5685
- #: preheaders/checkout.php:956 preheaders/checkout.php:963
5686
- #: preheaders/checkout.php:973 preheaders/checkout.php:988
5687
- #: preheaders/checkout.php:1035 preheaders/checkout.php:1050
5688
- #: preheaders/checkout.php:1051
5689
  msgid ""
5690
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5691
  "was charged, but we couldn't assign your membership. You should not submit "
@@ -5696,10 +5829,10 @@ msgstr ""
5696
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
5697
  #: preheaders/checkout.php:726 preheaders/checkout.php:736
5698
  #: preheaders/checkout.php:744 preheaders/checkout.php:768
5699
- #: preheaders/checkout.php:967 preheaders/checkout.php:974
5700
- #: preheaders/checkout.php:984 preheaders/checkout.php:1001
5701
- #: preheaders/checkout.php:1048 preheaders/checkout.php:1063
5702
- #: preheaders/checkout.php:1064
5703
  #, php-format
5704
  msgid ""
5705
  "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
@@ -5710,10 +5843,10 @@ msgstr ""
5710
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
5711
  #: preheaders/checkout.php:728 preheaders/checkout.php:738
5712
  #: preheaders/checkout.php:746 preheaders/checkout.php:770
5713
- #: preheaders/checkout.php:969 preheaders/checkout.php:976
5714
- #: preheaders/checkout.php:986 preheaders/checkout.php:1003
5715
- #: preheaders/checkout.php:1050 preheaders/checkout.php:1065
5716
- #: preheaders/checkout.php:1066
5717
  msgid "A Payment Gateway must be set up before any payments will be processed."
5718
  msgstr ""
5719
 
@@ -5759,6 +5892,7 @@ msgstr ""
5759
  #: services/authnet-silent-post.php:149 services/authnet-silent-post.php:133
5760
  #: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
5761
  #: services/authnet-silent-post.php:144 services/authnet-silent-post.php:145
 
5762
  msgid ""
5763
  "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
5764
  "Information From Authorize.net"
@@ -5768,68 +5902,69 @@ msgstr ""
5768
  #: services/stripe-webhook.php:194 services/stripe-webhook.php:270
5769
  #: services/stripe-webhook.php:271 services/stripe-webhook.php:272
5770
  #: services/stripe-webhook.php:283 services/stripe-webhook.php:290
 
5771
  #, php-format
5772
  msgid ""
5773
  "%s has had their payment subscription cancelled by Stripe. Please check that "
5774
  "this user's membership is cancelled on your site if it should be."
5775
  msgstr ""
5776
 
5777
- #: shortcodes/pmpro_account.php:45 pages/account.php:19
5778
  #: shortcodes/pmpro_account.php:45
5779
  msgid "Billing"
5780
  msgstr ""
5781
 
5782
- #: shortcodes/pmpro_account.php:65 pages/account.php:36
5783
  #: shortcodes/pmpro_account.php:62 shortcodes/pmpro_account.php:65
5784
  msgid "Update Billing Info"
5785
  msgstr ""
5786
 
5787
- #: shortcodes/pmpro_account.php:71 pages/account.php:42
5788
  #: shortcodes/pmpro_account.php:68 shortcodes/pmpro_account.php:71
5789
  msgid "Change"
5790
  msgstr ""
5791
 
5792
- #: shortcodes/pmpro_account.php:93 pages/account.php:64
5793
  #: shortcodes/pmpro_account.php:90 shortcodes/pmpro_account.php:93
5794
  msgid "View all Membership Options"
5795
  msgstr ""
5796
 
5797
- #: shortcodes/pmpro_account.php:102 pages/account.php:46 pages/account.php:50
5798
  #: pages/account.php:71 shortcodes/pmpro_account.php:99
5799
  #: shortcodes/pmpro_account.php:102
5800
  msgid "My Account"
5801
  msgstr ""
5802
 
5803
- #: shortcodes/pmpro_account.php:113 pages/account.php:55 pages/account.php:59
5804
  #: pages/account.php:80 shortcodes/pmpro_account.php:110
5805
  #: shortcodes/pmpro_account.php:113
5806
  msgid "Edit Profile"
5807
  msgstr ""
5808
 
5809
- #: shortcodes/pmpro_account.php:114 pages/account.php:56 pages/account.php:60
5810
  #: pages/account.php:81 shortcodes/pmpro_account.php:111
5811
  #: shortcodes/pmpro_account.php:114
5812
  msgid "Change Password"
5813
  msgstr ""
5814
 
5815
- #: shortcodes/pmpro_account.php:121 pages/account.php:87 pages/account.php:125
5816
  #: pages/account.php:129 shortcodes/pmpro_account.php:118
5817
  #: shortcodes/pmpro_account.php:121
5818
  msgid "Past Invoices"
5819
  msgstr ""
5820
 
5821
- #: shortcodes/pmpro_account.php:127 pages/account.php:93
5822
  #: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:127
5823
  msgid "Amount"
5824
  msgstr ""
5825
 
5826
- #: shortcodes/pmpro_account.php:155 pages/account.php:121
5827
  #: pages/account.php:140 pages/account.php:144
5828
  #: shortcodes/pmpro_account.php:152 shortcodes/pmpro_account.php:155
5829
  msgid "View All Invoices"
5830
  msgstr ""
5831
 
5832
- #: shortcodes/pmpro_account.php:162 pages/account.php:128
5833
  #: pages/account.php:146 pages/account.php:150
5834
  #: shortcodes/pmpro_account.php:159 shortcodes/pmpro_account.php:162
5835
  msgid "Member Links"
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"
23
  #: adminpages/addons.php:21 adminpages/advancedsettings.php:5
24
  #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
25
  #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
26
+ #: adminpages/memberslist.php:5 adminpages/orders-csv.php:4
27
+ #: adminpages/orders-csv.php:5 adminpages/orders-print.php:12
28
+ #: adminpages/orders.php:4 adminpages/orders.php:5
29
  #: adminpages/pagesettings.php:4 adminpages/pagesettings.php:5
30
  #: adminpages/paymentsettings.php:5 adminpages/updates.php:5
31
  #: includes/license.php:36
32
  msgid "You do not have permissions to perform this action."
33
  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
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
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 ""
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
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
445
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:187
446
  #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
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
  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
506
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:563
507
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
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
  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
666
  #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
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
684
  msgid "ID"
685
  msgstr ""
686
 
687
+ #: adminpages/discountcodes.php:312 adminpages/orders.php:375
688
  #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
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
 
696
  #: adminpages/discountcodes.php:316 adminpages/discountcodes.php:588
697
+ #: adminpages/orders.php:380 adminpages/orders.php:1135
698
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
699
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
700
  #: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
701
  #: adminpages/discountcodes.php:586 adminpages/discountcodes.php:587
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
 
715
  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
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
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
823
  #: classes/gateways/class.pmprogateway_stripe.php:536
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
845
  #: classes/gateways/class.pmprogateway_stripe.php:536
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
867
  #: classes/gateways/class.pmprogateway_stripe.php:536
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
889
  #: classes/gateways/class.pmprogateway_stripe.php:536
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
  "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
1081
  #: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:564
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
  "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
1108
  #: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:566
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
  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
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
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
1322
  #: classes/gateways/class.pmprogateway_stripe.php:634
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
 
1361
 
1362
  #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1363
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1364
+ #: classes/gateways/class.pmprogateway_paypal.php:130
1365
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:145
1366
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1367
  #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1368
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
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 ""
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
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
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
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
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
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
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
 
1575
  msgid "Members List"
1576
  msgstr ""
1577
 
1578
+ #: adminpages/memberslist.php:26 adminpages/orders.php:864
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
 
1585
+ #: adminpages/memberslist.php:30 adminpages/orders.php:879
1586
  #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:276
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
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
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
1719
  msgid "Search all levels"
1720
  msgstr ""
1721
 
1722
+ #: adminpages/orders.php:146 adminpages/orders.php:146
1723
+ #: adminpages/orders.php:155
1724
  msgid "Invoice emailed successfully."
1725
  msgstr ""
1726
 
1727
+ #: adminpages/orders.php:149 adminpages/orders.php:149
1728
+ #: adminpages/orders.php:160
1729
  msgid "Error emailing invoice."
1730
  msgstr ""
1731
 
1732
  #: adminpages/orders.php:162 adminpages/orders.php:26 adminpages/orders.php:67
1733
+ #: adminpages/orders.php:162 adminpages/orders.php:175
1734
  msgid "Order deleted successfully."
1735
  msgstr ""
1736
 
1737
  #: adminpages/orders.php:165 adminpages/orders.php:31 adminpages/orders.php:72
1738
+ #: adminpages/orders.php:165 adminpages/orders.php:180
1739
  msgid "Error deleting order."
1740
  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
 
1838
+ #: adminpages/orders.php:512 adminpages/templates/orders-email.php:60
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"
1846
  msgstr ""
1847
 
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
 
1854
+ #: adminpages/orders.php:535 adminpages/orders.php:1139
1855
  #: adminpages/templates/orders-email.php:64
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"
1866
  msgstr ""
1867
 
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
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
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
 
1916
+ #: adminpages/orders.php:575
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
1925
  msgid "Account Number"
1926
  msgstr ""
1927
 
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
 
1946
+ #: adminpages/orders.php:610 adminpages/orders.php:1143
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
 
1956
+ #: adminpages/orders.php:643 adminpages/orders.php:1141
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
 
1966
+ #: adminpages/orders.php:664 adminpages/paymentsettings.php:124
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
 
1975
+ #: adminpages/orders.php:671 adminpages/paymentsettings.php:128
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
 
1984
+ #: adminpages/orders.php:673 adminpages/paymentsettings.php:129
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
 
2073
+ #: adminpages/orders.php:841 includes/adminpages.php:56
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
 
2138
+ #: adminpages/orders.php:1060 adminpages/orders.php:1063
2139
  #: adminpages/orders.php:535 adminpages/orders.php:538
2140
  #: adminpages/orders.php:777 adminpages/orders.php:780
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 ""
2154
 
2155
+ #: adminpages/orders.php:1136 adminpages/reports/login.php:159
2156
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
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
2181
  msgid "Membership Level"
2182
  msgstr ""
2183
 
2184
+ #: adminpages/orders.php:1140 adminpages/orders.php:1220
2185
  #: adminpages/orders.php:603 adminpages/orders.php:651
2186
  #: adminpages/orders.php:906 adminpages/orders.php:916
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
 
2208
+ #: adminpages/orders.php:1226 adminpages/orders.php:653
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
 
2215
+ #: adminpages/orders.php:1245 adminpages/orders.php:664
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 "
2223
  "want to delete order %s?"
2224
  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
 
2236
+ #: adminpages/orders.php:1262 adminpages/orders.php:674
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
  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
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
2869
+ #: classes/class.memberorder.php:706 includes/cleanup.php:24
2870
  #, php-format
2871
  msgid ""
2872
  "There was an error canceling the subscription for user with ID=%s. You will "
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
2924
  #: classes/gateways/class.pmprogateway_braintree.php:349
2925
  #: classes/gateways/class.pmprogateway_braintree.php:362
2926
  #: classes/gateways/class.pmprogateway_braintree.php:364
2927
+ #: classes/gateways/class.pmprogateway_braintree.php:367
2928
  #: classes/gateways/class.pmprogateway_braintree.php:368
2929
  #: classes/gateways/class.pmprogateway_stripe.php:495
2930
  #: classes/gateways/class.pmprogateway_stripe.php:496
2931
  #: classes/gateways/class.pmprogateway_stripe.php:506
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
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
3042
+ #: classes/class.pmproemail.php:810 classes/class.pmproemail.php:811
3043
  #, php-format
3044
  msgid "The new level is %s"
3045
  msgstr ""
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
3058
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:778
3059
+ #: classes/class.pmproemail.php:779 classes/class.pmproemail.php:803
3060
+ #: classes/class.pmproemail.php:806 classes/class.pmproemail.php:815
3061
+ #: classes/class.pmproemail.php:816 classes/class.pmproemail.php:817
3062
  #, php-format
3063
  msgid "This membership will expire on %s"
3064
  msgstr ""
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
3070
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:782
3071
+ #: classes/class.pmproemail.php:783 classes/class.pmproemail.php:807
3072
+ #: classes/class.pmproemail.php:810 classes/class.pmproemail.php:819
3073
+ #: classes/class.pmproemail.php:820 classes/class.pmproemail.php:821
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
3081
  #, php-format
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 ""
3095
 
3096
  #: classes/gateways/class.pmprogateway.php:55
3097
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
3098
+ #: classes/gateways/class.pmprogateway_check.php:210
3099
  #: classes/gateways/class.pmprogateway_cybersource.php:171
3100
  #: classes/gateways/class.pmprogateway_payflowpro.php:164
3101
+ #: classes/gateways/class.pmprogateway_paypal.php:272
3102
  #: classes/gateways/class.pmprogateway.php:55
3103
  #: classes/gateways/class.pmprogateway_authorizenet.php:55
3104
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
3120
  #: classes/gateways/class.pmprogateway_authorizenet.php:222
3121
  #: classes/gateways/class.pmprogateway_authorizenet.php:227
3122
  #: classes/gateways/class.pmprogateway_authorizenet.php:244
3123
+ #: classes/gateways/class.pmprogateway_check.php:262
3124
+ #: classes/gateways/class.pmprogateway_check.php:267
3125
+ #: classes/gateways/class.pmprogateway_check.php:285
3126
  #: classes/gateways/class.pmprogateway_cybersource.php:222
3127
  #: classes/gateways/class.pmprogateway_cybersource.php:227
3128
  #: classes/gateways/class.pmprogateway_cybersource.php:245
3129
  #: classes/gateways/class.pmprogateway_payflowpro.php:187
3130
  #: classes/gateways/class.pmprogateway_payflowpro.php:192
3131
+ #: classes/gateways/class.pmprogateway_paypal.php:295
3132
  #: classes/gateways/class.pmprogateway.php:106
3133
  #: classes/gateways/class.pmprogateway.php:111
3134
  #: classes/gateways/class.pmprogateway.php:129
3165
 
3166
  #: classes/gateways/class.pmprogateway.php:113
3167
  #: classes/gateways/class.pmprogateway_authorizenet.php:228
3168
+ #: classes/gateways/class.pmprogateway_check.php:269
3169
  #: classes/gateways/class.pmprogateway_cybersource.php:229
3170
  #: classes/gateways/class.pmprogateway.php:113
3171
  #: classes/gateways/class.pmprogateway_authorizenet.php:112
3236
  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
3246
  msgid "Braintree Payments"
3247
  msgstr ""
3248
 
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
 
3255
+ #: classes/gateways/class.pmprogateway_braintree.php:138
3256
  #: classes/gateways/class.pmprogateway_cybersource.php:106
3257
  #: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
3258
  #: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
3263
  msgid "Merchant ID"
3264
  msgstr ""
3265
 
3266
+ #: classes/gateways/class.pmprogateway_braintree.php:146
3267
  #: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
3268
  #: adminpages/paymentsettings.php:311
3269
  #: classes/gateways/class.pmprogateway_braintree.php:132
3271
  msgid "Public Key"
3272
  msgstr ""
3273
 
3274
+ #: classes/gateways/class.pmprogateway_braintree.php:154
3275
  #: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
3276
  #: adminpages/paymentsettings.php:319
3277
  #: classes/gateways/class.pmprogateway_braintree.php:140
3279
  msgid "Private Key"
3280
  msgstr ""
3281
 
3282
+ #: classes/gateways/class.pmprogateway_braintree.php:162
3283
  #: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
3284
  #: adminpages/paymentsettings.php:327
3285
  #: classes/gateways/class.pmprogateway_braintree.php:148
3287
  msgid "Client-Side Encryption Key"
3288
  msgstr ""
3289
 
3290
+ #: classes/gateways/class.pmprogateway_braintree.php:170
3291
+ #: classes/gateways/class.pmprogateway_stripe.php:217
3292
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
3293
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
3294
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
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
 
3306
+ #: classes/gateways/class.pmprogateway_braintree.php:174
3307
  #: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
3308
  #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
3309
  #: classes/gateways/class.pmprogateway_braintree.php:160
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
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
3330
  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
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
3350
  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
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
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
3380
+ #: classes/gateways/class.pmprogateway_braintree.php:358
3381
  #: classes/gateways/class.pmprogateway_braintree.php:359
3382
  #: classes/gateways/class.pmprogateway_stripe.php:486
3383
  #: classes/gateways/class.pmprogateway_stripe.php:487
3384
  #: classes/gateways/class.pmprogateway_stripe.php:497
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
3403
+ #: classes/gateways/class.pmprogateway_braintree.php:359
3404
  #: classes/gateways/class.pmprogateway_braintree.php:360
3405
  #: classes/gateways/class.pmprogateway_stripe.php:487
3406
  #: classes/gateways/class.pmprogateway_stripe.php:488
3407
  #: classes/gateways/class.pmprogateway_stripe.php:498
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
3426
+ #: classes/gateways/class.pmprogateway_braintree.php:369
3427
  #: classes/gateways/class.pmprogateway_braintree.php:370
3428
  #: classes/gateways/class.pmprogateway_stripe.php:497
3429
  #: classes/gateways/class.pmprogateway_stripe.php:498
3430
  #: classes/gateways/class.pmprogateway_stripe.php:508
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
3440
  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
3448
  #: classes/gateways/class.pmprogateway_braintree.php:421
3449
+ #: classes/gateways/class.pmprogateway_braintree.php:424
3450
  #: classes/gateways/class.pmprogateway_braintree.php:425
3451
  #: classes/gateways/class.pmprogateway_stripe.php:53
3452
  #: classes/gateways/class.pmprogateway_stripe.php:1011
3456
  #: classes/gateways/class.pmprogateway_stripe.php:1040
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
 
3463
+ #: classes/gateways/class.pmprogateway_braintree.php:484
3464
  #: classes/gateways/class.pmprogateway_braintree.php:120
3465
  #: classes/gateways/class.pmprogateway_braintree.php:465
3466
  #: classes/gateways/class.pmprogateway_braintree.php:478
3467
  #: classes/gateways/class.pmprogateway_braintree.php:480
3468
+ #: classes/gateways/class.pmprogateway_braintree.php:483
3469
  #: classes/gateways/class.pmprogateway_braintree.php:484
3470
  msgid "Error during settlement:"
3471
  msgstr ""
3472
 
3473
+ #: classes/gateways/class.pmprogateway_braintree.php:493
3474
  #: classes/gateways/class.pmprogateway_braintree.php:129
3475
  #: classes/gateways/class.pmprogateway_braintree.php:474
3476
  #: classes/gateways/class.pmprogateway_braintree.php:487
3477
  #: classes/gateways/class.pmprogateway_braintree.php:489
3478
+ #: classes/gateways/class.pmprogateway_braintree.php:492
3479
  #: classes/gateways/class.pmprogateway_braintree.php:493
3480
  msgid "Error during charge:"
3481
  msgstr ""
3482
 
3483
+ #: classes/gateways/class.pmprogateway_braintree.php:585
3484
  #: classes/gateways/class.pmprogateway_braintree.php:198
3485
  #: classes/gateways/class.pmprogateway_braintree.php:221
3486
  #: classes/gateways/class.pmprogateway_braintree.php:566
3487
  #: classes/gateways/class.pmprogateway_braintree.php:579
3488
  #: classes/gateways/class.pmprogateway_braintree.php:581
3489
+ #: classes/gateways/class.pmprogateway_braintree.php:584
3490
  #: classes/gateways/class.pmprogateway_braintree.php:585
3491
  msgid "Failed to update customer."
3492
  msgstr ""
3493
 
3494
+ #: classes/gateways/class.pmprogateway_braintree.php:633
3495
  #: classes/gateways/class.pmprogateway_braintree.php:246
3496
  #: classes/gateways/class.pmprogateway_braintree.php:269
3497
  #: classes/gateways/class.pmprogateway_braintree.php:614
3498
  #: classes/gateways/class.pmprogateway_braintree.php:627
3499
  #: classes/gateways/class.pmprogateway_braintree.php:629
3500
+ #: classes/gateways/class.pmprogateway_braintree.php:632
3501
  #: classes/gateways/class.pmprogateway_braintree.php:633
3502
  msgid "Failed to create customer."
3503
  msgstr ""
3504
 
3505
+ #: classes/gateways/class.pmprogateway_braintree.php:640
3506
  #: classes/gateways/class.pmprogateway_braintree.php:253
3507
  #: classes/gateways/class.pmprogateway_braintree.php:276
3508
  #: classes/gateways/class.pmprogateway_braintree.php:621
3509
  #: classes/gateways/class.pmprogateway_braintree.php:634
3510
  #: classes/gateways/class.pmprogateway_braintree.php:636
3511
+ #: classes/gateways/class.pmprogateway_braintree.php:639
3512
  #: classes/gateways/class.pmprogateway_braintree.php:640
3513
  msgid "Error creating customer record with Braintree:"
3514
  msgstr ""
3515
 
3516
+ #: classes/gateways/class.pmprogateway_braintree.php:740
3517
  #: classes/gateways/class.pmprogateway_braintree.php:344
3518
  #: classes/gateways/class.pmprogateway_braintree.php:345
3519
  #: classes/gateways/class.pmprogateway_braintree.php:376
3520
  #: classes/gateways/class.pmprogateway_braintree.php:721
3521
  #: classes/gateways/class.pmprogateway_braintree.php:734
3522
  #: classes/gateways/class.pmprogateway_braintree.php:736
3523
+ #: classes/gateways/class.pmprogateway_braintree.php:739
3524
  #: classes/gateways/class.pmprogateway_braintree.php:740
3525
  msgid "Error subscribing customer to plan with Braintree:"
3526
  msgstr ""
3527
 
3528
+ #: classes/gateways/class.pmprogateway_braintree.php:755
3529
  #: classes/gateways/class.pmprogateway_braintree.php:359
3530
  #: classes/gateways/class.pmprogateway_braintree.php:360
3531
  #: classes/gateways/class.pmprogateway_braintree.php:391
3532
  #: classes/gateways/class.pmprogateway_braintree.php:736
3533
  #: classes/gateways/class.pmprogateway_braintree.php:749
3534
  #: classes/gateways/class.pmprogateway_braintree.php:751
3535
+ #: classes/gateways/class.pmprogateway_braintree.php:754
3536
  #: classes/gateways/class.pmprogateway_braintree.php:755
3537
  msgid "Failed to subscribe with Braintree:"
3538
  msgstr ""
3539
 
3540
+ #: classes/gateways/class.pmprogateway_braintree.php:793
3541
+ #: classes/gateways/class.pmprogateway_braintree.php:806
3542
+ #: classes/gateways/class.pmprogateway_braintree.php:813
3543
  #: classes/gateways/class.pmprogateway_braintree.php:397
3544
  #: classes/gateways/class.pmprogateway_braintree.php:398
3545
  #: classes/gateways/class.pmprogateway_braintree.php:410
3552
  #: classes/gateways/class.pmprogateway_braintree.php:774
3553
  #: classes/gateways/class.pmprogateway_braintree.php:787
3554
  #: classes/gateways/class.pmprogateway_braintree.php:789
3555
+ #: classes/gateways/class.pmprogateway_braintree.php:792
3556
  #: classes/gateways/class.pmprogateway_braintree.php:793
3557
  #: classes/gateways/class.pmprogateway_braintree.php:794
3558
  #: classes/gateways/class.pmprogateway_braintree.php:800
3559
  #: classes/gateways/class.pmprogateway_braintree.php:802
3560
+ #: classes/gateways/class.pmprogateway_braintree.php:805
3561
  #: classes/gateways/class.pmprogateway_braintree.php:806
3562
  #: classes/gateways/class.pmprogateway_braintree.php:807
3563
  #: classes/gateways/class.pmprogateway_braintree.php:809
3564
+ #: classes/gateways/class.pmprogateway_braintree.php:812
3565
  #: classes/gateways/class.pmprogateway_braintree.php:813
3566
  #: classes/gateways/class.pmprogateway_stripe.php:343
3567
  #: classes/gateways/class.pmprogateway_stripe.php:344
3575
  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
3586
  msgid "Pay by Check"
3587
  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
 
3594
+ #: classes/gateways/class.pmprogateway_check.php:106
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
 
3601
+ #: classes/gateways/class.pmprogateway_check.php:110
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
3680
  msgstr ""
3681
 
3682
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3683
+ #: classes/gateways/class.pmprogateway_paypal.php:302
3684
  #: classes/gateways/class.pmprogateway_payflowpro.php:57
3685
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3686
  #: classes/gateways/class.pmprogateway_paypal.php:57
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
3700
  msgid "PayPal Website Payments Pro"
3701
  msgstr ""
3702
 
3703
+ #: classes/gateways/class.pmprogateway_paypal.php:125
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
3710
  msgid "PayPal Settings"
3711
  msgstr ""
3712
 
3713
+ #: classes/gateways/class.pmprogateway_paypal.php:130
3714
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:145
3715
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3716
  #: adminpages/paymentsettings.php:179
3717
  #: classes/gateways/class.pmprogateway_paypal.php:118
3726
  "here.</a>"
3727
  msgstr ""
3728
 
3729
+ #: classes/gateways/class.pmprogateway_paypal.php:135
3730
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:150
3731
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3732
  #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3733
  #: adminpages/paymentsettings.php:236
3738
  msgid "Gateway Account Email"
3739
  msgstr ""
3740
 
3741
+ #: classes/gateways/class.pmprogateway_paypal.php:143
3742
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:158
3743
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3744
  #: classes/gateways/class.pmprogateway_twocheckout.php:119
3745
  #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
3755
  msgid "API Username"
3756
  msgstr ""
3757
 
3758
+ #: classes/gateways/class.pmprogateway_paypal.php:151
3759
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:166
3760
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3761
  #: classes/gateways/class.pmprogateway_twocheckout.php:128
3762
  #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
3772
  msgid "API Password"
3773
  msgstr ""
3774
 
3775
+ #: classes/gateways/class.pmprogateway_paypal.php:159
3776
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:174
3777
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3778
  #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3779
  #: adminpages/paymentsettings.php:260
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"
3790
+ msgstr ""
3791
+
3792
+ #: classes/gateways/class.pmprogateway_paypal.php:178
3793
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:193
3794
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3795
  #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3796
  #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
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."
3809
  msgstr ""
3810
 
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
3822
  msgid "Check Out with PayPal"
3823
  msgstr ""
3824
 
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
 
3839
+ #: classes/gateways/class.pmprogateway_paypal.php:207
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
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
 
3857
+ #: classes/gateways/class.pmprogateway_paypal.php:631
3858
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:777
3859
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:464
3860
  #: classes/gateways/class.pmprogateway_paypal.php:385
3861
  #: classes/gateways/class.pmprogateway_paypal.php:605
3862
  #: classes/gateways/class.pmprogateway_paypal.php:607
3878
  "to make sure you are not charged going forward."
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
3888
  msgid "PayPal Express"
3889
  msgstr ""
3890
 
3891
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
3892
  #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
3893
  #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3894
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3896
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3897
  msgstr ""
3898
 
3899
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:301
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
3929
 
3930
  #: classes/gateways/class.pmprogateway_stripe.php:55
3931
  #: classes/gateways/class.pmprogateway_stripe.php:51
3932
+ #: classes/gateways/class.pmprogateway_stripe.php:55
3933
  #, php-format
3934
  msgid ""
3935
  "The %s gateway depends on the %s PHP extension. Please enable it, or ask "
3936
  "your hosting provider to enable it"
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
3949
  msgid "Stripe"
3950
  msgstr ""
3951
 
3952
+ #: classes/gateways/class.pmprogateway_stripe.php:184
3953
  #: classes/gateways/class.pmprogateway_stripe.php:148
3954
  #: classes/gateways/class.pmprogateway_stripe.php:149
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
 
3961
+ #: classes/gateways/class.pmprogateway_stripe.php:189
3962
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3963
  #: adminpages/paymentsettings.php:286
3964
  #: classes/gateways/class.pmprogateway_stripe.php:153
3965
  #: classes/gateways/class.pmprogateway_stripe.php:154
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
 
3972
+ #: classes/gateways/class.pmprogateway_stripe.php:197
3973
  #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3974
  #: adminpages/paymentsettings.php:294
3975
  #: classes/gateways/class.pmprogateway_stripe.php:161
3976
  #: classes/gateways/class.pmprogateway_stripe.php:162
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
 
3983
+ #: classes/gateways/class.pmprogateway_stripe.php:205
3984
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3985
  #: adminpages/paymentsettings.php:432
3986
  #: classes/gateways/class.pmprogateway_stripe.php:169
3987
  #: classes/gateways/class.pmprogateway_stripe.php:170
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
 
3994
+ #: classes/gateways/class.pmprogateway_stripe.php:212
3995
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3996
  #: classes/gateways/class.pmprogateway_stripe.php:176
3997
  #: classes/gateways/class.pmprogateway_stripe.php:177
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 "
4004
  "verification in the Stripe dashboard settings.</strong>"
4005
  msgstr ""
4006
 
4007
+ #: classes/gateways/class.pmprogateway_stripe.php:220
4008
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
4009
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
4010
  #: classes/gateways/class.pmprogateway_stripe.php:184
4011
  #: classes/gateways/class.pmprogateway_stripe.php:185
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
4022
  #: classes/gateways/class.pmprogateway_stripe.php:582
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
4033
  #: classes/gateways/class.pmprogateway_stripe.php:586
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
4046
  #: classes/gateways/class.pmprogateway_stripe.php:588
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
4072
  #: classes/gateways/class.pmprogateway_stripe.php:784
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
4091
  #: classes/gateways/class.pmprogateway_stripe.php:1246
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
4127
  #: classes/gateways/class.pmprogateway_stripe.php:1453
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
4149
  #: classes/gateways/class.pmprogateway_stripe.php:1484
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
4168
  #: classes/gateways/class.pmprogateway_stripe.php:1580
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
4184
  #: classes/gateways/class.pmprogateway_stripe.php:1597
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
 
4334
  msgid "Visit Customer Support Forum"
4335
  msgstr ""
4336
 
4337
+ #: includes/currencies.php:17 includes/currencies.php:94
4338
  #: includes/currencies.php:7 includes/currencies.php:17
4339
  #: includes/currencies.php:37 includes/currencies.php:44
4340
  #: includes/currencies.php:64 includes/currencies.php:68
4343
  msgid "US Dollars (&#36;)"
4344
  msgstr ""
4345
 
4346
+ #: includes/currencies.php:19 includes/currencies.php:97
4347
  #: includes/currencies.php:8 includes/currencies.php:9
4348
  #: includes/currencies.php:19 includes/currencies.php:40
4349
  #: includes/currencies.php:47 includes/currencies.php:67
4352
  msgid "Euros (&euro;)"
4353
  msgstr ""
4354
 
4355
+ #: includes/currencies.php:24 includes/currencies.php:96
4356
  #: includes/currencies.php:9 includes/currencies.php:14
4357
  #: includes/currencies.php:24 includes/currencies.php:39
4358
  #: includes/currencies.php:46 includes/currencies.php:66
4376
  msgid "Brazilian Real (R&#36;)"
4377
  msgstr ""
4378
 
4379
+ #: includes/currencies.php:35 includes/currencies.php:95
4380
  #: includes/currencies.php:12 includes/currencies.php:24
4381
  #: includes/currencies.php:34 includes/currencies.php:35
4382
  #: includes/currencies.php:38 includes/currencies.php:45
4446
  msgid "Japanese Yen (&yen;)"
4447
  msgstr ""
4448
 
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
 
4515
+ #: includes/currencies.php:78 includes/currencies.php:26
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
 
4522
+ #: includes/currencies.php:79 includes/currencies.php:27
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
 
4529
+ #: includes/currencies.php:80 includes/currencies.php:28
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
 
4536
+ #: includes/currencies.php:81 includes/currencies.php:29
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
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 ""
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 ""
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
4580
+ #: includes/functions.php:254 includes/functions.php:320
4581
+ #: includes/functions.php:326
4582
  #, php-format
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 ""
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
4596
+ #: includes/functions.php:263 includes/functions.php:329
4597
+ #: includes/functions.php:335
4598
  #, php-format
4599
  msgid " and then <strong>%s after %d %s</strong>."
4600
  msgstr ""
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
4606
+ #: includes/functions.php:343
4607
  #, php-format
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
4615
  #, php-format
4616
  msgid "<strong>%s per %s</strong>."
4617
  msgstr ""
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
4623
+ #: includes/functions.php:350
4624
  #, php-format
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
4632
  #, php-format
4633
  msgid "<strong>%s every %d %s</strong>."
4634
  msgstr ""
4638
  #: includes/functions.php:238 includes/functions.php:239
4639
  #: includes/functions.php:240 includes/functions.php:242
4640
  #: includes/functions.php:245 includes/functions.php:249
4641
+ #: includes/functions.php:285 includes/functions.php:351
4642
+ #: includes/functions.php:357
4643
  #, php-format
4644
  msgid " and then <strong>%s per %s</strong>."
4645
  msgstr ""
4649
  #: includes/functions.php:242 includes/functions.php:243
4650
  #: includes/functions.php:244 includes/functions.php:246
4651
  #: includes/functions.php:249 includes/functions.php:253
4652
+ #: includes/functions.php:289 includes/functions.php:355
4653
+ #: includes/functions.php:361
4654
  #, php-format
4655
  msgid " and then <strong>%s every %d %s</strong>."
4656
  msgstr ""
4660
  #: includes/functions.php:260 includes/functions.php:261
4661
  #: includes/functions.php:262 includes/functions.php:264
4662
  #: includes/functions.php:267 includes/functions.php:271
4663
+ #: includes/functions.php:307 includes/functions.php:373
4664
+ #: includes/functions.php:379 pages/levels.php:82
4665
  msgid "After your initial payment, your first payment is Free."
4666
  msgstr ""
4667
 
4670
  #: includes/functions.php:264 includes/functions.php:265
4671
  #: includes/functions.php:266 includes/functions.php:268
4672
  #: includes/functions.php:271 includes/functions.php:275
4673
+ #: includes/functions.php:311 includes/functions.php:377
4674
+ #: includes/functions.php:383 pages/levels.php:86
4675
  #, php-format
4676
  msgid "After your initial payment, your first %d payments are Free."
4677
  msgstr ""
4681
  #: includes/functions.php:271 includes/functions.php:272
4682
  #: includes/functions.php:273 includes/functions.php:275
4683
  #: includes/functions.php:278 includes/functions.php:282
4684
+ #: includes/functions.php:318 includes/functions.php:384
4685
+ #: includes/functions.php:390 pages/levels.php:93
4686
  #, php-format
4687
  msgid "After your initial payment, your first payment will cost %s."
4688
  msgstr ""
4692
  #: includes/functions.php:275 includes/functions.php:276
4693
  #: includes/functions.php:277 includes/functions.php:279
4694
  #: includes/functions.php:282 includes/functions.php:286
4695
+ #: includes/functions.php:322 includes/functions.php:388
4696
+ #: includes/functions.php:394 pages/levels.php:97
4697
  #, php-format
4698
  msgid "After your initial payment, your first %d payments will cost %s."
4699
  msgstr ""
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 ""
4714
  #: includes/functions.php:300 includes/functions.php:301
4715
  #: includes/functions.php:302 includes/functions.php:304
4716
  #: includes/functions.php:307 includes/functions.php:311
4717
+ #: includes/functions.php:347 includes/functions.php:413
4718
+ #: includes/functions.php:419
4719
  #, php-format
4720
  msgid "Membership expires after %d %s."
4721
  msgstr ""
4727
  #: includes/functions.php:569 includes/functions.php:570
4728
  #: includes/functions.php:576 includes/functions.php:592
4729
  #: includes/functions.php:615 includes/functions.php:694
4730
+ #: includes/functions.php:760 includes/functions.php:766
4731
  msgid "User ID not found."
4732
  msgstr ""
4733
 
4738
  #: includes/functions.php:586 includes/functions.php:587
4739
  #: includes/functions.php:589 includes/functions.php:596
4740
  #: includes/functions.php:612 includes/functions.php:635
4741
+ #: includes/functions.php:714 includes/functions.php:780
4742
+ #: includes/functions.php:786
4743
  msgid "Invalid level."
4744
  msgstr ""
4745
 
4750
  #: includes/functions.php:597 includes/functions.php:598
4751
  #: includes/functions.php:600 includes/functions.php:607
4752
  #: includes/functions.php:623 includes/functions.php:646
4753
+ #: includes/functions.php:725 includes/functions.php:791
4754
+ #: includes/functions.php:797
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
4774
  #: includes/functions.php:700 includes/functions.php:707
4775
  #: includes/functions.php:722 includes/functions.php:723
4776
  #: includes/functions.php:742 includes/functions.php:746
4777
+ #: includes/functions.php:808 includes/functions.php:814
4778
+ #: includes/functions.php:815 includes/functions.php:839
4779
+ #: includes/functions.php:881 includes/functions.php:887
4780
+ #: includes/functions.php:905 includes/functions.php:911
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
4801
  #: includes/functions.php:778 includes/functions.php:780
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
  #: 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
  #: 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
  #: 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
  #: 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
4879
  #: includes/functions.php:1196 includes/functions.php:1197
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
4893
  #: includes/functions.php:1223 includes/functions.php:1230
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
4906
  #: includes/functions.php:1255 includes/functions.php:1262
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
4919
  #: includes/functions.php:1450 includes/functions.php:1457
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
4933
  #: includes/functions.php:1456 includes/functions.php:1463
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
 
5084
  msgid "Paid Memberships Pro Data Update Required"
5085
  msgstr ""
5086
 
5087
+ #: includes/updates.php:111 includes/updates.php:111
5088
  #, php-format
5089
  msgid ""
5090
  "(1) <a target=\"_blank\" href=\"%s\">Backup your WordPress database</a></"
5091
  "strong> and then (2) <a href=\"%s\">click here to start the update</a>."
5092
  msgstr ""
5093
 
5094
+ #: includes/updates.php:132 includes/updates.php:123 includes/updates.php:132
5095
+ #: includes/updates.php:136
5096
  msgid "All Paid Memberships Pro updates have finished."
5097
  msgstr ""
5098
 
5127
  "register to read."
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
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
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
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
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
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
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
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
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
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
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
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
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
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 ""
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 ""
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
 
5565
  msgid "Select"
5566
  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"
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
5634
+ #: preheaders/checkout.php:336 preheaders/checkout.php:364
5635
+ #: preheaders/checkout.php:458 preheaders/checkout.php:464
5636
+ #: preheaders/checkout.php:465 preheaders/checkout.php:470
5637
+ #: preheaders/checkout.php:481 preheaders/checkout.php:482
5638
  msgid "Please complete all required fields."
5639
  msgstr ""
5640
 
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
5645
+ #: preheaders/checkout.php:344 preheaders/checkout.php:372
5646
+ #: preheaders/checkout.php:466 preheaders/checkout.php:473
5647
+ #: preheaders/checkout.php:474 preheaders/checkout.php:478
5648
+ #: preheaders/checkout.php:491 preheaders/checkout.php:492
5649
  msgid "Your email addresses do not match. Please try again."
5650
  msgstr ""
5651
 
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
5656
+ #: preheaders/checkout.php:349 preheaders/checkout.php:377
5657
+ #: preheaders/checkout.php:471 preheaders/checkout.php:478
5658
+ #: preheaders/checkout.php:480 preheaders/checkout.php:483
5659
+ #: preheaders/checkout.php:497 preheaders/checkout.php:498
5660
  msgid "The email address entered is in an invalid format. Please try again."
5661
  msgstr ""
5662
 
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
5692
+ #: preheaders/checkout.php:358 preheaders/checkout.php:386
5693
  #: preheaders/checkout.php:480 preheaders/checkout.php:487
5694
  #: preheaders/checkout.php:491 preheaders/checkout.php:492
5695
  #: preheaders/checkout.php:508 preheaders/checkout.php:509
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
5720
+ #: preheaders/checkout.php:486
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
5728
+ #: preheaders/checkout.php:503 preheaders/checkout.php:504
5729
  #, php-format
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
5737
+ #: preheaders/checkout.php:513
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
5745
+ #: preheaders/checkout.php:535 preheaders/checkout.php:536
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
5753
+ #: preheaders/checkout.php:541 preheaders/checkout.php:542
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
5761
+ #: preheaders/checkout.php:537 preheaders/checkout.php:544
5762
+ #: preheaders/checkout.php:561 preheaders/checkout.php:562
5763
  #, php-format
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
5771
+ #: preheaders/checkout.php:659 preheaders/checkout.php:683
5772
+ #: preheaders/checkout.php:701 preheaders/checkout.php:702
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
5780
+ #: preheaders/checkout.php:665 preheaders/checkout.php:691
5781
+ #: preheaders/checkout.php:709 preheaders/checkout.php:710
5782
  msgid ""
5783
  "Unknown error generating account. Please contact us to set up your "
5784
  "membership."
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
5791
+ #: preheaders/checkout.php:785 preheaders/checkout.php:792
5792
+ #: preheaders/checkout.php:797 preheaders/checkout.php:825
5793
+ #: preheaders/checkout.php:844 preheaders/checkout.php:859
5794
+ #: preheaders/checkout.php:860
5795
  msgid ""
5796
  "Your payment was accepted, but there was an error setting up your account. "
5797
  "Please contact us."
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
5804
+ #: preheaders/checkout.php:826 preheaders/checkout.php:953
5805
+ #: preheaders/checkout.php:960 preheaders/checkout.php:970
5806
+ #: preheaders/checkout.php:983 preheaders/checkout.php:1030
5807
+ #: preheaders/checkout.php:1045 preheaders/checkout.php:1046
5808
  msgid ""
5809
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5810
  "authorized, but we cancelled the order immediately. You should not try to "
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
5818
+ #: preheaders/checkout.php:829 preheaders/checkout.php:956
5819
+ #: preheaders/checkout.php:963 preheaders/checkout.php:973
5820
+ #: preheaders/checkout.php:988 preheaders/checkout.php:1035
5821
+ #: preheaders/checkout.php:1050 preheaders/checkout.php:1051
5822
  msgid ""
5823
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5824
  "was charged, but we couldn't assign your membership. You should not submit "
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
5832
+ #: preheaders/checkout.php:840 preheaders/checkout.php:967
5833
+ #: preheaders/checkout.php:974 preheaders/checkout.php:984
5834
+ #: preheaders/checkout.php:1001 preheaders/checkout.php:1048
5835
+ #: preheaders/checkout.php:1063 preheaders/checkout.php:1064
5836
  #, php-format
5837
  msgid ""
5838
  "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
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
5846
+ #: preheaders/checkout.php:842 preheaders/checkout.php:969
5847
+ #: preheaders/checkout.php:976 preheaders/checkout.php:986
5848
+ #: preheaders/checkout.php:1003 preheaders/checkout.php:1050
5849
+ #: preheaders/checkout.php:1065 preheaders/checkout.php:1066
5850
  msgid "A Payment Gateway must be set up before any payments will be processed."
5851
  msgstr ""
5852
 
5892
  #: services/authnet-silent-post.php:149 services/authnet-silent-post.php:133
5893
  #: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
5894
  #: services/authnet-silent-post.php:144 services/authnet-silent-post.php:145
5895
+ #: services/authnet-silent-post.php:149
5896
  msgid ""
5897
  "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
5898
  "Information From Authorize.net"
5902
  #: services/stripe-webhook.php:194 services/stripe-webhook.php:270
5903
  #: services/stripe-webhook.php:271 services/stripe-webhook.php:272
5904
  #: services/stripe-webhook.php:283 services/stripe-webhook.php:290
5905
+ #: services/stripe-webhook.php:304
5906
  #, php-format
5907
  msgid ""
5908
  "%s has had their payment subscription cancelled by Stripe. Please check that "
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"
languages/pmpro.pot CHANGED
@@ -5,7 +5,7 @@
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: pmpro\n"
8
- "POT-Creation-Date: 2016-05-06 12:20-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"
@@ -23,15 +23,16 @@ msgstr ""
23
  #: adminpages/addons.php:21 adminpages/advancedsettings.php:5
24
  #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
25
  #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
26
- #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
27
- #: adminpages/orders-print.php:12 adminpages/orders.php:5
 
28
  #: adminpages/pagesettings.php:4 adminpages/pagesettings.php:5
29
  #: adminpages/paymentsettings.php:5 adminpages/updates.php:5
30
  #: includes/license.php:36
31
  msgid "You do not have permissions to perform this action."
32
  msgstr ""
33
 
34
- #: adminpages/addons.php:64 adminpages/admin_header.php:170
35
  #: includes/adminpages.php:53 includes/adminpages.php:151
36
  #: adminpages/addons.php:64 adminpages/addons.php:80
37
  #: adminpages/admin_header.php:133 adminpages/admin_header.php:154
@@ -43,67 +44,68 @@ msgstr ""
43
  msgid "Add Ons"
44
  msgstr ""
45
 
46
- #: adminpages/addons.php:71 adminpages/addons.php:71 adminpages/addons.php:87
47
  #, php-format
48
  msgid "Last checked on %s at %s."
49
  msgstr ""
50
 
51
- #: adminpages/addons.php:72 adminpages/addons.php:72 adminpages/addons.php:88
52
  msgid "Check Again"
53
  msgstr ""
54
 
55
- #: adminpages/addons.php:76 adminpages/orders.php:850 adminpages/addons.php:76
56
  #: adminpages/addons.php:92 adminpages/orders.php:605
57
  #: adminpages/orders.php:712 adminpages/orders.php:741
 
58
  msgid "All"
59
  msgstr ""
60
 
61
- #: adminpages/addons.php:77 adminpages/addons.php:77 adminpages/addons.php:93
62
  msgid "Active"
63
  msgstr ""
64
 
65
- #: adminpages/addons.php:78 adminpages/addons.php:78 adminpages/addons.php:94
66
  msgid "Inactive"
67
  msgstr ""
68
 
69
- #: adminpages/addons.php:79 adminpages/addons.php:79 adminpages/addons.php:95
70
  msgid "Update Available"
71
  msgstr ""
72
 
73
- #: adminpages/addons.php:80 adminpages/addons.php:80 adminpages/addons.php:96
74
  msgid "Not Installed"
75
  msgstr ""
76
 
77
- #: adminpages/addons.php:93 adminpages/addons.php:93 adminpages/addons.php:109
78
  msgid "Add On Name"
79
  msgstr ""
80
 
81
- #: adminpages/addons.php:94 adminpages/addons.php:94 adminpages/addons.php:110
82
  msgid "Type"
83
  msgstr ""
84
 
85
- #: adminpages/addons.php:95 adminpages/membershiplevels.php:300
86
  #: adminpages/addons.php:95 adminpages/addons.php:111
87
  #: adminpages/membershiplevels.php:296 adminpages/membershiplevels.php:298
88
  #: adminpages/membershiplevels.php:300
89
  msgid "Description"
90
  msgstr ""
91
 
92
- #: adminpages/addons.php:118 adminpages/addons.php:118
93
  #: adminpages/addons.php:134
94
  msgid "No Add Ons found."
95
  msgstr ""
96
 
97
- #: adminpages/addons.php:179 adminpages/addons.php:184
98
- #: adminpages/addons.php:196 adminpages/addons.php:179
99
  #: adminpages/addons.php:184 adminpages/addons.php:195
100
  #: adminpages/addons.php:196 adminpages/addons.php:200
101
  #: adminpages/addons.php:212
102
  msgid "Install Now"
103
  msgstr ""
104
 
105
- #: adminpages/addons.php:185 adminpages/addons.php:191
106
- #: adminpages/addons.php:197 adminpages/addons.php:203
107
  #: adminpages/addons.php:185 adminpages/addons.php:191
108
  #: adminpages/addons.php:197 adminpages/addons.php:201
109
  #: adminpages/addons.php:203 adminpages/addons.php:207
@@ -111,95 +113,95 @@ msgstr ""
111
  msgid "Download"
112
  msgstr ""
113
 
114
- #: adminpages/addons.php:190 adminpages/addons.php:202
115
  #: adminpages/addons.php:190 adminpages/addons.php:202
116
  #: adminpages/addons.php:206 adminpages/addons.php:218
117
  msgid "Update License"
118
  msgstr ""
119
 
120
- #: adminpages/addons.php:208 adminpages/addons.php:208
121
  #: adminpages/addons.php:224
122
  msgid "Deactivate"
123
  msgstr ""
124
 
125
- #: adminpages/addons.php:208 adminpages/addons.php:208
126
  #: adminpages/addons.php:224
127
  #, php-format
128
  msgid "Deactivate %s"
129
  msgstr ""
130
 
131
- #: adminpages/addons.php:212 adminpages/addons.php:212
132
  #: adminpages/addons.php:228
133
  msgid "Activate"
134
  msgstr ""
135
 
136
- #: adminpages/addons.php:212 adminpages/addons.php:212
137
  #: adminpages/addons.php:228
138
  #, php-format
139
  msgid "Activate %s"
140
  msgstr ""
141
 
142
- #: adminpages/addons.php:213 adminpages/addons.php:213
143
  #: adminpages/addons.php:229
144
  msgid "Delete"
145
  msgstr ""
146
 
147
- #: adminpages/addons.php:213 adminpages/addons.php:213
148
  #: adminpages/addons.php:229
149
  #, php-format
150
  msgid "Delete %s"
151
  msgstr ""
152
 
153
- #: adminpages/addons.php:223 adminpages/addons.php:223
154
  #: adminpages/addons.php:239
155
  msgid "PMPro Free"
156
  msgstr ""
157
 
158
- #: adminpages/addons.php:225 adminpages/addons.php:225
159
  #: adminpages/addons.php:241
160
  msgid "PMPro Core"
161
  msgstr ""
162
 
163
- #: adminpages/addons.php:227 adminpages/addons.php:227
164
  #: adminpages/addons.php:243
165
  msgid "PMPro Plus"
166
  msgstr ""
167
 
168
- #: adminpages/addons.php:229 adminpages/addons.php:229
169
  #: adminpages/addons.php:245
170
  msgid "WordPress.org"
171
  msgstr ""
172
 
173
- #: adminpages/addons.php:231 shortcodes/pmpro_account.php:146
174
  #: adminpages/addons.php:231 adminpages/addons.php:247
175
  #: shortcodes/pmpro_account.php:146
176
  msgid "N/A"
177
  msgstr ""
178
 
179
- #: adminpages/addons.php:240 adminpages/addons.php:240
180
  #: adminpages/addons.php:256
181
  #, php-format
182
  msgid "Version %s"
183
  msgstr ""
184
 
185
- #: adminpages/addons.php:245 adminpages/addons.php:245
186
  #: adminpages/addons.php:261
187
  #, php-format
188
  msgid "By %s"
189
  msgstr ""
190
 
191
- #: adminpages/addons.php:252 adminpages/addons.php:252
192
  #: adminpages/addons.php:268
193
  #, php-format
194
  msgid "More information about %s"
195
  msgstr ""
196
 
197
- #: adminpages/addons.php:254 adminpages/addons.php:254
198
  #: adminpages/addons.php:270
199
  msgid "View details"
200
  msgstr ""
201
 
202
- #: adminpages/addons.php:259 adminpages/addons.php:259
203
  #: adminpages/addons.php:275
204
  msgid "Visit plugin site"
205
  msgstr ""
@@ -320,7 +322,7 @@ msgid "Payment Gateway &amp; SSL"
320
  msgstr ""
321
 
322
  #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
323
- #: shortcodes/pmpro_account.php:109 adminpages/admin_header.php:131
324
  #: adminpages/admin_header.php:152 adminpages/admin_header.php:162
325
  #: adminpages/memberslist.php:115 adminpages/memberslist.php:148
326
  #: adminpages/memberslist.php:158 adminpages/memberslist.php:168
@@ -436,9 +438,9 @@ msgid "Hide Ads From Members?"
436
  msgstr ""
437
 
438
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
439
- #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:668
440
  #: adminpages/paymentsettings.php:210
441
- #: classes/gateways/class.pmprogateway_stripe.php:208 includes/profile.php:110
442
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
443
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:187
444
  #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
@@ -455,7 +457,8 @@ msgstr ""
455
  #: classes/gateways/class.pmprogateway_stripe.php:173
456
  #: classes/gateways/class.pmprogateway_stripe.php:174
457
  #: classes/gateways/class.pmprogateway_stripe.php:184
458
- #: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:101
 
459
  #: includes/profile.php:105 includes/profile.php:110 includes/profile.php:121
460
  #: includes/profile.php:123
461
  msgid "No"
@@ -496,9 +499,9 @@ msgstr ""
496
  msgid "multisite only"
497
  msgstr ""
498
 
499
- #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:668
500
  #: adminpages/paymentsettings.php:211
501
- #: classes/gateways/class.pmprogateway_stripe.php:209 includes/profile.php:111
502
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
503
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:563
504
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
@@ -512,7 +515,8 @@ msgstr ""
512
  #: classes/gateways/class.pmprogateway_stripe.php:174
513
  #: classes/gateways/class.pmprogateway_stripe.php:175
514
  #: classes/gateways/class.pmprogateway_stripe.php:185
515
- #: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:102
 
516
  #: includes/profile.php:106 includes/profile.php:111 includes/profile.php:122
517
  #: includes/profile.php:124
518
  msgid "Yes"
@@ -655,8 +659,8 @@ msgid "Add New Discount Code"
655
  msgstr ""
656
 
657
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:587
658
- #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:637
659
- #: adminpages/memberslist.php:164 adminpages/orders.php:1103
660
  #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
661
  #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
662
  #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
@@ -673,31 +677,34 @@ msgstr ""
673
  #: adminpages/memberslist.php:164 adminpages/orders.php:597
674
  #: adminpages/orders.php:900 adminpages/orders.php:910
675
  #: adminpages/orders.php:937 adminpages/orders.php:966
676
- #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
677
- #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
 
678
  #: adminpages/templates/orders-print.php:75
679
  msgid "ID"
680
  msgstr ""
681
 
682
- #: adminpages/discountcodes.php:312 adminpages/orders.php:344
683
  #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
684
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
685
  #: adminpages/orders.php:211 adminpages/orders.php:261
686
- #: adminpages/orders.php:333 adminpages/orders.php:362
 
687
  msgid "This will be generated when you save."
688
  msgstr ""
689
 
690
  #: adminpages/discountcodes.php:316 adminpages/discountcodes.php:588
691
- #: adminpages/orders.php:349 adminpages/orders.php:1104
692
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
693
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
694
  #: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
695
  #: adminpages/discountcodes.php:586 adminpages/discountcodes.php:587
696
  #: adminpages/discountcodes.php:588 adminpages/orders.php:215
697
  #: adminpages/orders.php:265 adminpages/orders.php:337
698
- #: adminpages/orders.php:366 adminpages/orders.php:598
699
- #: adminpages/orders.php:901 adminpages/orders.php:911
700
- #: adminpages/orders.php:938 adminpages/orders.php:967
 
701
  msgid "Code"
702
  msgstr ""
703
 
@@ -708,8 +715,8 @@ msgid "Start Date"
708
  msgstr ""
709
 
710
  #: adminpages/discountcodes.php:372
711
- #: classes/gateways/class.pmprogateway_braintree.php:326
712
- #: classes/gateways/class.pmprogateway_stripe.php:500 pages/billing.php:268
713
  #: pages/checkout.php:575 adminpages/discountcodes.php:367
714
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
715
  #: adminpages/discountcodes.php:372
@@ -722,7 +729,8 @@ msgstr ""
722
  #: classes/gateways/class.pmprogateway_stripe.php:465
723
  #: classes/gateways/class.pmprogateway_stripe.php:469
724
  #: classes/gateways/class.pmprogateway_stripe.php:495
725
- #: classes/gateways/class.pmprogateway_stripe.php:498 pages/billing.php:249
 
726
  #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
727
  #: pages/billing.php:268 pages/checkout.php:508 pages/checkout.php:524
728
  #: pages/checkout.php:525 pages/checkout.php:532 pages/checkout.php:553
@@ -799,7 +807,7 @@ msgstr ""
799
 
800
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
801
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
802
- #: classes/gateways/class.pmprogateway_stripe.php:567
803
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
804
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
805
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -815,12 +823,13 @@ msgstr ""
815
  #: classes/gateways/class.pmprogateway_stripe.php:536
816
  #: classes/gateways/class.pmprogateway_stripe.php:562
817
  #: classes/gateways/class.pmprogateway_stripe.php:566
 
818
  msgid "Day(s)"
819
  msgstr ""
820
 
821
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
822
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
823
- #: classes/gateways/class.pmprogateway_stripe.php:567
824
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
825
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
826
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -836,12 +845,13 @@ msgstr ""
836
  #: classes/gateways/class.pmprogateway_stripe.php:536
837
  #: classes/gateways/class.pmprogateway_stripe.php:562
838
  #: classes/gateways/class.pmprogateway_stripe.php:566
 
839
  msgid "Month(s)"
840
  msgstr ""
841
 
842
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
843
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
844
- #: classes/gateways/class.pmprogateway_stripe.php:567
845
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
846
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
847
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -857,12 +867,13 @@ msgstr ""
857
  #: classes/gateways/class.pmprogateway_stripe.php:536
858
  #: classes/gateways/class.pmprogateway_stripe.php:562
859
  #: classes/gateways/class.pmprogateway_stripe.php:566
 
860
  msgid "Week(s)"
861
  msgstr ""
862
 
863
  #: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
864
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
865
- #: classes/gateways/class.pmprogateway_stripe.php:567
866
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
867
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
868
  #: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
@@ -878,6 +889,7 @@ msgstr ""
878
  #: classes/gateways/class.pmprogateway_stripe.php:536
879
  #: classes/gateways/class.pmprogateway_stripe.php:562
880
  #: classes/gateways/class.pmprogateway_stripe.php:566
 
881
  msgid "Year(s)"
882
  msgstr ""
883
 
@@ -1062,8 +1074,8 @@ msgid ""
1062
  "select customers."
1063
  msgstr ""
1064
 
1065
- #: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:670
1066
- #: adminpages/orders.php:1205 adminpages/discountcodes.php:614
1067
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
1068
  #: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
1069
  #: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:564
@@ -1074,6 +1086,7 @@ msgstr ""
1074
  #: adminpages/orders.php:961 adminpages/orders.php:979
1075
  #: adminpages/orders.php:989 adminpages/orders.php:992
1076
  #: adminpages/orders.php:1021 adminpages/orders.php:1050
 
1077
  msgid "edit"
1078
  msgstr ""
1079
 
@@ -1088,8 +1101,8 @@ msgid ""
1088
  "code anymore."
1089
  msgstr ""
1090
 
1091
- #: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:670
1092
- #: adminpages/orders.php:1211 adminpages/discountcodes.php:617
1093
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
1094
  #: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
1095
  #: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:566
@@ -1100,6 +1113,7 @@ msgstr ""
1100
  #: adminpages/orders.php:967 adminpages/orders.php:985
1101
  #: adminpages/orders.php:995 adminpages/orders.php:998
1102
  #: adminpages/orders.php:1027 adminpages/orders.php:1056
 
1103
  msgid "delete"
1104
  msgstr ""
1105
 
@@ -1272,7 +1286,7 @@ msgstr ""
1272
  msgid "Add New Membership Level"
1273
  msgstr ""
1274
 
1275
- #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:638
1276
  #: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
1277
  #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
1278
  #: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
@@ -1289,7 +1303,7 @@ msgstr ""
1289
  msgid "Confirmation Message"
1290
  msgstr ""
1291
 
1292
- #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:639
1293
  #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1294
  #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:338
1295
  #: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:585
@@ -1298,7 +1312,7 @@ msgid "Billing Details"
1298
  msgstr ""
1299
 
1300
  #: adminpages/membershiplevels.php:372
1301
- #: classes/gateways/class.pmprogateway_stripe.php:665
1302
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1303
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1304
  #: adminpages/membershiplevels.php:373
@@ -1308,6 +1322,7 @@ msgstr ""
1308
  #: classes/gateways/class.pmprogateway_stripe.php:634
1309
  #: classes/gateways/class.pmprogateway_stripe.php:660
1310
  #: classes/gateways/class.pmprogateway_stripe.php:664
 
1311
  msgid "per"
1312
  msgstr ""
1313
 
@@ -1346,8 +1361,8 @@ msgstr ""
1346
 
1347
  #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1348
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1349
- #: classes/gateways/class.pmprogateway_paypal.php:118
1350
- #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1351
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1352
  #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1353
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
@@ -1454,14 +1469,15 @@ msgstr ""
1454
  msgid "Save Level"
1455
  msgstr ""
1456
 
1457
- #: adminpages/membershiplevels.php:518 adminpages/orders.php:765
1458
- #: pages/billing.php:348 pages/cancel.php:71 shortcodes/pmpro_account.php:73
1459
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1460
  #: adminpages/orders.php:511 adminpages/orders.php:561
1461
- #: adminpages/orders.php:633 adminpages/orders.php:662 pages/account.php:44
1462
- #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1463
- #: pages/billing.php:339 pages/billing.php:342 pages/billing.php:344
1464
- #: pages/billing.php:348 pages/cancel.php:71 shortcodes/pmpro_account.php:70
 
1465
  #: shortcodes/pmpro_account.php:73
1466
  msgid "Cancel"
1467
  msgstr ""
@@ -1491,9 +1507,9 @@ msgstr ""
1491
  msgid "Drag and drop membership levels to reorder them on the Levels page."
1492
  msgstr ""
1493
 
1494
- #: adminpages/membershiplevels.php:640 pages/cancel.php:53
1495
  #: pages/confirmation.php:83 pages/invoice.php:70
1496
- #: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
1497
  #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
1498
  #: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
1499
  #: adminpages/membershiplevels.php:586 adminpages/membershiplevels.php:639
@@ -1503,7 +1519,7 @@ msgstr ""
1503
  msgid "Expiration"
1504
  msgstr ""
1505
 
1506
- #: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:511
1507
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1508
  #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1509
  #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:640
@@ -1511,7 +1527,7 @@ msgstr ""
1511
  msgid "Allow Signups"
1512
  msgstr ""
1513
 
1514
- #: adminpages/membershiplevels.php:656 adminpages/membershiplevels.php:534
1515
  #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1516
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1517
  #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:655
@@ -1519,7 +1535,7 @@ msgstr ""
1519
  msgid "FREE"
1520
  msgstr ""
1521
 
1522
- #: adminpages/membershiplevels.php:665 adminpages/membershiplevels.php:560
1523
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1524
  #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1525
  #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:664
@@ -1527,7 +1543,7 @@ msgstr ""
1527
  msgid "After"
1528
  msgstr ""
1529
 
1530
- #: adminpages/membershiplevels.php:670 adminpages/membershiplevels.php:566
1531
  #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1532
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1533
  #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
@@ -1538,7 +1554,7 @@ msgid ""
1538
  "be cancelled."
1539
  msgstr ""
1540
 
1541
- #: adminpages/membershiplevels.php:670 adminpages/orders.php:1208
1542
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1543
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1544
  #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
@@ -1546,7 +1562,7 @@ msgstr ""
1546
  #: adminpages/orders.php:661 adminpages/orders.php:964
1547
  #: adminpages/orders.php:982 adminpages/orders.php:992
1548
  #: adminpages/orders.php:995 adminpages/orders.php:1024
1549
- #: adminpages/orders.php:1053
1550
  msgid "copy"
1551
  msgstr ""
1552
 
@@ -1559,20 +1575,20 @@ msgstr ""
1559
  msgid "Members List"
1560
  msgstr ""
1561
 
1562
- #: adminpages/memberslist.php:26 adminpages/orders.php:833
1563
  #: adminpages/memberslist.php:26 adminpages/orders.php:522
1564
  #: adminpages/orders.php:591 adminpages/orders.php:698
1565
- #: adminpages/orders.php:727
1566
  msgid "Export to CSV"
1567
  msgstr ""
1568
 
1569
- #: adminpages/memberslist.php:30 adminpages/orders.php:848
1570
  #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:276
1571
  #: adminpages/reports/sales.php:202 adminpages/memberslist.php:30
1572
  #: adminpages/orders.php:603 adminpages/orders.php:710
1573
- #: adminpages/orders.php:739 adminpages/reports/login.php:65
1574
- #: adminpages/reports/login.php:67 adminpages/reports/login.php:83
1575
- #: adminpages/reports/memberships.php:256
1576
  #: adminpages/reports/memberships.php:263
1577
  #: adminpages/reports/memberships.php:276
1578
  #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
@@ -1622,7 +1638,7 @@ msgid "%d members found."
1622
  msgstr ""
1623
 
1624
  #: adminpages/memberslist.php:165 pages/checkout.php:184
1625
- #: shortcodes/pmpro_account.php:108 adminpages/memberslist.php:112
1626
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1627
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1628
  #: pages/account.php:76 pages/checkout.php:168 pages/checkout.php:171
@@ -1644,7 +1660,7 @@ msgstr ""
1644
  msgid "Last&nbsp;Name"
1645
  msgstr ""
1646
 
1647
- #: adminpages/memberslist.php:170 pages/billing.php:74 pages/checkout.php:319
1648
  #: pages/confirmation.php:61 pages/invoice.php:48
1649
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1650
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
@@ -1703,169 +1719,176 @@ msgstr ""
1703
  msgid "Search all levels"
1704
  msgstr ""
1705
 
1706
- #: adminpages/orders.php:146 adminpages/orders.php:155
 
1707
  msgid "Invoice emailed successfully."
1708
  msgstr ""
1709
 
1710
- #: adminpages/orders.php:149 adminpages/orders.php:160
 
1711
  msgid "Error emailing invoice."
1712
  msgstr ""
1713
 
1714
  #: adminpages/orders.php:162 adminpages/orders.php:26 adminpages/orders.php:67
1715
- #: adminpages/orders.php:175
1716
  msgid "Order deleted successfully."
1717
  msgstr ""
1718
 
1719
  #: adminpages/orders.php:165 adminpages/orders.php:31 adminpages/orders.php:72
1720
- #: adminpages/orders.php:180
1721
  msgid "Error deleting order."
1722
  msgstr ""
1723
 
1724
- #: adminpages/orders.php:284 adminpages/orders.php:119
1725
  #: adminpages/orders.php:169 adminpages/orders.php:270
 
1726
  msgid "Order saved successfully."
1727
  msgstr ""
1728
 
1729
- #: adminpages/orders.php:287 adminpages/orders.php:124
1730
  #: adminpages/orders.php:174 adminpages/orders.php:275
 
1731
  msgid "Error updating order timestamp."
1732
  msgstr ""
1733
 
1734
- #: adminpages/orders.php:291 adminpages/orders.php:130
1735
  #: adminpages/orders.php:180 adminpages/orders.php:281
 
1736
  msgid "Error saving order."
1737
  msgstr ""
1738
 
1739
- #: adminpages/orders.php:321 adminpages/orders.php:195
1740
  #: adminpages/orders.php:245 adminpages/orders.php:317
1741
- #: adminpages/orders.php:346
1742
  msgid "Order"
1743
  msgstr ""
1744
 
1745
- #: adminpages/orders.php:323 adminpages/orders.php:197
1746
  #: adminpages/orders.php:247 adminpages/orders.php:319
1747
- #: adminpages/orders.php:348
1748
  msgid "New Order"
1749
  msgstr ""
1750
 
1751
- #: adminpages/orders.php:359 adminpages/orders.php:220
1752
  #: adminpages/orders.php:270 adminpages/orders.php:342
1753
- #: adminpages/orders.php:371
1754
  msgid "Randomly generated for you."
1755
  msgstr ""
1756
 
1757
- #: adminpages/orders.php:364 adminpages/orders.php:225
1758
  #: adminpages/orders.php:275 adminpages/orders.php:347
1759
- #: adminpages/orders.php:376
1760
  msgid "User ID"
1761
  msgstr ""
1762
 
1763
- #: adminpages/orders.php:376 adminpages/orders.php:234
1764
  #: adminpages/orders.php:284 adminpages/orders.php:356
1765
- #: adminpages/orders.php:385
1766
  msgid "Membership Level ID"
1767
  msgstr ""
1768
 
1769
- #: adminpages/orders.php:389 adminpages/orders.php:243
1770
  #: adminpages/orders.php:293 adminpages/orders.php:365
1771
- #: adminpages/orders.php:394
1772
  msgid "Billing Name"
1773
  msgstr ""
1774
 
1775
- #: adminpages/orders.php:401 adminpages/orders.php:251
1776
  #: adminpages/orders.php:301 adminpages/orders.php:373
1777
- #: adminpages/orders.php:402
1778
  msgid "Billing Street"
1779
  msgstr ""
1780
 
1781
- #: adminpages/orders.php:412 adminpages/orders.php:258
1782
  #: adminpages/orders.php:308 adminpages/orders.php:380
1783
- #: adminpages/orders.php:409
1784
  msgid "Billing City"
1785
  msgstr ""
1786
 
1787
- #: adminpages/orders.php:423 adminpages/orders.php:265
1788
  #: adminpages/orders.php:315 adminpages/orders.php:387
1789
- #: adminpages/orders.php:416
1790
  msgid "Billing State"
1791
  msgstr ""
1792
 
1793
- #: adminpages/orders.php:434 adminpages/orders.php:272
1794
  #: adminpages/orders.php:322 adminpages/orders.php:394
1795
- #: adminpages/orders.php:423
1796
  msgid "Billing Postal Code"
1797
  msgstr ""
1798
 
1799
- #: adminpages/orders.php:445 adminpages/orders.php:279
1800
  #: adminpages/orders.php:329 adminpages/orders.php:401
1801
- #: adminpages/orders.php:430
1802
  msgid "Billing Country"
1803
  msgstr ""
1804
 
1805
- #: adminpages/orders.php:457 adminpages/orders.php:287
1806
  #: adminpages/orders.php:337 adminpages/orders.php:409
1807
- #: adminpages/orders.php:438
1808
  msgid "Billing Phone"
1809
  msgstr ""
1810
 
1811
- #: adminpages/orders.php:470 adminpages/orders.php:296
1812
  #: adminpages/orders.php:346 adminpages/orders.php:418
1813
- #: adminpages/orders.php:447
1814
  msgid "Sub Total"
1815
  msgstr ""
1816
 
1817
- #: adminpages/orders.php:481 adminpages/templates/orders-email.php:60
1818
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1819
  #: adminpages/orders.php:304 adminpages/orders.php:354
1820
  #: adminpages/orders.php:426 adminpages/orders.php:455
1821
- #: adminpages/templates/orders-email.php:60
1822
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:78
1823
  #: pages/invoice.php:80
1824
  msgid "Tax"
1825
  msgstr ""
1826
 
1827
- #: adminpages/orders.php:492 adminpages/orders.php:312
1828
  #: adminpages/orders.php:362 adminpages/orders.php:434
1829
- #: adminpages/orders.php:463
1830
  msgid "Coupon Amount"
1831
  msgstr ""
1832
 
1833
- #: adminpages/orders.php:504 adminpages/orders.php:1108
1834
  #: adminpages/templates/orders-email.php:64
1835
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1836
  #: adminpages/orders.php:320 adminpages/orders.php:370
1837
  #: adminpages/orders.php:442 adminpages/orders.php:471
1838
- #: adminpages/orders.php:602 adminpages/orders.php:905
1839
- #: adminpages/orders.php:915 adminpages/orders.php:942
1840
- #: adminpages/orders.php:971 adminpages/templates/orders-email.php:64
 
1841
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:82
1842
  #: pages/invoice.php:84
1843
  msgid "Total"
1844
  msgstr ""
1845
 
1846
- #: adminpages/orders.php:513 adminpages/orders.php:325
1847
  #: adminpages/orders.php:375 adminpages/orders.php:447
1848
- #: adminpages/orders.php:476
1849
  msgid "Should be subtotal + tax - couponamount."
1850
  msgstr ""
1851
 
1852
- #: adminpages/orders.php:518 adminpages/orders.php:330
1853
  #: adminpages/orders.php:380 adminpages/orders.php:452
1854
- #: adminpages/orders.php:481
1855
  msgid "Payment Type"
1856
  msgstr ""
1857
 
1858
- #: adminpages/orders.php:528 adminpages/orders.php:335
1859
  #: adminpages/orders.php:385 adminpages/orders.php:457
1860
- #: adminpages/orders.php:486
1861
  msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1862
  msgstr ""
1863
 
1864
- #: adminpages/orders.php:532
1865
- #: classes/gateways/class.pmprogateway_braintree.php:309
1866
- #: classes/gateways/class.pmprogateway_stripe.php:452 pages/billing.php:253
1867
  #: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
1868
  #: adminpages/orders.php:461 adminpages/orders.php:490
 
1869
  #: classes/gateways/class.pmprogateway_braintree.php:291
1870
  #: classes/gateways/class.pmprogateway_braintree.php:304
1871
  #: classes/gateways/class.pmprogateway_braintree.php:306
@@ -1875,7 +1898,8 @@ msgstr ""
1875
  #: classes/gateways/class.pmprogateway_stripe.php:419
1876
  #: classes/gateways/class.pmprogateway_stripe.php:423
1877
  #: classes/gateways/class.pmprogateway_stripe.php:447
1878
- #: classes/gateways/class.pmprogateway_stripe.php:450 pages/billing.php:234
 
1879
  #: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
1880
  #: pages/billing.php:253 pages/checkout.php:493 pages/checkout.php:507
1881
  #: pages/checkout.php:510 pages/checkout.php:516 pages/checkout.php:517
@@ -1883,314 +1907,337 @@ msgstr ""
1883
  msgid "Card Type"
1884
  msgstr ""
1885
 
1886
- #: adminpages/orders.php:540 adminpages/orders.php:344
1887
  #: adminpages/orders.php:394 adminpages/orders.php:466
1888
- #: adminpages/orders.php:495
1889
  msgid "e.g. Visa, MasterCard, AMEX, etc"
1890
  msgstr ""
1891
 
1892
- #: adminpages/orders.php:544
1893
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
1894
  #: adminpages/orders.php:348 adminpages/orders.php:398
1895
  #: adminpages/orders.php:470 adminpages/orders.php:499
1896
- #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
 
1897
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
1898
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
1899
  #: classes/gateways/class.pmprogateway_twocheckout.php:148
1900
  msgid "Account Number"
1901
  msgstr ""
1902
 
1903
- #: adminpages/orders.php:553 adminpages/orders.php:353
1904
  #: adminpages/orders.php:403 adminpages/orders.php:475
1905
- #: adminpages/orders.php:504
1906
  msgid "Obscure all but last 4 digits."
1907
  msgstr ""
1908
 
1909
- #: adminpages/orders.php:561 adminpages/orders.php:358
1910
  #: adminpages/orders.php:408 adminpages/orders.php:480
1911
- #: adminpages/orders.php:509
1912
  msgid "Expiration Month"
1913
  msgstr ""
1914
 
1915
- #: adminpages/orders.php:569 adminpages/orders.php:365
1916
  #: adminpages/orders.php:415 adminpages/orders.php:487
1917
- #: adminpages/orders.php:516
1918
  msgid "Expiration Year"
1919
  msgstr ""
1920
 
1921
- #: adminpages/orders.php:579 adminpages/orders.php:1112
1922
  #: adminpages/orders.php:373 adminpages/orders.php:423
1923
  #: adminpages/orders.php:495 adminpages/orders.php:524
1924
- #: adminpages/orders.php:606 adminpages/orders.php:909
1925
- #: adminpages/orders.php:919 adminpages/orders.php:946
1926
- #: adminpages/orders.php:975
 
1927
  msgid "Status"
1928
  msgstr ""
1929
 
1930
- #: adminpages/orders.php:612 adminpages/orders.php:1110
1931
  #: adminpages/orders.php:394 adminpages/orders.php:444
1932
  #: adminpages/orders.php:516 adminpages/orders.php:545
1933
- #: adminpages/orders.php:604 adminpages/orders.php:907
1934
- #: adminpages/orders.php:917 adminpages/orders.php:944
1935
- #: adminpages/orders.php:973
 
1936
  msgid "Gateway"
1937
  msgstr ""
1938
 
1939
- #: adminpages/orders.php:633 adminpages/paymentsettings.php:124
1940
  #: adminpages/orders.php:411 adminpages/orders.php:461
1941
  #: adminpages/orders.php:462 adminpages/orders.php:534
1942
- #: adminpages/orders.php:563 adminpages/paymentsettings.php:124
1943
- #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
1944
- #: adminpages/paymentsettings.php:184
1945
  msgid "Gateway Environment"
1946
  msgstr ""
1947
 
1948
- #: adminpages/orders.php:640 adminpages/paymentsettings.php:128
1949
  #: adminpages/orders.php:415 adminpages/orders.php:465
1950
  #: adminpages/orders.php:466 adminpages/orders.php:538
1951
- #: adminpages/orders.php:567 adminpages/paymentsettings.php:128
1952
- #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
1953
- #: adminpages/paymentsettings.php:188
1954
  msgid "Sandbox/Testing"
1955
  msgstr ""
1956
 
1957
- #: adminpages/orders.php:642 adminpages/paymentsettings.php:129
1958
  #: adminpages/orders.php:416 adminpages/orders.php:466
1959
  #: adminpages/orders.php:467 adminpages/orders.php:539
1960
- #: adminpages/orders.php:568 adminpages/paymentsettings.php:129
1961
- #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
1962
- #: adminpages/paymentsettings.php:189
1963
  msgid "Live/Production"
1964
  msgstr ""
1965
 
1966
- #: adminpages/orders.php:650 adminpages/orders.php:423
1967
  #: adminpages/orders.php:473 adminpages/orders.php:474
1968
  #: adminpages/orders.php:546 adminpages/orders.php:575
 
1969
  msgid "Payment Transaction ID"
1970
  msgstr ""
1971
 
1972
- #: adminpages/orders.php:659 adminpages/orders.php:428
1973
  #: adminpages/orders.php:478 adminpages/orders.php:479
1974
  #: adminpages/orders.php:551 adminpages/orders.php:580
 
1975
  msgid "Generated by the gateway. Useful to cross reference orders."
1976
  msgstr ""
1977
 
1978
- #: adminpages/orders.php:664 adminpages/orders.php:432
1979
  #: adminpages/orders.php:482 adminpages/orders.php:483
1980
  #: adminpages/orders.php:555 adminpages/orders.php:584
 
1981
  msgid "Subscription Transaction ID"
1982
  msgstr ""
1983
 
1984
- #: adminpages/orders.php:674 adminpages/orders.php:437
1985
  #: adminpages/orders.php:487 adminpages/orders.php:488
1986
  #: adminpages/orders.php:560 adminpages/orders.php:589
 
1987
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
1988
  msgstr ""
1989
 
1990
- #: adminpages/orders.php:679 adminpages/orders.php:1113 pages/invoice.php:107
1991
- #: shortcodes/pmpro_account.php:125 adminpages/orders.php:442
1992
  #: adminpages/orders.php:492 adminpages/orders.php:493
1993
  #: adminpages/orders.php:565 adminpages/orders.php:594
1994
- #: adminpages/orders.php:607 adminpages/orders.php:910
1995
- #: adminpages/orders.php:920 adminpages/orders.php:947
1996
- #: adminpages/orders.php:976 pages/account.php:91 pages/invoice.php:105
 
1997
  #: pages/invoice.php:107 shortcodes/pmpro_account.php:122
1998
  #: shortcodes/pmpro_account.php:125
1999
  msgid "Date"
2000
  msgstr ""
2001
 
2002
- #: adminpages/orders.php:716 adminpages/orders.php:477
2003
  #: adminpages/orders.php:527 adminpages/orders.php:599
2004
- #: adminpages/orders.php:628
2005
  msgid "Affiliate ID"
2006
  msgstr ""
2007
 
2008
- #: adminpages/orders.php:728 adminpages/orders.php:485
2009
  #: adminpages/orders.php:535 adminpages/orders.php:607
2010
- #: adminpages/orders.php:636
2011
  msgid "Affiliate SubID"
2012
  msgstr ""
2013
 
2014
- #: adminpages/orders.php:742 adminpages/orders.php:495
2015
  #: adminpages/orders.php:545 adminpages/orders.php:617
2016
- #: adminpages/orders.php:646
2017
  msgid "Notes"
2018
  msgstr ""
2019
 
2020
- #: adminpages/orders.php:764 adminpages/orders.php:510
2021
  #: adminpages/orders.php:560 adminpages/orders.php:632
2022
- #: adminpages/orders.php:661
2023
  msgid "Save Order"
2024
  msgstr ""
2025
 
2026
- #: adminpages/orders.php:800 adminpages/orders.php:667
2027
- #: adminpages/orders.php:696
2028
  msgid "Email Invoice"
2029
  msgstr ""
2030
 
2031
- #: adminpages/orders.php:803 adminpages/orders.php:670
2032
- #: adminpages/orders.php:699
2033
  msgid "Send an invoice for this order to: "
2034
  msgstr ""
2035
 
2036
- #: adminpages/orders.php:805 adminpages/orders.php:672
2037
- #: adminpages/orders.php:701
2038
  msgid "Send Email"
2039
  msgstr ""
2040
 
2041
- #: adminpages/orders.php:810 includes/adminpages.php:56
2042
  #: includes/adminpages.php:172 adminpages/orders.php:520
2043
  #: adminpages/orders.php:570 adminpages/orders.php:677
2044
- #: adminpages/orders.php:706 includes/adminpages.php:17
2045
- #: includes/adminpages.php:55 includes/adminpages.php:56
2046
- #: includes/adminpages.php:84 includes/adminpages.php:156
2047
- #: includes/adminpages.php:163 includes/adminpages.php:167
2048
- #: includes/adminpages.php:172
2049
  msgid "Orders"
2050
  msgstr ""
2051
 
2052
- #: adminpages/orders.php:812 adminpages/orders.php:521
2053
  #: adminpages/orders.php:571 adminpages/orders.php:678
2054
- #: adminpages/orders.php:707
2055
  msgid "Add New Order"
2056
  msgstr ""
2057
 
2058
- #: adminpages/orders.php:852 adminpages/orders.php:606
2059
  #: adminpages/orders.php:713 adminpages/orders.php:742
 
2060
  msgid "Within a Date Range"
2061
  msgstr ""
2062
 
2063
- #: adminpages/orders.php:854 adminpages/orders.php:607
2064
  #: adminpages/orders.php:714 adminpages/orders.php:743
 
2065
  msgid "Predefined Date Range"
2066
  msgstr ""
2067
 
2068
- #: adminpages/orders.php:856 adminpages/orders.php:608
2069
  #: adminpages/orders.php:715 adminpages/orders.php:744
 
2070
  msgid "Within a Level"
2071
  msgstr ""
2072
 
2073
- #: adminpages/orders.php:858 adminpages/orders.php:609
2074
  #: adminpages/orders.php:716 adminpages/orders.php:745
 
2075
  msgid "Within a Status"
2076
  msgstr ""
2077
 
2078
- #: adminpages/orders.php:861 adminpages/orders.php:612
2079
  #: adminpages/orders.php:719 adminpages/orders.php:748
 
2080
  msgid "From"
2081
  msgstr ""
2082
 
2083
- #: adminpages/orders.php:876 adminpages/orders.php:624
2084
  #: adminpages/orders.php:731 adminpages/orders.php:760
 
2085
  msgid "To"
2086
  msgstr ""
2087
 
2088
- #: adminpages/orders.php:889 adminpages/orders.php:636
2089
  #: adminpages/orders.php:743 adminpages/orders.php:772
 
2090
  msgid "filter by "
2091
  msgstr ""
2092
 
2093
- #: adminpages/orders.php:932 adminpages/orders.php:674
2094
  #: adminpages/orders.php:780 adminpages/orders.php:809
 
2095
  msgid "Filter"
2096
  msgstr ""
2097
 
2098
- #: adminpages/orders.php:1029 adminpages/orders.php:1032
2099
  #: adminpages/orders.php:535 adminpages/orders.php:538
2100
  #: adminpages/orders.php:777 adminpages/orders.php:780
2101
  #: adminpages/orders.php:883 adminpages/orders.php:886
2102
  #: adminpages/orders.php:912 adminpages/orders.php:915
 
2103
  msgid "Search Orders"
2104
  msgstr ""
2105
 
2106
- #: adminpages/orders.php:1096 adminpages/orders.php:590
2107
  #: adminpages/orders.php:893 adminpages/orders.php:903
2108
  #: adminpages/orders.php:930 adminpages/orders.php:959
 
2109
  #, php-format
2110
  msgid "%d orders found."
2111
  msgstr ""
2112
 
2113
- #: adminpages/orders.php:1105 adminpages/reports/login.php:159
2114
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
2115
  #: adminpages/orders.php:599 adminpages/orders.php:902
2116
  #: adminpages/orders.php:912 adminpages/orders.php:939
2117
- #: adminpages/orders.php:968 adminpages/paymentsettings.php:211
2118
- #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
2119
- #: adminpages/reports/login.php:141 adminpages/reports/login.php:143
2120
- #: adminpages/reports/login.php:159
2121
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
2122
  msgid "User"
2123
  msgstr ""
2124
 
2125
- #: adminpages/orders.php:1107 includes/init.php:243 includes/profile.php:27
2126
  #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
2127
  #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
2128
  #: adminpages/orders.php:601 adminpages/orders.php:904
2129
  #: adminpages/orders.php:914 adminpages/orders.php:941
2130
- #: adminpages/orders.php:970 includes/init.php:214 includes/init.php:217
2131
- #: includes/init.php:218 includes/init.php:220 includes/init.php:222
2132
- #: includes/init.php:230 includes/init.php:238 includes/init.php:243
2133
- #: includes/profile.php:25 includes/profile.php:27 pages/checkout.php:33
2134
- #: pages/checkout.php:34 pages/checkout.php:35 pages/checkout.php:42
2135
- #: pages/confirmation.php:46 pages/confirmation.php:47
2136
  #: pages/confirmation.php:62 pages/confirmation.php:64
2137
  #: pages/confirmation.php:103 pages/confirmation.php:105 pages/invoice.php:27
2138
  #: pages/invoice.php:28 pages/invoice.php:49 pages/invoice.php:51
2139
  msgid "Membership Level"
2140
  msgstr ""
2141
 
2142
- #: adminpages/orders.php:1109 adminpages/orders.php:1186
2143
  #: adminpages/orders.php:603 adminpages/orders.php:651
2144
  #: adminpages/orders.php:906 adminpages/orders.php:916
2145
  #: adminpages/orders.php:943 adminpages/orders.php:954
2146
  #: adminpages/orders.php:972 adminpages/orders.php:982
2147
  #: adminpages/orders.php:1011 adminpages/orders.php:1040
 
2148
  msgid "Payment"
2149
  msgstr ""
2150
 
2151
- #: adminpages/orders.php:1111 adminpages/orders.php:605
2152
  #: adminpages/orders.php:908 adminpages/orders.php:918
2153
  #: adminpages/orders.php:945 adminpages/orders.php:974
 
2154
  msgid "Transaction IDs"
2155
  msgstr ""
2156
 
2157
- #: adminpages/orders.php:1141 adminpages/orders.php:630
2158
  #: adminpages/orders.php:933 adminpages/orders.php:943
2159
  #: adminpages/orders.php:972 adminpages/orders.php:1001
 
2160
  msgid "deleted"
2161
  msgstr ""
2162
 
2163
- #: adminpages/orders.php:1192 adminpages/orders.php:653
2164
  #: adminpages/orders.php:956 adminpages/orders.php:974
2165
  #: adminpages/orders.php:984 adminpages/orders.php:1013
2166
- #: adminpages/orders.php:1042
2167
  msgid "Subscription"
2168
  msgstr ""
2169
 
2170
- #: adminpages/orders.php:1211 adminpages/orders.php:664
2171
  #: adminpages/orders.php:967 adminpages/orders.php:985
2172
  #: adminpages/orders.php:995 adminpages/orders.php:998
2173
  #: adminpages/orders.php:1027 adminpages/orders.php:1056
 
2174
  #, php-format
2175
  msgid ""
2176
  "Deleting orders is permanent and can affect active users. Are you sure you "
2177
  "want to delete order %s?"
2178
  msgstr ""
2179
 
2180
- #: adminpages/orders.php:1215 adminpages/orders.php:1030
2181
- #: adminpages/orders.php:1059
2182
  msgid "print"
2183
  msgstr ""
2184
 
2185
- #: adminpages/orders.php:1219 adminpages/orders.php:1033
2186
- #: adminpages/orders.php:1062
2187
  msgid "email"
2188
  msgstr ""
2189
 
2190
- #: adminpages/orders.php:1228 adminpages/orders.php:674
2191
  #: adminpages/orders.php:977 adminpages/orders.php:995
2192
  #: adminpages/orders.php:1005 adminpages/orders.php:1008
2193
  #: adminpages/orders.php:1043 adminpages/orders.php:1072
 
2194
  msgid "No orders found."
2195
  msgstr ""
2196
 
@@ -2447,7 +2494,7 @@ msgstr ""
2447
  msgid "Sales Tax"
2448
  msgstr ""
2449
 
2450
- #: adminpages/paymentsettings.php:188 pages/billing.php:94
2451
  #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
2452
  #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
2453
  #: adminpages/paymentsettings.php:445 pages/billing.php:78
@@ -2819,7 +2866,7 @@ msgstr ""
2819
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2820
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2821
  #: classes/class.memberorder.php:697 classes/class.memberorder.php:699
2822
- #: includes/cleanup.php:24
2823
  #, php-format
2824
  msgid ""
2825
  "There was an error canceling the subscription for user with ID=%s. You will "
@@ -2856,8 +2903,8 @@ msgstr ""
2856
  #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2857
  #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2858
  #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:659
2859
- #: classes/gateways/class.pmprogateway_braintree.php:367
2860
- #: classes/gateways/class.pmprogateway_stripe.php:541 pages/checkout.php:76
2861
  #: pages/checkout.php:86 pages/checkout.php:612 pages/confirmation.php:52
2862
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2863
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
@@ -2877,13 +2924,15 @@ msgstr ""
2877
  #: classes/gateways/class.pmprogateway_braintree.php:349
2878
  #: classes/gateways/class.pmprogateway_braintree.php:362
2879
  #: classes/gateways/class.pmprogateway_braintree.php:364
 
2880
  #: classes/gateways/class.pmprogateway_braintree.php:368
2881
  #: classes/gateways/class.pmprogateway_stripe.php:495
2882
  #: classes/gateways/class.pmprogateway_stripe.php:496
2883
  #: classes/gateways/class.pmprogateway_stripe.php:506
2884
  #: classes/gateways/class.pmprogateway_stripe.php:510
2885
  #: classes/gateways/class.pmprogateway_stripe.php:536
2886
- #: classes/gateways/class.pmprogateway_stripe.php:540 pages/checkout.php:66
 
2887
  #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2888
  #: pages/checkout.php:76 pages/checkout.php:77 pages/checkout.php:78
2889
  #: pages/checkout.php:85 pages/checkout.php:86 pages/checkout.php:549
@@ -2990,7 +3039,7 @@ msgstr ""
2990
  #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
2991
  #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
2992
  #: classes/class.pmproemail.php:800 classes/class.pmproemail.php:809
2993
- #: classes/class.pmproemail.php:811
2994
  #, php-format
2995
  msgid "The new level is %s"
2996
  msgstr ""
@@ -3006,9 +3055,10 @@ msgstr ""
3006
  #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
3007
  #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
3008
  #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
3009
- #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:779
3010
- #: classes/class.pmproemail.php:803 classes/class.pmproemail.php:806
3011
- #: classes/class.pmproemail.php:815 classes/class.pmproemail.php:817
 
3012
  #, php-format
3013
  msgid "This membership will expire on %s"
3014
  msgstr ""
@@ -3017,37 +3067,38 @@ msgstr ""
3017
  #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
3018
  #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
3019
  #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
3020
- #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:783
3021
- #: classes/class.pmproemail.php:807 classes/class.pmproemail.php:810
3022
- #: classes/class.pmproemail.php:819 classes/class.pmproemail.php:821
 
3023
  msgid "This membership does not expire"
3024
  msgstr ""
3025
 
3026
  #: classes/class.pmproemail.php:806 classes/class.pmproemail.php:679
3027
  #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
3028
  #: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
3029
- #: classes/class.pmproemail.php:807
3030
  #, php-format
3031
  msgid "Membership for %s at %s has been changed"
3032
  msgstr ""
3033
 
3034
  #: classes/class.pmproemail.php:812 classes/class.pmproemail.php:799
3035
  #: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
3036
- #: classes/class.pmproemail.php:813
3037
  msgid "Membership has been cancelled"
3038
  msgstr ""
3039
 
3040
  #: classes/class.pmproemail.php:849 classes/class.pmproemail.php:848
3041
- #: classes/class.pmproemail.php:850
3042
  msgid "Invoice for Order #: "
3043
  msgstr ""
3044
 
3045
  #: classes/gateways/class.pmprogateway.php:55
3046
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
3047
- #: classes/gateways/class.pmprogateway_check.php:193
3048
  #: classes/gateways/class.pmprogateway_cybersource.php:171
3049
  #: classes/gateways/class.pmprogateway_payflowpro.php:164
3050
- #: classes/gateways/class.pmprogateway_paypal.php:249
3051
  #: classes/gateways/class.pmprogateway.php:55
3052
  #: classes/gateways/class.pmprogateway_authorizenet.php:55
3053
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
@@ -3069,15 +3120,15 @@ msgstr ""
3069
  #: classes/gateways/class.pmprogateway_authorizenet.php:222
3070
  #: classes/gateways/class.pmprogateway_authorizenet.php:227
3071
  #: classes/gateways/class.pmprogateway_authorizenet.php:244
3072
- #: classes/gateways/class.pmprogateway_check.php:245
3073
- #: classes/gateways/class.pmprogateway_check.php:250
3074
- #: classes/gateways/class.pmprogateway_check.php:268
3075
  #: classes/gateways/class.pmprogateway_cybersource.php:222
3076
  #: classes/gateways/class.pmprogateway_cybersource.php:227
3077
  #: classes/gateways/class.pmprogateway_cybersource.php:245
3078
  #: classes/gateways/class.pmprogateway_payflowpro.php:187
3079
  #: classes/gateways/class.pmprogateway_payflowpro.php:192
3080
- #: classes/gateways/class.pmprogateway_paypal.php:272
3081
  #: classes/gateways/class.pmprogateway.php:106
3082
  #: classes/gateways/class.pmprogateway.php:111
3083
  #: classes/gateways/class.pmprogateway.php:129
@@ -3114,7 +3165,7 @@ msgstr ""
3114
 
3115
  #: classes/gateways/class.pmprogateway.php:113
3116
  #: classes/gateways/class.pmprogateway_authorizenet.php:228
3117
- #: classes/gateways/class.pmprogateway_check.php:252
3118
  #: classes/gateways/class.pmprogateway_cybersource.php:229
3119
  #: classes/gateways/class.pmprogateway.php:113
3120
  #: classes/gateways/class.pmprogateway_authorizenet.php:112
@@ -3185,7 +3236,7 @@ msgstr ""
3185
  msgid "Could not connect to Authorize.net"
3186
  msgstr ""
3187
 
3188
- #: classes/gateways/class.pmprogateway_braintree.php:76
3189
  #: paid-memberships-pro.php:134
3190
  #: classes/gateways/class.pmprogateway_braintree.php:63
3191
  #: classes/gateways/class.pmprogateway_braintree.php:76
@@ -3195,13 +3246,13 @@ msgstr ""
3195
  msgid "Braintree Payments"
3196
  msgstr ""
3197
 
3198
- #: classes/gateways/class.pmprogateway_braintree.php:132
3199
  #: classes/gateways/class.pmprogateway_braintree.php:119
3200
  #: classes/gateways/class.pmprogateway_braintree.php:132
3201
  msgid "Braintree Settings"
3202
  msgstr ""
3203
 
3204
- #: classes/gateways/class.pmprogateway_braintree.php:137
3205
  #: classes/gateways/class.pmprogateway_cybersource.php:106
3206
  #: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
3207
  #: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
@@ -3212,7 +3263,7 @@ msgstr ""
3212
  msgid "Merchant ID"
3213
  msgstr ""
3214
 
3215
- #: classes/gateways/class.pmprogateway_braintree.php:145
3216
  #: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
3217
  #: adminpages/paymentsettings.php:311
3218
  #: classes/gateways/class.pmprogateway_braintree.php:132
@@ -3220,7 +3271,7 @@ msgstr ""
3220
  msgid "Public Key"
3221
  msgstr ""
3222
 
3223
- #: classes/gateways/class.pmprogateway_braintree.php:153
3224
  #: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
3225
  #: adminpages/paymentsettings.php:319
3226
  #: classes/gateways/class.pmprogateway_braintree.php:140
@@ -3228,7 +3279,7 @@ msgstr ""
3228
  msgid "Private Key"
3229
  msgstr ""
3230
 
3231
- #: classes/gateways/class.pmprogateway_braintree.php:161
3232
  #: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
3233
  #: adminpages/paymentsettings.php:327
3234
  #: classes/gateways/class.pmprogateway_braintree.php:148
@@ -3236,8 +3287,8 @@ msgstr ""
3236
  msgid "Client-Side Encryption Key"
3237
  msgstr ""
3238
 
3239
- #: classes/gateways/class.pmprogateway_braintree.php:169
3240
- #: classes/gateways/class.pmprogateway_stripe.php:216
3241
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
3242
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
3243
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
@@ -3248,10 +3299,11 @@ msgstr ""
3248
  #: classes/gateways/class.pmprogateway_stripe.php:182
3249
  #: classes/gateways/class.pmprogateway_stripe.php:192
3250
  #: classes/gateways/class.pmprogateway_stripe.php:214
 
3251
  msgid "Web Hook URL"
3252
  msgstr ""
3253
 
3254
- #: classes/gateways/class.pmprogateway_braintree.php:173
3255
  #: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
3256
  #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
3257
  #: classes/gateways/class.pmprogateway_braintree.php:160
@@ -3259,8 +3311,8 @@ msgstr ""
3259
  msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
3260
  msgstr ""
3261
 
3262
- #: classes/gateways/class.pmprogateway_braintree.php:286
3263
- #: classes/gateways/class.pmprogateway_stripe.php:429 pages/checkout.php:503
3264
  #: classes/gateways/class.pmprogateway_braintree.php:270
3265
  #: classes/gateways/class.pmprogateway_braintree.php:283
3266
  #: classes/gateways/class.pmprogateway_braintree.php:285
@@ -3270,15 +3322,16 @@ msgstr ""
3270
  #: classes/gateways/class.pmprogateway_stripe.php:398
3271
  #: classes/gateways/class.pmprogateway_stripe.php:402
3272
  #: classes/gateways/class.pmprogateway_stripe.php:426
3273
- #: classes/gateways/class.pmprogateway_stripe.php:427 pages/checkout.php:476
 
3274
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3275
  #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
3276
  #: pages/checkout.php:503
3277
  msgid "Payment Information"
3278
  msgstr ""
3279
 
3280
- #: classes/gateways/class.pmprogateway_braintree.php:287
3281
- #: classes/gateways/class.pmprogateway_stripe.php:430 pages/checkout.php:504
3282
  #: classes/gateways/class.pmprogateway_braintree.php:270
3283
  #: classes/gateways/class.pmprogateway_braintree.php:283
3284
  #: classes/gateways/class.pmprogateway_braintree.php:285
@@ -3288,7 +3341,8 @@ msgstr ""
3288
  #: classes/gateways/class.pmprogateway_stripe.php:398
3289
  #: classes/gateways/class.pmprogateway_stripe.php:402
3290
  #: classes/gateways/class.pmprogateway_stripe.php:426
3291
- #: classes/gateways/class.pmprogateway_stripe.php:428 pages/checkout.php:476
 
3292
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3293
  #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
3294
  #: pages/checkout.php:504
@@ -3296,8 +3350,8 @@ msgstr ""
3296
  msgid "We Accept %s"
3297
  msgstr ""
3298
 
3299
- #: classes/gateways/class.pmprogateway_braintree.php:321
3300
- #: classes/gateways/class.pmprogateway_stripe.php:495 pages/billing.php:263
3301
  #: pages/checkout.php:570
3302
  #: classes/gateways/class.pmprogateway_braintree.php:303
3303
  #: classes/gateways/class.pmprogateway_braintree.php:316
@@ -3308,7 +3362,8 @@ msgstr ""
3308
  #: classes/gateways/class.pmprogateway_stripe.php:460
3309
  #: classes/gateways/class.pmprogateway_stripe.php:464
3310
  #: classes/gateways/class.pmprogateway_stripe.php:490
3311
- #: classes/gateways/class.pmprogateway_stripe.php:493 pages/billing.php:244
 
3312
  #: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
3313
  #: pages/billing.php:263 pages/checkout.php:503 pages/checkout.php:519
3314
  #: pages/checkout.php:520 pages/checkout.php:527 pages/checkout.php:548
@@ -3316,61 +3371,67 @@ msgstr ""
3316
  msgid "Card Number"
3317
  msgstr ""
3318
 
3319
- #: classes/gateways/class.pmprogateway_braintree.php:358
3320
- #: classes/gateways/class.pmprogateway_stripe.php:532 pages/billing.php:301
3321
  #: pages/checkout.php:605
3322
  #: classes/gateways/class.pmprogateway_braintree.php:340
3323
  #: classes/gateways/class.pmprogateway_braintree.php:353
3324
  #: classes/gateways/class.pmprogateway_braintree.php:355
 
3325
  #: classes/gateways/class.pmprogateway_braintree.php:359
3326
  #: classes/gateways/class.pmprogateway_stripe.php:486
3327
  #: classes/gateways/class.pmprogateway_stripe.php:487
3328
  #: classes/gateways/class.pmprogateway_stripe.php:497
3329
  #: classes/gateways/class.pmprogateway_stripe.php:501
3330
  #: classes/gateways/class.pmprogateway_stripe.php:527
3331
- #: classes/gateways/class.pmprogateway_stripe.php:531 pages/billing.php:281
 
3332
  #: pages/billing.php:285 pages/billing.php:294 pages/billing.php:297
3333
  #: pages/billing.php:301 pages/checkout.php:540 pages/checkout.php:556
3334
  #: pages/checkout.php:557 pages/checkout.php:564 pages/checkout.php:585
3335
- #: pages/checkout.php:594 pages/checkout.php:603 pages/checkout.php:607
3336
- #: pages/checkout.php:608
3337
  msgid "CVV"
3338
  msgstr ""
3339
 
3340
- #: classes/gateways/class.pmprogateway_braintree.php:359
3341
- #: classes/gateways/class.pmprogateway_stripe.php:533 pages/billing.php:302
3342
  #: pages/checkout.php:606
3343
  #: classes/gateways/class.pmprogateway_braintree.php:341
3344
  #: classes/gateways/class.pmprogateway_braintree.php:354
3345
  #: classes/gateways/class.pmprogateway_braintree.php:356
 
3346
  #: classes/gateways/class.pmprogateway_braintree.php:360
3347
  #: classes/gateways/class.pmprogateway_stripe.php:487
3348
  #: classes/gateways/class.pmprogateway_stripe.php:488
3349
  #: classes/gateways/class.pmprogateway_stripe.php:498
3350
  #: classes/gateways/class.pmprogateway_stripe.php:502
3351
  #: classes/gateways/class.pmprogateway_stripe.php:528
3352
- #: classes/gateways/class.pmprogateway_stripe.php:532 pages/billing.php:282
 
3353
  #: pages/billing.php:286 pages/billing.php:295 pages/billing.php:298
3354
  #: pages/billing.php:302 pages/checkout.php:541 pages/checkout.php:557
3355
  #: pages/checkout.php:558 pages/checkout.php:565 pages/checkout.php:586
3356
- #: pages/checkout.php:595 pages/checkout.php:604 pages/checkout.php:608
3357
- #: pages/checkout.php:609
3358
  msgid "what's this?"
3359
  msgstr ""
3360
 
3361
- #: classes/gateways/class.pmprogateway_braintree.php:369
3362
- #: classes/gateways/class.pmprogateway_stripe.php:543 pages/checkout.php:88
3363
  #: pages/checkout.php:614
3364
  #: classes/gateways/class.pmprogateway_braintree.php:351
3365
  #: classes/gateways/class.pmprogateway_braintree.php:364
3366
  #: classes/gateways/class.pmprogateway_braintree.php:366
 
3367
  #: classes/gateways/class.pmprogateway_braintree.php:370
3368
  #: classes/gateways/class.pmprogateway_stripe.php:497
3369
  #: classes/gateways/class.pmprogateway_stripe.php:498
3370
  #: classes/gateways/class.pmprogateway_stripe.php:508
3371
  #: classes/gateways/class.pmprogateway_stripe.php:512
3372
  #: classes/gateways/class.pmprogateway_stripe.php:538
3373
- #: classes/gateways/class.pmprogateway_stripe.php:542 pages/checkout.php:78
 
3374
  #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3375
  #: pages/checkout.php:88 pages/checkout.php:551 pages/checkout.php:567
3376
  #: pages/checkout.php:568 pages/checkout.php:575 pages/checkout.php:596
@@ -3379,12 +3440,13 @@ msgstr ""
3379
  msgid "Apply"
3380
  msgstr ""
3381
 
3382
- #: classes/gateways/class.pmprogateway_braintree.php:424
3383
- #: classes/gateways/class.pmprogateway_stripe.php:1073
3384
  #: classes/gateways/class.pmprogateway_braintree.php:61
3385
  #: classes/gateways/class.pmprogateway_braintree.php:406
3386
  #: classes/gateways/class.pmprogateway_braintree.php:419
3387
  #: classes/gateways/class.pmprogateway_braintree.php:421
 
3388
  #: classes/gateways/class.pmprogateway_braintree.php:425
3389
  #: classes/gateways/class.pmprogateway_stripe.php:53
3390
  #: classes/gateways/class.pmprogateway_stripe.php:1011
@@ -3394,82 +3456,90 @@ msgstr ""
3394
  #: classes/gateways/class.pmprogateway_stripe.php:1040
3395
  #: classes/gateways/class.pmprogateway_stripe.php:1068
3396
  #: classes/gateways/class.pmprogateway_stripe.php:1072
 
3397
  msgid "Unknown error: Initial payment failed."
3398
  msgstr ""
3399
 
3400
- #: classes/gateways/class.pmprogateway_braintree.php:483
3401
  #: classes/gateways/class.pmprogateway_braintree.php:120
3402
  #: classes/gateways/class.pmprogateway_braintree.php:465
3403
  #: classes/gateways/class.pmprogateway_braintree.php:478
3404
  #: classes/gateways/class.pmprogateway_braintree.php:480
 
3405
  #: classes/gateways/class.pmprogateway_braintree.php:484
3406
  msgid "Error during settlement:"
3407
  msgstr ""
3408
 
3409
- #: classes/gateways/class.pmprogateway_braintree.php:492
3410
  #: classes/gateways/class.pmprogateway_braintree.php:129
3411
  #: classes/gateways/class.pmprogateway_braintree.php:474
3412
  #: classes/gateways/class.pmprogateway_braintree.php:487
3413
  #: classes/gateways/class.pmprogateway_braintree.php:489
 
3414
  #: classes/gateways/class.pmprogateway_braintree.php:493
3415
  msgid "Error during charge:"
3416
  msgstr ""
3417
 
3418
- #: classes/gateways/class.pmprogateway_braintree.php:584
3419
  #: classes/gateways/class.pmprogateway_braintree.php:198
3420
  #: classes/gateways/class.pmprogateway_braintree.php:221
3421
  #: classes/gateways/class.pmprogateway_braintree.php:566
3422
  #: classes/gateways/class.pmprogateway_braintree.php:579
3423
  #: classes/gateways/class.pmprogateway_braintree.php:581
 
3424
  #: classes/gateways/class.pmprogateway_braintree.php:585
3425
  msgid "Failed to update customer."
3426
  msgstr ""
3427
 
3428
- #: classes/gateways/class.pmprogateway_braintree.php:632
3429
  #: classes/gateways/class.pmprogateway_braintree.php:246
3430
  #: classes/gateways/class.pmprogateway_braintree.php:269
3431
  #: classes/gateways/class.pmprogateway_braintree.php:614
3432
  #: classes/gateways/class.pmprogateway_braintree.php:627
3433
  #: classes/gateways/class.pmprogateway_braintree.php:629
 
3434
  #: classes/gateways/class.pmprogateway_braintree.php:633
3435
  msgid "Failed to create customer."
3436
  msgstr ""
3437
 
3438
- #: classes/gateways/class.pmprogateway_braintree.php:639
3439
  #: classes/gateways/class.pmprogateway_braintree.php:253
3440
  #: classes/gateways/class.pmprogateway_braintree.php:276
3441
  #: classes/gateways/class.pmprogateway_braintree.php:621
3442
  #: classes/gateways/class.pmprogateway_braintree.php:634
3443
  #: classes/gateways/class.pmprogateway_braintree.php:636
 
3444
  #: classes/gateways/class.pmprogateway_braintree.php:640
3445
  msgid "Error creating customer record with Braintree:"
3446
  msgstr ""
3447
 
3448
- #: classes/gateways/class.pmprogateway_braintree.php:739
3449
  #: classes/gateways/class.pmprogateway_braintree.php:344
3450
  #: classes/gateways/class.pmprogateway_braintree.php:345
3451
  #: classes/gateways/class.pmprogateway_braintree.php:376
3452
  #: classes/gateways/class.pmprogateway_braintree.php:721
3453
  #: classes/gateways/class.pmprogateway_braintree.php:734
3454
  #: classes/gateways/class.pmprogateway_braintree.php:736
 
3455
  #: classes/gateways/class.pmprogateway_braintree.php:740
3456
  msgid "Error subscribing customer to plan with Braintree:"
3457
  msgstr ""
3458
 
3459
- #: classes/gateways/class.pmprogateway_braintree.php:754
3460
  #: classes/gateways/class.pmprogateway_braintree.php:359
3461
  #: classes/gateways/class.pmprogateway_braintree.php:360
3462
  #: classes/gateways/class.pmprogateway_braintree.php:391
3463
  #: classes/gateways/class.pmprogateway_braintree.php:736
3464
  #: classes/gateways/class.pmprogateway_braintree.php:749
3465
  #: classes/gateways/class.pmprogateway_braintree.php:751
 
3466
  #: classes/gateways/class.pmprogateway_braintree.php:755
3467
  msgid "Failed to subscribe with Braintree:"
3468
  msgstr ""
3469
 
3470
- #: classes/gateways/class.pmprogateway_braintree.php:792
3471
- #: classes/gateways/class.pmprogateway_braintree.php:805
3472
- #: classes/gateways/class.pmprogateway_braintree.php:812
3473
  #: classes/gateways/class.pmprogateway_braintree.php:397
3474
  #: classes/gateways/class.pmprogateway_braintree.php:398
3475
  #: classes/gateways/class.pmprogateway_braintree.php:410
@@ -3482,13 +3552,16 @@ msgstr ""
3482
  #: classes/gateways/class.pmprogateway_braintree.php:774
3483
  #: classes/gateways/class.pmprogateway_braintree.php:787
3484
  #: classes/gateways/class.pmprogateway_braintree.php:789
 
3485
  #: classes/gateways/class.pmprogateway_braintree.php:793
3486
  #: classes/gateways/class.pmprogateway_braintree.php:794
3487
  #: classes/gateways/class.pmprogateway_braintree.php:800
3488
  #: classes/gateways/class.pmprogateway_braintree.php:802
 
3489
  #: classes/gateways/class.pmprogateway_braintree.php:806
3490
  #: classes/gateways/class.pmprogateway_braintree.php:807
3491
  #: classes/gateways/class.pmprogateway_braintree.php:809
 
3492
  #: classes/gateways/class.pmprogateway_braintree.php:813
3493
  #: classes/gateways/class.pmprogateway_stripe.php:343
3494
  #: classes/gateways/class.pmprogateway_stripe.php:344
@@ -3502,7 +3575,7 @@ msgstr ""
3502
  msgid "Could not find the subscription."
3503
  msgstr ""
3504
 
3505
- #: classes/gateways/class.pmprogateway_check.php:48
3506
  #: paid-memberships-pro.php:127 adminpages/orders.php:399
3507
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3508
  #: adminpages/paymentsettings.php:159
@@ -3513,19 +3586,19 @@ msgstr ""
3513
  msgid "Pay by Check"
3514
  msgstr ""
3515
 
3516
- #: classes/gateways/class.pmprogateway_check.php:100
3517
  #: classes/gateways/class.pmprogateway_check.php:100
3518
  msgid "Pay by Check Settings"
3519
  msgstr ""
3520
 
3521
- #: classes/gateways/class.pmprogateway_check.php:105
3522
  #: adminpages/paymentsettings.php:389 adminpages/paymentsettings.php:415
3523
  #: adminpages/paymentsettings.php:420 adminpages/paymentsettings.php:422
3524
  #: classes/gateways/class.pmprogateway_check.php:105
3525
  msgid "Instructions"
3526
  msgstr ""
3527
 
3528
- #: classes/gateways/class.pmprogateway_check.php:109
3529
  #: adminpages/paymentsettings.php:393 adminpages/paymentsettings.php:419
3530
  #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:426
3531
  #: classes/gateways/class.pmprogateway_check.php:109
@@ -3607,7 +3680,7 @@ msgid ""
3607
  msgstr ""
3608
 
3609
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3610
- #: classes/gateways/class.pmprogateway_paypal.php:279
3611
  #: classes/gateways/class.pmprogateway_payflowpro.php:57
3612
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3613
  #: classes/gateways/class.pmprogateway_paypal.php:57
@@ -3618,7 +3691,7 @@ msgid ""
3618
  "owner immediately to correct this."
3619
  msgstr ""
3620
 
3621
- #: classes/gateways/class.pmprogateway_paypal.php:57
3622
  #: paid-memberships-pro.php:130
3623
  #: classes/gateways/class.pmprogateway_paypal.php:57
3624
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
@@ -3627,8 +3700,8 @@ msgstr ""
3627
  msgid "PayPal Website Payments Pro"
3628
  msgstr ""
3629
 
3630
- #: classes/gateways/class.pmprogateway_paypal.php:113
3631
- #: classes/gateways/class.pmprogateway_paypalexpress.php:128
3632
  #: classes/gateways/class.pmprogateway_paypalstandard.php:112
3633
  #: classes/gateways/class.pmprogateway_paypal.php:113
3634
  #: classes/gateways/class.pmprogateway_paypalexpress.php:118
@@ -3637,8 +3710,8 @@ msgstr ""
3637
  msgid "PayPal Settings"
3638
  msgstr ""
3639
 
3640
- #: classes/gateways/class.pmprogateway_paypal.php:118
3641
- #: classes/gateways/class.pmprogateway_paypalexpress.php:133
3642
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3643
  #: adminpages/paymentsettings.php:179
3644
  #: classes/gateways/class.pmprogateway_paypal.php:118
@@ -3653,8 +3726,8 @@ msgid ""
3653
  "here.</a>"
3654
  msgstr ""
3655
 
3656
- #: classes/gateways/class.pmprogateway_paypal.php:123
3657
- #: classes/gateways/class.pmprogateway_paypalexpress.php:138
3658
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3659
  #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3660
  #: adminpages/paymentsettings.php:236
@@ -3665,8 +3738,8 @@ msgstr ""
3665
  msgid "Gateway Account Email"
3666
  msgstr ""
3667
 
3668
- #: classes/gateways/class.pmprogateway_paypal.php:131
3669
- #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3670
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3671
  #: classes/gateways/class.pmprogateway_twocheckout.php:119
3672
  #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
@@ -3682,8 +3755,8 @@ msgstr ""
3682
  msgid "API Username"
3683
  msgstr ""
3684
 
3685
- #: classes/gateways/class.pmprogateway_paypal.php:139
3686
- #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3687
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3688
  #: classes/gateways/class.pmprogateway_twocheckout.php:128
3689
  #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
@@ -3699,8 +3772,8 @@ msgstr ""
3699
  msgid "API Password"
3700
  msgstr ""
3701
 
3702
- #: classes/gateways/class.pmprogateway_paypal.php:147
3703
- #: classes/gateways/class.pmprogateway_paypalexpress.php:162
3704
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3705
  #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3706
  #: adminpages/paymentsettings.php:260
@@ -3711,8 +3784,13 @@ msgstr ""
3711
  msgid "API Signature"
3712
  msgstr ""
3713
 
3714
- #: classes/gateways/class.pmprogateway_paypal.php:155
3715
- #: classes/gateways/class.pmprogateway_paypalexpress.php:170
 
 
 
 
 
3716
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3717
  #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3718
  #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
@@ -3723,16 +3801,16 @@ msgstr ""
3723
  msgid "IPN Handler URL"
3724
  msgstr ""
3725
 
3726
- #: classes/gateways/class.pmprogateway_paypal.php:158
3727
  #: classes/gateways/class.pmprogateway_paypal.php:158
3728
  msgid ""
3729
  "This URL is passed to PayPal for all new charges and subscriptions. You "
3730
  "SHOULD NOT set this in your PayPal account settings."
3731
  msgstr ""
3732
 
3733
- #: classes/gateways/class.pmprogateway_paypal.php:178
3734
- #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3735
- #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3736
  #: pages/checkout.php:302 classes/gateways/class.pmprogateway_paypal.php:178
3737
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3738
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
@@ -3744,24 +3822,25 @@ msgstr ""
3744
  msgid "Check Out with PayPal"
3745
  msgstr ""
3746
 
3747
- #: classes/gateways/class.pmprogateway_paypal.php:184
3748
- #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3749
- #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3750
- #: pages/checkout.php:724 classes/gateways/class.pmprogateway_paypal.php:184
3751
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3752
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3753
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3754
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3755
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3756
- #: pages/checkout.php:722 pages/checkout.php:728 pages/checkout.php:729
 
3757
  msgid "Submit and Check Out"
3758
  msgstr ""
3759
 
3760
- #: classes/gateways/class.pmprogateway_paypal.php:184
3761
- #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3762
- #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3763
  #: classes/gateways/class.pmprogateway_twocheckout.php:203
3764
- #: pages/checkout.php:724 classes/gateways/class.pmprogateway_paypal.php:184
3765
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3766
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3767
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
@@ -3770,13 +3849,14 @@ msgstr ""
3770
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3771
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3772
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3773
- #: pages/checkout.php:722 pages/checkout.php:728 pages/checkout.php:729
 
3774
  msgid "Submit and Confirm"
3775
  msgstr ""
3776
 
3777
- #: classes/gateways/class.pmprogateway_paypal.php:608
3778
- #: classes/gateways/class.pmprogateway_paypalexpress.php:752
3779
- #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3780
  #: classes/gateways/class.pmprogateway_paypal.php:385
3781
  #: classes/gateways/class.pmprogateway_paypal.php:605
3782
  #: classes/gateways/class.pmprogateway_paypal.php:607
@@ -3798,7 +3878,7 @@ msgid ""
3798
  "to make sure you are not charged going forward."
3799
  msgstr ""
3800
 
3801
- #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3802
  #: paid-memberships-pro.php:129
3803
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3804
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
@@ -3808,7 +3888,7 @@ msgstr ""
3808
  msgid "PayPal Express"
3809
  msgstr ""
3810
 
3811
- #: classes/gateways/class.pmprogateway_paypalexpress.php:173
3812
  #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
3813
  #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3814
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
@@ -3816,8 +3896,8 @@ msgstr ""
3816
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3817
  msgstr ""
3818
 
3819
- #: classes/gateways/class.pmprogateway_paypalexpress.php:278
3820
- #: classes/gateways/class.pmprogateway_paypalexpress.php:330
3821
  #: classes/gateways/class.pmprogateway_paypalexpress.php:268
3822
  #: classes/gateways/class.pmprogateway_paypalexpress.php:278
3823
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
@@ -3849,141 +3929,154 @@ msgstr ""
3849
 
3850
  #: classes/gateways/class.pmprogateway_stripe.php:55
3851
  #: classes/gateways/class.pmprogateway_stripe.php:51
 
3852
  #, php-format
3853
  msgid ""
3854
  "The %s gateway depends on the %s PHP extension. Please enable it, or ask "
3855
  "your hosting provider to enable it"
3856
  msgstr ""
3857
 
3858
- #: classes/gateways/class.pmprogateway_stripe.php:128
3859
  #: paid-memberships-pro.php:128
3860
  #: classes/gateways/class.pmprogateway_stripe.php:93
3861
  #: classes/gateways/class.pmprogateway_stripe.php:94
3862
  #: classes/gateways/class.pmprogateway_stripe.php:104
3863
  #: classes/gateways/class.pmprogateway_stripe.php:126
 
3864
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3865
  #: paid-memberships-pro.php:125 paid-memberships-pro.php:126
3866
  #: paid-memberships-pro.php:127 paid-memberships-pro.php:128
3867
  msgid "Stripe"
3868
  msgstr ""
3869
 
3870
- #: classes/gateways/class.pmprogateway_stripe.php:183
3871
  #: classes/gateways/class.pmprogateway_stripe.php:148
3872
  #: classes/gateways/class.pmprogateway_stripe.php:149
3873
  #: classes/gateways/class.pmprogateway_stripe.php:159
3874
  #: classes/gateways/class.pmprogateway_stripe.php:181
 
3875
  msgid "Stripe Settings"
3876
  msgstr ""
3877
 
3878
- #: classes/gateways/class.pmprogateway_stripe.php:188
3879
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3880
  #: adminpages/paymentsettings.php:286
3881
  #: classes/gateways/class.pmprogateway_stripe.php:153
3882
  #: classes/gateways/class.pmprogateway_stripe.php:154
3883
  #: classes/gateways/class.pmprogateway_stripe.php:164
3884
  #: classes/gateways/class.pmprogateway_stripe.php:186
 
3885
  msgid "Secret Key"
3886
  msgstr ""
3887
 
3888
- #: classes/gateways/class.pmprogateway_stripe.php:196
3889
  #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3890
  #: adminpages/paymentsettings.php:294
3891
  #: classes/gateways/class.pmprogateway_stripe.php:161
3892
  #: classes/gateways/class.pmprogateway_stripe.php:162
3893
  #: classes/gateways/class.pmprogateway_stripe.php:172
3894
  #: classes/gateways/class.pmprogateway_stripe.php:194
 
3895
  msgid "Publishable Key"
3896
  msgstr ""
3897
 
3898
- #: classes/gateways/class.pmprogateway_stripe.php:204
3899
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3900
  #: adminpages/paymentsettings.php:432
3901
  #: classes/gateways/class.pmprogateway_stripe.php:169
3902
  #: classes/gateways/class.pmprogateway_stripe.php:170
3903
  #: classes/gateways/class.pmprogateway_stripe.php:180
3904
  #: classes/gateways/class.pmprogateway_stripe.php:202
 
3905
  msgid "Show Billing Address Fields"
3906
  msgstr ""
3907
 
3908
- #: classes/gateways/class.pmprogateway_stripe.php:211
3909
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3910
  #: classes/gateways/class.pmprogateway_stripe.php:176
3911
  #: classes/gateways/class.pmprogateway_stripe.php:177
3912
  #: classes/gateways/class.pmprogateway_stripe.php:187
3913
  #: classes/gateways/class.pmprogateway_stripe.php:209
 
3914
  msgid ""
3915
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3916
  "the checkout page.<br /><strong>If No, make sure you disable address "
3917
  "verification in the Stripe dashboard settings.</strong>"
3918
  msgstr ""
3919
 
3920
- #: classes/gateways/class.pmprogateway_stripe.php:219
3921
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3922
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3923
  #: classes/gateways/class.pmprogateway_stripe.php:184
3924
  #: classes/gateways/class.pmprogateway_stripe.php:185
3925
  #: classes/gateways/class.pmprogateway_stripe.php:195
3926
  #: classes/gateways/class.pmprogateway_stripe.php:217
 
3927
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3928
  msgstr ""
3929
 
3930
- #: classes/gateways/class.pmprogateway_stripe.php:613
3931
  #: classes/gateways/class.pmprogateway_stripe.php:567
3932
  #: classes/gateways/class.pmprogateway_stripe.php:568
3933
  #: classes/gateways/class.pmprogateway_stripe.php:578
3934
  #: classes/gateways/class.pmprogateway_stripe.php:582
3935
  #: classes/gateways/class.pmprogateway_stripe.php:608
3936
  #: classes/gateways/class.pmprogateway_stripe.php:612
 
3937
  msgid "Subscription Updates"
3938
  msgstr ""
3939
 
3940
- #: classes/gateways/class.pmprogateway_stripe.php:617
3941
  #: classes/gateways/class.pmprogateway_stripe.php:571
3942
  #: classes/gateways/class.pmprogateway_stripe.php:572
3943
  #: classes/gateways/class.pmprogateway_stripe.php:582
3944
  #: classes/gateways/class.pmprogateway_stripe.php:586
3945
  #: classes/gateways/class.pmprogateway_stripe.php:612
3946
  #: classes/gateways/class.pmprogateway_stripe.php:616
 
3947
  msgid ""
3948
  "Subscription updates, allow you to change the member's subscription values "
3949
  "at predefined times. Be sure to click Update Profile after making changes."
3950
  msgstr ""
3951
 
3952
- #: classes/gateways/class.pmprogateway_stripe.php:619
3953
  #: classes/gateways/class.pmprogateway_stripe.php:573
3954
  #: classes/gateways/class.pmprogateway_stripe.php:574
3955
  #: classes/gateways/class.pmprogateway_stripe.php:584
3956
  #: classes/gateways/class.pmprogateway_stripe.php:588
3957
  #: classes/gateways/class.pmprogateway_stripe.php:614
3958
  #: classes/gateways/class.pmprogateway_stripe.php:618
 
3959
  msgid ""
3960
  "Subscription updates, allow you to change the member's subscription values "
3961
  "at predefined times. Be sure to click Update User after making changes."
3962
  msgstr ""
3963
 
3964
- #: classes/gateways/class.pmprogateway_stripe.php:624 pages/billing.php:347
3965
  #: classes/gateways/class.pmprogateway_stripe.php:578
3966
  #: classes/gateways/class.pmprogateway_stripe.php:579
3967
  #: classes/gateways/class.pmprogateway_stripe.php:589
3968
  #: classes/gateways/class.pmprogateway_stripe.php:593
3969
  #: classes/gateways/class.pmprogateway_stripe.php:619
3970
- #: classes/gateways/class.pmprogateway_stripe.php:623 pages/billing.php:294
 
3971
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
3972
  #: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
3973
  msgid "Update"
3974
  msgstr ""
3975
 
3976
- #: classes/gateways/class.pmprogateway_stripe.php:817
3977
  #: classes/gateways/class.pmprogateway_stripe.php:769
3978
  #: classes/gateways/class.pmprogateway_stripe.php:770
3979
  #: classes/gateways/class.pmprogateway_stripe.php:780
3980
  #: classes/gateways/class.pmprogateway_stripe.php:784
3981
  #: classes/gateways/class.pmprogateway_stripe.php:812
3982
  #: classes/gateways/class.pmprogateway_stripe.php:816
 
3983
  msgid "Could not cancel the old subscription. Updates have not been processed."
3984
  msgstr ""
3985
 
3986
- #: classes/gateways/class.pmprogateway_stripe.php:1300
3987
  #: classes/gateways/class.pmprogateway_stripe.php:190
3988
  #: classes/gateways/class.pmprogateway_stripe.php:192
3989
  #: classes/gateways/class.pmprogateway_stripe.php:199
@@ -3998,18 +4091,20 @@ msgstr ""
3998
  #: classes/gateways/class.pmprogateway_stripe.php:1246
3999
  #: classes/gateways/class.pmprogateway_stripe.php:1256
4000
  #: classes/gateways/class.pmprogateway_stripe.php:1260
 
4001
  msgid "Error creating customer record with Stripe:"
4002
  msgstr ""
4003
 
4004
- #: classes/gateways/class.pmprogateway_stripe.php:1357
4005
  #: classes/gateways/class.pmprogateway_stripe.php:1275
4006
  #: classes/gateways/class.pmprogateway_stripe.php:1303
4007
  #: classes/gateways/class.pmprogateway_stripe.php:1313
4008
  #: classes/gateways/class.pmprogateway_stripe.php:1317
 
4009
  msgid "Error getting subscription with Stripe:"
4010
  msgstr ""
4011
 
4012
- #: classes/gateways/class.pmprogateway_stripe.php:1507
4013
  #: classes/gateways/class.pmprogateway_stripe.php:278
4014
  #: classes/gateways/class.pmprogateway_stripe.php:279
4015
  #: classes/gateways/class.pmprogateway_stripe.php:286
@@ -4032,10 +4127,11 @@ msgstr ""
4032
  #: classes/gateways/class.pmprogateway_stripe.php:1453
4033
  #: classes/gateways/class.pmprogateway_stripe.php:1463
4034
  #: classes/gateways/class.pmprogateway_stripe.php:1467
 
4035
  msgid "Error creating plan with Stripe:"
4036
  msgstr ""
4037
 
4038
- #: classes/gateways/class.pmprogateway_stripe.php:1538
4039
  #: classes/gateways/class.pmprogateway_stripe.php:294
4040
  #: classes/gateways/class.pmprogateway_stripe.php:295
4041
  #: classes/gateways/class.pmprogateway_stripe.php:302
@@ -4053,10 +4149,11 @@ msgstr ""
4053
  #: classes/gateways/class.pmprogateway_stripe.php:1484
4054
  #: classes/gateways/class.pmprogateway_stripe.php:1494
4055
  #: classes/gateways/class.pmprogateway_stripe.php:1498
 
4056
  msgid "Error subscribing customer to plan with Stripe:"
4057
  msgstr ""
4058
 
4059
- #: classes/gateways/class.pmprogateway_stripe.php:1634
4060
  #: classes/gateways/class.pmprogateway_stripe.php:383
4061
  #: classes/gateways/class.pmprogateway_stripe.php:389
4062
  #: classes/gateways/class.pmprogateway_stripe.php:410
@@ -4071,10 +4168,11 @@ msgstr ""
4071
  #: classes/gateways/class.pmprogateway_stripe.php:1580
4072
  #: classes/gateways/class.pmprogateway_stripe.php:1590
4073
  #: classes/gateways/class.pmprogateway_stripe.php:1594
 
4074
  msgid "Could not cancel old subscription."
4075
  msgstr ""
4076
 
4077
- #: classes/gateways/class.pmprogateway_stripe.php:1651
4078
  #: classes/gateways/class.pmprogateway_stripe.php:1533
4079
  #: classes/gateways/class.pmprogateway_stripe.php:1534
4080
  #: classes/gateways/class.pmprogateway_stripe.php:1535
@@ -4086,6 +4184,7 @@ msgstr ""
4086
  #: classes/gateways/class.pmprogateway_stripe.php:1597
4087
  #: classes/gateways/class.pmprogateway_stripe.php:1607
4088
  #: classes/gateways/class.pmprogateway_stripe.php:1611
 
4089
  msgid "Could not find the customer."
4090
  msgstr ""
4091
 
@@ -4235,7 +4334,7 @@ msgstr ""
4235
  msgid "Visit Customer Support Forum"
4236
  msgstr ""
4237
 
4238
- #: includes/currencies.php:17 includes/currencies.php:87
4239
  #: includes/currencies.php:7 includes/currencies.php:17
4240
  #: includes/currencies.php:37 includes/currencies.php:44
4241
  #: includes/currencies.php:64 includes/currencies.php:68
@@ -4244,7 +4343,7 @@ msgstr ""
4244
  msgid "US Dollars (&#36;)"
4245
  msgstr ""
4246
 
4247
- #: includes/currencies.php:19 includes/currencies.php:90
4248
  #: includes/currencies.php:8 includes/currencies.php:9
4249
  #: includes/currencies.php:19 includes/currencies.php:40
4250
  #: includes/currencies.php:47 includes/currencies.php:67
@@ -4253,7 +4352,7 @@ msgstr ""
4253
  msgid "Euros (&euro;)"
4254
  msgstr ""
4255
 
4256
- #: includes/currencies.php:24 includes/currencies.php:89
4257
  #: includes/currencies.php:9 includes/currencies.php:14
4258
  #: includes/currencies.php:24 includes/currencies.php:39
4259
  #: includes/currencies.php:46 includes/currencies.php:66
@@ -4277,7 +4376,7 @@ msgstr ""
4277
  msgid "Brazilian Real (R&#36;)"
4278
  msgstr ""
4279
 
4280
- #: includes/currencies.php:35 includes/currencies.php:88
4281
  #: includes/currencies.php:12 includes/currencies.php:24
4282
  #: includes/currencies.php:34 includes/currencies.php:35
4283
  #: includes/currencies.php:38 includes/currencies.php:45
@@ -4347,108 +4446,108 @@ msgstr ""
4347
  msgid "Japanese Yen (&yen;)"
4348
  msgstr ""
4349
 
4350
- #: includes/currencies.php:56 includes/currencies.php:19
4351
  #: includes/currencies.php:22 includes/currencies.php:38
4352
  #: includes/currencies.php:45 includes/currencies.php:55
4353
  #: includes/currencies.php:56
4354
  msgid "Malaysian Ringgits"
4355
  msgstr ""
4356
 
4357
- #: includes/currencies.php:57 includes/currencies.php:20
4358
  #: includes/currencies.php:23 includes/currencies.php:39
4359
  #: includes/currencies.php:46 includes/currencies.php:56
4360
  #: includes/currencies.php:57
4361
  msgid "Mexican Peso (&#36;)"
4362
  msgstr ""
4363
 
4364
- #: includes/currencies.php:58 includes/currencies.php:58
4365
  msgid "Nigerian Naira (&#8358;)"
4366
  msgstr ""
4367
 
4368
- #: includes/currencies.php:59 includes/currencies.php:21
4369
  #: includes/currencies.php:24 includes/currencies.php:40
4370
  #: includes/currencies.php:47 includes/currencies.php:57
4371
  #: includes/currencies.php:59
4372
  msgid "New Zealand Dollar (&#36;)"
4373
  msgstr ""
4374
 
4375
- #: includes/currencies.php:60 includes/currencies.php:22
4376
  #: includes/currencies.php:25 includes/currencies.php:41
4377
  #: includes/currencies.php:48 includes/currencies.php:58
4378
  #: includes/currencies.php:60
4379
  msgid "Norwegian Krone"
4380
  msgstr ""
4381
 
4382
- #: includes/currencies.php:61 includes/currencies.php:23
4383
  #: includes/currencies.php:26 includes/currencies.php:42
4384
  #: includes/currencies.php:49 includes/currencies.php:59
4385
  #: includes/currencies.php:61
4386
  msgid "Philippine Pesos"
4387
  msgstr ""
4388
 
4389
- #: includes/currencies.php:62 includes/currencies.php:24
4390
  #: includes/currencies.php:27 includes/currencies.php:43
4391
  #: includes/currencies.php:50 includes/currencies.php:60
4392
  #: includes/currencies.php:62
4393
  msgid "Polish Zloty"
4394
  msgstr ""
4395
 
4396
- #: includes/currencies.php:64 includes/currencies.php:25
4397
  #: includes/currencies.php:28 includes/currencies.php:45
4398
  #: includes/currencies.php:52 includes/currencies.php:62
4399
  #: includes/currencies.php:64
4400
  msgid "Singapore Dollar (&#36;)"
4401
  msgstr ""
4402
 
4403
- #: includes/currencies.php:69 includes/currencies.php:50
4404
  #: includes/currencies.php:57 includes/currencies.php:67
4405
  #: includes/currencies.php:69
4406
  msgid "South African Rand (R)"
4407
  msgstr ""
4408
 
4409
- #: includes/currencies.php:73 includes/currencies.php:30
4410
  #: includes/currencies.php:50 includes/currencies.php:54
4411
  #: includes/currencies.php:61 includes/currencies.php:71
4412
  #: includes/currencies.php:73
4413
  msgid "South Korean Won"
4414
  msgstr ""
4415
 
4416
- #: includes/currencies.php:74 includes/currencies.php:26
4417
  #: includes/currencies.php:31 includes/currencies.php:51
4418
  #: includes/currencies.php:55 includes/currencies.php:62
4419
  #: includes/currencies.php:72 includes/currencies.php:74
4420
  msgid "Swedish Krona"
4421
  msgstr ""
4422
 
4423
- #: includes/currencies.php:75 includes/currencies.php:27
4424
  #: includes/currencies.php:32 includes/currencies.php:52
4425
  #: includes/currencies.php:56 includes/currencies.php:63
4426
  #: includes/currencies.php:73 includes/currencies.php:75
4427
  msgid "Swiss Franc"
4428
  msgstr ""
4429
 
4430
- #: includes/currencies.php:76 includes/currencies.php:28
4431
  #: includes/currencies.php:33 includes/currencies.php:53
4432
  #: includes/currencies.php:57 includes/currencies.php:64
4433
  #: includes/currencies.php:74 includes/currencies.php:76
4434
  msgid "Taiwan New Dollars"
4435
  msgstr ""
4436
 
4437
- #: includes/currencies.php:77 includes/currencies.php:29
4438
  #: includes/currencies.php:34 includes/currencies.php:54
4439
  #: includes/currencies.php:58 includes/currencies.php:65
4440
  #: includes/currencies.php:75 includes/currencies.php:77
4441
  msgid "Thai Baht"
4442
  msgstr ""
4443
 
4444
- #: includes/currencies.php:78 includes/currencies.php:35
4445
  #: includes/currencies.php:55 includes/currencies.php:59
4446
  #: includes/currencies.php:66 includes/currencies.php:76
4447
  #: includes/currencies.php:78
4448
  msgid "Turkish Lira"
4449
  msgstr ""
4450
 
4451
- #: includes/currencies.php:79 includes/currencies.php:36
4452
  #: includes/currencies.php:56 includes/currencies.php:60
4453
  #: includes/currencies.php:67 includes/currencies.php:77
4454
  #: includes/currencies.php:79
@@ -4459,7 +4558,8 @@ msgstr ""
4459
  #: includes/functions.php:196 includes/functions.php:200
4460
  #: includes/functions.php:202 includes/functions.php:203
4461
  #: includes/functions.php:204 includes/functions.php:207
4462
- #: includes/functions.php:243 includes/functions.php:315
 
4463
  #, php-format
4464
  msgid "The price for membership is <strong>%s</strong> now"
4465
  msgstr ""
@@ -4467,7 +4567,8 @@ msgstr ""
4467
  #: includes/functions.php:311 includes/functions.php:202
4468
  #: includes/functions.php:204 includes/functions.php:205
4469
  #: includes/functions.php:206 includes/functions.php:209
4470
- #: includes/functions.php:245 includes/functions.php:317
 
4471
  #, php-format
4472
  msgid "<strong>%s</strong> now"
4473
  msgstr ""
@@ -4476,13 +4577,14 @@ msgstr ""
4476
  #: includes/functions.php:205 includes/functions.php:211
4477
  #: includes/functions.php:213 includes/functions.php:214
4478
  #: includes/functions.php:215 includes/functions.php:218
4479
- #: includes/functions.php:254 includes/functions.php:326
 
4480
  #, php-format
4481
  msgid " and then <strong>%s per %s for %d more %s</strong>."
4482
  msgstr ""
4483
 
4484
  #: includes/functions.php:324 includes/functions.php:258
4485
- #: includes/functions.php:330
4486
  #, php-format
4487
  msgid " and then <strong>%s every %d %s for %d more payments</strong>."
4488
  msgstr ""
@@ -4491,7 +4593,8 @@ msgstr ""
4491
  #: includes/functions.php:214 includes/functions.php:220
4492
  #: includes/functions.php:222 includes/functions.php:223
4493
  #: includes/functions.php:224 includes/functions.php:227
4494
- #: includes/functions.php:263 includes/functions.php:335
 
4495
  #, php-format
4496
  msgid " and then <strong>%s after %d %s</strong>."
4497
  msgstr ""
@@ -4499,14 +4602,16 @@ msgstr ""
4499
  #: includes/functions.php:337 includes/functions.php:228
4500
  #: includes/functions.php:229 includes/functions.php:230
4501
  #: includes/functions.php:231 includes/functions.php:235
4502
- #: includes/functions.php:271 includes/functions.php:343
 
4503
  #, php-format
4504
  msgid "The price for membership is <strong>%s per %s</strong>."
4505
  msgstr ""
4506
 
4507
  #: includes/functions.php:339 includes/functions.php:230
4508
  #: includes/functions.php:233 includes/functions.php:237
4509
- #: includes/functions.php:273 includes/functions.php:345
 
4510
  #, php-format
4511
  msgid "<strong>%s per %s</strong>."
4512
  msgstr ""
@@ -4514,14 +4619,16 @@ msgstr ""
4514
  #: includes/functions.php:344 includes/functions.php:233
4515
  #: includes/functions.php:234 includes/functions.php:235
4516
  #: includes/functions.php:238 includes/functions.php:242
4517
- #: includes/functions.php:278 includes/functions.php:350
 
4518
  #, php-format
4519
  msgid "The price for membership is <strong>%s every %d %s</strong>."
4520
  msgstr ""
4521
 
4522
  #: includes/functions.php:346 includes/functions.php:237
4523
  #: includes/functions.php:240 includes/functions.php:244
4524
- #: includes/functions.php:280 includes/functions.php:352
 
4525
  #, php-format
4526
  msgid "<strong>%s every %d %s</strong>."
4527
  msgstr ""
@@ -4531,7 +4638,8 @@ msgstr ""
4531
  #: includes/functions.php:238 includes/functions.php:239
4532
  #: includes/functions.php:240 includes/functions.php:242
4533
  #: includes/functions.php:245 includes/functions.php:249
4534
- #: includes/functions.php:285 includes/functions.php:357
 
4535
  #, php-format
4536
  msgid " and then <strong>%s per %s</strong>."
4537
  msgstr ""
@@ -4541,7 +4649,8 @@ msgstr ""
4541
  #: includes/functions.php:242 includes/functions.php:243
4542
  #: includes/functions.php:244 includes/functions.php:246
4543
  #: includes/functions.php:249 includes/functions.php:253
4544
- #: includes/functions.php:289 includes/functions.php:361
 
4545
  #, php-format
4546
  msgid " and then <strong>%s every %d %s</strong>."
4547
  msgstr ""
@@ -4551,7 +4660,8 @@ msgstr ""
4551
  #: includes/functions.php:260 includes/functions.php:261
4552
  #: includes/functions.php:262 includes/functions.php:264
4553
  #: includes/functions.php:267 includes/functions.php:271
4554
- #: includes/functions.php:307 includes/functions.php:379 pages/levels.php:82
 
4555
  msgid "After your initial payment, your first payment is Free."
4556
  msgstr ""
4557
 
@@ -4560,7 +4670,8 @@ msgstr ""
4560
  #: includes/functions.php:264 includes/functions.php:265
4561
  #: includes/functions.php:266 includes/functions.php:268
4562
  #: includes/functions.php:271 includes/functions.php:275
4563
- #: includes/functions.php:311 includes/functions.php:383 pages/levels.php:86
 
4564
  #, php-format
4565
  msgid "After your initial payment, your first %d payments are Free."
4566
  msgstr ""
@@ -4570,7 +4681,8 @@ msgstr ""
4570
  #: includes/functions.php:271 includes/functions.php:272
4571
  #: includes/functions.php:273 includes/functions.php:275
4572
  #: includes/functions.php:278 includes/functions.php:282
4573
- #: includes/functions.php:318 includes/functions.php:390 pages/levels.php:93
 
4574
  #, php-format
4575
  msgid "After your initial payment, your first payment will cost %s."
4576
  msgstr ""
@@ -4580,7 +4692,8 @@ msgstr ""
4580
  #: includes/functions.php:275 includes/functions.php:276
4581
  #: includes/functions.php:277 includes/functions.php:279
4582
  #: includes/functions.php:282 includes/functions.php:286
4583
- #: includes/functions.php:322 includes/functions.php:394 pages/levels.php:97
 
4584
  #, php-format
4585
  msgid "After your initial payment, your first %d payments will cost %s."
4586
  msgstr ""
@@ -4590,7 +4703,8 @@ msgstr ""
4590
  #: includes/functions.php:286 includes/functions.php:287
4591
  #: includes/functions.php:288 includes/functions.php:290
4592
  #: includes/functions.php:293 includes/functions.php:297
4593
- #: includes/functions.php:333 includes/functions.php:405
 
4594
  #, php-format
4595
  msgid "Customers in %s will be charged %s%% tax."
4596
  msgstr ""
@@ -4600,7 +4714,8 @@ msgstr ""
4600
  #: includes/functions.php:300 includes/functions.php:301
4601
  #: includes/functions.php:302 includes/functions.php:304
4602
  #: includes/functions.php:307 includes/functions.php:311
4603
- #: includes/functions.php:347 includes/functions.php:419
 
4604
  #, php-format
4605
  msgid "Membership expires after %d %s."
4606
  msgstr ""
@@ -4612,7 +4727,7 @@ msgstr ""
4612
  #: includes/functions.php:569 includes/functions.php:570
4613
  #: includes/functions.php:576 includes/functions.php:592
4614
  #: includes/functions.php:615 includes/functions.php:694
4615
- #: includes/functions.php:766
4616
  msgid "User ID not found."
4617
  msgstr ""
4618
 
@@ -4623,7 +4738,8 @@ msgstr ""
4623
  #: includes/functions.php:586 includes/functions.php:587
4624
  #: includes/functions.php:589 includes/functions.php:596
4625
  #: includes/functions.php:612 includes/functions.php:635
4626
- #: includes/functions.php:714 includes/functions.php:786
 
4627
  msgid "Invalid level."
4628
  msgstr ""
4629
 
@@ -4634,12 +4750,12 @@ msgstr ""
4634
  #: includes/functions.php:597 includes/functions.php:598
4635
  #: includes/functions.php:600 includes/functions.php:607
4636
  #: includes/functions.php:623 includes/functions.php:646
4637
- #: includes/functions.php:725 includes/functions.php:797
 
4638
  msgid "not changing?"
4639
  msgstr ""
4640
 
4641
- #: includes/functions.php:808 includes/functions.php:881
4642
- #: includes/functions.php:905 includes/functions.php:537
4643
  #: includes/functions.php:559 includes/functions.php:570
4644
  #: includes/functions.php:581 includes/functions.php:582
4645
  #: includes/functions.php:583 includes/functions.php:590
@@ -4658,13 +4774,19 @@ msgstr ""
4658
  #: includes/functions.php:700 includes/functions.php:707
4659
  #: includes/functions.php:722 includes/functions.php:723
4660
  #: includes/functions.php:742 includes/functions.php:746
4661
- #: includes/functions.php:814 includes/functions.php:815
4662
- #: includes/functions.php:839 includes/functions.php:887
4663
- #: includes/functions.php:911
 
4664
  msgid "Error interacting with database"
4665
  msgstr ""
4666
 
4667
- #: includes/functions.php:947 includes/functions.php:986
 
 
 
 
 
4668
  #: includes/functions.php:629 includes/functions.php:651
4669
  #: includes/functions.php:667 includes/functions.php:668
4670
  #: includes/functions.php:678 includes/functions.php:681
@@ -4679,21 +4801,23 @@ msgstr ""
4679
  #: includes/functions.php:778 includes/functions.php:780
4680
  #: includes/functions.php:787 includes/functions.php:803
4681
  #: includes/functions.php:826 includes/functions.php:881
4682
- #: includes/functions.php:920 includes/functions.php:953
 
4683
  #: includes/functions.php:992
4684
  msgid "Membership level not found."
4685
  msgstr ""
4686
 
4687
- #: includes/functions.php:1356 includes/functions.php:1100
4688
  #: includes/functions.php:1101 includes/functions.php:1118
4689
  #: includes/functions.php:1142 includes/functions.php:1143
4690
  #: includes/functions.php:1150 includes/functions.php:1157
4691
  #: includes/functions.php:1173 includes/functions.php:1196
4692
- #: includes/functions.php:1290 includes/functions.php:1362
 
4693
  msgid "No code was given to check."
4694
  msgstr ""
4695
 
4696
- #: includes/functions.php:1365 includes/functions.php:1050
4697
  #: includes/functions.php:1072 includes/functions.php:1088
4698
  #: includes/functions.php:1099 includes/functions.php:1102
4699
  #: includes/functions.php:1109 includes/functions.php:1110
@@ -4702,11 +4826,11 @@ msgstr ""
4702
  #: includes/functions.php:1152 includes/functions.php:1159
4703
  #: includes/functions.php:1166 includes/functions.php:1182
4704
  #: includes/functions.php:1205 includes/functions.php:1299
4705
- #: includes/functions.php:1371
4706
  msgid "The discount code could not be found."
4707
  msgstr ""
4708
 
4709
- #: includes/functions.php:1380 includes/functions.php:1066
4710
  #: includes/functions.php:1088 includes/functions.php:1104
4711
  #: includes/functions.php:1115 includes/functions.php:1118
4712
  #: includes/functions.php:1124 includes/functions.php:1125
@@ -4715,12 +4839,12 @@ msgstr ""
4715
  #: includes/functions.php:1167 includes/functions.php:1174
4716
  #: includes/functions.php:1181 includes/functions.php:1197
4717
  #: includes/functions.php:1220 includes/functions.php:1314
4718
- #: includes/functions.php:1386
4719
  #, php-format
4720
  msgid "This discount code goes into effect on %s."
4721
  msgstr ""
4722
 
4723
- #: includes/functions.php:1387 includes/functions.php:1075
4724
  #: includes/functions.php:1097 includes/functions.php:1113
4725
  #: includes/functions.php:1124 includes/functions.php:1127
4726
  #: includes/functions.php:1131 includes/functions.php:1132
@@ -4729,12 +4853,12 @@ msgstr ""
4729
  #: includes/functions.php:1174 includes/functions.php:1181
4730
  #: includes/functions.php:1188 includes/functions.php:1204
4731
  #: includes/functions.php:1227 includes/functions.php:1321
4732
- #: includes/functions.php:1393
4733
  #, php-format
4734
  msgid "This discount code expired on %s."
4735
  msgstr ""
4736
 
4737
- #: includes/functions.php:1397 includes/functions.php:1087
4738
  #: includes/functions.php:1109 includes/functions.php:1125
4739
  #: includes/functions.php:1136 includes/functions.php:1139
4740
  #: includes/functions.php:1141 includes/functions.php:1142
@@ -4743,11 +4867,11 @@ msgstr ""
4743
  #: includes/functions.php:1184 includes/functions.php:1191
4744
  #: includes/functions.php:1198 includes/functions.php:1214
4745
  #: includes/functions.php:1237 includes/functions.php:1331
4746
- #: includes/functions.php:1403
4747
  msgid "This discount code is no longer valid."
4748
  msgstr ""
4749
 
4750
- #: includes/functions.php:1410 includes/functions.php:1102
4751
  #: includes/functions.php:1124 includes/functions.php:1140
4752
  #: includes/functions.php:1151 includes/functions.php:1154
4753
  #: includes/functions.php:1155 includes/functions.php:1164
@@ -4755,11 +4879,12 @@ msgstr ""
4755
  #: includes/functions.php:1196 includes/functions.php:1197
4756
  #: includes/functions.php:1204 includes/functions.php:1211
4757
  #: includes/functions.php:1227 includes/functions.php:1250
4758
- #: includes/functions.php:1344 includes/functions.php:1416
 
4759
  msgid "This discount code does not apply to this membership level."
4760
  msgstr ""
4761
 
4762
- #: includes/functions.php:1436 includes/functions.php:1110
4763
  #: includes/functions.php:1132 includes/functions.php:1148
4764
  #: includes/functions.php:1159 includes/functions.php:1162
4765
  #: includes/functions.php:1172 includes/functions.php:1180
@@ -4768,11 +4893,11 @@ msgstr ""
4768
  #: includes/functions.php:1223 includes/functions.php:1230
4769
  #: includes/functions.php:1237 includes/functions.php:1253
4770
  #: includes/functions.php:1276 includes/functions.php:1370
4771
- #: includes/functions.php:1442
4772
  msgid "This discount code is okay."
4773
  msgstr ""
4774
 
4775
- #: includes/functions.php:1463 includes/functions.php:1134
4776
  #: includes/functions.php:1156 includes/functions.php:1172
4777
  #: includes/functions.php:1183 includes/functions.php:1186
4778
  #: includes/functions.php:1196 includes/functions.php:1205
@@ -4781,11 +4906,11 @@ msgstr ""
4781
  #: includes/functions.php:1255 includes/functions.php:1262
4782
  #: includes/functions.php:1278 includes/functions.php:1301
4783
  #: includes/functions.php:1395 includes/functions.php:1397
4784
- #: includes/functions.php:1469
4785
  msgid "and"
4786
  msgstr ""
4787
 
4788
- #: includes/functions.php:1691 includes/functions.php:1319
4789
  #: includes/functions.php:1341 includes/functions.php:1361
4790
  #: includes/functions.php:1372 includes/functions.php:1375
4791
  #: includes/functions.php:1385 includes/functions.php:1394
@@ -4794,11 +4919,12 @@ msgstr ""
4794
  #: includes/functions.php:1450 includes/functions.php:1457
4795
  #: includes/functions.php:1473 includes/functions.php:1496
4796
  #: includes/functions.php:1501 includes/functions.php:1620
4797
- #: includes/functions.php:1624 includes/functions.php:1697
 
4798
  msgid "Sign Up for !!name!! Now"
4799
  msgstr ""
4800
 
4801
- #: includes/functions.php:1697 includes/functions.php:1325
4802
  #: includes/functions.php:1347 includes/functions.php:1367
4803
  #: includes/functions.php:1378 includes/functions.php:1381
4804
  #: includes/functions.php:1391 includes/functions.php:1400
@@ -4807,7 +4933,8 @@ msgstr ""
4807
  #: includes/functions.php:1456 includes/functions.php:1463
4808
  #: includes/functions.php:1479 includes/functions.php:1502
4809
  #: includes/functions.php:1507 includes/functions.php:1626
4810
- #: includes/functions.php:1630 includes/functions.php:1703
 
4811
  msgid "Please specify a level id."
4812
  msgstr ""
4813
 
@@ -4957,14 +5084,15 @@ msgstr ""
4957
  msgid "Paid Memberships Pro Data Update Required"
4958
  msgstr ""
4959
 
4960
- #: includes/updates.php:111
4961
  #, php-format
4962
  msgid ""
4963
  "(1) <a target=\"_blank\" href=\"%s\">Backup your WordPress database</a></"
4964
  "strong> and then (2) <a href=\"%s\">click here to start the update</a>."
4965
  msgstr ""
4966
 
4967
- #: includes/updates.php:132 includes/updates.php:123 includes/updates.php:136
 
4968
  msgid "All Paid Memberships Pro updates have finished."
4969
  msgstr ""
4970
 
@@ -4999,20 +5127,20 @@ msgid ""
4999
  "register to read."
5000
  msgstr ""
5001
 
5002
- #: pages/billing.php:26 pages/billing.php:14 pages/billing.php:23
5003
  #: pages/billing.php:26
5004
  #, php-format
5005
  msgid "Logged in as <strong>%s</strong>."
5006
  msgstr ""
5007
 
5008
- #: pages/billing.php:26 pages/billing.php:14 pages/billing.php:23
5009
  #: pages/billing.php:26
5010
  msgid "logout"
5011
  msgstr ""
5012
 
5013
- #: pages/billing.php:28 pages/cancel.php:52 pages/invoice.php:109
5014
- #: pages/levels.php:35 shortcodes/pmpro_account.php:44
5015
- #: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
5016
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
5017
  #: pages/billing.php:28 pages/cancel.php:52 pages/invoice.php:109
5018
  #: pages/levels.php:13 pages/levels.php:35 shortcodes/pmpro_account.php:44
@@ -5020,37 +5148,37 @@ msgstr ""
5020
  msgid "Level"
5021
  msgstr ""
5022
 
5023
- #: pages/billing.php:30 pages/account.php:14 pages/billing.php:18
5024
  #: pages/billing.php:27 pages/billing.php:30
5025
  msgid "Membership Fee"
5026
  msgstr ""
5027
 
5028
- #: pages/billing.php:34 pages/account.php:18 pages/billing.php:22
5029
  #: pages/billing.php:31 pages/billing.php:34 pages/levels.php:70
5030
  #, php-format
5031
  msgid "%s every %d %s."
5032
  msgstr ""
5033
 
5034
- #: pages/billing.php:36 pages/account.php:20 pages/billing.php:24
5035
  #: pages/billing.php:33 pages/billing.php:36 pages/levels.php:66
5036
  #, php-format
5037
  msgid "%s per %s."
5038
  msgstr ""
5039
 
5040
- #: pages/billing.php:45 pages/account.php:25 pages/account.php:29
5041
  #: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
5042
  #: pages/billing.php:45
5043
  msgid "Duration"
5044
  msgstr ""
5045
 
5046
- #: pages/billing.php:55 pages/billing.php:39 pages/billing.php:43
5047
  #: pages/billing.php:52 pages/billing.php:55
5048
  msgid ""
5049
  "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
5050
  "paypal.com\">login to PayPal here</a> to update your billing information."
5051
  msgstr ""
5052
 
5053
- #: pages/billing.php:81 pages/checkout.php:326 pages/billing.php:65
5054
  #: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
5055
  #: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
5056
  #: pages/checkout.php:318 pages/checkout.php:321 pages/checkout.php:324
@@ -5058,7 +5186,7 @@ msgstr ""
5058
  msgid "First Name"
5059
  msgstr ""
5060
 
5061
- #: pages/billing.php:85 pages/checkout.php:330 pages/billing.php:69
5062
  #: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
5063
  #: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
5064
  #: pages/checkout.php:322 pages/checkout.php:325 pages/checkout.php:328
@@ -5066,7 +5194,7 @@ msgstr ""
5066
  msgid "Last Name"
5067
  msgstr ""
5068
 
5069
- #: pages/billing.php:89 pages/checkout.php:334 pages/billing.php:73
5070
  #: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
5071
  #: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
5072
  #: pages/checkout.php:326 pages/checkout.php:329 pages/checkout.php:332
@@ -5074,7 +5202,7 @@ msgstr ""
5074
  msgid "Address 1"
5075
  msgstr ""
5076
 
5077
- #: pages/billing.php:93 pages/checkout.php:338 pages/billing.php:77
5078
  #: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
5079
  #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
5080
  #: pages/checkout.php:330 pages/checkout.php:333 pages/checkout.php:336
@@ -5082,7 +5210,7 @@ msgstr ""
5082
  msgid "Address 2"
5083
  msgstr ""
5084
 
5085
- #: pages/billing.php:103 pages/checkout.php:348 pages/billing.php:87
5086
  #: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
5087
  #: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:331
5088
  #: pages/checkout.php:340 pages/checkout.php:343 pages/checkout.php:346
@@ -5090,7 +5218,7 @@ msgstr ""
5090
  msgid "City"
5091
  msgstr ""
5092
 
5093
- #: pages/billing.php:107 pages/checkout.php:352 pages/billing.php:91
5094
  #: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
5095
  #: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:335
5096
  #: pages/checkout.php:344 pages/checkout.php:347 pages/checkout.php:350
@@ -5098,7 +5226,7 @@ msgstr ""
5098
  msgid "State"
5099
  msgstr ""
5100
 
5101
- #: pages/billing.php:111 pages/checkout.php:356 pages/billing.php:95
5102
  #: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
5103
  #: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:339
5104
  #: pages/checkout.php:348 pages/checkout.php:351 pages/checkout.php:354
@@ -5106,7 +5234,7 @@ msgstr ""
5106
  msgid "Postal Code"
5107
  msgstr ""
5108
 
5109
- #: pages/billing.php:120 pages/checkout.php:365 pages/billing.php:104
5110
  #: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
5111
  #: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:348
5112
  #: pages/checkout.php:357 pages/checkout.php:360 pages/checkout.php:363
@@ -5114,7 +5242,7 @@ msgstr ""
5114
  msgid "City, State Zip"
5115
  msgstr ""
5116
 
5117
- #: pages/billing.php:173 pages/checkout.php:418 pages/billing.php:157
5118
  #: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
5119
  #: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:401
5120
  #: pages/checkout.php:410 pages/checkout.php:413 pages/checkout.php:416
@@ -5122,7 +5250,7 @@ msgstr ""
5122
  msgid "Country"
5123
  msgstr ""
5124
 
5125
- #: pages/billing.php:198 pages/checkout.php:443 pages/billing.php:182
5126
  #: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
5127
  #: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:426
5128
  #: pages/checkout.php:435 pages/checkout.php:438 pages/checkout.php:441
@@ -5130,7 +5258,7 @@ msgstr ""
5130
  msgid "Phone"
5131
  msgstr ""
5132
 
5133
- #: pages/billing.php:209 pages/checkout.php:220 pages/checkout.php:457
5134
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
5135
  #: pages/billing.php:209 pages/checkout.php:204 pages/checkout.php:207
5136
  #: pages/checkout.php:209 pages/checkout.php:216 pages/checkout.php:218
@@ -5140,7 +5268,7 @@ msgstr ""
5140
  msgid "E-mail Address"
5141
  msgstr ""
5142
 
5143
- #: pages/billing.php:213 pages/checkout.php:466 pages/billing.php:197
5144
  #: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
5145
  #: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:449
5146
  #: pages/checkout.php:458 pages/checkout.php:462 pages/checkout.php:464
@@ -5148,18 +5276,18 @@ msgstr ""
5148
  msgid "Confirm E-mail"
5149
  msgstr ""
5150
 
5151
- #: pages/billing.php:234 pages/billing.php:217 pages/billing.php:221
5152
  #: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
5153
  msgid "Credit Card Information"
5154
  msgstr ""
5155
 
5156
- #: pages/billing.php:235 pages/billing.php:217 pages/billing.php:221
5157
  #: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
5158
  #, php-format
5159
  msgid "We accept %s"
5160
  msgstr ""
5161
 
5162
- #: pages/billing.php:364 pages/billing.php:309 pages/billing.php:313
5163
  #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
5164
  #: pages/billing.php:360 pages/billing.php:364
5165
  msgid ""
@@ -5184,7 +5312,7 @@ msgstr ""
5184
  msgid "No, keep my account"
5185
  msgstr ""
5186
 
5187
- #: pages/cancel.php:48 shortcodes/pmpro_account.php:40 pages/account.php:14
5188
  #: pages/cancel.php:48 shortcodes/pmpro_account.php:40
5189
  msgid "My Memberships"
5190
  msgstr ""
@@ -5304,25 +5432,25 @@ msgstr ""
5304
  msgid "Check Out with a Credit Card Here"
5305
  msgstr ""
5306
 
5307
- #: pages/checkout.php:692 pages/checkout.php:277 pages/checkout.php:284
5308
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
5309
- #: pages/checkout.php:681 pages/checkout.php:690 pages/checkout.php:696
5310
- #: pages/checkout.php:697
5311
  #, php-format
5312
  msgid "I agree to the %s"
5313
  msgstr ""
5314
 
5315
- #: pages/checkout.php:712 pages/checkout.php:667 pages/checkout.php:674
5316
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
5317
- #: pages/checkout.php:701 pages/checkout.php:710 pages/checkout.php:716
5318
- #: pages/checkout.php:717
5319
  msgid "Complete Payment"
5320
  msgstr ""
5321
 
5322
- #: pages/checkout.php:734 pages/checkout.php:687 pages/checkout.php:694
5323
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
5324
- #: pages/checkout.php:723 pages/checkout.php:732 pages/checkout.php:738
5325
- #: pages/checkout.php:739
5326
  msgid "Processing..."
5327
  msgstr ""
5328
 
@@ -5437,7 +5565,7 @@ msgstr ""
5437
  msgid "Select"
5438
  msgstr ""
5439
 
5440
- #: pages/levels.php:78 shortcodes/pmpro_account.php:61 pages/account.php:33
5441
  #: pages/levels.php:57 pages/levels.php:78 pages/levels.php:123
5442
  #: shortcodes/pmpro_account.php:59 shortcodes/pmpro_account.php:61
5443
  msgid "Renew"
@@ -5503,10 +5631,10 @@ msgstr ""
5503
  #: preheaders/billing.php:258 preheaders/billing.php:265
5504
  #: preheaders/billing.php:266 preheaders/billing.php:270
5505
  #: preheaders/billing.php:279 preheaders/checkout.php:332
5506
- #: preheaders/checkout.php:336 preheaders/checkout.php:458
5507
- #: preheaders/checkout.php:464 preheaders/checkout.php:465
5508
- #: preheaders/checkout.php:470 preheaders/checkout.php:481
5509
- #: preheaders/checkout.php:482
5510
  msgid "Please complete all required fields."
5511
  msgstr ""
5512
 
@@ -5514,10 +5642,10 @@ msgstr ""
5514
  #: preheaders/billing.php:263 preheaders/billing.php:268
5515
  #: preheaders/billing.php:269 preheaders/billing.php:273
5516
  #: preheaders/billing.php:284 preheaders/checkout.php:340
5517
- #: preheaders/checkout.php:344 preheaders/checkout.php:466
5518
- #: preheaders/checkout.php:473 preheaders/checkout.php:474
5519
- #: preheaders/checkout.php:478 preheaders/checkout.php:491
5520
- #: preheaders/checkout.php:492
5521
  msgid "Your email addresses do not match. Please try again."
5522
  msgstr ""
5523
 
@@ -5525,10 +5653,10 @@ msgstr ""
5525
  #: preheaders/billing.php:268 preheaders/billing.php:271
5526
  #: preheaders/billing.php:272 preheaders/billing.php:276
5527
  #: preheaders/billing.php:289 preheaders/checkout.php:345
5528
- #: preheaders/checkout.php:349 preheaders/checkout.php:471
5529
- #: preheaders/checkout.php:478 preheaders/checkout.php:480
5530
- #: preheaders/checkout.php:483 preheaders/checkout.php:497
5531
- #: preheaders/checkout.php:498
5532
  msgid "The email address entered is in an invalid format. Please try again."
5533
  msgstr ""
5534
 
@@ -5560,7 +5688,8 @@ msgstr ""
5560
  #: preheaders/checkout.php:34 preheaders/checkout.php:386
5561
  #: preheaders/checkout.php:28 preheaders/checkout.php:30
5562
  #: preheaders/checkout.php:31 preheaders/checkout.php:32
5563
- #: preheaders/checkout.php:354 preheaders/checkout.php:358
 
5564
  #: preheaders/checkout.php:480 preheaders/checkout.php:487
5565
  #: preheaders/checkout.php:491 preheaders/checkout.php:492
5566
  #: preheaders/checkout.php:508 preheaders/checkout.php:509
@@ -5574,79 +5703,82 @@ msgid "Checkout: Payment Information"
5574
  msgstr ""
5575
 
5576
  #: preheaders/checkout.php:101 preheaders/checkout.php:100
 
5577
  msgid "Set Up Your Account"
5578
  msgstr ""
5579
 
5580
  #: preheaders/checkout.php:331 preheaders/checkout.php:300
5581
- #: preheaders/checkout.php:304 preheaders/checkout.php:416
5582
- #: preheaders/checkout.php:421
5583
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
5584
  msgstr ""
5585
 
5586
  #: preheaders/checkout.php:367 preheaders/checkout.php:335
5587
- #: preheaders/checkout.php:339 preheaders/checkout.php:461
5588
- #: preheaders/checkout.php:468 preheaders/checkout.php:473
5589
- #: preheaders/checkout.php:485 preheaders/checkout.php:486
 
5590
  msgid "Your passwords do not match. Please try again."
5591
  msgstr ""
5592
 
5593
  #: preheaders/checkout.php:382 preheaders/checkout.php:350
5594
- #: preheaders/checkout.php:354 preheaders/checkout.php:476
5595
- #: preheaders/checkout.php:483 preheaders/checkout.php:486
5596
- #: preheaders/checkout.php:488 preheaders/checkout.php:503
5597
- #: preheaders/checkout.php:504
5598
  #, php-format
5599
  msgid "Please check the box to agree to the %s."
5600
  msgstr ""
5601
 
5602
  #: preheaders/checkout.php:389 preheaders/checkout.php:357
5603
- #: preheaders/checkout.php:361 preheaders/checkout.php:483
5604
- #: preheaders/checkout.php:490 preheaders/checkout.php:495
5605
- #: preheaders/checkout.php:512 preheaders/checkout.php:513
 
5606
  msgid "Are you a spammer?"
5607
  msgstr ""
5608
 
5609
  #: preheaders/checkout.php:410 preheaders/checkout.php:377
5610
- #: preheaders/checkout.php:381 preheaders/checkout.php:503
5611
- #: preheaders/checkout.php:510 preheaders/checkout.php:515
5612
- #: preheaders/checkout.php:518 preheaders/checkout.php:535
5613
- #: preheaders/checkout.php:536
5614
  msgid "That username is already taken. Please try another."
5615
  msgstr ""
5616
 
5617
  #: preheaders/checkout.php:415 preheaders/checkout.php:382
5618
- #: preheaders/checkout.php:386 preheaders/checkout.php:508
5619
- #: preheaders/checkout.php:515 preheaders/checkout.php:520
5620
- #: preheaders/checkout.php:524 preheaders/checkout.php:541
5621
- #: preheaders/checkout.php:542
5622
  msgid "That email address is already taken. Please try another."
5623
  msgstr ""
5624
 
5625
  #: preheaders/checkout.php:446 preheaders/checkout.php:397
5626
  #: preheaders/checkout.php:399 preheaders/checkout.php:416
5627
- #: preheaders/checkout.php:420 preheaders/checkout.php:525
5628
- #: preheaders/checkout.php:532 preheaders/checkout.php:537
5629
- #: preheaders/checkout.php:544 preheaders/checkout.php:561
5630
- #: preheaders/checkout.php:562
5631
  #, php-format
5632
  msgid "reCAPTCHA failed. (%s) Please try again."
5633
  msgstr ""
5634
 
5635
  #: preheaders/checkout.php:533 preheaders/checkout.php:482
5636
  #: preheaders/checkout.php:484 preheaders/checkout.php:501
5637
- #: preheaders/checkout.php:505 preheaders/checkout.php:647
5638
- #: preheaders/checkout.php:654 preheaders/checkout.php:659
5639
- #: preheaders/checkout.php:683 preheaders/checkout.php:701
5640
- #: preheaders/checkout.php:702
5641
  msgid "Payment accepted."
5642
  msgstr ""
5643
 
5644
  #: preheaders/checkout.php:539 preheaders/checkout.php:490
5645
  #: preheaders/checkout.php:492 preheaders/checkout.php:509
5646
- #: preheaders/checkout.php:513 preheaders/checkout.php:653
5647
- #: preheaders/checkout.php:660 preheaders/checkout.php:665
5648
- #: preheaders/checkout.php:691 preheaders/checkout.php:709
5649
- #: preheaders/checkout.php:710
5650
  msgid ""
5651
  "Unknown error generating account. Please contact us to set up your "
5652
  "membership."
@@ -5655,10 +5787,11 @@ msgstr ""
5655
  #: preheaders/checkout.php:614 preheaders/checkout.php:550
5656
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
5657
  #: preheaders/checkout.php:571 preheaders/checkout.php:575
5658
- #: preheaders/checkout.php:581 preheaders/checkout.php:785
5659
- #: preheaders/checkout.php:792 preheaders/checkout.php:797
5660
- #: preheaders/checkout.php:825 preheaders/checkout.php:844
5661
- #: preheaders/checkout.php:859 preheaders/checkout.php:860
 
5662
  msgid ""
5663
  "Your payment was accepted, but there was an error setting up your account. "
5664
  "Please contact us."
@@ -5668,10 +5801,10 @@ msgstr ""
5668
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
5669
  #: preheaders/checkout.php:712 preheaders/checkout.php:722
5670
  #: preheaders/checkout.php:730 preheaders/checkout.php:754
5671
- #: preheaders/checkout.php:953 preheaders/checkout.php:960
5672
- #: preheaders/checkout.php:970 preheaders/checkout.php:983
5673
- #: preheaders/checkout.php:1030 preheaders/checkout.php:1045
5674
- #: preheaders/checkout.php:1046
5675
  msgid ""
5676
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5677
  "authorized, but we cancelled the order immediately. You should not try to "
@@ -5682,10 +5815,10 @@ msgstr ""
5682
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
5683
  #: preheaders/checkout.php:715 preheaders/checkout.php:725
5684
  #: preheaders/checkout.php:733 preheaders/checkout.php:757
5685
- #: preheaders/checkout.php:956 preheaders/checkout.php:963
5686
- #: preheaders/checkout.php:973 preheaders/checkout.php:988
5687
- #: preheaders/checkout.php:1035 preheaders/checkout.php:1050
5688
- #: preheaders/checkout.php:1051
5689
  msgid ""
5690
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5691
  "was charged, but we couldn't assign your membership. You should not submit "
@@ -5696,10 +5829,10 @@ msgstr ""
5696
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
5697
  #: preheaders/checkout.php:726 preheaders/checkout.php:736
5698
  #: preheaders/checkout.php:744 preheaders/checkout.php:768
5699
- #: preheaders/checkout.php:967 preheaders/checkout.php:974
5700
- #: preheaders/checkout.php:984 preheaders/checkout.php:1001
5701
- #: preheaders/checkout.php:1048 preheaders/checkout.php:1063
5702
- #: preheaders/checkout.php:1064
5703
  #, php-format
5704
  msgid ""
5705
  "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
@@ -5710,10 +5843,10 @@ msgstr ""
5710
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
5711
  #: preheaders/checkout.php:728 preheaders/checkout.php:738
5712
  #: preheaders/checkout.php:746 preheaders/checkout.php:770
5713
- #: preheaders/checkout.php:969 preheaders/checkout.php:976
5714
- #: preheaders/checkout.php:986 preheaders/checkout.php:1003
5715
- #: preheaders/checkout.php:1050 preheaders/checkout.php:1065
5716
- #: preheaders/checkout.php:1066
5717
  msgid "A Payment Gateway must be set up before any payments will be processed."
5718
  msgstr ""
5719
 
@@ -5759,6 +5892,7 @@ msgstr ""
5759
  #: services/authnet-silent-post.php:149 services/authnet-silent-post.php:133
5760
  #: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
5761
  #: services/authnet-silent-post.php:144 services/authnet-silent-post.php:145
 
5762
  msgid ""
5763
  "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
5764
  "Information From Authorize.net"
@@ -5768,68 +5902,69 @@ msgstr ""
5768
  #: services/stripe-webhook.php:194 services/stripe-webhook.php:270
5769
  #: services/stripe-webhook.php:271 services/stripe-webhook.php:272
5770
  #: services/stripe-webhook.php:283 services/stripe-webhook.php:290
 
5771
  #, php-format
5772
  msgid ""
5773
  "%s has had their payment subscription cancelled by Stripe. Please check that "
5774
  "this user's membership is cancelled on your site if it should be."
5775
  msgstr ""
5776
 
5777
- #: shortcodes/pmpro_account.php:45 pages/account.php:19
5778
  #: shortcodes/pmpro_account.php:45
5779
  msgid "Billing"
5780
  msgstr ""
5781
 
5782
- #: shortcodes/pmpro_account.php:65 pages/account.php:36
5783
  #: shortcodes/pmpro_account.php:62 shortcodes/pmpro_account.php:65
5784
  msgid "Update Billing Info"
5785
  msgstr ""
5786
 
5787
- #: shortcodes/pmpro_account.php:71 pages/account.php:42
5788
  #: shortcodes/pmpro_account.php:68 shortcodes/pmpro_account.php:71
5789
  msgid "Change"
5790
  msgstr ""
5791
 
5792
- #: shortcodes/pmpro_account.php:93 pages/account.php:64
5793
  #: shortcodes/pmpro_account.php:90 shortcodes/pmpro_account.php:93
5794
  msgid "View all Membership Options"
5795
  msgstr ""
5796
 
5797
- #: shortcodes/pmpro_account.php:102 pages/account.php:46 pages/account.php:50
5798
  #: pages/account.php:71 shortcodes/pmpro_account.php:99
5799
  #: shortcodes/pmpro_account.php:102
5800
  msgid "My Account"
5801
  msgstr ""
5802
 
5803
- #: shortcodes/pmpro_account.php:113 pages/account.php:55 pages/account.php:59
5804
  #: pages/account.php:80 shortcodes/pmpro_account.php:110
5805
  #: shortcodes/pmpro_account.php:113
5806
  msgid "Edit Profile"
5807
  msgstr ""
5808
 
5809
- #: shortcodes/pmpro_account.php:114 pages/account.php:56 pages/account.php:60
5810
  #: pages/account.php:81 shortcodes/pmpro_account.php:111
5811
  #: shortcodes/pmpro_account.php:114
5812
  msgid "Change Password"
5813
  msgstr ""
5814
 
5815
- #: shortcodes/pmpro_account.php:121 pages/account.php:87 pages/account.php:125
5816
  #: pages/account.php:129 shortcodes/pmpro_account.php:118
5817
  #: shortcodes/pmpro_account.php:121
5818
  msgid "Past Invoices"
5819
  msgstr ""
5820
 
5821
- #: shortcodes/pmpro_account.php:127 pages/account.php:93
5822
  #: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:127
5823
  msgid "Amount"
5824
  msgstr ""
5825
 
5826
- #: shortcodes/pmpro_account.php:155 pages/account.php:121
5827
  #: pages/account.php:140 pages/account.php:144
5828
  #: shortcodes/pmpro_account.php:152 shortcodes/pmpro_account.php:155
5829
  msgid "View All Invoices"
5830
  msgstr ""
5831
 
5832
- #: shortcodes/pmpro_account.php:162 pages/account.php:128
5833
  #: pages/account.php:146 pages/account.php:150
5834
  #: shortcodes/pmpro_account.php:159 shortcodes/pmpro_account.php:162
5835
  msgid "Member Links"
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"
23
  #: adminpages/addons.php:21 adminpages/advancedsettings.php:5
24
  #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
25
  #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
26
+ #: adminpages/memberslist.php:5 adminpages/orders-csv.php:4
27
+ #: adminpages/orders-csv.php:5 adminpages/orders-print.php:12
28
+ #: adminpages/orders.php:4 adminpages/orders.php:5
29
  #: adminpages/pagesettings.php:4 adminpages/pagesettings.php:5
30
  #: adminpages/paymentsettings.php:5 adminpages/updates.php:5
31
  #: includes/license.php:36
32
  msgid "You do not have permissions to perform this action."
33
  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
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
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 ""
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
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
445
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:187
446
  #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
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
  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
506
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:563
507
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
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
  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
666
  #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
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
684
  msgid "ID"
685
  msgstr ""
686
 
687
+ #: adminpages/discountcodes.php:312 adminpages/orders.php:375
688
  #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
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
 
696
  #: adminpages/discountcodes.php:316 adminpages/discountcodes.php:588
697
+ #: adminpages/orders.php:380 adminpages/orders.php:1135
698
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
699
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
700
  #: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
701
  #: adminpages/discountcodes.php:586 adminpages/discountcodes.php:587
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
 
715
  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
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
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
823
  #: classes/gateways/class.pmprogateway_stripe.php:536
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
845
  #: classes/gateways/class.pmprogateway_stripe.php:536
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
867
  #: classes/gateways/class.pmprogateway_stripe.php:536
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
889
  #: classes/gateways/class.pmprogateway_stripe.php:536
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
  "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
1081
  #: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:564
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
  "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
1108
  #: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:566
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
  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
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
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
1322
  #: classes/gateways/class.pmprogateway_stripe.php:634
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
 
1361
 
1362
  #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1363
  #: classes/gateways/class.pmprogateway_cybersource.php:101
1364
+ #: classes/gateways/class.pmprogateway_paypal.php:130
1365
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:145
1366
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1367
  #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1368
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
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 ""
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
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
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
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
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
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
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
 
1575
  msgid "Members List"
1576
  msgstr ""
1577
 
1578
+ #: adminpages/memberslist.php:26 adminpages/orders.php:864
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
 
1585
+ #: adminpages/memberslist.php:30 adminpages/orders.php:879
1586
  #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:276
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
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
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
1719
  msgid "Search all levels"
1720
  msgstr ""
1721
 
1722
+ #: adminpages/orders.php:146 adminpages/orders.php:146
1723
+ #: adminpages/orders.php:155
1724
  msgid "Invoice emailed successfully."
1725
  msgstr ""
1726
 
1727
+ #: adminpages/orders.php:149 adminpages/orders.php:149
1728
+ #: adminpages/orders.php:160
1729
  msgid "Error emailing invoice."
1730
  msgstr ""
1731
 
1732
  #: adminpages/orders.php:162 adminpages/orders.php:26 adminpages/orders.php:67
1733
+ #: adminpages/orders.php:162 adminpages/orders.php:175
1734
  msgid "Order deleted successfully."
1735
  msgstr ""
1736
 
1737
  #: adminpages/orders.php:165 adminpages/orders.php:31 adminpages/orders.php:72
1738
+ #: adminpages/orders.php:165 adminpages/orders.php:180
1739
  msgid "Error deleting order."
1740
  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
 
1838
+ #: adminpages/orders.php:512 adminpages/templates/orders-email.php:60
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"
1846
  msgstr ""
1847
 
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
 
1854
+ #: adminpages/orders.php:535 adminpages/orders.php:1139
1855
  #: adminpages/templates/orders-email.php:64
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"
1866
  msgstr ""
1867
 
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
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
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
 
1916
+ #: adminpages/orders.php:575
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
1925
  msgid "Account Number"
1926
  msgstr ""
1927
 
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
 
1946
+ #: adminpages/orders.php:610 adminpages/orders.php:1143
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
 
1956
+ #: adminpages/orders.php:643 adminpages/orders.php:1141
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
 
1966
+ #: adminpages/orders.php:664 adminpages/paymentsettings.php:124
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
 
1975
+ #: adminpages/orders.php:671 adminpages/paymentsettings.php:128
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
 
1984
+ #: adminpages/orders.php:673 adminpages/paymentsettings.php:129
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
 
2073
+ #: adminpages/orders.php:841 includes/adminpages.php:56
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
 
2138
+ #: adminpages/orders.php:1060 adminpages/orders.php:1063
2139
  #: adminpages/orders.php:535 adminpages/orders.php:538
2140
  #: adminpages/orders.php:777 adminpages/orders.php:780
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 ""
2154
 
2155
+ #: adminpages/orders.php:1136 adminpages/reports/login.php:159
2156
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
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
2181
  msgid "Membership Level"
2182
  msgstr ""
2183
 
2184
+ #: adminpages/orders.php:1140 adminpages/orders.php:1220
2185
  #: adminpages/orders.php:603 adminpages/orders.php:651
2186
  #: adminpages/orders.php:906 adminpages/orders.php:916
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
 
2208
+ #: adminpages/orders.php:1226 adminpages/orders.php:653
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
 
2215
+ #: adminpages/orders.php:1245 adminpages/orders.php:664
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 "
2223
  "want to delete order %s?"
2224
  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
 
2236
+ #: adminpages/orders.php:1262 adminpages/orders.php:674
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
  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
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
2869
+ #: classes/class.memberorder.php:706 includes/cleanup.php:24
2870
  #, php-format
2871
  msgid ""
2872
  "There was an error canceling the subscription for user with ID=%s. You will "
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
2924
  #: classes/gateways/class.pmprogateway_braintree.php:349
2925
  #: classes/gateways/class.pmprogateway_braintree.php:362
2926
  #: classes/gateways/class.pmprogateway_braintree.php:364
2927
+ #: classes/gateways/class.pmprogateway_braintree.php:367
2928
  #: classes/gateways/class.pmprogateway_braintree.php:368
2929
  #: classes/gateways/class.pmprogateway_stripe.php:495
2930
  #: classes/gateways/class.pmprogateway_stripe.php:496
2931
  #: classes/gateways/class.pmprogateway_stripe.php:506
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
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
3042
+ #: classes/class.pmproemail.php:810 classes/class.pmproemail.php:811
3043
  #, php-format
3044
  msgid "The new level is %s"
3045
  msgstr ""
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
3058
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:778
3059
+ #: classes/class.pmproemail.php:779 classes/class.pmproemail.php:803
3060
+ #: classes/class.pmproemail.php:806 classes/class.pmproemail.php:815
3061
+ #: classes/class.pmproemail.php:816 classes/class.pmproemail.php:817
3062
  #, php-format
3063
  msgid "This membership will expire on %s"
3064
  msgstr ""
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
3070
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:782
3071
+ #: classes/class.pmproemail.php:783 classes/class.pmproemail.php:807
3072
+ #: classes/class.pmproemail.php:810 classes/class.pmproemail.php:819
3073
+ #: classes/class.pmproemail.php:820 classes/class.pmproemail.php:821
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
3081
  #, php-format
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 ""
3095
 
3096
  #: classes/gateways/class.pmprogateway.php:55
3097
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
3098
+ #: classes/gateways/class.pmprogateway_check.php:210
3099
  #: classes/gateways/class.pmprogateway_cybersource.php:171
3100
  #: classes/gateways/class.pmprogateway_payflowpro.php:164
3101
+ #: classes/gateways/class.pmprogateway_paypal.php:272
3102
  #: classes/gateways/class.pmprogateway.php:55
3103
  #: classes/gateways/class.pmprogateway_authorizenet.php:55
3104
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
3120
  #: classes/gateways/class.pmprogateway_authorizenet.php:222
3121
  #: classes/gateways/class.pmprogateway_authorizenet.php:227
3122
  #: classes/gateways/class.pmprogateway_authorizenet.php:244
3123
+ #: classes/gateways/class.pmprogateway_check.php:262
3124
+ #: classes/gateways/class.pmprogateway_check.php:267
3125
+ #: classes/gateways/class.pmprogateway_check.php:285
3126
  #: classes/gateways/class.pmprogateway_cybersource.php:222
3127
  #: classes/gateways/class.pmprogateway_cybersource.php:227
3128
  #: classes/gateways/class.pmprogateway_cybersource.php:245
3129
  #: classes/gateways/class.pmprogateway_payflowpro.php:187
3130
  #: classes/gateways/class.pmprogateway_payflowpro.php:192
3131
+ #: classes/gateways/class.pmprogateway_paypal.php:295
3132
  #: classes/gateways/class.pmprogateway.php:106
3133
  #: classes/gateways/class.pmprogateway.php:111
3134
  #: classes/gateways/class.pmprogateway.php:129
3165
 
3166
  #: classes/gateways/class.pmprogateway.php:113
3167
  #: classes/gateways/class.pmprogateway_authorizenet.php:228
3168
+ #: classes/gateways/class.pmprogateway_check.php:269
3169
  #: classes/gateways/class.pmprogateway_cybersource.php:229
3170
  #: classes/gateways/class.pmprogateway.php:113
3171
  #: classes/gateways/class.pmprogateway_authorizenet.php:112
3236
  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
3246
  msgid "Braintree Payments"
3247
  msgstr ""
3248
 
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
 
3255
+ #: classes/gateways/class.pmprogateway_braintree.php:138
3256
  #: classes/gateways/class.pmprogateway_cybersource.php:106
3257
  #: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
3258
  #: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
3263
  msgid "Merchant ID"
3264
  msgstr ""
3265
 
3266
+ #: classes/gateways/class.pmprogateway_braintree.php:146
3267
  #: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
3268
  #: adminpages/paymentsettings.php:311
3269
  #: classes/gateways/class.pmprogateway_braintree.php:132
3271
  msgid "Public Key"
3272
  msgstr ""
3273
 
3274
+ #: classes/gateways/class.pmprogateway_braintree.php:154
3275
  #: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
3276
  #: adminpages/paymentsettings.php:319
3277
  #: classes/gateways/class.pmprogateway_braintree.php:140
3279
  msgid "Private Key"
3280
  msgstr ""
3281
 
3282
+ #: classes/gateways/class.pmprogateway_braintree.php:162
3283
  #: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
3284
  #: adminpages/paymentsettings.php:327
3285
  #: classes/gateways/class.pmprogateway_braintree.php:148
3287
  msgid "Client-Side Encryption Key"
3288
  msgstr ""
3289
 
3290
+ #: classes/gateways/class.pmprogateway_braintree.php:170
3291
+ #: classes/gateways/class.pmprogateway_stripe.php:217
3292
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
3293
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
3294
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
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
 
3306
+ #: classes/gateways/class.pmprogateway_braintree.php:174
3307
  #: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
3308
  #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
3309
  #: classes/gateways/class.pmprogateway_braintree.php:160
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
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
3330
  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
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
3350
  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
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
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
3380
+ #: classes/gateways/class.pmprogateway_braintree.php:358
3381
  #: classes/gateways/class.pmprogateway_braintree.php:359
3382
  #: classes/gateways/class.pmprogateway_stripe.php:486
3383
  #: classes/gateways/class.pmprogateway_stripe.php:487
3384
  #: classes/gateways/class.pmprogateway_stripe.php:497
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
3403
+ #: classes/gateways/class.pmprogateway_braintree.php:359
3404
  #: classes/gateways/class.pmprogateway_braintree.php:360
3405
  #: classes/gateways/class.pmprogateway_stripe.php:487
3406
  #: classes/gateways/class.pmprogateway_stripe.php:488
3407
  #: classes/gateways/class.pmprogateway_stripe.php:498
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
3426
+ #: classes/gateways/class.pmprogateway_braintree.php:369
3427
  #: classes/gateways/class.pmprogateway_braintree.php:370
3428
  #: classes/gateways/class.pmprogateway_stripe.php:497
3429
  #: classes/gateways/class.pmprogateway_stripe.php:498
3430
  #: classes/gateways/class.pmprogateway_stripe.php:508
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
3440
  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
3448
  #: classes/gateways/class.pmprogateway_braintree.php:421
3449
+ #: classes/gateways/class.pmprogateway_braintree.php:424
3450
  #: classes/gateways/class.pmprogateway_braintree.php:425
3451
  #: classes/gateways/class.pmprogateway_stripe.php:53
3452
  #: classes/gateways/class.pmprogateway_stripe.php:1011
3456
  #: classes/gateways/class.pmprogateway_stripe.php:1040
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
 
3463
+ #: classes/gateways/class.pmprogateway_braintree.php:484
3464
  #: classes/gateways/class.pmprogateway_braintree.php:120
3465
  #: classes/gateways/class.pmprogateway_braintree.php:465
3466
  #: classes/gateways/class.pmprogateway_braintree.php:478
3467
  #: classes/gateways/class.pmprogateway_braintree.php:480
3468
+ #: classes/gateways/class.pmprogateway_braintree.php:483
3469
  #: classes/gateways/class.pmprogateway_braintree.php:484
3470
  msgid "Error during settlement:"
3471
  msgstr ""
3472
 
3473
+ #: classes/gateways/class.pmprogateway_braintree.php:493
3474
  #: classes/gateways/class.pmprogateway_braintree.php:129
3475
  #: classes/gateways/class.pmprogateway_braintree.php:474
3476
  #: classes/gateways/class.pmprogateway_braintree.php:487
3477
  #: classes/gateways/class.pmprogateway_braintree.php:489
3478
+ #: classes/gateways/class.pmprogateway_braintree.php:492
3479
  #: classes/gateways/class.pmprogateway_braintree.php:493
3480
  msgid "Error during charge:"
3481
  msgstr ""
3482
 
3483
+ #: classes/gateways/class.pmprogateway_braintree.php:585
3484
  #: classes/gateways/class.pmprogateway_braintree.php:198
3485
  #: classes/gateways/class.pmprogateway_braintree.php:221
3486
  #: classes/gateways/class.pmprogateway_braintree.php:566
3487
  #: classes/gateways/class.pmprogateway_braintree.php:579
3488
  #: classes/gateways/class.pmprogateway_braintree.php:581
3489
+ #: classes/gateways/class.pmprogateway_braintree.php:584
3490
  #: classes/gateways/class.pmprogateway_braintree.php:585
3491
  msgid "Failed to update customer."
3492
  msgstr ""
3493
 
3494
+ #: classes/gateways/class.pmprogateway_braintree.php:633
3495
  #: classes/gateways/class.pmprogateway_braintree.php:246
3496
  #: classes/gateways/class.pmprogateway_braintree.php:269
3497
  #: classes/gateways/class.pmprogateway_braintree.php:614
3498
  #: classes/gateways/class.pmprogateway_braintree.php:627
3499
  #: classes/gateways/class.pmprogateway_braintree.php:629
3500
+ #: classes/gateways/class.pmprogateway_braintree.php:632
3501
  #: classes/gateways/class.pmprogateway_braintree.php:633
3502
  msgid "Failed to create customer."
3503
  msgstr ""
3504
 
3505
+ #: classes/gateways/class.pmprogateway_braintree.php:640
3506
  #: classes/gateways/class.pmprogateway_braintree.php:253
3507
  #: classes/gateways/class.pmprogateway_braintree.php:276
3508
  #: classes/gateways/class.pmprogateway_braintree.php:621
3509
  #: classes/gateways/class.pmprogateway_braintree.php:634
3510
  #: classes/gateways/class.pmprogateway_braintree.php:636
3511
+ #: classes/gateways/class.pmprogateway_braintree.php:639
3512
  #: classes/gateways/class.pmprogateway_braintree.php:640
3513
  msgid "Error creating customer record with Braintree:"
3514
  msgstr ""
3515
 
3516
+ #: classes/gateways/class.pmprogateway_braintree.php:740
3517
  #: classes/gateways/class.pmprogateway_braintree.php:344
3518
  #: classes/gateways/class.pmprogateway_braintree.php:345
3519
  #: classes/gateways/class.pmprogateway_braintree.php:376
3520
  #: classes/gateways/class.pmprogateway_braintree.php:721
3521
  #: classes/gateways/class.pmprogateway_braintree.php:734
3522
  #: classes/gateways/class.pmprogateway_braintree.php:736
3523
+ #: classes/gateways/class.pmprogateway_braintree.php:739
3524
  #: classes/gateways/class.pmprogateway_braintree.php:740
3525
  msgid "Error subscribing customer to plan with Braintree:"
3526
  msgstr ""
3527
 
3528
+ #: classes/gateways/class.pmprogateway_braintree.php:755
3529
  #: classes/gateways/class.pmprogateway_braintree.php:359
3530
  #: classes/gateways/class.pmprogateway_braintree.php:360
3531
  #: classes/gateways/class.pmprogateway_braintree.php:391
3532
  #: classes/gateways/class.pmprogateway_braintree.php:736
3533
  #: classes/gateways/class.pmprogateway_braintree.php:749
3534
  #: classes/gateways/class.pmprogateway_braintree.php:751
3535
+ #: classes/gateways/class.pmprogateway_braintree.php:754
3536
  #: classes/gateways/class.pmprogateway_braintree.php:755
3537
  msgid "Failed to subscribe with Braintree:"
3538
  msgstr ""
3539
 
3540
+ #: classes/gateways/class.pmprogateway_braintree.php:793
3541
+ #: classes/gateways/class.pmprogateway_braintree.php:806
3542
+ #: classes/gateways/class.pmprogateway_braintree.php:813
3543
  #: classes/gateways/class.pmprogateway_braintree.php:397
3544
  #: classes/gateways/class.pmprogateway_braintree.php:398
3545
  #: classes/gateways/class.pmprogateway_braintree.php:410
3552
  #: classes/gateways/class.pmprogateway_braintree.php:774
3553
  #: classes/gateways/class.pmprogateway_braintree.php:787
3554
  #: classes/gateways/class.pmprogateway_braintree.php:789
3555
+ #: classes/gateways/class.pmprogateway_braintree.php:792
3556
  #: classes/gateways/class.pmprogateway_braintree.php:793
3557
  #: classes/gateways/class.pmprogateway_braintree.php:794
3558
  #: classes/gateways/class.pmprogateway_braintree.php:800
3559
  #: classes/gateways/class.pmprogateway_braintree.php:802
3560
+ #: classes/gateways/class.pmprogateway_braintree.php:805
3561
  #: classes/gateways/class.pmprogateway_braintree.php:806
3562
  #: classes/gateways/class.pmprogateway_braintree.php:807
3563
  #: classes/gateways/class.pmprogateway_braintree.php:809
3564
+ #: classes/gateways/class.pmprogateway_braintree.php:812
3565
  #: classes/gateways/class.pmprogateway_braintree.php:813
3566
  #: classes/gateways/class.pmprogateway_stripe.php:343
3567
  #: classes/gateways/class.pmprogateway_stripe.php:344
3575
  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
3586
  msgid "Pay by Check"
3587
  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
 
3594
+ #: classes/gateways/class.pmprogateway_check.php:106
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
 
3601
+ #: classes/gateways/class.pmprogateway_check.php:110
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
3680
  msgstr ""
3681
 
3682
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3683
+ #: classes/gateways/class.pmprogateway_paypal.php:302
3684
  #: classes/gateways/class.pmprogateway_payflowpro.php:57
3685
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3686
  #: classes/gateways/class.pmprogateway_paypal.php:57
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
3700
  msgid "PayPal Website Payments Pro"
3701
  msgstr ""
3702
 
3703
+ #: classes/gateways/class.pmprogateway_paypal.php:125
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
3710
  msgid "PayPal Settings"
3711
  msgstr ""
3712
 
3713
+ #: classes/gateways/class.pmprogateway_paypal.php:130
3714
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:145
3715
  #: classes/gateways/class.pmprogateway_paypalstandard.php:117
3716
  #: adminpages/paymentsettings.php:179
3717
  #: classes/gateways/class.pmprogateway_paypal.php:118
3726
  "here.</a>"
3727
  msgstr ""
3728
 
3729
+ #: classes/gateways/class.pmprogateway_paypal.php:135
3730
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:150
3731
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
3732
  #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
3733
  #: adminpages/paymentsettings.php:236
3738
  msgid "Gateway Account Email"
3739
  msgstr ""
3740
 
3741
+ #: classes/gateways/class.pmprogateway_paypal.php:143
3742
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:158
3743
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3744
  #: classes/gateways/class.pmprogateway_twocheckout.php:119
3745
  #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
3755
  msgid "API Username"
3756
  msgstr ""
3757
 
3758
+ #: classes/gateways/class.pmprogateway_paypal.php:151
3759
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:166
3760
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3761
  #: classes/gateways/class.pmprogateway_twocheckout.php:128
3762
  #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
3772
  msgid "API Password"
3773
  msgstr ""
3774
 
3775
+ #: classes/gateways/class.pmprogateway_paypal.php:159
3776
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:174
3777
  #: classes/gateways/class.pmprogateway_paypalstandard.php:146
3778
  #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
3779
  #: adminpages/paymentsettings.php:260
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"
3790
+ msgstr ""
3791
+
3792
+ #: classes/gateways/class.pmprogateway_paypal.php:178
3793
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:193
3794
  #: classes/gateways/class.pmprogateway_paypalstandard.php:154
3795
  #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
3796
  #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
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."
3809
  msgstr ""
3810
 
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
3822
  msgid "Check Out with PayPal"
3823
  msgstr ""
3824
 
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
 
3839
+ #: classes/gateways/class.pmprogateway_paypal.php:207
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
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
 
3857
+ #: classes/gateways/class.pmprogateway_paypal.php:631
3858
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:777
3859
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:464
3860
  #: classes/gateways/class.pmprogateway_paypal.php:385
3861
  #: classes/gateways/class.pmprogateway_paypal.php:605
3862
  #: classes/gateways/class.pmprogateway_paypal.php:607
3878
  "to make sure you are not charged going forward."
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
3888
  msgid "PayPal Express"
3889
  msgstr ""
3890
 
3891
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:196
3892
  #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
3893
  #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
3894
  #: classes/gateways/class.pmprogateway_paypalexpress.php:163
3896
  msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
3897
  msgstr ""
3898
 
3899
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:301
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
3929
 
3930
  #: classes/gateways/class.pmprogateway_stripe.php:55
3931
  #: classes/gateways/class.pmprogateway_stripe.php:51
3932
+ #: classes/gateways/class.pmprogateway_stripe.php:55
3933
  #, php-format
3934
  msgid ""
3935
  "The %s gateway depends on the %s PHP extension. Please enable it, or ask "
3936
  "your hosting provider to enable it"
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
3949
  msgid "Stripe"
3950
  msgstr ""
3951
 
3952
+ #: classes/gateways/class.pmprogateway_stripe.php:184
3953
  #: classes/gateways/class.pmprogateway_stripe.php:148
3954
  #: classes/gateways/class.pmprogateway_stripe.php:149
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
 
3961
+ #: classes/gateways/class.pmprogateway_stripe.php:189
3962
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3963
  #: adminpages/paymentsettings.php:286
3964
  #: classes/gateways/class.pmprogateway_stripe.php:153
3965
  #: classes/gateways/class.pmprogateway_stripe.php:154
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
 
3972
+ #: classes/gateways/class.pmprogateway_stripe.php:197
3973
  #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3974
  #: adminpages/paymentsettings.php:294
3975
  #: classes/gateways/class.pmprogateway_stripe.php:161
3976
  #: classes/gateways/class.pmprogateway_stripe.php:162
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
 
3983
+ #: classes/gateways/class.pmprogateway_stripe.php:205
3984
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3985
  #: adminpages/paymentsettings.php:432
3986
  #: classes/gateways/class.pmprogateway_stripe.php:169
3987
  #: classes/gateways/class.pmprogateway_stripe.php:170
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
 
3994
+ #: classes/gateways/class.pmprogateway_stripe.php:212
3995
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3996
  #: classes/gateways/class.pmprogateway_stripe.php:176
3997
  #: classes/gateways/class.pmprogateway_stripe.php:177
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 "
4004
  "verification in the Stripe dashboard settings.</strong>"
4005
  msgstr ""
4006
 
4007
+ #: classes/gateways/class.pmprogateway_stripe.php:220
4008
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
4009
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
4010
  #: classes/gateways/class.pmprogateway_stripe.php:184
4011
  #: classes/gateways/class.pmprogateway_stripe.php:185
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
4022
  #: classes/gateways/class.pmprogateway_stripe.php:582
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
4033
  #: classes/gateways/class.pmprogateway_stripe.php:586
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
4046
  #: classes/gateways/class.pmprogateway_stripe.php:588
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
4072
  #: classes/gateways/class.pmprogateway_stripe.php:784
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
4091
  #: classes/gateways/class.pmprogateway_stripe.php:1246
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
4127
  #: classes/gateways/class.pmprogateway_stripe.php:1453
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
4149
  #: classes/gateways/class.pmprogateway_stripe.php:1484
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
4168
  #: classes/gateways/class.pmprogateway_stripe.php:1580
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
4184
  #: classes/gateways/class.pmprogateway_stripe.php:1597
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
 
4334
  msgid "Visit Customer Support Forum"
4335
  msgstr ""
4336
 
4337
+ #: includes/currencies.php:17 includes/currencies.php:94
4338
  #: includes/currencies.php:7 includes/currencies.php:17
4339
  #: includes/currencies.php:37 includes/currencies.php:44
4340
  #: includes/currencies.php:64 includes/currencies.php:68
4343
  msgid "US Dollars (&#36;)"
4344
  msgstr ""
4345
 
4346
+ #: includes/currencies.php:19 includes/currencies.php:97
4347
  #: includes/currencies.php:8 includes/currencies.php:9
4348
  #: includes/currencies.php:19 includes/currencies.php:40
4349
  #: includes/currencies.php:47 includes/currencies.php:67
4352
  msgid "Euros (&euro;)"
4353
  msgstr ""
4354
 
4355
+ #: includes/currencies.php:24 includes/currencies.php:96
4356
  #: includes/currencies.php:9 includes/currencies.php:14
4357
  #: includes/currencies.php:24 includes/currencies.php:39
4358
  #: includes/currencies.php:46 includes/currencies.php:66
4376
  msgid "Brazilian Real (R&#36;)"
4377
  msgstr ""
4378
 
4379
+ #: includes/currencies.php:35 includes/currencies.php:95
4380
  #: includes/currencies.php:12 includes/currencies.php:24
4381
  #: includes/currencies.php:34 includes/currencies.php:35
4382
  #: includes/currencies.php:38 includes/currencies.php:45
4446
  msgid "Japanese Yen (&yen;)"
4447
  msgstr ""
4448
 
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
 
4515
+ #: includes/currencies.php:78 includes/currencies.php:26
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
 
4522
+ #: includes/currencies.php:79 includes/currencies.php:27
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
 
4529
+ #: includes/currencies.php:80 includes/currencies.php:28
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
 
4536
+ #: includes/currencies.php:81 includes/currencies.php:29
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
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 ""
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 ""
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
4580
+ #: includes/functions.php:254 includes/functions.php:320
4581
+ #: includes/functions.php:326
4582
  #, php-format
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 ""
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
4596
+ #: includes/functions.php:263 includes/functions.php:329
4597
+ #: includes/functions.php:335
4598
  #, php-format
4599
  msgid " and then <strong>%s after %d %s</strong>."
4600
  msgstr ""
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
4606
+ #: includes/functions.php:343
4607
  #, php-format
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
4615
  #, php-format
4616
  msgid "<strong>%s per %s</strong>."
4617
  msgstr ""
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
4623
+ #: includes/functions.php:350
4624
  #, php-format
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
4632
  #, php-format
4633
  msgid "<strong>%s every %d %s</strong>."
4634
  msgstr ""
4638
  #: includes/functions.php:238 includes/functions.php:239
4639
  #: includes/functions.php:240 includes/functions.php:242
4640
  #: includes/functions.php:245 includes/functions.php:249
4641
+ #: includes/functions.php:285 includes/functions.php:351
4642
+ #: includes/functions.php:357
4643
  #, php-format
4644
  msgid " and then <strong>%s per %s</strong>."
4645
  msgstr ""
4649
  #: includes/functions.php:242 includes/functions.php:243
4650
  #: includes/functions.php:244 includes/functions.php:246
4651
  #: includes/functions.php:249 includes/functions.php:253
4652
+ #: includes/functions.php:289 includes/functions.php:355
4653
+ #: includes/functions.php:361
4654
  #, php-format
4655
  msgid " and then <strong>%s every %d %s</strong>."
4656
  msgstr ""
4660
  #: includes/functions.php:260 includes/functions.php:261
4661
  #: includes/functions.php:262 includes/functions.php:264
4662
  #: includes/functions.php:267 includes/functions.php:271
4663
+ #: includes/functions.php:307 includes/functions.php:373
4664
+ #: includes/functions.php:379 pages/levels.php:82
4665
  msgid "After your initial payment, your first payment is Free."
4666
  msgstr ""
4667
 
4670
  #: includes/functions.php:264 includes/functions.php:265
4671
  #: includes/functions.php:266 includes/functions.php:268
4672
  #: includes/functions.php:271 includes/functions.php:275
4673
+ #: includes/functions.php:311 includes/functions.php:377
4674
+ #: includes/functions.php:383 pages/levels.php:86
4675
  #, php-format
4676
  msgid "After your initial payment, your first %d payments are Free."
4677
  msgstr ""
4681
  #: includes/functions.php:271 includes/functions.php:272
4682
  #: includes/functions.php:273 includes/functions.php:275
4683
  #: includes/functions.php:278 includes/functions.php:282
4684
+ #: includes/functions.php:318 includes/functions.php:384
4685
+ #: includes/functions.php:390 pages/levels.php:93
4686
  #, php-format
4687
  msgid "After your initial payment, your first payment will cost %s."
4688
  msgstr ""
4692
  #: includes/functions.php:275 includes/functions.php:276
4693
  #: includes/functions.php:277 includes/functions.php:279
4694
  #: includes/functions.php:282 includes/functions.php:286
4695
+ #: includes/functions.php:322 includes/functions.php:388
4696
+ #: includes/functions.php:394 pages/levels.php:97
4697
  #, php-format
4698
  msgid "After your initial payment, your first %d payments will cost %s."
4699
  msgstr ""
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 ""
4714
  #: includes/functions.php:300 includes/functions.php:301
4715
  #: includes/functions.php:302 includes/functions.php:304
4716
  #: includes/functions.php:307 includes/functions.php:311
4717
+ #: includes/functions.php:347 includes/functions.php:413
4718
+ #: includes/functions.php:419
4719
  #, php-format
4720
  msgid "Membership expires after %d %s."
4721
  msgstr ""
4727
  #: includes/functions.php:569 includes/functions.php:570
4728
  #: includes/functions.php:576 includes/functions.php:592
4729
  #: includes/functions.php:615 includes/functions.php:694
4730
+ #: includes/functions.php:760 includes/functions.php:766
4731
  msgid "User ID not found."
4732
  msgstr ""
4733
 
4738
  #: includes/functions.php:586 includes/functions.php:587
4739
  #: includes/functions.php:589 includes/functions.php:596
4740
  #: includes/functions.php:612 includes/functions.php:635
4741
+ #: includes/functions.php:714 includes/functions.php:780
4742
+ #: includes/functions.php:786
4743
  msgid "Invalid level."
4744
  msgstr ""
4745
 
4750
  #: includes/functions.php:597 includes/functions.php:598
4751
  #: includes/functions.php:600 includes/functions.php:607
4752
  #: includes/functions.php:623 includes/functions.php:646
4753
+ #: includes/functions.php:725 includes/functions.php:791
4754
+ #: includes/functions.php:797
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
4774
  #: includes/functions.php:700 includes/functions.php:707
4775
  #: includes/functions.php:722 includes/functions.php:723
4776
  #: includes/functions.php:742 includes/functions.php:746
4777
+ #: includes/functions.php:808 includes/functions.php:814
4778
+ #: includes/functions.php:815 includes/functions.php:839
4779
+ #: includes/functions.php:881 includes/functions.php:887
4780
+ #: includes/functions.php:905 includes/functions.php:911
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
4801
  #: includes/functions.php:778 includes/functions.php:780
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
  #: 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
  #: 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
  #: 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
  #: 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
4879
  #: includes/functions.php:1196 includes/functions.php:1197
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
4893
  #: includes/functions.php:1223 includes/functions.php:1230
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
4906
  #: includes/functions.php:1255 includes/functions.php:1262
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
4919
  #: includes/functions.php:1450 includes/functions.php:1457
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
4933
  #: includes/functions.php:1456 includes/functions.php:1463
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
 
5084
  msgid "Paid Memberships Pro Data Update Required"
5085
  msgstr ""
5086
 
5087
+ #: includes/updates.php:111 includes/updates.php:111
5088
  #, php-format
5089
  msgid ""
5090
  "(1) <a target=\"_blank\" href=\"%s\">Backup your WordPress database</a></"
5091
  "strong> and then (2) <a href=\"%s\">click here to start the update</a>."
5092
  msgstr ""
5093
 
5094
+ #: includes/updates.php:132 includes/updates.php:123 includes/updates.php:132
5095
+ #: includes/updates.php:136
5096
  msgid "All Paid Memberships Pro updates have finished."
5097
  msgstr ""
5098
 
5127
  "register to read."
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
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
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
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
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
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
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
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
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
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
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
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
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
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 ""
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 ""
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
 
5565
  msgid "Select"
5566
  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"
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
5634
+ #: preheaders/checkout.php:336 preheaders/checkout.php:364
5635
+ #: preheaders/checkout.php:458 preheaders/checkout.php:464
5636
+ #: preheaders/checkout.php:465 preheaders/checkout.php:470
5637
+ #: preheaders/checkout.php:481 preheaders/checkout.php:482
5638
  msgid "Please complete all required fields."
5639
  msgstr ""
5640
 
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
5645
+ #: preheaders/checkout.php:344 preheaders/checkout.php:372
5646
+ #: preheaders/checkout.php:466 preheaders/checkout.php:473
5647
+ #: preheaders/checkout.php:474 preheaders/checkout.php:478
5648
+ #: preheaders/checkout.php:491 preheaders/checkout.php:492
5649
  msgid "Your email addresses do not match. Please try again."
5650
  msgstr ""
5651
 
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
5656
+ #: preheaders/checkout.php:349 preheaders/checkout.php:377
5657
+ #: preheaders/checkout.php:471 preheaders/checkout.php:478
5658
+ #: preheaders/checkout.php:480 preheaders/checkout.php:483
5659
+ #: preheaders/checkout.php:497 preheaders/checkout.php:498
5660
  msgid "The email address entered is in an invalid format. Please try again."
5661
  msgstr ""
5662
 
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
5692
+ #: preheaders/checkout.php:358 preheaders/checkout.php:386
5693
  #: preheaders/checkout.php:480 preheaders/checkout.php:487
5694
  #: preheaders/checkout.php:491 preheaders/checkout.php:492
5695
  #: preheaders/checkout.php:508 preheaders/checkout.php:509
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
5720
+ #: preheaders/checkout.php:486
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
5728
+ #: preheaders/checkout.php:503 preheaders/checkout.php:504
5729
  #, php-format
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
5737
+ #: preheaders/checkout.php:513
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
5745
+ #: preheaders/checkout.php:535 preheaders/checkout.php:536
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
5753
+ #: preheaders/checkout.php:541 preheaders/checkout.php:542
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
5761
+ #: preheaders/checkout.php:537 preheaders/checkout.php:544
5762
+ #: preheaders/checkout.php:561 preheaders/checkout.php:562
5763
  #, php-format
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
5771
+ #: preheaders/checkout.php:659 preheaders/checkout.php:683
5772
+ #: preheaders/checkout.php:701 preheaders/checkout.php:702
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
5780
+ #: preheaders/checkout.php:665 preheaders/checkout.php:691
5781
+ #: preheaders/checkout.php:709 preheaders/checkout.php:710
5782
  msgid ""
5783
  "Unknown error generating account. Please contact us to set up your "
5784
  "membership."
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
5791
+ #: preheaders/checkout.php:785 preheaders/checkout.php:792
5792
+ #: preheaders/checkout.php:797 preheaders/checkout.php:825
5793
+ #: preheaders/checkout.php:844 preheaders/checkout.php:859
5794
+ #: preheaders/checkout.php:860
5795
  msgid ""
5796
  "Your payment was accepted, but there was an error setting up your account. "
5797
  "Please contact us."
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
5804
+ #: preheaders/checkout.php:826 preheaders/checkout.php:953
5805
+ #: preheaders/checkout.php:960 preheaders/checkout.php:970
5806
+ #: preheaders/checkout.php:983 preheaders/checkout.php:1030
5807
+ #: preheaders/checkout.php:1045 preheaders/checkout.php:1046
5808
  msgid ""
5809
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5810
  "authorized, but we cancelled the order immediately. You should not try to "
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
5818
+ #: preheaders/checkout.php:829 preheaders/checkout.php:956
5819
+ #: preheaders/checkout.php:963 preheaders/checkout.php:973
5820
+ #: preheaders/checkout.php:988 preheaders/checkout.php:1035
5821
+ #: preheaders/checkout.php:1050 preheaders/checkout.php:1051
5822
  msgid ""
5823
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5824
  "was charged, but we couldn't assign your membership. You should not submit "
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
5832
+ #: preheaders/checkout.php:840 preheaders/checkout.php:967
5833
+ #: preheaders/checkout.php:974 preheaders/checkout.php:984
5834
+ #: preheaders/checkout.php:1001 preheaders/checkout.php:1048
5835
+ #: preheaders/checkout.php:1063 preheaders/checkout.php:1064
5836
  #, php-format
5837
  msgid ""
5838
  "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
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
5846
+ #: preheaders/checkout.php:842 preheaders/checkout.php:969
5847
+ #: preheaders/checkout.php:976 preheaders/checkout.php:986
5848
+ #: preheaders/checkout.php:1003 preheaders/checkout.php:1050
5849
+ #: preheaders/checkout.php:1065 preheaders/checkout.php:1066
5850
  msgid "A Payment Gateway must be set up before any payments will be processed."
5851
  msgstr ""
5852
 
5892
  #: services/authnet-silent-post.php:149 services/authnet-silent-post.php:133
5893
  #: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
5894
  #: services/authnet-silent-post.php:144 services/authnet-silent-post.php:145
5895
+ #: services/authnet-silent-post.php:149
5896
  msgid ""
5897
  "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
5898
  "Information From Authorize.net"
5902
  #: services/stripe-webhook.php:194 services/stripe-webhook.php:270
5903
  #: services/stripe-webhook.php:271 services/stripe-webhook.php:272
5904
  #: services/stripe-webhook.php:283 services/stripe-webhook.php:290
5905
+ #: services/stripe-webhook.php:304
5906
  #, php-format
5907
  msgid ""
5908
  "%s has had their payment subscription cancelled by Stripe. Please check that "
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"
pages/billing.php CHANGED
@@ -20,7 +20,9 @@
20
  $pmpro_stripe_lite = apply_filters("pmpro_stripe_lite", !pmpro_getOption("stripe_billingaddress")); //default is oposite of the stripe_billingaddress setting
21
 
22
  $level = $current_user->membership_level;
23
- if($level)
 
 
24
  {
25
  ?>
26
  <p><?php printf(__("Logged in as <strong>%s</strong>.", "pmpro"), $current_user->user_login);?> <small><a href="<?php echo wp_logout_url(get_bloginfo("url") . "/membership-checkout/?level=" . $level->id);?>"><?php _e("logout", "pmpro");?></a></small></p>
@@ -67,7 +69,7 @@
67
  }
68
  ?>
69
 
70
- <?php if(empty($pmpro_stripe_lite) || $gateway != "stripe") { ?>
71
  <table id="pmpro_billing_address_fields" class="pmpro_checkout" width="100%" cellpadding="0" cellspacing="0" border="0">
72
  <thead>
73
  <tr>
@@ -222,11 +224,13 @@
222
  <?php } ?>
223
 
224
  <?php
 
 
 
225
  $pmpro_accepted_credit_cards = pmpro_getOption("accepted_credit_cards");
226
  $pmpro_accepted_credit_cards = explode(",", $pmpro_accepted_credit_cards);
227
  $pmpro_accepted_credit_cards_string = pmpro_implodeToEnglish($pmpro_accepted_credit_cards);
228
  ?>
229
-
230
  <table id="pmpro_payment_information_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0" border="0">
231
  <thead>
232
  <tr>
@@ -248,17 +252,55 @@
248
  <?php
249
  }
250
  ?>
251
- <?php if(empty($pmpro_stripe_lite) || $gateway != "stripe") { ?>
252
- <div>
253
- <label for="CardType"><?php _e('Card Type', 'pmpro');?></label>
254
- <select id="CardType" <?php if($gateway != "stripe") { ?>name="CardType"<?php } ?>>
255
- <?php foreach($pmpro_accepted_credit_cards as $cc) { ?>
256
- <option value="<?php echo $cc?>" <?php if($CardType == $cc) { ?>selected="selected"<?php } ?>><?php echo $cc?></option>
257
- <?php } ?>
258
- </select>
259
- </div>
260
- <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
 
 
 
 
 
 
 
 
 
 
 
 
 
262
  <div>
263
  <label for="AccountNumber"><?php _e('Card Number', 'pmpro');?></label>
264
  <input id="AccountNumber" <?php if($gateway != "stripe" && $gateway != "braintree") { ?>name="AccountNumber"<?php } ?> class="input <?php echo pmpro_getClassForField("AccountNumber");?>" type="text" size="25" value="<?php echo esc_attr($AccountNumber)?>" <?php if($gateway == "braintree") { ?>data-encrypted-name="number"<?php } ?> autocomplete="off" />
@@ -340,7 +382,9 @@
340
  pmpro_updateBraintreeAccountNumber();
341
  -->
342
  </script>
343
- <?php } ?>
 
 
344
 
345
  <div align="center">
346
  <input type="hidden" name="update-billing" value="1" />
20
  $pmpro_stripe_lite = apply_filters("pmpro_stripe_lite", !pmpro_getOption("stripe_billingaddress")); //default is oposite of the stripe_billingaddress setting
21
 
22
  $level = $current_user->membership_level;
23
+
24
+ //Make sure the $level object is a valid level definition
25
+ if(isset($level->id) && !empty($level->id))
26
  {
27
  ?>
28
  <p><?php printf(__("Logged in as <strong>%s</strong>.", "pmpro"), $current_user->user_login);?> <small><a href="<?php echo wp_logout_url(get_bloginfo("url") . "/membership-checkout/?level=" . $level->id);?>"><?php _e("logout", "pmpro");?></a></small></p>
69
  }
70
  ?>
71
 
72
+ <?php if(empty($pmpro_stripe_lite) || $gateway != "stripe" || function_exists('pmproaffl_pmpro_required_billing_fields')) { ?>
73
  <table id="pmpro_billing_address_fields" class="pmpro_checkout" width="100%" cellpadding="0" cellspacing="0" border="0">
74
  <thead>
75
  <tr>
224
  <?php } ?>
225
 
226
  <?php
227
+ $pmpro_include_billing_address_fields = apply_filters('pmpro_include_billing_address_fields', true);
228
+ if($pmpro_include_billing_address_fields)
229
+ {
230
  $pmpro_accepted_credit_cards = pmpro_getOption("accepted_credit_cards");
231
  $pmpro_accepted_credit_cards = explode(",", $pmpro_accepted_credit_cards);
232
  $pmpro_accepted_credit_cards_string = pmpro_implodeToEnglish($pmpro_accepted_credit_cards);
233
  ?>
 
234
  <table id="pmpro_payment_information_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0" border="0">
235
  <thead>
236
  <tr>
252
  <?php
253
  }
254
  ?>
255
+
256
+ <?php
257
+ $pmpro_include_cardtype_field = apply_filters('pmpro_include_cardtype_field', false);
258
+ if($pmpro_include_cardtype_field)
259
+ {
260
+ ?>
261
+ <div class="pmpro_payment-card-type">
262
+ <label for="CardType"><?php _e('Card Type', 'pmpro');?></label>
263
+ <select id="CardType" name="CardType" class=" <?php echo pmpro_getClassForField("CardType");?>">
264
+ <?php foreach($pmpro_accepted_credit_cards as $cc) { ?>
265
+ <option value="<?php echo $cc?>" <?php if($CardType == $cc) { ?>selected="selected"<?php } ?>><?php echo $cc?></option>
266
+ <?php } ?>
267
+ </select>
268
+ </div>
269
+ <?php
270
+ }
271
+ else
272
+ {
273
+ ?>
274
+ <input type="hidden" id="CardType" name="CardType" value="<?php echo esc_attr($CardType);?>" />
275
+ <script>
276
+ <!--
277
+ jQuery(document).ready(function() {
278
+ jQuery('#AccountNumber').validateCreditCard(function(result) {
279
+ var cardtypenames = {
280
+ "amex" : "American Express",
281
+ "diners_club_carte_blanche" : "Diners Club Carte Blanche",
282
+ "diners_club_international" : "Diners Club International",
283
+ "discover" : "Discover",
284
+ "jcb" : "JCB",
285
+ "laser" : "Laser",
286
+ "maestro" : "Maestro",
287
+ "mastercard" : "Mastercard",
288
+ "visa" : "Visa",
289
+ "visa_electron" : "Visa Electron"
290
+ };
291
 
292
+ if(result.card_type)
293
+ jQuery('#CardType').val(cardtypenames[result.card_type.name]);
294
+ else
295
+ jQuery('#CardType').val('Unknown Card Type');
296
+ });
297
+ });
298
+ -->
299
+ </script>
300
+ <?php
301
+ }
302
+ ?>
303
+
304
  <div>
305
  <label for="AccountNumber"><?php _e('Card Number', 'pmpro');?></label>
306
  <input id="AccountNumber" <?php if($gateway != "stripe" && $gateway != "braintree") { ?>name="AccountNumber"<?php } ?> class="input <?php echo pmpro_getClassForField("AccountNumber");?>" type="text" size="25" value="<?php echo esc_attr($AccountNumber)?>" <?php if($gateway == "braintree") { ?>data-encrypted-name="number"<?php } ?> autocomplete="off" />
382
  pmpro_updateBraintreeAccountNumber();
383
  -->
384
  </script>
385
+ <?php }
386
+ } // if false === $hide_cc_fields
387
+ ?>
388
 
389
  <div align="center">
390
  <input type="hidden" name="update-billing" value="1" />
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.9.3
7
  Author: Stranger Studios
8
  Author URI: http://www.strangerstudios.com
9
  */
@@ -13,7 +13,7 @@ Author URI: http://www.strangerstudios.com
13
  */
14
 
15
  //version constant
16
- define("PMPRO_VERSION", "1.8.9.3");
17
  define("PMPRO_USER_AGENT", "Paid Memberships Pro v" . PMPRO_VERSION . "; " . site_url());
18
 
19
  //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.10.1
7
  Author: Stranger Studios
8
  Author URI: http://www.strangerstudios.com
9
  */
13
  */
14
 
15
  //version constant
16
+ define("PMPRO_VERSION", "1.8.10.1");
17
  define("PMPRO_USER_AGENT", "Paid Memberships Pro v" . PMPRO_VERSION . "; " . site_url());
18
 
19
  //if the session has been started yet, start it (ignore if running from command line)
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.2
6
- Stable tag: 1.8.9.3
7
 
8
  A revenue-generating machine for membership sites. Unlimited levels with recurring payment, protected content and member management.
9
 
@@ -115,7 +115,29 @@ 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
- =======
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  = 1.8.9.3 =
120
  * BUG: Fixed bug introduced in 1.8.9.2 where member start and end dates weren't being set correctly. Includes an update script to fix past users affected by this.
121
  * BUG: Fixed warnings on new order page in the dashboard.
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.1
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.10.2 =
119
+ * BUG: Fixed bug in invoices query in the pmpro_account shortcode.
120
+ * BUG: Fixed issue where the orders table was not being created on brand new installs.
121
+
122
+ = 1.8.10.1 =
123
+ * BUG: Fixed bugs in pmpro_hasMembershipLevel that caused shortcodes like [membership levels="0"] and [membership levels="-1"] to stop working.
124
+
125
+ = 1.8.10 =
126
+ * SECURITY: Patched a cross site scripting (XSS) vulnerability on the Memberships -> Addons page in the dashboard. Thanks to Burak Kelebek for the discovery and responsible disclosure of this vulnerability.
127
+ * BUG: Added pmpro_btn-submit-checkout class to the PayPal checkout buttons.
128
+ * BUG: Updated Stripe and Braintree gateways to load billing fields and JavaScript when it's the default gateway (if not the current gateway specified).
129
+ * BUG: Fixed bug where cancelation emails weren't being sent to users if they originated from PayPal.
130
+ * BUG: Fixed bug where unsucessful invoices were shown on the Membership Account page. We aren't showing refunded invoices here now either, but plan to in the future.
131
+ * BUG: The update billing page now uses the pmpro_include_billing_address_fields filter so gateways and addons can properly override the payment fields when needed.
132
+ * BUG: The update billing page now uses the validatecreditcard.js script to set the Card Type in the background, just like checkout. Fixes some issues with updating credit cards on certain gateways.
133
+ * BUG: Reintroduced the pmpro_members_list_sql filter.
134
+ * BUG/ENHANCEMENT: Switched the Japanese Yen and South Korean Won to not use decimals by default. (Thanks, flatworld21 on wp.org)
135
+ * ENHANCEMENT: Added an option to skip the confirmation step with PayPal Express.
136
+ * ENHANCEMENT: Added the pmpro_membership_levels_table filter on the membership levels page of the dashboard to allow addons (like the upcoming MMPU addon) to override the HTML for the table shown.
137
+ * ENHANCEMENT: Added the checkout_id column to the pmpro_membership_orders table. This will be used by addons and possible core in the future to track multiple orders that happen during the same checkout process.
138
+ * ENHANCEMENT: Added support for the Serian language. (Thanks, Sasa Trifkovic)
139
+ * NOTE: We are planning to remove the certificate_id and certificate_amount columns from the pmpro_membership_orders table. Please contact us if you are using this column for something to come up with a work around.
140
+
141
  = 1.8.9.3 =
142
  * BUG: Fixed bug introduced in 1.8.9.2 where member start and end dates weren't being set correctly. Includes an update script to fix past users affected by this.
143
  * BUG: Fixed warnings on new order page in the dashboard.
services/ipnhandler.php CHANGED
@@ -600,6 +600,9 @@ function pmpro_ipnFailedPayment( $last_order ) {
600
  $morder = new MemberOrder();
601
  $morder->user_id = $last_order->user_id;
602
 
 
 
 
603
  //add billing information if appropriate
604
  if ( $last_order->gateway == "paypal" ) //website payments pro
605
  {
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
  {
shortcodes/membership.php CHANGED
@@ -16,7 +16,7 @@ function pmpro_shortcode_membership($atts, $content=null, $code="")
16
  ), $atts));
17
 
18
  //if levels is used instead of level
19
- if(!empty($levels) && empty($level))
20
  $level = $levels;
21
 
22
  global $wpdb, $current_user;
@@ -25,7 +25,7 @@ function pmpro_shortcode_membership($atts, $content=null, $code="")
25
  $hasaccess = false;
26
 
27
  //figure out which level/levels to check
28
- if(!empty($level) || $level === "0")
29
  {
30
  //they specified a level(s)
31
  if(strpos($level, ","))
@@ -44,7 +44,7 @@ function pmpro_shortcode_membership($atts, $content=null, $code="")
44
  //didn't specify a membership level, so use false so pmpro_hasMembershipLevel checks for any level
45
  $levels = false;
46
  }
47
-
48
  //check their level
49
  if(pmpro_hasMembershipLevel($levels))
50
  $hasaccess = true;
16
  ), $atts));
17
 
18
  //if levels is used instead of level
19
+ if(isset($levels) && !isset($level))
20
  $level = $levels;
21
 
22
  global $wpdb, $current_user;
25
  $hasaccess = false;
26
 
27
  //figure out which level/levels to check
28
+ if(!empty($level) || $level === "0" || $level === 0)
29
  {
30
  //they specified a level(s)
31
  if(strpos($level, ","))
44
  //didn't specify a membership level, so use false so pmpro_hasMembershipLevel checks for any level
45
  $levels = false;
46
  }
47
+
48
  //check their level
49
  if(pmpro_hasMembershipLevel($levels))
50
  $hasaccess = true;
shortcodes/pmpro_account.php CHANGED
@@ -19,10 +19,9 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
19
  //did they use 'section' instead of 'sections'?
20
  if(!empty($section))
21
  $sections = $section;
22
-
23
- //turn into an array
24
- $sections = explode(',', $sections);
25
-
26
  ob_start();
27
 
28
  //if a member is logged in, show them some info here (1. past invoices. 2. billing information with button to update.)
@@ -30,7 +29,7 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
30
  {
31
  $ssorder = new MemberOrder();
32
  $ssorder->getLastMemberOrder();
33
- $invoices = $wpdb->get_results("SELECT *, UNIX_TIMESTAMP(timestamp) as timestamp FROM $wpdb->pmpro_membership_orders WHERE user_id = '$current_user->ID' ORDER BY timestamp DESC LIMIT 6");
34
  ?>
35
  <div id="pmpro_account">
36
 
19
  //did they use 'section' instead of 'sections'?
20
  if(!empty($section))
21
  $sections = $section;
22
+
23
+ //Extract the user-defined sections for the shortcode
24
+ $sections = array_map('trim',explode(",",$sections));
 
25
  ob_start();
26
 
27
  //if a member is logged in, show them some info here (1. past invoices. 2. billing information with button to update.)
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