Paid Memberships Pro - Version 1.8.7.2

Version Description

  • BUG: Fixed bug where pmpro_activation() was firing on every page load. (Thanks, Tigertech and MegaZ on WordPress.org)
  • BUG: Fixed bugs with internationalized date formats in a few places.
Download this release

Release Info

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

Code changes from version 1.8.6.8.1 to 1.8.7.2

Files changed (49) hide show
  1. adminpages/memberslist.php +1 -1
  2. adminpages/orders-print.php +1 -1
  3. adminpages/orders.php +2 -31
  4. adminpages/reports/memberships.php +9 -9
  5. adminpages/reports/sales.php +3 -3
  6. adminpages/updates.php +29 -0
  7. classes/class.memberorder.php +57 -4
  8. classes/class.pmproemail.php +15 -15
  9. classes/gateways/class.pmprogateway.php +1 -1
  10. classes/gateways/class.pmprogateway_authorizenet.php +1 -1
  11. classes/gateways/class.pmprogateway_braintree.php +1 -1
  12. classes/gateways/class.pmprogateway_check.php +1 -1
  13. classes/gateways/class.pmprogateway_cybersource.php +1 -1
  14. classes/gateways/class.pmprogateway_payflowpro.php +1 -1
  15. classes/gateways/class.pmprogateway_paypal.php +1 -1
  16. classes/gateways/class.pmprogateway_paypalexpress.php +1 -1
  17. classes/gateways/class.pmprogateway_paypalstandard.php +1 -1
  18. classes/gateways/class.pmprogateway_stripe.php +25 -3
  19. classes/gateways/class.pmprogateway_twocheckout.php +1 -1
  20. css/frontend.css +378 -143
  21. includes/adminpages.php +11 -2
  22. includes/content.php +7 -4
  23. includes/currencies.php +2 -0
  24. includes/functions.php +8 -4
  25. includes/lib/recaptchalib.php +1 -1
  26. includes/metaboxes.php +7 -2
  27. includes/updates.php +128 -0
  28. includes/upgradecheck.php +100 -0
  29. js/updates.js +54 -0
  30. languages/email/fr_FR/billing.html +3 -3
  31. languages/pmpro-fa_IR.mo +0 -0
  32. languages/pmpro-fa_IR.po +4769 -0
  33. languages/pmpro-fr_FR.po +56 -56
  34. languages/pmpro-nb_NO.mo +0 -0
  35. languages/pmpro-nb_NO.po +4322 -3279
  36. languages/pmpro.po +1112 -648
  37. languages/pmpro.pot +1106 -639
  38. pages/cancel.php +1 -1
  39. pages/confirmation.php +1 -1
  40. pages/invoice.php +2 -2
  41. pages/levels.php +1 -1
  42. paid-memberships-pro.php +5 -2
  43. readme.txt +20 -1
  44. services/applydiscountcode.php +37 -37
  45. services/authnet-silent-post.php +4 -1
  46. services/braintree-webhook.php +2 -2
  47. services/ipnhandler.php +5 -2
  48. services/stripe-webhook.php +9 -8
  49. services/twocheckout-ins.php +122 -122
adminpages/memberslist.php CHANGED
@@ -268,7 +268,7 @@
268
  </form>
269
 
270
  <?php
271
- echo pmpro_getPaginationString($pn, $totalrows, $limit, 1, get_admin_url(NULL, "/admin.php?page=pmpro-memberslist&s=" . urlencode($s)), "&l=$l&limit=$limit&pn=");
272
  ?>
273
 
274
  <?php
268
  </form>
269
 
270
  <?php
271
+ echo pmpro_getPaginationString($pn, $totalrows, $limit, 1, add_query_arg(array("s" => urlencode($s), "l" => $l, "limit" => $limit)));
272
  ?>
273
 
274
  <?php
adminpages/orders-print.php CHANGED
@@ -14,7 +14,7 @@ if ( ! function_exists( "current_user_can" ) || ( ! current_user_can( "manage_op
14
 
15
  // Do we have an order ID?
16
  if ( empty( $_REQUEST['order'] ) ) {
17
- wp_redirect( admin_url( 'admin..php?page=pmpro-orders' ) );
18
  exit;
19
  }
20
 
14
 
15
  // Do we have an order ID?
16
  if ( empty( $_REQUEST['order'] ) ) {
17
+ wp_redirect( admin_url( 'admin.php?page=pmpro-orders' ) );
18
  exit;
19
  }
20
 
adminpages/orders.php CHANGED
@@ -303,35 +303,6 @@
303
  else
304
  {
305
  $order = new MemberOrder(); //new order
306
-
307
- //defaults
308
- $order->code = $order->getRandomCode();
309
- $order->user_id = "";
310
- $order->membership_id = "";
311
- $order->billing->name = "";
312
- $order->billing->street = "";
313
- $order->billing->city = "";
314
- $order->billing->state = "";
315
- $order->billing->zip = "";
316
- $order->billing->country = "";
317
- $order->billing->phone = "";
318
- $order->subtotal = "";
319
- $order->tax = "";
320
- $order->couponamount = "";
321
- $order->total = "";
322
- $order->payment_type = "";
323
- $order->cardtype = "";
324
- $order->accountnumber = "";
325
- $order->expirationmonth = "";
326
- $order->expirationyear = "";
327
- $order->status = "success";
328
- $order->gateway = pmpro_getOption("gateway");
329
- $order->gateway_environment = pmpro_getOption("gateway_environment");
330
- $order->payment_transaction_id = "";
331
- $order->subscription_transaction_id = "";
332
- $order->affiliate_id = "";
333
- $order->affiliate_subid = "";
334
- $order->notes = "";
335
  }
336
  }
337
  }
@@ -625,7 +596,7 @@
625
  if(!empty($affiliates)) {
626
  ?>
627
  <tr>
628
- <th scope="row" valign="top"><label for="affiliate_id"><?php _e('Affiliate ID', 'pmpro');?>Affiliate ID:</label></th>
629
  <td>
630
  <?php if(in_array("affiliate_id", $read_only_fields) && $order_id > 0) { echo $order->affiliate_id; } else { ?>
631
  <input id="affiliate_id" name="affiliate_id" type="text" size="50" value="<?php echo esc_attr($order->affiliate_id);?>" />
@@ -633,7 +604,7 @@
633
  </td>
634
  </tr>
635
  <tr>
636
- <th scope="row" valign="top"><label for="affiliate_subid"><?php _e('Affiliate SubID', 'pmpro');?>Affiliate SubID:</label></th>
637
  <td>
638
  <?php if(in_array("affiliate_subid", $read_only_fields) && $order_id > 0) { echo $order->affiliate_subid; } else { ?>
639
  <input id="affiliate_subid" name="affiliate_subid" type="text" size="50" value="<?php echo esc_attr($order->affiliate_subid);?>" />
303
  else
304
  {
305
  $order = new MemberOrder(); //new order
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
  }
307
  }
308
  }
596
  if(!empty($affiliates)) {
597
  ?>
598
  <tr>
599
+ <th scope="row" valign="top"><label for="affiliate_id"><?php _e('Affiliate ID', 'pmpro');?>:</label></th>
600
  <td>
601
  <?php if(in_array("affiliate_id", $read_only_fields) && $order_id > 0) { echo $order->affiliate_id; } else { ?>
602
  <input id="affiliate_id" name="affiliate_id" type="text" size="50" value="<?php echo esc_attr($order->affiliate_id);?>" />
604
  </td>
605
  </tr>
606
  <tr>
607
+ <th scope="row" valign="top"><label for="affiliate_subid"><?php _e('Affiliate SubID', 'pmpro');?>:</label></th>
608
  <td>
609
  <?php if(in_array("affiliate_subid", $read_only_fields) && $order_id > 0) { echo $order->affiliate_subid; } else { ?>
610
  <input id="affiliate_subid" name="affiliate_subid" type="text" size="50" value="<?php echo esc_attr($order->affiliate_subid);?>" />
adminpages/reports/memberships.php CHANGED
@@ -162,9 +162,9 @@ function pmpro_report_memberships_page()
162
  if ( $type === "signup_v_cancel" || $type === "signup_v_expiration" || $type === "signup_v_all" ) {
163
  $cols[$i] = new stdClass();
164
  $cols[$i]->signups = 0;
165
- foreach($dates as $date)
166
  {
167
- if( $date->date == $i ) {
168
  $cols[$i]->signups = $date->signups;
169
  }
170
  }
@@ -206,7 +206,7 @@ function pmpro_report_memberships_page()
206
  elseif($period == "annual") //annual
207
  {
208
  }
209
-
210
  $dates = ( ! empty( $cols ) ) ? $cols : $dates;
211
 
212
  // Signups vs. all
@@ -230,16 +230,16 @@ function pmpro_report_memberships_page()
230
 
231
  //restrict by level
232
  if(!empty($l))
233
- $sqlQuery .= "AND membership_id IN(" . $l . ") ";
234
 
235
  $sqlQuery .= " GROUP BY date ORDER BY date ";
236
 
237
- $cdates = $wpdb->get_results($sqlQuery, OBJECT_K);
238
-
239
- foreach( $dates as &$date )
240
  {
241
- if(!empty($cdates) && !empty($cdates[$date->date]))
242
- $date->cancellations = $cdates[$date->date]->cancellations;
243
  else
244
  $date->cancellations = 0;
245
  }
162
  if ( $type === "signup_v_cancel" || $type === "signup_v_expiration" || $type === "signup_v_all" ) {
163
  $cols[$i] = new stdClass();
164
  $cols[$i]->signups = 0;
165
+ foreach($dates as $day => $date)
166
  {
167
+ if( $day == $i ) {
168
  $cols[$i]->signups = $date->signups;
169
  }
170
  }
206
  elseif($period == "annual") //annual
207
  {
208
  }
209
+
210
  $dates = ( ! empty( $cols ) ) ? $cols : $dates;
211
 
212
  // Signups vs. all
230
 
231
  //restrict by level
232
  if(!empty($l))
233
+ $sqlQuery .= "AND mu1.membership_id IN(" . $l . ") ";
234
 
235
  $sqlQuery .= " GROUP BY date ORDER BY date ";
236
 
237
+ $cdates = $wpdb->get_results($sqlQuery, OBJECT_K);
238
+
239
+ foreach( $dates as $day => &$date )
240
  {
241
+ if(!empty($cdates) && !empty($cdates[$day]))
242
+ $date->cancellations = $cdates[$day]->cancellations;
243
  else
244
  $date->cancellations = 0;
245
  }
adminpages/reports/sales.php CHANGED
@@ -132,7 +132,7 @@ function pmpro_report_sales_page()
132
  $gateway_environment = pmpro_getOption("gateway_environment");
133
 
134
  //get data
135
- $sqlQuery = "SELECT $date_function(timestamp) as date, $type_function(total) as value FROM $wpdb->pmpro_membership_orders WHERE timestamp >= '" . $startdate . "' AND status NOT IN('refunded', 'review', 'token', 'error') AND gateway_environment = '" . esc_sql($gateway_environment) . "' ";
136
 
137
  if(!empty($enddate))
138
  $sqlQuery .= "AND timestamp < '" . $enddate . "' ";
@@ -327,7 +327,7 @@ function pmpro_getSales($period, $levels = NULL)
327
  if(!empty($cache) && !empty($cache[$period]) && !empty($cache[$period][$levels]))
328
  return $cache[$period][$levels];
329
 
330
- //a sale is an order with status NOT IN('refunded', 'review', 'token', 'error')
331
  if($period == "today")
332
  $startdate = date("Y-m-d", current_time('timestamp'));
333
  elseif($period == "this month")
@@ -341,7 +341,7 @@ function pmpro_getSales($period, $levels = NULL)
341
 
342
  //build query
343
  global $wpdb;
344
- $sqlQuery = "SELECT COUNT(*) FROM $wpdb->pmpro_membership_orders WHERE status NOT IN('refunded', 'review', 'token', 'error') AND timestamp >= '" . $startdate . "' AND gateway_environment = '" . esc_sql($gateway_environment) . "' ";
345
 
346
  //restrict by level
347
  if(!empty($levels))
132
  $gateway_environment = pmpro_getOption("gateway_environment");
133
 
134
  //get data
135
+ $sqlQuery = "SELECT $date_function(timestamp) as date, $type_function(total) as value FROM $wpdb->pmpro_membership_orders WHERE total > 0 AND timestamp >= '" . $startdate . "' AND status NOT IN('refunded', 'review', 'token', 'error') AND gateway_environment = '" . esc_sql($gateway_environment) . "' ";
136
 
137
  if(!empty($enddate))
138
  $sqlQuery .= "AND timestamp < '" . $enddate . "' ";
327
  if(!empty($cache) && !empty($cache[$period]) && !empty($cache[$period][$levels]))
328
  return $cache[$period][$levels];
329
 
330
+ //a sale is an order with status NOT IN('refunded', 'review', 'token', 'error') with a total > 0
331
  if($period == "today")
332
  $startdate = date("Y-m-d", current_time('timestamp'));
333
  elseif($period == "this month")
341
 
342
  //build query
343
  global $wpdb;
344
+ $sqlQuery = "SELECT COUNT(*) FROM $wpdb->pmpro_membership_orders WHERE total > 0 AND status NOT IN('refunded', 'review', 'token', 'error') AND timestamp >= '" . $startdate . "' AND gateway_environment = '" . esc_sql($gateway_environment) . "' ";
345
 
346
  //restrict by level
347
  if(!empty($levels))
adminpages/updates.php ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ //only admins can get this
3
+ if(!function_exists("current_user_can") || (!current_user_can("manage_options") && !current_user_can("pmpro_updates")))
4
+ {
5
+ die(__("You do not have permissions to perform this action.", "pmpro"));
6
+ }
7
+
8
+ require_once(dirname(__FILE__) . "/admin_header.php");
9
+ ?>
10
+
11
+ <h2><?php _e('Updating Paid Memberships Pro', 'pmpro');?></h2>
12
+
13
+ <?php
14
+ $updates = get_option('pmpro_updates', array());
15
+ if(!empty($updates)) {
16
+ //let's process the first one
17
+ ?>
18
+ <p id="pmpro_updates_intro"><?php _e('Updates are processing. This may take a few minutes to complete.', 'pmpro');?></p>
19
+ <textarea id="pmpro_updates_status" rows="10" cols="60">Loading...</textarea>
20
+
21
+ <?php
22
+ } else {
23
+ ?><p><?php _e('Update complete.');?></p><?php
24
+ }
25
+ ?>
26
+
27
+ <?php
28
+ require_once(dirname(__FILE__) . "/admin_footer.php");
29
+ ?>
classes/class.memberorder.php CHANGED
@@ -4,7 +4,7 @@
4
  /**
5
  * Constructor
6
  */
7
- function MemberOrder($id = NULL)
8
  {
9
  //set up the gateway
10
  $this->setGateway(pmpro_getOption("gateway"));
@@ -18,11 +18,56 @@
18
  return $this->getMemberOrderByCode($id);
19
  }
20
  else
21
- return true; //blank constructor
22
  }
23
 
24
  /**
25
- * Retrieve a member ordr from the DB by ID
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  */
27
  function getMemberOrderByID($id)
28
  {
@@ -458,6 +503,13 @@
458
  if(empty($this->gateway_environment))
459
  $this->gateway_environment = pmpro_getOption("gateway_environment");
460
 
 
 
 
 
 
 
 
461
  if(empty($this->notes))
462
  $this->notes = "";
463
 
@@ -497,6 +549,7 @@
497
  `gateway_environment` = '" . $this->gateway_environment . "',
498
  `payment_transaction_id` = '" . esc_sql($this->payment_transaction_id) . "',
499
  `subscription_transaction_id` = '" . esc_sql($this->subscription_transaction_id) . "',
 
500
  `affiliate_id` = '" . esc_sql($this->affiliate_id) . "',
501
  `affiliate_subid` = '" . esc_sql($this->affiliate_subid) . "',
502
  `notes` = '" . esc_sql($this->notes) . "'
@@ -539,7 +592,7 @@
539
  '" . $this->gateway_environment . "',
540
  '" . esc_sql($this->payment_transaction_id) . "',
541
  '" . esc_sql($this->subscription_transaction_id) . "',
542
- '" . current_time('mysql') . "',
543
  '" . esc_sql($this->affiliate_id) . "',
544
  '" . esc_sql($this->affiliate_subid) . "',
545
  '" . esc_sql($this->notes) . "'
4
  /**
5
  * Constructor
6
  */
7
+ function __construct($id = NULL)
8
  {
9
  //set up the gateway
10
  $this->setGateway(pmpro_getOption("gateway"));
18
  return $this->getMemberOrderByCode($id);
19
  }
20
  else
21
+ return $this->getEmptyMemberOrder(); //blank constructor
22
  }
23
 
24
  /**
25
+ * Returns an empty (but complete) order object.
26
+ *
27
+ * @return stdClass $order - a 'clean' order object
28
+ *
29
+ * @since: 1.8.6.8
30
+ */
31
+ function getEmptyMemberOrder()
32
+ {
33
+
34
+ //defaults
35
+ $order = new stdClass();
36
+ $order->code = $this->getRandomCode();
37
+ $order->user_id = "";
38
+ $order->membership_id = "";
39
+ $order->subtotal = "";
40
+ $order->tax = "";
41
+ $order->couponamount = "";
42
+ $order->total = "";
43
+ $order->payment_type = "";
44
+ $order->cardtype = "";
45
+ $order->accountnumber = "";
46
+ $order->expirationmonth = "";
47
+ $order->expirationyear = "";
48
+ $order->status = "success";
49
+ $order->gateway = pmpro_getOption("gateway");
50
+ $order->gateway_environment = pmpro_getOption("gateway_environment");
51
+ $order->payment_transaction_id = "";
52
+ $order->subscription_transaction_id = "";
53
+ $order->affiliate_id = "";
54
+ $order->affiliate_subid = "";
55
+ $order->notes = "";
56
+
57
+ $order->billing = new stdClass();
58
+ $order->billing->name = "";
59
+ $order->billing->street = "";
60
+ $order->billing->city = "";
61
+ $order->billing->state = "";
62
+ $order->billing->zip = "";
63
+ $order->billing->country = "";
64
+ $order->billing->phone = "";
65
+
66
+ return $order;
67
+ }
68
+
69
+ /**
70
+ * Retrieve a member order from the DB by ID
71
  */
72
  function getMemberOrderByID($id)
73
  {
503
  if(empty($this->gateway_environment))
504
  $this->gateway_environment = pmpro_getOption("gateway_environment");
505
 
506
+ if(empty($this->datetime) && empty($this->timestamp))
507
+ $this->datetime = date("Y-m-d H:s:i", current_time("timestamp")); //use current time
508
+ elseif(empty($this->datetime) && !empty($this->timestamp) && is_numeric($this->timestamp))
509
+ $this->datetime = date("Y-m-d H:s:i", $this->timestamp); //get datetime from timestamp
510
+ elseif(empty($this->datetime) && !empty($this->timestamp))
511
+ $this->datetime = $this->timestamp; //must have a datetime in it
512
+
513
  if(empty($this->notes))
514
  $this->notes = "";
515
 
549
  `gateway_environment` = '" . $this->gateway_environment . "',
550
  `payment_transaction_id` = '" . esc_sql($this->payment_transaction_id) . "',
551
  `subscription_transaction_id` = '" . esc_sql($this->subscription_transaction_id) . "',
552
+ `timestamp` = '" . esc_sql($this->datetime) . "',
553
  `affiliate_id` = '" . esc_sql($this->affiliate_id) . "',
554
  `affiliate_subid` = '" . esc_sql($this->affiliate_subid) . "',
555
  `notes` = '" . esc_sql($this->notes) . "'
592
  '" . $this->gateway_environment . "',
593
  '" . esc_sql($this->payment_transaction_id) . "',
594
  '" . esc_sql($this->subscription_transaction_id) . "',
595
+ '" . esc_sql($this->datetime) . "',
596
  '" . esc_sql($this->affiliate_id) . "',
597
  '" . esc_sql($this->affiliate_subid) . "',
598
  '" . esc_sql($this->notes) . "'
classes/class.pmproemail.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  class PMProEmail
3
  {
4
- function PMProEmail()
5
  {
6
  $this->email = $this->from = $this->fromname = $this->subject = $this->template = $this->data = $this->body = NULL;
7
  }
@@ -162,12 +162,12 @@
162
  //start and end date
163
  $startdate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(startdate) as startdate FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND membership_id = '" . $old_level_id . "' AND status IN('inactive', 'cancelled', 'admin_cancelled') ORDER BY id DESC");
164
  if(!empty($startdate))
165
- $this->data['startdate'] = date(get_option('date_format'), $startdate);
166
  else
167
  $this->data['startdate'] = "";
168
  $enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(enddate) as enddate FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND membership_id = '" . $old_level_id . "' AND status IN('inactive', 'cancelled', 'admin_cancelled') ORDER BY id DESC");
169
  if(!empty($enddate))
170
- $this->data['enddate'] = date(get_option('date_format'), $enddate);
171
  else
172
  $this->data['enddate'] = "";
173
 
@@ -215,7 +215,7 @@
215
  $this->template = "checkout_paid";
216
  $this->data["invoice_id"] = $invoice->code;
217
  $this->data["invoice_total"] = pmpro_formatPrice($invoice->total);
218
- $this->data["invoice_date"] = date(get_option('date_format'), $invoice->timestamp);
219
  $this->data["billing_name"] = $invoice->billing->name;
220
  $this->data["billing_street"] = $invoice->billing->street;
221
  $this->data["billing_city"] = $invoice->billing->city;
@@ -262,7 +262,7 @@
262
 
263
  $enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(enddate) FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND status = 'active' LIMIT 1");
264
  if($enddate)
265
- $this->data["membership_expiration"] = "<p>" . sprintf(__("This membership will expire on %s.", "pmpro"), date(get_option('date_format'), $enddate)) . "</p>\n";
266
  else
267
  $this->data["membership_expiration"] = "";
268
 
@@ -312,7 +312,7 @@
312
  $this->template = "checkout_paid_admin";
313
  $this->data["invoice_id"] = $invoice->code;
314
  $this->data["invoice_total"] = pmpro_formatPrice($invoice->total);
315
- $this->data["invoice_date"] = date(get_option('date_format'), $invoice->timestamp);
316
  $this->data["billing_name"] = $invoice->billing->name;
317
  $this->data["billing_street"] = $invoice->billing->street;
318
  $this->data["billing_city"] = $invoice->billing->city;
@@ -355,7 +355,7 @@
355
 
356
  $enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(enddate) FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND status = 'active' LIMIT 1");
357
  if($enddate)
358
- $this->data["membership_expiration"] = "<p>" . sprintf(__("This membership will expire on %s.", "pmpro"), date(get_option('date_format'), $enddate)) . "</p>\n";
359
  else
360
  $this->data["membership_expiration"] = "";
361
 
@@ -372,7 +372,7 @@
372
  return false;
373
 
374
  $this->email = $user->user_email;
375
- $this->subject = sprintf(__("Your billing information has been udpated at %s", "pmpro"), get_option("blogname"));
376
  $this->template = "billing";
377
 
378
  $this->data = array(
@@ -425,7 +425,7 @@
425
  return true; //didn't send, but we also don't want to indicate failure because the settings say to not send
426
 
427
  $this->email = get_bloginfo("admin_email");
428
- $this->subject = sprintf(__("Billing information has been udpated for %s at %s", "pmpro"), $user->user_login, get_option("blogname"));
429
  $this->template = "billing_admin";
430
 
431
  $this->data = array(
@@ -629,7 +629,7 @@
629
  "user_email" => $user->user_email,
630
  "invoice_id" => $invoice->code,
631
  "invoice_total" => pmpro_formatPrice($invoice->total),
632
- "invoice_date" => date(get_option('date_format'), $invoice->timestamp),
633
  "billing_name" => $invoice->billing->name,
634
  "billing_street" => $invoice->billing->street,
635
  "billing_city" => $invoice->billing->city,
@@ -660,7 +660,7 @@
660
 
661
  $enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(enddate) FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND status = 'active' LIMIT 1");
662
  if($enddate)
663
- $this->data["membership_expiration"] = "<p>" . sprintf(__("This membership will expire on %s.", "pmpro"), date(get_option('date_format'), $enddate)) . "</p>\n";
664
  else
665
  $this->data["membership_expiration"] = "";
666
 
@@ -703,7 +703,7 @@
703
  "cycle_period" => $user->membership_level->cycle_period,
704
  "trial_amount" => pmpro_formatPrice($user->membership_level->trial_amount),
705
  "trial_limit" => $user->membership_level->trial_limit,
706
- "trial_end" => date(get_option('date_format'), strtotime(date("m/d/Y", $user->membership_level->startdate) . " + " . $user->membership_level->trial_limit . " " . $user->membership_level->cycle_period), current_time("timestamp"))
707
  );
708
 
709
  return $this->sendEmail();
@@ -746,7 +746,7 @@
746
  $this->email = $user->user_email;
747
  $this->subject = sprintf(__("Your membership at %s will end soon", "pmpro"), get_option("blogname"));
748
  $this->template = "membership_expiring";
749
- $this->data = array("subject" => $this->subject, "name" => $user->display_name, "user_login" => $user->user_login, "sitename" => get_option("blogname"), "membership_id" => $user->membership_level->id, "membership_level_name" => $user->membership_level->name, "siteemail" => pmpro_getOption("from_email"), "login_link" => wp_login_url(), "enddate" => date(get_option('date_format'), $user->membership_level->enddate), "display_name" => $user->display_name, "user_email" => $user->user_email);
750
 
751
  return $this->sendEmail();
752
  }
@@ -774,7 +774,7 @@
774
 
775
  if(!empty($user->membership_level->enddate))
776
  {
777
- $this->data["membership_change"] .= ". " . sprintf(__("This membership will expire on %s", "pmpro"), date(get_option('date_format'), $user->membership_level->enddate));
778
  }
779
  elseif(!empty($this->expiration_changed))
780
  {
@@ -812,7 +812,7 @@
812
 
813
  if(!empty($user->membership_level->enddate))
814
  {
815
- $this->data["membership_change"] .= ". " . sprintf(__("This membership will expire on %s", "pmpro"), date(get_option('date_format'), $user->membership_level->enddate));
816
  }
817
  elseif(!empty($this->expiration_changed))
818
  {
1
  <?php
2
  class PMProEmail
3
  {
4
+ function __construct()
5
  {
6
  $this->email = $this->from = $this->fromname = $this->subject = $this->template = $this->data = $this->body = NULL;
7
  }
162
  //start and end date
163
  $startdate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(startdate) as startdate FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND membership_id = '" . $old_level_id . "' AND status IN('inactive', 'cancelled', 'admin_cancelled') ORDER BY id DESC");
164
  if(!empty($startdate))
165
+ $this->data['startdate'] = date_i18n(get_option('date_format'), $startdate);
166
  else
167
  $this->data['startdate'] = "";
168
  $enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(enddate) as enddate FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND membership_id = '" . $old_level_id . "' AND status IN('inactive', 'cancelled', 'admin_cancelled') ORDER BY id DESC");
169
  if(!empty($enddate))
170
+ $this->data['enddate'] = date_i18n(get_option('date_format'), $enddate);
171
  else
172
  $this->data['enddate'] = "";
173
 
215
  $this->template = "checkout_paid";
216
  $this->data["invoice_id"] = $invoice->code;
217
  $this->data["invoice_total"] = pmpro_formatPrice($invoice->total);
218
+ $this->data["invoice_date"] = date_i18n(get_option('date_format'), $invoice->timestamp);
219
  $this->data["billing_name"] = $invoice->billing->name;
220
  $this->data["billing_street"] = $invoice->billing->street;
221
  $this->data["billing_city"] = $invoice->billing->city;
262
 
263
  $enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(enddate) FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND status = 'active' LIMIT 1");
264
  if($enddate)
265
+ $this->data["membership_expiration"] = "<p>" . sprintf(__("This membership will expire on %s.", "pmpro"), date_i18n(get_option('date_format'), $enddate)) . "</p>\n";
266
  else
267
  $this->data["membership_expiration"] = "";
268
 
312
  $this->template = "checkout_paid_admin";
313
  $this->data["invoice_id"] = $invoice->code;
314
  $this->data["invoice_total"] = pmpro_formatPrice($invoice->total);
315
+ $this->data["invoice_date"] = date_i18n(get_option('date_format'), $invoice->timestamp);
316
  $this->data["billing_name"] = $invoice->billing->name;
317
  $this->data["billing_street"] = $invoice->billing->street;
318
  $this->data["billing_city"] = $invoice->billing->city;
355
 
356
  $enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(enddate) FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND status = 'active' LIMIT 1");
357
  if($enddate)
358
+ $this->data["membership_expiration"] = "<p>" . sprintf(__("This membership will expire on %s.", "pmpro"), date_i18n(get_option('date_format'), $enddate)) . "</p>\n";
359
  else
360
  $this->data["membership_expiration"] = "";
361
 
372
  return false;
373
 
374
  $this->email = $user->user_email;
375
+ $this->subject = sprintf(__("Your billing information has been updated at %s", "pmpro"), get_option("blogname"));
376
  $this->template = "billing";
377
 
378
  $this->data = array(
425
  return true; //didn't send, but we also don't want to indicate failure because the settings say to not send
426
 
427
  $this->email = get_bloginfo("admin_email");
428
+ $this->subject = sprintf(__("Billing information has been updated for %s at %s", "pmpro"), $user->user_login, get_option("blogname"));
429
  $this->template = "billing_admin";
430
 
431
  $this->data = array(
629
  "user_email" => $user->user_email,
630
  "invoice_id" => $invoice->code,
631
  "invoice_total" => pmpro_formatPrice($invoice->total),
632
+ "invoice_date" => date_i18n(get_option('date_format'), $invoice->timestamp),
633
  "billing_name" => $invoice->billing->name,
634
  "billing_street" => $invoice->billing->street,
635
  "billing_city" => $invoice->billing->city,
660
 
661
  $enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(enddate) FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND status = 'active' LIMIT 1");
662
  if($enddate)
663
+ $this->data["membership_expiration"] = "<p>" . sprintf(__("This membership will expire on %s.", "pmpro"), date_i18n(get_option('date_format'), $enddate)) . "</p>\n";
664
  else
665
  $this->data["membership_expiration"] = "";
666
 
703
  "cycle_period" => $user->membership_level->cycle_period,
704
  "trial_amount" => pmpro_formatPrice($user->membership_level->trial_amount),
705
  "trial_limit" => $user->membership_level->trial_limit,
706
+ "trial_end" => date_i18n(get_option('date_format'), strtotime(date_i18n("m/d/Y", $user->membership_level->startdate) . " + " . $user->membership_level->trial_limit . " " . $user->membership_level->cycle_period), current_time("timestamp"))
707
  );
708
 
709
  return $this->sendEmail();
746
  $this->email = $user->user_email;
747
  $this->subject = sprintf(__("Your membership at %s will end soon", "pmpro"), get_option("blogname"));
748
  $this->template = "membership_expiring";
749
+ $this->data = array("subject" => $this->subject, "name" => $user->display_name, "user_login" => $user->user_login, "sitename" => get_option("blogname"), "membership_id" => $user->membership_level->id, "membership_level_name" => $user->membership_level->name, "siteemail" => pmpro_getOption("from_email"), "login_link" => wp_login_url(), "enddate" => date_i18n(get_option('date_format'), $user->membership_level->enddate), "display_name" => $user->display_name, "user_email" => $user->user_email);
750
 
751
  return $this->sendEmail();
752
  }
774
 
775
  if(!empty($user->membership_level->enddate))
776
  {
777
+ $this->data["membership_change"] .= ". " . sprintf(__("This membership will expire on %s", "pmpro"), date_i18n(get_option('date_format'), $user->membership_level->enddate));
778
  }
779
  elseif(!empty($this->expiration_changed))
780
  {
812
 
813
  if(!empty($user->membership_level->enddate))
814
  {
815
+ $this->data["membership_change"] .= ". " . sprintf(__("This membership will expire on %s", "pmpro"), date_i18n(get_option('date_format'), $user->membership_level->enddate));
816
  }
817
  elseif(!empty($this->expiration_changed))
818
  {
classes/gateways/class.pmprogateway.php CHANGED
@@ -2,7 +2,7 @@
2
  //require_once(dirname(__FILE__) . "/class.pmprogateway.php");
3
  class PMProGateway
4
  {
5
- function PMProGateway($gateway = NULL)
6
  {
7
  $this->gateway = $gateway;
8
  return $this->gateway;
2
  //require_once(dirname(__FILE__) . "/class.pmprogateway.php");
3
  class PMProGateway
4
  {
5
+ function __construct($gateway = NULL)
6
  {
7
  $this->gateway = $gateway;
8
  return $this->gateway;
classes/gateways/class.pmprogateway_authorizenet.php CHANGED
@@ -7,7 +7,7 @@
7
 
8
  class PMProGateway_authorizenet extends PMProGateway
9
  {
10
- function PMProGateway_authorizenet($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  return $this->gateway;
7
 
8
  class PMProGateway_authorizenet extends PMProGateway
9
  {
10
+ function __construct($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  return $this->gateway;
classes/gateways/class.pmprogateway_braintree.php CHANGED
@@ -7,7 +7,7 @@
7
 
8
  class PMProGateway_braintree extends PMProGateway
9
  {
10
- function PMProGateway_braintree($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  $this->gateway_environment = pmpro_getOption("gateway_environment");
7
 
8
  class PMProGateway_braintree extends PMProGateway
9
  {
10
+ function __construct($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  $this->gateway_environment = pmpro_getOption("gateway_environment");
classes/gateways/class.pmprogateway_check.php CHANGED
@@ -7,7 +7,7 @@
7
 
8
  class PMProGateway_check extends PMProGateway
9
  {
10
- function PMProGateway_check($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  return $this->gateway;
7
 
8
  class PMProGateway_check extends PMProGateway
9
  {
10
+ function __construct($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  return $this->gateway;
classes/gateways/class.pmprogateway_cybersource.php CHANGED
@@ -7,7 +7,7 @@
7
 
8
  class PMProGateway_cybersource extends PMProGateway
9
  {
10
- function PMProGateway_cybersource($gateway = NULL)
11
  {
12
  if(!class_exists("CyberSourceSoapClient"))
13
  require_once(dirname(__FILE__) . "/../../includes/lib/CyberSource/cyber_source_soap_client.php");
7
 
8
  class PMProGateway_cybersource extends PMProGateway
9
  {
10
+ function __construct($gateway = NULL)
11
  {
12
  if(!class_exists("CyberSourceSoapClient"))
13
  require_once(dirname(__FILE__) . "/../../includes/lib/CyberSource/cyber_source_soap_client.php");
classes/gateways/class.pmprogateway_payflowpro.php CHANGED
@@ -7,7 +7,7 @@
7
 
8
  class PMProGateway_payflowpro extends PMProGateway
9
  {
10
- function PMProGateway_payflowpro($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  return $this->gateway;
7
 
8
  class PMProGateway_payflowpro extends PMProGateway
9
  {
10
+ function __construct($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  return $this->gateway;
classes/gateways/class.pmprogateway_paypal.php CHANGED
@@ -7,7 +7,7 @@
7
 
8
  class PMProGateway_paypal extends PMProGateway
9
  {
10
- function PMProGateway_paypal($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  return $this->gateway;
7
 
8
  class PMProGateway_paypal extends PMProGateway
9
  {
10
+ function __construct($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  return $this->gateway;
classes/gateways/class.pmprogateway_paypalexpress.php CHANGED
@@ -7,7 +7,7 @@
7
 
8
  class PMProGateway_paypalexpress extends PMProGateway
9
  {
10
- function PMProGateway_paypalexpress($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  return $this->gateway;
7
 
8
  class PMProGateway_paypalexpress extends PMProGateway
9
  {
10
+ function __construct($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  return $this->gateway;
classes/gateways/class.pmprogateway_paypalstandard.php CHANGED
@@ -7,7 +7,7 @@
7
 
8
  class PMProGateway_paypalstandard extends PMProGateway
9
  {
10
- function PMProGateway_paypalstandard($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  return $this->gateway;
7
 
8
  class PMProGateway_paypalstandard extends PMProGateway
9
  {
10
+ function __construct($gateway = NULL)
11
  {
12
  $this->gateway = $gateway;
13
  return $this->gateway;
classes/gateways/class.pmprogateway_stripe.php CHANGED
@@ -19,11 +19,13 @@
19
  *
20
  * @since 1.4
21
  */
22
- function PMProGateway_stripe($gateway = NULL)
23
  {
24
  $this->gateway = $gateway;
25
  $this->gateway_environment = pmpro_getOption("gateway_environment");
26
 
 
 
27
  $this->loadStripeLibrary();
28
  Stripe::setApiKey(pmpro_getOption("stripe_secretkey"));
29
  Stripe::setAPIVersion("2015-07-13");
@@ -31,6 +33,26 @@
31
  return $this->gateway;
32
  }
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
  /**
35
  * Load the Stripe API library.
36
  *
@@ -617,7 +639,7 @@
617
  <option value="payment" <?php selected($update['when'], "payment");?>>After Next Payment</option>
618
  <option value="date" <?php selected($update['when'], "date");?>>On Date</option>
619
  </select>
620
- <span class="updates_date" <?php if($uwhen != "date") { ?>style="display: none;"<?php } ?>>
621
  <select name="updates_date_month[]">
622
  <?php
623
  for($i = 1; $i < 13; $i++)
@@ -633,7 +655,7 @@
633
  <input name="updates_date_day[]" type="text" size="2" value="<?php if(!empty($update['date_day'])) echo esc_attr($update['date_day']);?>" />
634
  <input name="updates_date_year[]" type="text" size="4" value="<?php if(!empty($update['date_year'])) echo esc_attr($update['date_year']);?>" />
635
  </span>
636
- <span class="updates_billing" <?php if($uwhen == "no") { ?>style="display: none;"<?php } ?>>
637
  <?php echo $pmpro_currency_symbol?><input name="updates_billing_amount[]" type="text" size="10" value="<?php echo esc_attr($update['billing_amount']);?>" />
638
  <small><?php _e('per', 'pmpro');?></small>
639
  <input name="updates_cycle_number[]" type="text" size="5" value="<?php echo esc_attr($update['cycle_number']);?>" />
19
  *
20
  * @since 1.4
21
  */
22
+ function __construct($gateway = NULL)
23
  {
24
  $this->gateway = $gateway;
25
  $this->gateway_environment = pmpro_getOption("gateway_environment");
26
 
27
+ $this->dependencies();
28
+
29
  $this->loadStripeLibrary();
30
  Stripe::setApiKey(pmpro_getOption("stripe_secretkey"));
31
  Stripe::setAPIVersion("2015-07-13");
33
  return $this->gateway;
34
  }
35
 
36
+ /**
37
+ * Warn if required extensions aren't loaded.
38
+ *
39
+ * @since 1.8.6.8.1
40
+ */
41
+ public function dependencies()
42
+ {
43
+ global $msg, $msgt, $pmpro_stripe_error;
44
+
45
+ $modules = array('curl');
46
+
47
+ foreach($modules as $module){
48
+ if(!extension_loaded($module)){
49
+ $pmpro_stripe_error = true;
50
+ $msg = -1;
51
+ $msgt = sprintf(__("The %s gateway depends on the %s PHP extension. Please enable it, or ask your hosting provider to enable it", "pmpro"), $this->gateway, $module);
52
+ }
53
+ }
54
+ }
55
+
56
  /**
57
  * Load the Stripe API library.
58
  *
639
  <option value="payment" <?php selected($update['when'], "payment");?>>After Next Payment</option>
640
  <option value="date" <?php selected($update['when'], "date");?>>On Date</option>
641
  </select>
642
+ <span class="updates_date" <?php if($update['when'] != "date") { ?>style="display: none;"<?php } ?>>
643
  <select name="updates_date_month[]">
644
  <?php
645
  for($i = 1; $i < 13; $i++)
655
  <input name="updates_date_day[]" type="text" size="2" value="<?php if(!empty($update['date_day'])) echo esc_attr($update['date_day']);?>" />
656
  <input name="updates_date_year[]" type="text" size="4" value="<?php if(!empty($update['date_year'])) echo esc_attr($update['date_year']);?>" />
657
  </span>
658
+ <span class="updates_billing" <?php if($update['when'] == "now") { ?>style="display: none;"<?php } ?>>
659
  <?php echo $pmpro_currency_symbol?><input name="updates_billing_amount[]" type="text" size="10" value="<?php echo esc_attr($update['billing_amount']);?>" />
660
  <small><?php _e('per', 'pmpro');?></small>
661
  <input name="updates_cycle_number[]" type="text" size="5" value="<?php echo esc_attr($update['cycle_number']);?>" />
classes/gateways/class.pmprogateway_twocheckout.php CHANGED
@@ -7,7 +7,7 @@
7
 
8
  class PMProGateway_Twocheckout extends PMProGateway
9
  {
10
- function PMProGateway_Twocheckout($gateway = NULL)
11
  {
12
  if(!class_exists("Twocheckout"))
13
  require_once(dirname(__FILE__) . "/../../includes/lib/Twocheckout/Twocheckout.php");
7
 
8
  class PMProGateway_Twocheckout extends PMProGateway
9
  {
10
+ function __construct($gateway = NULL)
11
  {
12
  if(!class_exists("Twocheckout"))
13
  require_once(dirname(__FILE__) . "/../../includes/lib/Twocheckout/Twocheckout.php");
css/frontend.css CHANGED
@@ -2,194 +2,429 @@
2
  Buttons
3
  ---------------------------------------*/
4
  .pmpro_btn, .pmpro_btn:link, .pmpro_content_message a, .pmpro_content_message a:link {
5
- display: inline-block;
6
  background-color: #EFEFEF;
7
  background-image: none;
8
  border: 1px solid #D6D6D6;
9
  -webkit-border-radius: 4px;
10
- -moz-border-radius: 4px;
11
- border-radius: 4px;
12
- padding: 6px 12px;
13
- margin: 0;
14
  color: #444;
 
 
15
  font-size: 12px;
16
  font-weight: 700;
17
- text-transform: none;
18
- text-decoration: none;
19
  text-align: center;
20
- white-space: nowrap;
21
- vertical-align: middle;
22
- cursor: pointer;
23
  -webkit-user-select: none;
24
- -moz-user-select: none;
25
- -ms-user-select: none;
26
- -o-user-select: none;
27
- user-select: none;
 
 
28
  }
29
-
30
  .pmpro_btn:focus, .pmpro_content_message a:focus {
31
- outline: thin dotted;
32
- outline: 5px auto -webkit-focus-ring-color;
33
- outline-offset: -2px;
34
  }
35
-
36
  .pmpro_btn:hover, .pmpro_btn:focus, .pmpro_content_message a:focus, .pmpro_content_message a:hover {
37
- color: #000;
38
- background-color: #FAFAFA;
39
- text-decoration: none;
40
  }
41
-
42
  .pmpro_btn:active,
43
  .pmpro_btn.active {
44
- background-image: none;
45
- outline: 0;
46
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
47
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
48
  }
49
-
50
  .pmpro_btn.disabled,
51
  .pmpro_btn[disabled],
52
  fieldset[disabled] .pmpro_btn {
53
- pointer-events: none;
54
- cursor: not-allowed;
55
- opacity: 0.65;
56
- filter: alpha(opacity=65);
57
- -webkit-box-shadow: none;
58
- box-shadow: none;
59
- }
60
-
61
- .pmpro_btn.pmpro_cancel, .pmpro_btn.pmpro_cancel:link {background: none; border: none; margin: 0 0 0 10px; }
 
 
 
62
  /*---------------------------------------
63
  Forms
64
  ---------------------------------------*/
65
- form.pmpro_form div {clear: left; margin: .5em 0 1em 0; }
66
- form.pmpro_form label {float: left; margin: 3px 10px 0 0; width: 200px; font-weight: bold; text-align: right; }
67
- form.pmpro_form label.pmpro_normal {float: none; margin: 0 0 0 0; width: auto; font-weight: normal; text-align: auto;}
68
- .pmpro_clickable {cursor: pointer;}
69
- form.pmpro_form .likelabel {font-weight: bold; }
70
- form.pmpro_form .input, form.pmpro_form textarea, form.pmpro_form select {border: 1px solid #AAA; display: inline-block; margin: 0 3px 0 0; padding: 3px; width: auto; max-width: 60%; }
71
- form.pmpro_form textarea {font-family: Arial, Helvetica, sans-serif; font-size: 12px; }
72
- form.pmpro_form select {margin: 2px 0 0 0 ; font-size: 12px;}
73
- form.pmpro_form .lite {color: #666; }
74
- form.pmpro_form .leftmar {margin: 8px 0 0 210px; }
75
-
76
- form.pmpro_form .pmpro_captcha {margin: 0 0 0 210px !important; }
77
- form.pmpro_form .pmpro_captcha div {clear: none; margin: 0; }
78
- form.pmpro_form .pmpro_submit {margin-left: 210px; }
79
- form.pmpro_form .pmpro_submit span {float: left; }
80
- form.pmpro_form #pmpro_processing_message {margin: 5px 0 0 10px; font-style: italic; color: #999; }
81
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  /*--------------------------------------------------
83
  Messages - Success, Error, Alert
84
  ----------------------------------------------------*/
85
- .pmpro_message {background-color: #d9edf7; margin: .5em 0; padding: 10px 15px; color: #31708f; font-size: 14px; font-weight: 400; line-height: 1.5em; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; border: 1px solid #bce8f1; }
86
-
87
- .pmpro_success {background-color: #dff0d8; color: #3c763d; border-color: #d6e9c6; }
88
- .pmpro_error {background-color: #f2dede; color: #a94442; border-color: #ebccd1; }
89
- .pmpro_alert {background-color: #fcf8e3; color: #8a6d3b; border-color: #faebcc;}
90
-
91
- .pmpro_content_message a {margin: 5px 5px 0 0; }
92
-
93
- .pmpro_message a {color: #245269; text-decoration: underline; }
94
- .pmpro_success a {color: #2b542c; }
95
- .pmpro_error a {color: #843534; }
96
- .pmpro_alert a {color: #66512c; }
97
-
98
- input.pmpro_error {background-image: none;}
99
- select.pmpro_error {background-image: none;}
100
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  /*---------------------------------------
102
  Membership Checkout
103
  ---------------------------------------*/
104
- .pmpro_checkout thead th {font-weight: bold; color: #444; padding: 10px; }
105
- .pmpro_checkout tbody td {padding: 10px; }
106
- .pmpro_checkout tr.odd td {background: rgba(125,125,125,.1); }
107
- .pmpro_checkout tr.selected td {background: #FFC; }
108
- .pmpro_checkout tr.active td {background: #FFC; }
109
- .pmpro_checkout .name {font-weight: bold; }
110
- .pmpro_checkout ul {margin: 5px 0 0 20px; padding: 0; font-size: .8em; color: #444; }
111
-
112
- .pmpro_checkout tfoot td {padding: 10px; color: #444; }
113
- .pmpro_checkout .topfoot td {border-top: 2px solid #CCC;}
114
- .pmpro_checkout .total td {border-top: 1px solid #CCC; font-size: 1.2em; font-weight: bold; padding-bottom: 30px;}
115
- .pmpro_checkout tfoot .entercode td {background: #EEE; }
116
-
117
- .pmpro_checkout td.rtbdr {border-right: 1px solid #CCC; }
118
-
119
- .pmpro_checkout select {font-size: 11px; }
120
-
121
- .pmpro_thead-name {float: left; width: 55%; }
122
- .pmpro_thead-msg {float: right; font-size: .9em; font-style: italic; font-weight: normal; text-align: right; width: 45%; }
123
-
124
- .pmpro_ordersummary {float: right; }
125
-
126
- #pmpro_license { background: #FFF; padding: 5px; border: 1px solid #CCC; height: 200px; margin: 3px; color: #666; overflow: auto; }
127
-
128
- .pmpro_sslseal {float: right; clear: none !important; margin: 0 !important; }
129
-
130
- a.pmpro_radio {text-decoration: none; color: #000;}
131
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
  /*---------------------------------------
133
  Membership Invoice
134
  ---------------------------------------*/
135
  .pmpro_invoice { }
136
-
137
-
138
  /*---------------------------------------
139
  Membership Account
140
  ---------------------------------------*/
141
- #pmpro_account .pmpro_box {border-top: 1px solid #CCC; padding: 1em 0; margin: 1em 0; }
142
- #pmpro_account .pmpro_box h3 {margin: 0; padding: 0; border: none; background: none; }
143
- #pmpro_account .pmpro_box p {margin: .5em 0 0 0; padding: 0; }
144
- #pmpro_account .pmpro_box ul {margin-bottom: 0; }
145
-
 
 
 
 
 
 
 
 
 
 
 
 
 
146
  #pmpro_account #pmpro_account-membership { }
147
  #pmpro_account #pmpro_account-profile { }
148
  #pmpro_account #pmpro_account-billing { }
149
  #pmpro_account #pmpro_account-invoices { }
150
  #pmpro_account #pmpro_account-links { }
151
-
152
- .pmpro_actionlinks {font-size: .8em; margin: .25em 0 0 0; }
153
- .pmpro_actionlinks a {display: inline-block; padding: 0 5px 0 0; margin: 0; text-decoration: none; }
154
- .pmpro_actionlinks a:last-child {padding: 0; }
155
- .pmpro_hidden {display: none;}
156
- li.pmpro_more {list-style-type: none; text-align: center; margin-left: -20px; padding-left: 0;}
157
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
  /*---------------------------------------
159
  Membership Levels
160
  ---------------------------------------*/
161
- #pmpro_levels_table {background: #FFF; }
162
- #pmpro_levels_table .pmpro_btn {display: block; }
163
-
 
 
 
164
  /*---------------------------------------
165
  Misc
166
  ---------------------------------------*/
167
- .pmpro_a-right {float: right; width: auto; text-align: right; text-decoration: underline; font-size: 11px; }
168
- .pmpro_a-print {float: right; width: auto; text-decoration: none; color: #345395; background: url(../images/printer.gif) top left no-repeat; padding: 0px 0px 2px 20px; font-size: 11px; line-height: 16px; cursor: pointer; }
169
-
170
- .pmpro_red {color: #CC0000; }
171
- .pmpro_grey {color: #999; }
172
-
173
- .top1em {margin-top: 1em;}
174
- .bot1em {margin-bottom: 1em;}
175
- .bot0em {margin-bottom: 0em;}
176
- .clear {clear: both; }
177
-
178
- .pmpro_small {font-size: .8em;}
179
-
180
- @media (max-width:768px){
181
- #pmpro_levels_table {border: none; }
182
- #pmpro_levels_table th {display: none; }
183
- #pmpro_levels_table td {border: none; display: block; padding: 0 10px; text-align: center; }
184
- #pmpro_levels_table td:first-child {font-size: 1.4em; padding-top: 10px; }
185
- #pmpro_levels_table td:last-child {padding-bottom: 10px; padding-top: 10px; }
186
- form.pmpro_form label {display: block; margin: 0; text-align: left; width: 100%; }
187
- form.pmpro_form label.pmpro_normal, #pmpro_tos_fields label {display: inline-block; }
188
- form.pmpro_form input[type=text].input, form.pmpro_form input[type=password].input {width: 90%; }
189
- form.pmpro_form input[type=text]#other_discount_code, form.pmpro_form input[type=text]#CVV, form.pmpro_form input[type=text]#discount_code {width: 40%; }
190
- form.pmpro_form #pmpro_payment_information_fields .pmpro_thead-msg {float: none; margin-bottom: 10px; text-align: left; text-wrap: normal; white-space: normal; }
191
- form.pmpro_form .leftmar {margin: 2px 0 0 0; }
192
- form.pmpro_form .pmpro_submit {margin-left: 0; }
193
- form.pmpro_form .pmpro_submit #pmpro_submit_span {display: block; float: none; }
194
- form.pmpro_form .pmpro_btn {display: block; width: 100%; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
195
  }
2
  Buttons
3
  ---------------------------------------*/
4
  .pmpro_btn, .pmpro_btn:link, .pmpro_content_message a, .pmpro_content_message a:link {
 
5
  background-color: #EFEFEF;
6
  background-image: none;
7
  border: 1px solid #D6D6D6;
8
  -webkit-border-radius: 4px;
9
+ -moz-border-radius: 4px;
10
+ border-radius: 4px;
 
 
11
  color: #444;
12
+ cursor: pointer;
13
+ display: inline-block;
14
  font-size: 12px;
15
  font-weight: 700;
16
+ margin: 0;
17
+ padding: 6px 12px;
18
  text-align: center;
19
+ text-decoration: none;
20
+ text-transform: none;
 
21
  -webkit-user-select: none;
22
+ -moz-user-select: none;
23
+ -ms-user-select: none;
24
+ -o-user-select: none;
25
+ user-select: none;
26
+ vertical-align: middle;
27
+ white-space: nowrap;
28
  }
 
29
  .pmpro_btn:focus, .pmpro_content_message a:focus {
30
+ outline: thin dotted;
31
+ outline: 5px auto -webkit-focus-ring-color;
32
+ outline-offset: -2px;
33
  }
 
34
  .pmpro_btn:hover, .pmpro_btn:focus, .pmpro_content_message a:focus, .pmpro_content_message a:hover {
35
+ background-color: #FAFAFA;
36
+ color: #000;
37
+ text-decoration: none;
38
  }
 
39
  .pmpro_btn:active,
40
  .pmpro_btn.active {
41
+ background-image: none;
42
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
43
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
44
+ outline: 0;
45
  }
 
46
  .pmpro_btn.disabled,
47
  .pmpro_btn[disabled],
48
  fieldset[disabled] .pmpro_btn {
49
+ -webkit-box-shadow: none;
50
+ box-shadow: none;
51
+ cursor: not-allowed;
52
+ filter: alpha(opacity=65);
53
+ opacity: 0.65;
54
+ pointer-events: none;
55
+ }
56
+ .pmpro_btn.pmpro_cancel, .pmpro_btn.pmpro_cancel:link {
57
+ background: none;
58
+ border: none;
59
+ margin: 0 0 0 10px;
60
+ }
61
  /*---------------------------------------
62
  Forms
63
  ---------------------------------------*/
64
+ form.pmpro_form div {
65
+ clear: left;
66
+ margin: .5em 0 1em 0;
67
+ }
68
+ form.pmpro_form label {
69
+ float: left;
70
+ font-weight: bold;
71
+ margin: 3px 10px 0 0;
72
+ text-align: right;
73
+ width: 200px;
74
+ }
75
+ form.pmpro_form label.pmpro_normal {
76
+ display: inline-block;
77
+ float: none;
78
+ font-weight: normal;
79
+ margin: 0 0 0 0;
80
+ text-align: auto;
81
+ width: auto;
82
+ }
83
+ form.pmpro_form input[type=checkbox]#tos {
84
+ display: inline-block;
85
+ width: auto;
86
+ }
87
+ .pmpro_clickable {
88
+ cursor: pointer;
89
+ }
90
+ form.pmpro_form .likelabel {
91
+ font-weight: bold;
92
+ }
93
+ form.pmpro_form .input, form.pmpro_form textarea, form.pmpro_form select {
94
+ border: 1px solid #AAA;
95
+ display: inline-block;
96
+ margin: 0 3px 0 0;
97
+ max-width: 60%;
98
+ padding: 3px;
99
+ width: auto;
100
+ }
101
+ form.pmpro_form textarea {
102
+ font-family: Arial, Helvetica, sans-serif;
103
+ font-size: 12px;
104
+ }
105
+ form.pmpro_form select {
106
+ font-size: 12px;
107
+ margin: 2px 0 0 0;
108
+ }
109
+ form.pmpro_form .lite {
110
+ color: #666;
111
+ }
112
+ 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;
120
+ margin: 0;
121
+ }
122
+ form.pmpro_form .pmpro_submit {
123
+ margin-left: 210px;
124
+ }
125
+ form.pmpro_form .pmpro_submit span {
126
+ float: left;
127
+ }
128
+ form.pmpro_form #pmpro_processing_message {
129
+ color: #999;
130
+ font-style: italic;
131
+ margin: 5px 0 0 10px;
132
+ }
133
  /*--------------------------------------------------
134
  Messages - Success, Error, Alert
135
  ----------------------------------------------------*/
136
+ .pmpro_message {
137
+ background-color: #d9edf7;
138
+ border: 1px solid #bce8f1;
139
+ -webkit-border-radius: 4px;
140
+ -moz-border-radius: 4px;
141
+ border-radius: 4px;
142
+ color: #31708f;
143
+ font-size: 14px;
144
+ font-weight: 400;
145
+ line-height: 1.5em;
146
+ margin: .5em 0;
147
+ padding: 10px 15px;
148
+ }
149
+ .pmpro_success {
150
+ background-color: #dff0d8;
151
+ border-color: #d6e9c6;
152
+ color: #3c763d;
153
+ }
154
+ .pmpro_error {
155
+ background-color: #f2dede;
156
+ border-color: #ebccd1;
157
+ color: #a94442;
158
+ }
159
+ .pmpro_alert {
160
+ background-color: #fcf8e3;
161
+ border-color: #faebcc;
162
+ color: #8a6d3b;
163
+ }
164
+ .pmpro_content_message a {
165
+ margin: 5px 5px 0 0;
166
+ }
167
+ .pmpro_message a {
168
+ color: #245269;
169
+ text-decoration: underline;
170
+ }
171
+ .pmpro_success a {
172
+ color: #2b542c;
173
+ }
174
+ .pmpro_error a {
175
+ color: #843534;
176
+ }
177
+ .pmpro_alert a {
178
+ color: #66512c;
179
+ }
180
+ input.pmpro_error {
181
+ background-image: none;
182
+ }
183
+ select.pmpro_error {
184
+ background-image: none;
185
+ }
186
  /*---------------------------------------
187
  Membership Checkout
188
  ---------------------------------------*/
189
+ .pmpro_checkout thead th {
190
+ color: #444;
191
+ font-weight: bold;
192
+ padding: 10px;
193
+ }
194
+ .pmpro_checkout tbody td {
195
+ padding: 10px;
196
+ }
197
+ .pmpro_checkout tr.odd td {
198
+ background: rgba(125,125,125,.1);
199
+ }
200
+ .pmpro_checkout tr.selected td {
201
+ background: #FFC;
202
+ }
203
+ .pmpro_checkout tr.active td {
204
+ background: #FFC;
205
+ }
206
+ .pmpro_checkout .name {
207
+ font-weight: bold;
208
+ }
209
+ .pmpro_checkout ul {
210
+ color: #444;
211
+ font-size: .8em;
212
+ margin: 5px 0 0 20px;
213
+ padding: 0;
214
+ }
215
+ .pmpro_checkout tfoot td {
216
+ color: #444;
217
+ padding: 10px;
218
+ }
219
+ .pmpro_checkout .topfoot td {
220
+ border-top: 2px solid #CCC;
221
+ }
222
+ .pmpro_checkout .total td {
223
+ border-top: 1px solid #CCC;
224
+ font-size: 1.2em;
225
+ font-weight: bold;
226
+ padding-bottom: 30px;
227
+ }
228
+ .pmpro_checkout tfoot .entercode td {
229
+ background: #EEE;
230
+ }
231
+ .pmpro_checkout td.rtbdr {
232
+ border-right: 1px solid #CCC;
233
+ }
234
+ .pmpro_checkout select {
235
+ font-size: 11px;
236
+ }
237
+ .pmpro_thead-name {
238
+ float: left;
239
+ width: 55%;
240
+ }
241
+ .pmpro_thead-msg {
242
+ float: right;
243
+ font-size: .9em;
244
+ font-style: italic;
245
+ font-weight: normal;
246
+ text-align: right;
247
+ width: 45%;
248
+ }
249
+ .pmpro_ordersummary {
250
+ float: right;
251
+ }
252
+ #pmpro_license {
253
+ background: #FFF;
254
+ border: 1px solid #CCC;
255
+ color: #666;
256
+ height: 200px;
257
+ margin: 3px;
258
+ overflow: auto;
259
+ padding: 5px;
260
+ }
261
+ .pmpro_sslseal {
262
+ clear: none !important;
263
+ float: right;
264
+ margin: 0 !important;
265
+ }
266
+ a.pmpro_radio {
267
+ color: #000;
268
+ text-decoration: none;
269
+ }
270
  /*---------------------------------------
271
  Membership Invoice
272
  ---------------------------------------*/
273
  .pmpro_invoice { }
 
 
274
  /*---------------------------------------
275
  Membership Account
276
  ---------------------------------------*/
277
+ #pmpro_account .pmpro_box {
278
+ border-top: 1px solid #CCC;
279
+ margin: 1em 0;
280
+ padding: 1em 0;
281
+ }
282
+ #pmpro_account .pmpro_box h3 {
283
+ background: none;
284
+ border: none;
285
+ margin: 0;
286
+ padding: 0;
287
+ }
288
+ #pmpro_account .pmpro_box p {
289
+ margin: .5em 0 0 0;
290
+ padding: 0;
291
+ }
292
+ #pmpro_account .pmpro_box ul {
293
+ margin-bottom: 0;
294
+ }
295
  #pmpro_account #pmpro_account-membership { }
296
  #pmpro_account #pmpro_account-profile { }
297
  #pmpro_account #pmpro_account-billing { }
298
  #pmpro_account #pmpro_account-invoices { }
299
  #pmpro_account #pmpro_account-links { }
300
+ .pmpro_actionlinks {
301
+ font-size: .8em;
302
+ margin: .25em 0 0 0;
303
+ }
304
+ .pmpro_actionlinks a {
305
+ display: inline-block;
306
+ margin: 0;
307
+ padding: 0 5px 0 0;
308
+ text-decoration: none;
309
+ }
310
+ .pmpro_actionlinks a:last-child {
311
+ padding: 0;
312
+ }
313
+ .pmpro_hidden {
314
+ display: none;
315
+ }
316
+ li.pmpro_more {
317
+ list-style-type: none;
318
+ margin-left: -20px;
319
+ padding-left: 0;
320
+ text-align: center;
321
+ }
322
  /*---------------------------------------
323
  Membership Levels
324
  ---------------------------------------*/
325
+ #pmpro_levels_table {
326
+ background: #FFF;
327
+ }
328
+ #pmpro_levels_table .pmpro_btn {
329
+ display: block;
330
+ }
331
  /*---------------------------------------
332
  Misc
333
  ---------------------------------------*/
334
+ .pmpro_a-right {
335
+ float: right;
336
+ font-size: 11px;
337
+ text-align: right;
338
+ text-decoration: underline;
339
+ width: auto;
340
+ }
341
+ .pmpro_a-print {
342
+ background: url(../images/printer.gif) top left no-repeat;
343
+ color: #345395;
344
+ cursor: pointer;
345
+ float: right;
346
+ font-size: 11px;
347
+ line-height: 16px;
348
+ padding: 0px 0px 2px 20px;
349
+ text-decoration: none;
350
+ width: auto;
351
+ }
352
+ .pmpro_red {
353
+ color: #CC0000;
354
+ }
355
+ .pmpro_grey {
356
+ color: #999;
357
+ }
358
+ .top1em {
359
+ margin-top: 1em;
360
+ }
361
+ .bot1em {
362
+ margin-bottom: 1em;
363
+ }
364
+ .bot0em {
365
+ margin-bottom: 0em;
366
+ }
367
+ .clear {
368
+ clear: both;
369
+ }
370
+ .pmpro_small {
371
+ font-size: .8em;
372
+ }
373
+ @media (max-width:768px) {
374
+ #pmpro_levels_table {
375
+ border: none;
376
+ }
377
+ #pmpro_levels_table th {
378
+ display: none;
379
+ }
380
+ #pmpro_levels_table td {
381
+ border: none;
382
+ display: block;
383
+ padding: 0 10px;
384
+ text-align: center;
385
+ }
386
+ #pmpro_levels_table td:first-child {
387
+ font-size: 1.4em;
388
+ padding-top: 10px;
389
+ }
390
+ #pmpro_levels_table td:last-child {
391
+ padding-bottom: 10px;
392
+ padding-top: 10px;
393
+ }
394
+ form.pmpro_form label {
395
+ display: block;
396
+ margin: 0;
397
+ text-align: left;
398
+ width: 100%;
399
+ }
400
+ form.pmpro_form label.pmpro_normal, #pmpro_tos_fields label {
401
+ display: inline-block;
402
+ }
403
+ form.pmpro_form input[type=text].input, form.pmpro_form input[type=password].input {
404
+ width: 90%;
405
+ }
406
+ form.pmpro_form input[type=text]#other_discount_code, form.pmpro_form input[type=text]#CVV, form.pmpro_form input[type=text]#discount_code {
407
+ width: 40%;
408
+ }
409
+ form.pmpro_form #pmpro_payment_information_fields .pmpro_thead-msg {
410
+ float: none;
411
+ margin-bottom: 10px;
412
+ text-align: left;
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 {
420
+ margin-left: 0;
421
+ }
422
+ form.pmpro_form .pmpro_submit #pmpro_submit_span {
423
+ display: block;
424
+ float: none;
425
+ }
426
+ form.pmpro_form .pmpro_btn {
427
+ display: block;
428
+ width: 100%;
429
+ }
430
  }
includes/adminpages.php CHANGED
@@ -15,7 +15,8 @@ function pmpro_getPMProCaps()
15
  'pmpro_memberslist',
16
  'pmpro_reports',
17
  'pmpro_orders',
18
- 'pmpro_discountcodes'
 
19
  );
20
 
21
  return $pmpro_caps;
@@ -54,7 +55,11 @@ function pmpro_add_pages()
54
  add_submenu_page('pmpro-membershiplevels', __('Reports', 'pmpro'), __('Reports', 'pmpro'), 'pmpro_reports', 'pmpro-reports', 'pmpro_reports');
55
  add_submenu_page('pmpro-membershiplevels', __('Orders', 'pmpro'), __('Orders', 'pmpro'), 'pmpro_orders', 'pmpro-orders', 'pmpro_orders');
56
  add_submenu_page('pmpro-membershiplevels', __('Discount Codes', 'pmpro'), __('Discount Codes', 'pmpro'), 'pmpro_discountcodes', 'pmpro-discountcodes', 'pmpro_discountcodes');
57
-
 
 
 
 
58
  //rename the automatically added Memberships submenu item
59
  global $submenu;
60
  if(!empty($submenu['pmpro-membershiplevels']))
@@ -229,6 +234,10 @@ function pmpro_orders()
229
  require_once(PMPRO_DIR . "/adminpages/orders.php");
230
  }
231
 
 
 
 
 
232
 
233
  /*
234
  Function to add links to the plugin action links
15
  'pmpro_memberslist',
16
  'pmpro_reports',
17
  'pmpro_orders',
18
+ 'pmpro_discountcodes',
19
+ 'pmpro_updates'
20
  );
21
 
22
  return $pmpro_caps;
55
  add_submenu_page('pmpro-membershiplevels', __('Reports', 'pmpro'), __('Reports', 'pmpro'), 'pmpro_reports', 'pmpro-reports', 'pmpro_reports');
56
  add_submenu_page('pmpro-membershiplevels', __('Orders', 'pmpro'), __('Orders', 'pmpro'), 'pmpro_orders', 'pmpro-orders', 'pmpro_orders');
57
  add_submenu_page('pmpro-membershiplevels', __('Discount Codes', 'pmpro'), __('Discount Codes', 'pmpro'), 'pmpro_discountcodes', 'pmpro-discountcodes', 'pmpro_discountcodes');
58
+
59
+ //updates page only if needed
60
+ if(pmpro_isUpdateRequired())
61
+ add_submenu_page('pmpro-membershiplevels', __('Updates Required', 'pmpro'), __('Updates Required', 'pmpro'), 'pmpro_updates', 'pmpro-updates', 'pmpro_updates');
62
+
63
  //rename the automatically added Memberships submenu item
64
  global $submenu;
65
  if(!empty($submenu['pmpro-membershiplevels']))
234
  require_once(PMPRO_DIR . "/adminpages/orders.php");
235
  }
236
 
237
+ function pmpro_updates()
238
+ {
239
+ require_once(PMPRO_DIR . "/adminpages/updates.php");
240
+ }
241
 
242
  /*
243
  Function to add links to the plugin action links
includes/content.php CHANGED
@@ -15,8 +15,11 @@ function pmpro_has_membership_access($post_id = NULL, $user_id = NULL, $return_m
15
  if(!$post_id)
16
  return true;
17
 
 
 
 
18
  //if no post or current_user object, set them up
19
- if(!empty($post->ID) && $post_id == $post->ID)
20
  $mypost = $post;
21
  else
22
  $mypost = get_post($post_id);
@@ -27,7 +30,7 @@ function pmpro_has_membership_access($post_id = NULL, $user_id = NULL, $return_m
27
  $myuser = get_userdata($user_id);
28
 
29
  //for these post types, we want to check the parent
30
- if($mypost->post_type == "attachment" || $mypost->post_type == "revision")
31
  {
32
  $mypost = get_post($mypost->post_parent);
33
  }
@@ -35,7 +38,7 @@ function pmpro_has_membership_access($post_id = NULL, $user_id = NULL, $return_m
35
  // Allow plugins and themes to find the protected post
36
  $mypost = apply_filters( 'pmpro_membership_access_post', $mypost, $myuser );
37
 
38
- if($mypost->post_type == "post")
39
  {
40
  $post_categories = wp_get_post_categories($mypost->ID);
41
 
@@ -53,7 +56,7 @@ function pmpro_has_membership_access($post_id = NULL, $user_id = NULL, $return_m
53
  else
54
  {
55
  //are any membership levels associated with this page?
56
- $sqlQuery = "SELECT m.id, m.name FROM $wpdb->pmpro_memberships_pages mp LEFT JOIN $wpdb->pmpro_membership_levels m ON mp.membership_id = m.id WHERE mp.page_id = '" . $mypost->ID . "'";
57
  }
58
 
59
 
15
  if(!$post_id)
16
  return true;
17
 
18
+ if (!isset($post->post_type))
19
+ return true;
20
+
21
  //if no post or current_user object, set them up
22
+ if( isset($post->ID) && !empty($post->ID) && $post_id == $post->ID)
23
  $mypost = $post;
24
  else
25
  $mypost = get_post($post_id);
30
  $myuser = get_userdata($user_id);
31
 
32
  //for these post types, we want to check the parent
33
+ if(isset($mypost->post_type) && in_array( $mypost->post_type, array("attachment", "revision")))
34
  {
35
  $mypost = get_post($mypost->post_parent);
36
  }
38
  // Allow plugins and themes to find the protected post
39
  $mypost = apply_filters( 'pmpro_membership_access_post', $mypost, $myuser );
40
 
41
+ if(isset($mypost->post_type) && $mypost->post_type == "post")
42
  {
43
  $post_categories = wp_get_post_categories($mypost->ID);
44
 
56
  else
57
  {
58
  //are any membership levels associated with this page?
59
+ $sqlQuery = "SELECT m.id, m.name FROM $wpdb->pmpro_memberships_pages mp LEFT JOIN $wpdb->pmpro_membership_levels m ON mp.membership_id = m.id WHERE mp.page_id = '" . $post_id . "'";
60
  }
61
 
62
 
includes/currencies.php CHANGED
@@ -25,6 +25,7 @@
25
  'symbol' => '&pound;',
26
  'position' => 'left'
27
  ),
 
28
  'AUD' => __('Australian Dollars (&#36;)', 'pmpro'),
29
  'BRL' => array(
30
  'name' => __('Brazilian Real (R&#36;)', 'pmpro'),
@@ -54,6 +55,7 @@
54
  ),
55
  'MYR' => __('Malaysian Ringgits', 'pmpro'),
56
  'MXN' => __('Mexican Peso (&#36;)', 'pmpro'),
 
57
  'NZD' => __('New Zealand Dollar (&#36;)', 'pmpro'),
58
  'NOK' => __('Norwegian Krone', 'pmpro'),
59
  'PHP' => __('Philippine Pesos', 'pmpro'),
25
  'symbol' => '&pound;',
26
  'position' => 'left'
27
  ),
28
+ 'ARS' => __('Argentine Peso (&#36;)', 'pmpro'),
29
  'AUD' => __('Australian Dollars (&#36;)', 'pmpro'),
30
  'BRL' => array(
31
  'name' => __('Brazilian Real (R&#36;)', 'pmpro'),
55
  ),
56
  'MYR' => __('Malaysian Ringgits', 'pmpro'),
57
  'MXN' => __('Mexican Peso (&#36;)', 'pmpro'),
58
+ 'NGN' => __('Nigerian Naira (&#8358;)', 'pmpro'),
59
  'NZD' => __('New Zealand Dollar (&#36;)', 'pmpro'),
60
  'NOK' => __('Norwegian Krone', 'pmpro'),
61
  'PHP' => __('Philippine Pesos', 'pmpro'),
includes/functions.php CHANGED
@@ -614,7 +614,7 @@ function pmpro_hasMembershipLevel($levels = NULL, $user_id = NULL)
614
  elseif(in_array("E", $levels) || in_array("e", $levels)) {
615
  $sql = "SELECT id FROM $wpdb->pmpro_memberships_users WHERE user_id=$user_id AND status='expired' LIMIT 1";
616
  $expired = $wpdb->get_var($sql);
617
- return !empty($expired);
618
  }
619
  }
620
  else
@@ -1379,7 +1379,7 @@ function pmpro_no_quotes($s, $quotes = array("'", '"'))
1379
  }
1380
 
1381
  //from: http://www.php.net/manual/en/function.implode.php#86845
1382
- function pmpro_implodeToEnglish($array)
1383
  {
1384
  // sanity check
1385
  if (!$array || !count ($array))
@@ -1392,7 +1392,11 @@ function pmpro_implodeToEnglish($array)
1392
  if (!count ($array))
1393
  return $last;
1394
 
1395
- return implode (', ', $array).' ' . __('and', 'pmpro') . ' '.$last;
 
 
 
 
1396
  }
1397
 
1398
  //from yoast wordpress seo
@@ -2176,4 +2180,4 @@ function pmpro_generatePages($pages) {
2176
  }
2177
 
2178
  return $pages_created;
2179
- }
614
  elseif(in_array("E", $levels) || in_array("e", $levels)) {
615
  $sql = "SELECT id FROM $wpdb->pmpro_memberships_users WHERE user_id=$user_id AND status='expired' LIMIT 1";
616
  $expired = $wpdb->get_var($sql);
617
+ $return = !empty($expired);
618
  }
619
  }
620
  else
1379
  }
1380
 
1381
  //from: http://www.php.net/manual/en/function.implode.php#86845
1382
+ function pmpro_implodeToEnglish($array, $conjunction = 'and')
1383
  {
1384
  // sanity check
1385
  if (!$array || !count ($array))
1392
  if (!count ($array))
1393
  return $last;
1394
 
1395
+ //possibly translate the conjunction
1396
+ if($conjunction == 'and')
1397
+ $conjunction = __('and', 'pmpro');
1398
+
1399
+ return implode (', ', $array).' ' . $conjunction . ' '.$last;
1400
  }
1401
 
1402
  //from yoast wordpress seo
2180
  }
2181
 
2182
  return $pages_created;
2183
+ }
includes/lib/recaptchalib.php CHANGED
@@ -55,7 +55,7 @@ class pmpro_ReCaptcha
55
  *
56
  * @param string $secret shared secret between site and ReCAPTCHA server.
57
  */
58
- function pmpro_ReCaptcha($secret)
59
  {
60
  if ($secret == null || $secret == "") {
61
  die("To use reCAPTCHA you must get an API key from <a href='"
55
  *
56
  * @param string $secret shared secret between site and ReCAPTCHA server.
57
  */
58
+ function __construct($secret)
59
  {
60
  if ($secret == null || $secret == "") {
61
  die("To use reCAPTCHA you must get an API key from <a href='"
includes/metaboxes.php CHANGED
@@ -34,9 +34,14 @@ function pmpro_page_meta()
34
  }
35
  ?>
36
  </ul>
37
- <?php if('post' == get_post_type($post) && $in_member_cat) { ?>
 
38
  <p class="pmpro_meta_notice">* <?php _e("This post is already protected for this level because it is within a category that requires membership.", "pmpro");?></p>
39
- <?php } ?>
 
 
 
 
40
  <?php
41
  }
42
 
34
  }
35
  ?>
36
  </ul>
37
+ <?php
38
+ if('post' == get_post_type($post) && $in_member_cat) { ?>
39
  <p class="pmpro_meta_notice">* <?php _e("This post is already protected for this level because it is within a category that requires membership.", "pmpro");?></p>
40
+ <?php
41
+ }
42
+
43
+ do_action('pmpro_after_require_membership_metabox', $post);
44
+ ?>
45
  <?php
46
  }
47
 
includes/updates.php ADDED
@@ -0,0 +1,128 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* This file contains functions used to process required database updates sometimes logged after PMPro is upgraded. */
3
+
4
+ /*
5
+ Is there an update?
6
+ */
7
+ function pmpro_isUpdateRequired() {
8
+ $updates = get_option('pmpro_updates', array());
9
+ return(!empty($updates));
10
+ }
11
+
12
+ /**
13
+ * Update option to require an update.
14
+ * @param string $update
15
+ *
16
+ * @since 1.8.7
17
+ */
18
+ function pmpro_addUpdate($update) {
19
+ $updates = get_option('pmpro_updates', array());
20
+ $updates[] = $update;
21
+ $updates = array_unique($updates);
22
+
23
+ update_option('pmpro_updates', $updates, 'no');
24
+ }
25
+
26
+ /**
27
+ * Update option to remove an update.
28
+ * @param string $update
29
+ *
30
+ * @since 1.8.7
31
+ */
32
+ function pmpro_removeUpdate($update) {
33
+ $updates = get_option('pmpro_updates', array());
34
+ $key = array_search($update,$updates);
35
+ if($key!==false){
36
+ unset($updates[$key]);
37
+ }
38
+
39
+ update_option('pmpro_updates', $updates, 'no');
40
+ }
41
+
42
+ /*
43
+ Enqueue updates.js if needed
44
+ */
45
+ function pmpro_enqueue_update_js() {
46
+ if(!empty($_REQUEST['page']) && $_REQUEST['page'] == 'pmpro-updates') {
47
+ wp_enqueue_script( 'pmpro-updates', plugin_dir_url( dirname(__FILE__) ) . 'js/updates.js' );
48
+ }
49
+ }
50
+ add_action('admin_enqueue_scripts', 'pmpro_enqueue_update_js');
51
+
52
+ /*
53
+ Load an update via AJAX
54
+ */
55
+ function pmpro_wp_ajax_pmpro_updates() {
56
+ //get updates
57
+ $updates = get_option('pmpro_updates', array());
58
+
59
+ //run update or let them know we're done
60
+ if(!empty($updates)) {
61
+ //get the latest one and run it
62
+ call_user_func($updates[0]);
63
+ echo ". ";
64
+ } else {
65
+ echo "done";
66
+ }
67
+
68
+ exit;
69
+ }
70
+ add_action('wp_ajax_pmpro_updates', 'pmpro_wp_ajax_pmpro_updates');
71
+
72
+ /*
73
+ Redirect away from updates page if there are no updates
74
+ */
75
+ function pmpro_admin_init_updates_redirect() {
76
+ if(is_admin() && !empty($_REQUEST['page']) && $_REQUEST['page'] == 'pmpro-updates' && !pmpro_isUpdateRequired()) {
77
+ wp_redirect(admin_url('admin.php?page=pmpro-membershiplevels&updatescomplete=1'));
78
+ exit;
79
+ }
80
+ }
81
+ add_action('init', 'pmpro_admin_init_updates_redirect');
82
+
83
+ /*
84
+ Show admin notice if an update is required and not already on the updates page.
85
+ */
86
+ if(pmpro_isUpdateRequired() && (empty($_REQUEST['page']) || $_REQUEST['page'] != 'pmpro-updates'))
87
+ add_action('admin_notices', 'pmpro_updates_notice');
88
+
89
+ /*
90
+ Function to show an admin notice linking to the updates page.
91
+ */
92
+ function pmpro_updates_notice() {
93
+ ?>
94
+ <div class="update-nag">
95
+ <p>
96
+ <?php
97
+ echo __( 'Paid Memberships Pro Data Update Required', 'pmpro' );
98
+ ?>
99
+ </p>
100
+ <p>
101
+ <?php
102
+ echo '<a class="button button-primary" href="' . admin_url('admin.php?page=pmpro-updates') . '">' . __('Start the Update', 'pmpro') . '</a>';
103
+ ?>
104
+ </p>
105
+ </div>
106
+ <?php
107
+ }
108
+
109
+ /*
110
+ Show admin notice when updates are complete.
111
+ */
112
+ if(is_admin() && !empty($_REQUEST['updatescomplete']))
113
+ add_action('admin_notices', 'pmpro_updates_notice_complete');
114
+
115
+ /*
116
+ Function to show an admin notice linking to the updates page.
117
+ */
118
+ function pmpro_updates_notice_complete() {
119
+ ?>
120
+ <div class="updated notice notice-success is-dismissible">
121
+ <p>
122
+ <?php
123
+ echo __('All Paid Memberships Pro updates have finished.', 'pmpro' );
124
+ ?>
125
+ </p>
126
+ </div>
127
+ <?php
128
+ }
includes/upgradecheck.php CHANGED
@@ -106,6 +106,12 @@ function pmpro_checkForUpgrades()
106
  $pmpro_db_version = 1.791;
107
  }
108
 
 
 
 
 
 
 
109
  //add level meta table
110
  /*
111
  if($pmpro_db_version < 1.87) {
@@ -127,6 +133,100 @@ function pmpro_upgrade_1_8_7() {
127
  return 1.87;
128
  }
129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  function pmpro_upgrade_1_7()
131
  {
132
  pmpro_db_delta(); //just a db delta
106
  $pmpro_db_version = 1.791;
107
  }
108
 
109
+ //fix subscription ids on stripe orders
110
+ if($pmpro_db_version < 1.869) {
111
+ pmpro_upgrade_1_8_6_9();
112
+ $pmpro_db_version = 1.869;
113
+ }
114
+
115
  //add level meta table
116
  /*
117
  if($pmpro_db_version < 1.87) {
133
  return 1.87;
134
  }
135
 
136
+ /*
137
+ Upgrade to 1.8.6.9
138
+
139
+ 1. Find all orders for stripe gateway with a subscription_transaction_id LIKE 'cus_%'
140
+ 2. Search for an order for the same user_id and membership_id with a subscription_transaction_id LIKE 'sub_%'
141
+ 3. Replace subscription_transaction_id field.
142
+ */
143
+ function pmpro_upgrade_1_8_6_9() {
144
+ global $wpdb;
145
+ $orders = $wpdb->get_results("SELECT id, user_id, membership_id, subscription_transaction_id FROM $wpdb->pmpro_membership_orders WHERE gateway = 'stripe' AND subscription_transaction_id LIKE 'cus_%'");
146
+
147
+ if(!empty($orders)) {
148
+ if(count($orders) > 100) {
149
+ //if more than 100 orders, we'll need to do this via AJAX
150
+ pmpro_addUpdate('pmpro_upgrade_1_8_6_9_ajax');
151
+ } else {
152
+ //less than 100, let's just do them now
153
+ $subids = array();
154
+
155
+ foreach($orders as $order) {
156
+ if(!empty($subids[$order->subscription_transaction_id])) {
157
+ $wpdb->query("UPDATE $wpdb->pmpro_membership_orders SET subscription_transaction_id = '" . esc_sql($subids[$order->subscription_transaction_id]) . "' WHERE id = '" . $order->id . "' LIMIT 1");
158
+
159
+ //echo "Updating subid for #" . $order->id . " " . $order->subscription_transaction_id . ".<br />";
160
+ }
161
+ elseif(isset($subids[$order->subscription_transaction_id])) {
162
+ //no sub id found, so let it go
163
+
164
+ //echo "No subid found for #" . $order->id . " " . $order->subscription_transaction_id . " in cache.<br />";
165
+ }
166
+ else {
167
+ //need to look for a sub id in the database
168
+ $subid = $wpdb->get_var("SELECT subscription_transaction_id FROM $wpdb->pmpro_membership_orders WHERE membership_id = '" . $order->membership_id . "' AND user_id = '" . $order->user_id . "' AND subscription_transaction_id LIKE 'sub_%' LIMIT 1");
169
+ $subids[$order->subscription_transaction_id] = $subid;
170
+ if(!empty($subid)) {
171
+ $wpdb->query("UPDATE $wpdb->pmpro_membership_orders SET subscription_transaction_id = '" . esc_sql($subid) . "' WHERE id = '" . $order->id . "' LIMIT 1");
172
+
173
+ //echo "Updating subid for #" . $order->id . " " . $order->subscription_transaction_id . ".<br />";
174
+ }
175
+ else {
176
+ //echo "No subid found for #" . $order->id . " " . $order->subscription_transaction_id . ".<br />";
177
+ }
178
+ }
179
+ }
180
+ }
181
+ }
182
+
183
+ pmpro_setOption("db_version", "1.869");
184
+ return 1.869;
185
+ }
186
+
187
+ /*
188
+ If a site has > 100 orders then we run this pasrt of the update via AJAX from the updates page.
189
+ */
190
+ function pmpro_upgrade_1_8_6_9_ajax() {
191
+ global $wpdb;
192
+
193
+ //keeping track of which order we're working on
194
+ $last_order_id = get_option('pmpro_upgrade_1_8_6_9_last_order_id', 0);
195
+
196
+ //get orders
197
+ $orders = $wpdb->get_results("SELECT id, user_id, membership_id, subscription_transaction_id FROM $wpdb->pmpro_membership_orders WHERE id > $last_order_id AND gateway = 'stripe' AND subscription_transaction_id LIKE 'cus_%' ORDER BY id LIMIT 100");
198
+
199
+ if(empty($orders)) {
200
+ //done with this update
201
+ pmpro_removeUpdate('pmpro_upgrade_1_8_6_9_ajax');
202
+ delete_option('pmpro_upgrade_1_8_6_9_last_order_id');
203
+ } else {
204
+ $subids = array(); //cache of subids found
205
+ foreach($orders as $order) {
206
+ $last_order_id = $order->id; //keeping track of the last order we processed
207
+ if(!empty($subids[$order->subscription_transaction_id])) {
208
+ $wpdb->query("UPDATE $wpdb->pmpro_membership_orders SET subscription_transaction_id = '" . esc_sql($subids[$order->subscription_transaction_id]) . "' WHERE id = '" . $order->id . "' LIMIT 1");
209
+ }
210
+ elseif(isset($subids[$order->subscription_transaction_id])) {
211
+ //no sub id found, so let it go
212
+ }
213
+ else {
214
+ //need to look for a sub id in the database
215
+ $subid = $wpdb->get_var("SELECT subscription_transaction_id FROM $wpdb->pmpro_membership_orders WHERE membership_id = '" . $order->membership_id . "' AND user_id = '" . $order->user_id . "' AND subscription_transaction_id LIKE 'sub_%' LIMIT 1");
216
+ $subids[$order->subscription_transaction_id] = $subid;
217
+ if(!empty($subid)) {
218
+ $wpdb->query("UPDATE $wpdb->pmpro_membership_orders SET subscription_transaction_id = '" . esc_sql($subid) . "' WHERE id = '" . $order->id . "' LIMIT 1");
219
+ }
220
+ else {
221
+ //no sub id found, so let it go
222
+ }
223
+ }
224
+ }
225
+
226
+ update_option('pmpro_upgrade_1_8_6_9_last_order_id', $last_order_id);
227
+ }
228
+ }
229
+
230
  function pmpro_upgrade_1_7()
231
  {
232
  pmpro_db_delta(); //just a db delta
js/updates.js ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(document).ready(function() {
2
+ //find status
3
+ var $status = jQuery('#pmpro_updates_status');
4
+ var $row = 1;
5
+ var $count = 0;
6
+ var $title = document.title;
7
+ var $cycles = ['|','/','-','\\'];
8
+
9
+ //start updates and update status
10
+ if($status.length > 0)
11
+ {
12
+ $status.html($status.html() + '\n' + 'JavaScript Loaded. Starting updates.\n');
13
+
14
+ function pmpro_updates()
15
+ {
16
+ jQuery.ajax({
17
+ url: ajaxurl,type:'GET', timeout: 30000,
18
+ dataType: 'html',
19
+ data: 'action=pmpro_updates',
20
+ error: function(xml){
21
+ alert('Error with update. Try refreshing.');
22
+ },
23
+ success: function(responseHTML){
24
+ if (responseHTML == 'error')
25
+ {
26
+ alert('Error with update. Try refreshing.');
27
+ document.title = $title;
28
+ }
29
+ else if(responseHTML == 'done')
30
+ {
31
+ $status.html($status.html() + '\nDone!');
32
+ document.title = '! ' + $title;
33
+ jQuery('#pmpro_updates_intro').html('All updates are complete.');
34
+ location.reload(1);
35
+ }
36
+ else
37
+ {
38
+ $count++;
39
+ $status.html($status.html() + responseHTML);
40
+ document.title = $cycles[$count%4] + ' ' + $title;
41
+ $update_timer = setTimeout(function() { pmpro_updates();}, 500);
42
+ }
43
+
44
+ //scroll the text area unless the mouse is over it
45
+ if (jQuery('#status:hover').length != 0) {
46
+ $status.scrollTop($status[0].scrollHeight - $status.height());
47
+ }
48
+ }
49
+ });
50
+ }
51
+
52
+ var $update_timer = setTimeout(function() { pmpro_updates();}, 500);
53
+ }
54
+ });
languages/email/fr_FR/billing.html CHANGED
@@ -1,4 +1,4 @@
1
- <p>Vos infos de paiement à !!sitename!! ont été changées.</p>
2
 
3
  <p>Compte : !!display_name!! (!!user_email!!)</p>
4
  <p>
@@ -11,6 +11,6 @@
11
  Expiration : !!expirationmonth!!/!!expirationyear!!
12
  </p>
13
 
14
- <p>Si vous n'avez pas demandé de changement de cets informations, contactez-nous à !!siteemail!!</p>
15
 
16
- <p>Pour vous connecter à votre compte : !!login_link!!</p>
1
+ <p>Vos informations de paiement à !!sitename!! ont été changées.</p>
2
 
3
  <p>Compte : !!display_name!! (!!user_email!!)</p>
4
  <p>
11
  Expiration : !!expirationmonth!!/!!expirationyear!!
12
  </p>
13
 
14
+ <p>Si vous n'avez pas demandé de changement à ces informations, contactez-nous à !!siteemail!!</p>
15
 
16
+ <p>Pour vous connecter à votre compte : !!login_link!!</p>
languages/pmpro-fa_IR.mo ADDED
Binary file
languages/pmpro-fa_IR.po ADDED
@@ -0,0 +1,4769 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Hi there! Details on how to help out translating Paid Memberships Pro can be found at:
3
+ # http://www.paidmembershipspro.com/documentation/languages/
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: pmpro\n"
8
+ "POT-Creation-Date: 2015-12-15 12:15+0150\n"
9
+ "PO-Revision-Date: 2015-12-16 11:41+0330\n"
10
+ "Language-Team: Tadeh B\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 1.8.6\n"
15
+ "Plural-Forms: nplurals=1; plural=0;\n"
16
+ "Language: fa_IR\n"
17
+ "Last-Translator: \n"
18
+
19
+ #: adminpages/addons.php:5 adminpages/advancedsettings.php:5
20
+ #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
21
+ #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
22
+ #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5 adminpages/orders.php:5
23
+ #: adminpages/pagesettings.php:4 adminpages/paymentsettings.php:5
24
+ #: includes/license.php:36 adminpages/addons.php:21 adminpages/pagesettings.php:5
25
+ msgid "You do not have permissions to perform this action."
26
+ msgstr "شما اجازه انجام این عمل را ندارید."
27
+
28
+ #: adminpages/addons.php:64 adminpages/admin_header.php:170 includes/adminpages.php:52
29
+ #: includes/adminpages.php:146 adminpages/addons.php:80 adminpages/admin_header.php:133
30
+ #: adminpages/admin_header.php:154 includes/adminpages.php:14 includes/adminpages.php:69
31
+ #: includes/adminpages.php:135 includes/adminpages.php:142
32
+ msgid "Add Ons"
33
+ msgstr "افزونه ها"
34
+
35
+ #: adminpages/addons.php:71 adminpages/addons.php:87
36
+ #, php-format
37
+ msgid "Last checked on %s at %s."
38
+ msgstr "آخرین بازدید %s در %s."
39
+
40
+ #: adminpages/addons.php:72 adminpages/addons.php:88
41
+ msgid "Check Again"
42
+ msgstr "بررسی دوباره"
43
+
44
+ #: adminpages/addons.php:76 adminpages/orders.php:605 adminpages/addons.php:92
45
+ msgid "All"
46
+ msgstr "همه"
47
+
48
+ #: adminpages/addons.php:77 adminpages/addons.php:93
49
+ msgid "Active"
50
+ msgstr "فعال"
51
+
52
+ #: adminpages/addons.php:78 adminpages/addons.php:94
53
+ msgid "Inactive"
54
+ msgstr "غیرفعال"
55
+
56
+ #: adminpages/addons.php:79 adminpages/addons.php:95
57
+ msgid "Update Available"
58
+ msgstr "به روز رسانی موجود است"
59
+
60
+ #: adminpages/addons.php:80 adminpages/addons.php:96
61
+ msgid "Not Installed"
62
+ msgstr "نصب نشده است."
63
+
64
+ #: adminpages/addons.php:93 adminpages/addons.php:109
65
+ msgid "Add On Name"
66
+ msgstr "نام افزونه"
67
+
68
+ #: adminpages/addons.php:94 adminpages/addons.php:110
69
+ msgid "Type"
70
+ msgstr "نوع"
71
+
72
+ #: adminpages/addons.php:95 adminpages/membershiplevels.php:300
73
+ #: adminpages/addons.php:111 adminpages/membershiplevels.php:296
74
+ #: adminpages/membershiplevels.php:298
75
+ msgid "Description"
76
+ msgstr "توضیحات"
77
+
78
+ #: adminpages/addons.php:118 adminpages/addons.php:134
79
+ msgid "No Add Ons found."
80
+ msgstr "افزونه یافت نشد"
81
+
82
+ #: adminpages/addons.php:179 adminpages/addons.php:184 adminpages/addons.php:196
83
+ #: adminpages/addons.php:195 adminpages/addons.php:200 adminpages/addons.php:212
84
+ msgid "Install Now"
85
+ msgstr "نصب کنید"
86
+
87
+ #: adminpages/addons.php:185 adminpages/addons.php:191 adminpages/addons.php:197
88
+ #: adminpages/addons.php:203 adminpages/addons.php:201 adminpages/addons.php:207
89
+ #: adminpages/addons.php:213 adminpages/addons.php:219
90
+ msgid "Download"
91
+ msgstr "دانلود"
92
+
93
+ #: adminpages/addons.php:190 adminpages/addons.php:202 adminpages/addons.php:206
94
+ #: adminpages/addons.php:218
95
+ msgid "Update License"
96
+ msgstr "بروز رسانی لایسنس"
97
+
98
+ #: adminpages/addons.php:208 adminpages/addons.php:224
99
+ msgid "Deactivate"
100
+ msgstr "غیر فعال کردن"
101
+
102
+ #: adminpages/addons.php:208 adminpages/addons.php:224
103
+ #, php-format
104
+ msgid "Deactivate %s"
105
+ msgstr "غیر فعال کردن %s"
106
+
107
+ #: adminpages/addons.php:212 adminpages/addons.php:228
108
+ msgid "Activate"
109
+ msgstr "فعال کردن"
110
+
111
+ #: adminpages/addons.php:212 adminpages/addons.php:228
112
+ #, php-format
113
+ msgid "Activate %s"
114
+ msgstr "فعال کردن %s"
115
+
116
+ #: adminpages/addons.php:213 adminpages/addons.php:229
117
+ msgid "Delete"
118
+ msgstr "حذف"
119
+
120
+ #: adminpages/addons.php:213 adminpages/addons.php:229
121
+ #, php-format
122
+ msgid "Delete %s"
123
+ msgstr "حذف %s"
124
+
125
+ #: adminpages/addons.php:223 adminpages/addons.php:239
126
+ msgid "PMPro Free"
127
+ msgstr "PMPro Free"
128
+
129
+ #: adminpages/addons.php:225 adminpages/addons.php:241
130
+ msgid "PMPro Core"
131
+ msgstr "PMPro Core"
132
+
133
+ #: adminpages/addons.php:227 adminpages/addons.php:243
134
+ msgid "PMPro Plus"
135
+ msgstr "PMPro Plus"
136
+
137
+ #: adminpages/addons.php:229 adminpages/addons.php:245
138
+ msgid "WordPress.org"
139
+ msgstr "WordPress.org"
140
+
141
+ #: adminpages/addons.php:231 adminpages/addons.php:247
142
+ msgid "N/A"
143
+ msgstr "N/A"
144
+
145
+ #: adminpages/addons.php:240 adminpages/addons.php:256
146
+ #, php-format
147
+ msgid "Version %s"
148
+ msgstr "نسخه %s"
149
+
150
+ #: adminpages/addons.php:245 adminpages/addons.php:261
151
+ #, php-format
152
+ msgid "By %s"
153
+ msgstr "به وسیله ی %s"
154
+
155
+ #: adminpages/addons.php:252 adminpages/addons.php:268
156
+ #, php-format
157
+ msgid "More information about %s"
158
+ msgstr "اطلاعات بیشتر درباره %s"
159
+
160
+ #: adminpages/addons.php:254 adminpages/addons.php:270
161
+ msgid "View details"
162
+ msgstr "نمایش جزئیات"
163
+
164
+ #: adminpages/addons.php:259 adminpages/addons.php:275
165
+ msgid "Visit plugin site"
166
+ msgstr "بازدید از سایت افزونه"
167
+
168
+ #: adminpages/admin_header.php:25
169
+ msgid "Add a membership level to get started."
170
+ msgstr "برای شروع، یک سطح جدید کاربری ایجاد کنید."
171
+
172
+ #: adminpages/admin_header.php:27
173
+ msgid "Set up the membership pages"
174
+ msgstr "تنظیم صفحات عضویت"
175
+
176
+ #: adminpages/admin_header.php:29
177
+ msgid "Set up your SSL certificate and payment gateway"
178
+ msgstr "راه اندازی گواهی نامه اس اس ال شما و درگاه پرداخت"
179
+
180
+ #: adminpages/admin_header.php:38
181
+ msgid ""
182
+ "The billing details for some of your membership levels is not supported by Stripe."
183
+ msgstr "جزییات صورتحساب برای برخی سطوح کاربری توسط Stripe پشتیبانی نمی شود."
184
+
185
+ #: adminpages/admin_header.php:46
186
+ msgid ""
187
+ "The billing details for this level are not supported by Stripe. Please review the "
188
+ "notes in the Billing Details section below."
189
+ msgstr ""
190
+ "جزییات صورتحساب برای برخی سطوح کاربری توسط Stripe پشتیبانی نمی شود. لطفا یادداشتهای "
191
+ "بخش جزییات صورتحساب را در زیر بررسی کنید."
192
+
193
+ #: adminpages/admin_header.php:50 adminpages/admin_header.php:70
194
+ #: adminpages/admin_header.php:90 adminpages/admin_header.php:111
195
+ msgid "The levels with issues are highlighted below."
196
+ msgstr "سطوح شامل مشکل، در زیر هایلایت شده اند."
197
+
198
+ #: adminpages/admin_header.php:52 adminpages/admin_header.php:72
199
+ #: adminpages/admin_header.php:92 adminpages/admin_header.php:113
200
+ msgid "Please edit your levels"
201
+ msgstr "لطفا سطوح خود را ویرایش کنید"
202
+
203
+ #: adminpages/admin_header.php:58
204
+ msgid ""
205
+ "The billing details for some of your membership levels is not supported by Payflow."
206
+ msgstr "جزییات صورتحساب برای برخی سطوح کاربری توسط Payflow پشتیبانی نمی شود."
207
+
208
+ #: adminpages/admin_header.php:66
209
+ msgid ""
210
+ "The billing details for this level are not supported by Payflow. Please review the "
211
+ "notes in the Billing Details section below."
212
+ msgstr ""
213
+ "جزییات صورتحساب برای برخی سطوح کاربری توسط Payflow پشتیبانی نمی شود. لطفا یادداشتهای "
214
+ "قسمت جزییات صورتحساب را در زیر بررسی کنید."
215
+
216
+ #: adminpages/admin_header.php:78
217
+ msgid ""
218
+ "The billing details for some of your membership levels is not supported by Braintree."
219
+ msgstr "جزییات صورتحساب برای برخی سطوح کاربری توسط Braintree پشتیبانی نمی شود."
220
+
221
+ #: adminpages/admin_header.php:86
222
+ msgid ""
223
+ "The billing details for this level are not supported by Braintree. Please review the "
224
+ "notes in the Billing Details section below."
225
+ msgstr ""
226
+ "جزییات صورتحساب برای برخی سطوح کاربری توسط Braintree پشتیبانی نمی شود. لطفا "
227
+ "یادداشتهای قسمت جزییات صورتحساب را در زیر بررسی کنید."
228
+
229
+ #: adminpages/admin_header.php:98
230
+ msgid ""
231
+ "The billing details for some of your membership levels is not supported by "
232
+ "TwoCheckout."
233
+ msgstr "جزییات صورتحساب برای برخی سطوح کاربری توسط TwoCheckout پشتیبانی نمی شود."
234
+
235
+ #: adminpages/admin_header.php:107
236
+ msgid ""
237
+ "The billing details for this level are not supported by 2Checkout. Please review the "
238
+ "notes in the Billing Details section below."
239
+ msgstr ""
240
+ "جزییات صورتحساب برای برخی سطوح کاربری توسط 2Checkout پشتیبانی نمی شود. لطفا "
241
+ "یادداشتهای قسمت جزییات صورتحساب را در زیر بررسی کنید."
242
+
243
+ #: adminpages/admin_header.php:127 adminpages/admin_header.php:106
244
+ msgid "Plugin Support"
245
+ msgstr "پشتیبانی افزونه"
246
+
247
+ #: adminpages/admin_header.php:127 adminpages/admin_header.php:106
248
+ msgid "User Forum"
249
+ msgstr "تالار گفتگو"
250
+
251
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:618
252
+ #: adminpages/pagesettings.php:70 includes/adminpages.php:64 includes/adminpages.php:65
253
+ #: includes/adminpages.php:111 includes/metaboxes.php:126
254
+ #: adminpages/admin_header.php:128 adminpages/admin_header.php:149
255
+ #: adminpages/membershiplevels.php:490 adminpages/membershiplevels.php:496
256
+ #: adminpages/membershiplevels.php:498 adminpages/membershiplevels.php:525
257
+ #: adminpages/membershiplevels.php:526 adminpages/membershiplevels.php:569
258
+ #: adminpages/membershiplevels.php:619 adminpages/pagesettings.php:69
259
+ #: includes/adminpages.php:44 includes/adminpages.php:100 includes/adminpages.php:107
260
+ msgid "Membership Levels"
261
+ msgstr "سطوح کاربری"
262
+
263
+ #: adminpages/admin_header.php:154 adminpages/pagesettings.php:92
264
+ #: adminpages/admin_header.php:129 adminpages/admin_header.php:150
265
+ #: adminpages/pagesettings.php:120
266
+ msgid "Pages"
267
+ msgstr "برگه‌ها"
268
+
269
+ #: adminpages/admin_header.php:158 adminpages/admin_header.php:130
270
+ #: adminpages/admin_header.php:151
271
+ msgid "Payment Gateway &amp; SSL"
272
+ msgstr "درگاه پرداخت و گواهی اس اس ال"
273
+
274
+ #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
275
+ #: shortcodes/pmpro_account.php:106 adminpages/admin_header.php:131
276
+ #: adminpages/admin_header.php:152 adminpages/memberslist.php:115
277
+ #: adminpages/memberslist.php:148 adminpages/memberslist.php:158 pages/account.php:52
278
+ #: pages/account.php:56 pages/account.php:77
279
+ msgid "Email"
280
+ msgstr "ایمیل"
281
+
282
+ #: adminpages/admin_header.php:166 adminpages/admin_header.php:132
283
+ #: adminpages/admin_header.php:153
284
+ msgid "Advanced"
285
+ msgstr "پیشرفته"
286
+
287
+ #: adminpages/advancedsettings.php:43 adminpages/advancedsettings.php:35
288
+ #: adminpages/advancedsettings.php:42
289
+ msgid "Your advanced settings have been updated."
290
+ msgstr "تنظیمات پیشرفته شما بروزرسانی شد"
291
+
292
+ #: adminpages/advancedsettings.php:68 adminpages/advancedsettings.php:66
293
+ #, php-format
294
+ msgid "This content is for !!levels!! members only. <a href=\"%s\">Register here</a>."
295
+ msgstr "این محتوا تنها برای اعضای ویژه می باشد. <a href=\"%s\">عضویت</a>."
296
+
297
+ #: adminpages/advancedsettings.php:73 adminpages/advancedsettings.php:71
298
+ #, php-format
299
+ msgid ""
300
+ "Please <a href=\"%s\">login</a> to view this content. (<a href=\"%s\">Register here</"
301
+ "a>.)"
302
+ msgstr ""
303
+ "لطفا برای دیدن محتوا <a href=\"%s\">وارد</a> شوید. (<a href=\"%s\">یا از اینجا ثبت "
304
+ "نام کنید</a>.)"
305
+
306
+ #: adminpages/advancedsettings.php:78 adminpages/advancedsettings.php:76
307
+ msgid "This content is for members only. Visit the site and log in/register to read."
308
+ msgstr "این محتوا فقط برای کاربران است. وارد شوید و یا ثبت نام کنید"
309
+
310
+ #: adminpages/advancedsettings.php:88 includes/adminpages.php:51
311
+ #: includes/adminpages.php:139 adminpages/advancedsettings.php:79
312
+ #: adminpages/advancedsettings.php:86 includes/adminpages.php:13
313
+ #: includes/adminpages.php:64 includes/adminpages.php:128 includes/adminpages.php:135
314
+ msgid "Advanced Settings"
315
+ msgstr "تنظیمات پیشرفته"
316
+
317
+ #: adminpages/advancedsettings.php:94 adminpages/advancedsettings.php:85
318
+ #: adminpages/advancedsettings.php:92
319
+ msgid "Message for Logged-in Non-members"
320
+ msgstr "پیام برای کاربران وارد شده غیر عضو"
321
+
322
+ #: adminpages/advancedsettings.php:98 adminpages/advancedsettings.php:89
323
+ #: adminpages/advancedsettings.php:96
324
+ msgid "This message replaces the post content for non-members. Available variables"
325
+ msgstr "این پیام محتوای مطالب را برای کاربران معمولی جایگزین می کند. متغیرهای موجود"
326
+
327
+ #: adminpages/advancedsettings.php:103 adminpages/advancedsettings.php:94
328
+ #: adminpages/advancedsettings.php:101
329
+ msgid "Message for Logged-out Users"
330
+ msgstr "پیام برای کاربران خارج شده"
331
+
332
+ #: adminpages/advancedsettings.php:107 adminpages/advancedsettings.php:98
333
+ #: adminpages/advancedsettings.php:105
334
+ msgid "This message replaces the post content for logged-out visitors."
335
+ msgstr "این پیام محتوای مطالب را برای کاربران خارج شده جایگزین می کند."
336
+
337
+ #: adminpages/advancedsettings.php:112 adminpages/advancedsettings.php:103
338
+ #: adminpages/advancedsettings.php:110
339
+ msgid "Message for RSS Feed"
340
+ msgstr "پیام براسی RSS Feed"
341
+
342
+ #: adminpages/advancedsettings.php:116 adminpages/advancedsettings.php:107
343
+ #: adminpages/advancedsettings.php:114
344
+ msgid "This message replaces the post content in RSS feeds."
345
+ msgstr "این پیام محتوای مطالب را در RSS feeds جایگزین می کند."
346
+
347
+ #: adminpages/advancedsettings.php:122
348
+ msgid "Filter searches and archives?"
349
+ msgstr "جستجوهای فیلتر و بایگانی ها؟"
350
+
351
+ #: adminpages/advancedsettings.php:126
352
+ msgid "No - Non-members will see restricted posts/pages in searches and archives."
353
+ msgstr ""
354
+ "خیر - افراد غیر عضو در جستجو ها و بایگانی ها، پست ها/برگه های محدود شده را مشاهده "
355
+ "خواهند کرد."
356
+
357
+ #: adminpages/advancedsettings.php:127
358
+ msgid "Yes - Only members will see restricted posts/pages in searches and archives."
359
+ msgstr ""
360
+ "بله - فقط اعضا در جستجو ها و بایگانی ها، پست ها/برگه های محدود شده را مشاهده خواهند "
361
+ "کرد."
362
+
363
+ #: adminpages/advancedsettings.php:133 adminpages/advancedsettings.php:113
364
+ #: adminpages/advancedsettings.php:120
365
+ msgid "Show Excerpts to Non-Members?"
366
+ msgstr "نمایش گزیده ها به افراد غیر عضو؟"
367
+
368
+ #: adminpages/advancedsettings.php:137 adminpages/advancedsettings.php:117
369
+ #: adminpages/advancedsettings.php:124
370
+ msgid "No - Hide excerpts."
371
+ msgstr "خیر- مخفی کردن گزیده ها."
372
+
373
+ #: adminpages/advancedsettings.php:138 adminpages/advancedsettings.php:118
374
+ #: adminpages/advancedsettings.php:125
375
+ msgid "Yes - Show excerpts."
376
+ msgstr "بله - نمایش گزیده ها."
377
+
378
+ #: adminpages/advancedsettings.php:144
379
+ msgid "Hide Ads From Members?"
380
+ msgstr "مخفی سازی تبلیغات از دید اعضاء؟"
381
+
382
+ #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
383
+ #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:667
384
+ #: adminpages/paymentsettings.php:210 classes/gateways/class.pmprogateway_stripe.php:184
385
+ #: includes/profile.php:110 adminpages/advancedsettings.php:128
386
+ #: adminpages/advancedsettings.php:135 adminpages/advancedsettings.php:187
387
+ #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
388
+ #: adminpages/advancedsettings.php:206 adminpages/membershiplevels.php:563
389
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
390
+ #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
391
+ #: adminpages/membershiplevels.php:658 adminpages/membershiplevels.php:668
392
+ #: adminpages/paymentsettings.php:414 adminpages/paymentsettings.php:429
393
+ #: adminpages/paymentsettings.php:434 adminpages/paymentsettings.php:436
394
+ #: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:459
395
+ #: adminpages/paymentsettings.php:461 classes/gateways/class.pmprogateway_stripe.php:173
396
+ #: classes/gateways/class.pmprogateway_stripe.php:174 includes/profile.php:101
397
+ #: includes/profile.php:105 includes/profile.php:121 includes/profile.php:123
398
+ msgid "No"
399
+ msgstr "خیر"
400
+
401
+ #: adminpages/advancedsettings.php:149 adminpages/advancedsettings.php:129
402
+ #: adminpages/advancedsettings.php:136
403
+ msgid "Hide Ads From All Members"
404
+ msgstr "مخفی کردن تبلیغات از دید همه اعضاء"
405
+
406
+ #: adminpages/advancedsettings.php:150 adminpages/advancedsettings.php:130
407
+ #: adminpages/advancedsettings.php:137
408
+ msgid "Hide Ads From Certain Members"
409
+ msgstr "مخفی کردن تبلیغات از دید برخی اعضاء"
410
+
411
+ #: adminpages/advancedsettings.php:157 adminpages/advancedsettings.php:137
412
+ #: adminpages/advancedsettings.php:144
413
+ msgid "Ads from the following plugins will be automatically turned off"
414
+ msgstr "تبلیغات توسط افزونه های زیر به صورت خودکار خاموش می شود"
415
+
416
+ #: adminpages/advancedsettings.php:158 adminpages/advancedsettings.php:138
417
+ #: adminpages/advancedsettings.php:145
418
+ msgid "To hide ads in your template code, use code like the following"
419
+ msgstr "برای پنهان کردن تبلیغات در کد قالب خود، از کد مانند زیر استفاده کنید"
420
+
421
+ #: adminpages/advancedsettings.php:169 adminpages/advancedsettings.php:149
422
+ #: adminpages/advancedsettings.php:156
423
+ msgid "Choose Levels to Hide Ads From"
424
+ msgstr "انتخاب سطح برای مخفی کردن تبلیغات از آن"
425
+
426
+ #: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
427
+ #: adminpages/advancedsettings.php:190
428
+ msgid "Redirect all traffic from registration page to /susbcription/?"
429
+ msgstr "تغییر مسیر همه ترافیک از صفحه ثبت نام به /susbcription/?"
430
+
431
+ #: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
432
+ #: adminpages/advancedsettings.php:190
433
+ msgid "multisite only"
434
+ msgstr "تنها چند سایت"
435
+
436
+ #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:667
437
+ #: adminpages/paymentsettings.php:211 classes/gateways/class.pmprogateway_stripe.php:185
438
+ #: includes/profile.php:111 adminpages/advancedsettings.php:188
439
+ #: adminpages/advancedsettings.php:195 adminpages/membershiplevels.php:563
440
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
441
+ #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
442
+ #: adminpages/membershiplevels.php:658 adminpages/membershiplevels.php:668
443
+ #: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
444
+ #: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:435
445
+ #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:455
446
+ #: adminpages/paymentsettings.php:460 adminpages/paymentsettings.php:462
447
+ #: classes/gateways/class.pmprogateway_stripe.php:174
448
+ #: classes/gateways/class.pmprogateway_stripe.php:175 includes/profile.php:102
449
+ #: includes/profile.php:106 includes/profile.php:122 includes/profile.php:124
450
+ msgid "Yes"
451
+ msgstr "بله"
452
+
453
+ #: adminpages/advancedsettings.php:215 adminpages/advancedsettings.php:195
454
+ #: adminpages/advancedsettings.php:202
455
+ msgid "Use reCAPTCHA?"
456
+ msgstr "استفاده از reCAPTCHA ؟"
457
+
458
+ #: adminpages/advancedsettings.php:220 adminpages/advancedsettings.php:200
459
+ #: adminpages/advancedsettings.php:207
460
+ msgid "Yes - Free memberships only."
461
+ msgstr "بله - تنها عضویت های رایگان."
462
+
463
+ #: adminpages/advancedsettings.php:221 adminpages/advancedsettings.php:201
464
+ #: adminpages/advancedsettings.php:208
465
+ msgid "Yes - All memberships."
466
+ msgstr "بله - همه عضویت ها."
467
+
468
+ #: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
469
+ #: adminpages/advancedsettings.php:210
470
+ msgid "A free reCAPTCHA key is required."
471
+ msgstr "کلید reCAPTCHA آزاد مورد نیاز است."
472
+
473
+ #: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
474
+ #: adminpages/advancedsettings.php:210
475
+ msgid "Click here to signup for reCAPTCHA"
476
+ msgstr "برای ثبت نام در reCAPTCHA اینجا را کلیک کنید"
477
+
478
+ #: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:209
479
+ #: adminpages/advancedsettings.php:216
480
+ msgid "reCAPTCHA Public Key"
481
+ msgstr "reCAPTCHA Public Key"
482
+
483
+ #: adminpages/advancedsettings.php:232 adminpages/advancedsettings.php:212
484
+ #: adminpages/advancedsettings.php:219
485
+ msgid "reCAPTCHA Private Key"
486
+ msgstr "reCAPTCHA Private Key"
487
+
488
+ #: adminpages/advancedsettings.php:238 adminpages/advancedsettings.php:218
489
+ #: adminpages/advancedsettings.php:225
490
+ msgid "Require Terms of Service on signups?"
491
+ msgstr "قوانین و شرایط استفاده از خدمات الزام است برای ثبت نام؟"
492
+
493
+ #: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:225
494
+ #: adminpages/advancedsettings.php:232
495
+ msgid ""
496
+ "If yes, create a WordPress page containing your TOS agreement and assign it using the "
497
+ "dropdown above."
498
+ msgstr ""
499
+ "اگر بله، برگه جدیدی ایجاد کنید و توافقنامه و قوانین خود را در آن بنویسید و سپس به "
500
+ "اینجا برگشته و نام صفحه را از لیست بالا انتخاب کنید."
501
+
502
+ #: adminpages/advancedsettings.php:285 adminpages/advancedsettings.php:272
503
+ msgid "selected"
504
+ msgstr "انتخاب شده"
505
+
506
+ #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:294
507
+ #: adminpages/paymentsettings.php:238 adminpages/advancedsettings.php:284
508
+ #: adminpages/advancedsettings.php:355 adminpages/pagesettings.php:209
509
+ #: adminpages/pagesettings.php:223 adminpages/pagesettings.php:251
510
+ #: adminpages/pagesettings.php:254 adminpages/paymentsettings.php:485
511
+ #: adminpages/paymentsettings.php:526 adminpages/paymentsettings.php:532
512
+ #: adminpages/paymentsettings.php:534
513
+ msgid "Save Settings"
514
+ msgstr "ذخیره تنظیمات"
515
+
516
+ #: adminpages/discountcodes.php:48
517
+ msgid "Discount code updated successfully."
518
+ msgstr "کد تخفیف به درستی بروزرسانی شد."
519
+
520
+ #: adminpages/discountcodes.php:55
521
+ msgid "Error updating discount code. That code may already be in use."
522
+ msgstr "خطا در بروزرسانی کد تخفیف. این کد احتمالا در حال استفاده است."
523
+
524
+ #: adminpages/discountcodes.php:64
525
+ msgid "Discount code added successfully."
526
+ msgstr "کد تخفیف به درستی اضافه شد."
527
+
528
+ #: adminpages/discountcodes.php:72 adminpages/discountcodes.php:71
529
+ msgid "Error adding discount code. That code may already be in use."
530
+ msgstr "خطا در افزودن کد تخفیف. این کد احتمالا در حال استفاده است"
531
+
532
+ #: adminpages/discountcodes.php:197 adminpages/discountcodes.php:196
533
+ #, php-format
534
+ msgid "Error saving values for the %s level."
535
+ msgstr "خطا در ذخیره سازی مقادیر برای سطح %s"
536
+
537
+ #: adminpages/discountcodes.php:205 adminpages/discountcodes.php:204
538
+ msgid "There were errors updating the level values: "
539
+ msgstr "چند خطا در حین ویرایش مقادیر سطوح یافت شد:"
540
+
541
+ #: adminpages/discountcodes.php:238 adminpages/discountcodes.php:234
542
+ #: adminpages/discountcodes.php:237
543
+ #, php-format
544
+ msgid "Code %s deleted successfully."
545
+ msgstr "کد %s به درستی حذف شد."
546
+
547
+ #: adminpages/discountcodes.php:243 adminpages/discountcodes.php:239
548
+ #: adminpages/discountcodes.php:242
549
+ msgid ""
550
+ "Error deleting discount code. The code was only partially deleted. Please try again."
551
+ msgstr "خطا در حذف کد تخفیف. این کد فقط به طور مقطعی حذف شد. لطفاً مجدد تلاش کنید."
552
+
553
+ #: adminpages/discountcodes.php:249 adminpages/discountcodes.php:245
554
+ #: adminpages/discountcodes.php:248
555
+ msgid "Error deleting code. Please try again."
556
+ msgstr "خطا در حذف کد تخفیف. لطفاً مجدد تلاش کنید."
557
+
558
+ #: adminpages/discountcodes.php:255 adminpages/discountcodes.php:251
559
+ #: adminpages/discountcodes.php:254
560
+ msgid "Code not found."
561
+ msgstr "کد یافت نشد."
562
+
563
+ #: adminpages/discountcodes.php:268 adminpages/discountcodes.php:264
564
+ #: adminpages/discountcodes.php:267
565
+ msgid "Edit Discount Code"
566
+ msgstr "ویرایش کد تخفیف"
567
+
568
+ #: adminpages/discountcodes.php:270 adminpages/discountcodes.php:558
569
+ #: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
570
+ #: adminpages/discountcodes.php:526 adminpages/discountcodes.php:529
571
+ #: adminpages/discountcodes.php:557
572
+ msgid "Add New Discount Code"
573
+ msgstr "افزودن کد تخفیف جدید"
574
+
575
+ #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
576
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:636
577
+ #: adminpages/memberslist.php:164 adminpages/orders.php:910
578
+ #: adminpages/reports/login.php:142 adminpages/discountcodes.php:306
579
+ #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:547
580
+ #: adminpages/discountcodes.php:557 adminpages/discountcodes.php:585
581
+ #: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
582
+ #: adminpages/membershiplevels.php:505 adminpages/membershiplevels.php:511
583
+ #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:540
584
+ #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:583
585
+ #: adminpages/membershiplevels.php:637 adminpages/memberslist.php:111
586
+ #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
587
+ #: adminpages/orders.php:597 adminpages/orders.php:900 adminpages/reports/login.php:140
588
+ msgid "ID"
589
+ msgstr "شناسه"
590
+
591
+ #: adminpages/discountcodes.php:311 adminpages/orders.php:261
592
+ #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
593
+ #: adminpages/orders.php:211
594
+ msgid "This will be generated when you save."
595
+ msgstr "در صورت ذخیره، ایجاد می شود."
596
+
597
+ #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
598
+ #: adminpages/orders.php:265 adminpages/orders.php:911 adminpages/discountcodes.php:311
599
+ #: adminpages/discountcodes.php:314 adminpages/discountcodes.php:548
600
+ #: adminpages/discountcodes.php:558 adminpages/discountcodes.php:586
601
+ #: adminpages/orders.php:215 adminpages/orders.php:598 adminpages/orders.php:901
602
+ msgid "Code"
603
+ msgstr "کد"
604
+
605
+ #: adminpages/discountcodes.php:353 adminpages/discountcodes.php:349
606
+ #: adminpages/discountcodes.php:352
607
+ msgid "Start Date"
608
+ msgstr "تاریخ شروع"
609
+
610
+ #: adminpages/discountcodes.php:371
611
+ #: classes/gateways/class.pmprogateway_braintree.php:321
612
+ #: classes/gateways/class.pmprogateway_stripe.php:465 pages/billing.php:262
613
+ #: pages/checkout.php:562 adminpages/discountcodes.php:367
614
+ #: adminpages/discountcodes.php:370
615
+ #: classes/gateways/class.pmprogateway_braintree.php:308
616
+ #: classes/gateways/class.pmprogateway_stripe.php:454
617
+ #: classes/gateways/class.pmprogateway_stripe.php:455 pages/billing.php:249
618
+ #: pages/billing.php:253 pages/checkout.php:508 pages/checkout.php:524
619
+ #: pages/checkout.php:525 pages/checkout.php:532 pages/checkout.php:553
620
+ msgid "Expiration Date"
621
+ msgstr "تاریخ انقضاء"
622
+
623
+ #: adminpages/discountcodes.php:389 adminpages/discountcodes.php:590
624
+ #: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
625
+ #: adminpages/discountcodes.php:551 adminpages/discountcodes.php:561
626
+ #: adminpages/discountcodes.php:589
627
+ msgid "Uses"
628
+ msgstr "دفعات استفاده"
629
+
630
+ #: adminpages/discountcodes.php:392 adminpages/discountcodes.php:388
631
+ #: adminpages/discountcodes.php:391
632
+ msgid "Leave blank for unlimited uses."
633
+ msgstr "برای استفاده نامحدود خالی بگذارید."
634
+
635
+ #: adminpages/discountcodes.php:401 adminpages/discountcodes.php:400
636
+ msgid "Which Levels Will This Code Apply To?"
637
+ msgstr "کدام سطح این کد را استفاده نمایند؟"
638
+
639
+ #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:341
640
+ #: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
641
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:339
642
+ #: adminpages/membershiplevels.php:342 adminpages/membershiplevels.php:507
643
+ #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:515
644
+ #: adminpages/membershiplevels.php:542 pages/levels.php:14
645
+ msgid "Initial Payment"
646
+ msgstr "پرداخت اولیه"
647
+
648
+ #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:352
649
+ #: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
650
+ #: adminpages/discountcodes.php:441 adminpages/membershiplevels.php:338
651
+ #: adminpages/membershiplevels.php:340 adminpages/membershiplevels.php:350
652
+ #: adminpages/membershiplevels.php:353
653
+ msgid "The initial amount collected at registration."
654
+ msgstr "مقدار اولیه در هنگام ثبت نام جمع آوری شده.."
655
+
656
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:356
657
+ #: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
658
+ #: adminpages/discountcodes.php:446 adminpages/membershiplevels.php:342
659
+ #: adminpages/membershiplevels.php:344 adminpages/membershiplevels.php:354
660
+ #: adminpages/membershiplevels.php:357
661
+ msgid "Recurring Subscription"
662
+ msgstr "اشتراک دوره ای"
663
+
664
+ #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:357
665
+ #: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
666
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:343
667
+ #: adminpages/membershiplevels.php:345 adminpages/membershiplevels.php:355
668
+ #: adminpages/membershiplevels.php:358
669
+ msgid "Check if this level has a recurring subscription payment."
670
+ msgstr "اگر این سطح دارای پرداخت دوره ای حق اشتراک است، علامت بزنید."
671
+
672
+ #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:361
673
+ #: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
674
+ #: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:349
675
+ #: adminpages/membershiplevels.php:359 adminpages/membershiplevels.php:362
676
+ msgid "Billing Amount"
677
+ msgstr "مقدار صورتحساب"
678
+
679
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
680
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
681
+ #: classes/gateways/class.pmprogateway_stripe.php:532 adminpages/discountcodes.php:446
682
+ #: adminpages/discountcodes.php:466 adminpages/discountcodes.php:492
683
+ #: adminpages/discountcodes.php:520 adminpages/membershiplevels.php:353
684
+ #: adminpages/membershiplevels.php:355 adminpages/membershiplevels.php:374
685
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
686
+ #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
687
+ #: adminpages/membershiplevels.php:480
688
+ #: classes/gateways/class.pmprogateway_stripe.php:521
689
+ #: classes/gateways/class.pmprogateway_stripe.php:522
690
+ msgid "Day(s)"
691
+ msgstr "روز"
692
+
693
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
694
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
695
+ #: classes/gateways/class.pmprogateway_stripe.php:532 adminpages/discountcodes.php:446
696
+ #: adminpages/discountcodes.php:466 adminpages/discountcodes.php:492
697
+ #: adminpages/discountcodes.php:520 adminpages/membershiplevels.php:353
698
+ #: adminpages/membershiplevels.php:355 adminpages/membershiplevels.php:374
699
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
700
+ #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
701
+ #: adminpages/membershiplevels.php:480
702
+ #: classes/gateways/class.pmprogateway_stripe.php:521
703
+ #: classes/gateways/class.pmprogateway_stripe.php:522
704
+ msgid "Month(s)"
705
+ msgstr "ماه"
706
+
707
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
708
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
709
+ #: classes/gateways/class.pmprogateway_stripe.php:532 adminpages/discountcodes.php:446
710
+ #: adminpages/discountcodes.php:466 adminpages/discountcodes.php:492
711
+ #: adminpages/discountcodes.php:520 adminpages/membershiplevels.php:353
712
+ #: adminpages/membershiplevels.php:355 adminpages/membershiplevels.php:374
713
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
714
+ #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
715
+ #: adminpages/membershiplevels.php:480
716
+ #: classes/gateways/class.pmprogateway_stripe.php:521
717
+ #: classes/gateways/class.pmprogateway_stripe.php:522
718
+ msgid "Week(s)"
719
+ msgstr "هفته"
720
+
721
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
722
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
723
+ #: classes/gateways/class.pmprogateway_stripe.php:532 adminpages/discountcodes.php:446
724
+ #: adminpages/discountcodes.php:466 adminpages/discountcodes.php:492
725
+ #: adminpages/discountcodes.php:520 adminpages/membershiplevels.php:353
726
+ #: adminpages/membershiplevels.php:355 adminpages/membershiplevels.php:374
727
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
728
+ #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
729
+ #: adminpages/membershiplevels.php:480
730
+ #: classes/gateways/class.pmprogateway_stripe.php:521
731
+ #: classes/gateways/class.pmprogateway_stripe.php:522
732
+ msgid "Year(s)"
733
+ msgstr "سال"
734
+
735
+ #: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:385
736
+ #: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
737
+ #: adminpages/discountcodes.php:474 adminpages/membershiplevels.php:362
738
+ #: adminpages/membershiplevels.php:364 adminpages/membershiplevels.php:383
739
+ #: adminpages/membershiplevels.php:386
740
+ msgid "The amount to be billed one cycle after the initial payment."
741
+ msgstr "مقداری که به صورت دوره ای بعد از اولین پرداخت، صورتحساب خواهد شد."
742
+
743
+ #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:403
744
+ #: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
745
+ #: adminpages/discountcodes.php:479 adminpages/membershiplevels.php:380
746
+ #: adminpages/membershiplevels.php:382 adminpages/membershiplevels.php:401
747
+ #: adminpages/membershiplevels.php:404
748
+ msgid "Billing Cycle Limit"
749
+ msgstr "محدودیت چرخه صورتحساب"
750
+
751
+ #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:407
752
+ #: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
753
+ #: adminpages/discountcodes.php:482 adminpages/membershiplevels.php:384
754
+ #: adminpages/membershiplevels.php:386 adminpages/membershiplevels.php:405
755
+ #: adminpages/membershiplevels.php:408
756
+ msgid ""
757
+ "The <strong>total</strong> number of recurring billing cycles for this level, "
758
+ "including the trial period (if applicable) but not including the initial payment. Set "
759
+ "to zero if membership is indefinite."
760
+ msgstr ""
761
+ "<strong>جمع</strong> تعداد چرخه صورت حساب دوره ای برای این سطح، شامل دوره آزمایشی (در "
762
+ "صورت اجرا) می باشد، اما پرداخت اولیه را شامل نمی شود. در صورتی که عضویت نامعین است 0 "
763
+ "بگذارید."
764
+
765
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:416
766
+ #: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
767
+ #: adminpages/discountcodes.php:487 adminpages/membershiplevels.php:393
768
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:414
769
+ #: adminpages/membershiplevels.php:417
770
+ msgid "Custom Trial"
771
+ msgstr "دوره آزمایشی سفارشی"
772
+
773
+ #: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:418
774
+ #: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
775
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:394
776
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
777
+ #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:419
778
+ msgid "Check to add a custom trial period."
779
+ msgstr "برای افزودن دوره آزمایشی سفارشی علامت بزنید."
780
+
781
+ #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:427
782
+ #: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
783
+ #: adminpages/discountcodes.php:492 adminpages/membershiplevels.php:398
784
+ #: adminpages/membershiplevels.php:404 adminpages/membershiplevels.php:406
785
+ #: adminpages/membershiplevels.php:425 adminpages/membershiplevels.php:428
786
+ msgid "Trial Billing Amount"
787
+ msgstr "میزان صورتحساب دوره آزمایشی"
788
+
789
+ #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:438
790
+ #: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
791
+ #: adminpages/discountcodes.php:503 adminpages/membershiplevels.php:401
792
+ #: adminpages/membershiplevels.php:407 adminpages/membershiplevels.php:409
793
+ #: adminpages/membershiplevels.php:436 adminpages/membershiplevels.php:439
794
+ msgid "for the first"
795
+ msgstr "برای اولین"
796
+
797
+ #: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:440
798
+ #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
799
+ #: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:403
800
+ #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:411
801
+ #: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:441
802
+ msgid "subscription payments"
803
+ msgstr "پرداخت های اشتراک"
804
+
805
+ #: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:469
806
+ #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
807
+ #: adminpages/discountcodes.php:510 adminpages/membershiplevels.php:431
808
+ #: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:439
809
+ #: adminpages/membershiplevels.php:466 adminpages/membershiplevels.php:467
810
+ #: adminpages/membershiplevels.php:470
811
+ msgid "Membership Expiration"
812
+ msgstr "انقضاء عضویت"
813
+
814
+ #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:470
815
+ #: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
816
+ #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:438
817
+ #: adminpages/membershiplevels.php:440 adminpages/membershiplevels.php:467
818
+ #: adminpages/membershiplevels.php:468 adminpages/membershiplevels.php:471
819
+ msgid "Check this to set when membership access expires."
820
+ msgstr "برای ثبت زمان انقضای دسترسی عضویت علامت بزنید."
821
+
822
+ #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:474
823
+ #: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
824
+ #: adminpages/discountcodes.php:515 adminpages/membershiplevels.php:436
825
+ #: adminpages/membershiplevels.php:442 adminpages/membershiplevels.php:444
826
+ #: adminpages/membershiplevels.php:471 adminpages/membershiplevels.php:472
827
+ #: adminpages/membershiplevels.php:475
828
+ msgid "Expires In"
829
+ msgstr "انقضا در"
830
+
831
+ #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:487
832
+ #: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
833
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:455
834
+ #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:484
835
+ #: adminpages/membershiplevels.php:485 adminpages/membershiplevels.php:488
836
+ msgid ""
837
+ "Set the duration of membership access. Note that the any future payments (recurring "
838
+ "subscription, if any) will be cancelled when the membership expires."
839
+ msgstr ""
840
+ "تنظیم مدت دسترسی عضویت. در نظر داشته باشید هرگونه پرداخت بعدی (اشتراک دوره ای، در "
841
+ "صورت وجود) در صورت انقضای عضویت لغو می شود."
842
+
843
+ #: adminpages/discountcodes.php:557 adminpages/discountcodes.php:525
844
+ #: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
845
+ msgid "Memberships Discount Codes"
846
+ msgstr "کدهای تخفیف اعضا"
847
+
848
+ #: adminpages/discountcodes.php:567 adminpages/discountcodes.php:535
849
+ #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
850
+ msgid "Search Discount Codes"
851
+ msgstr "جستجوی کدهای تخفیف"
852
+
853
+ #: adminpages/discountcodes.php:570 adminpages/reports/login.php:83
854
+ #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
855
+ #: adminpages/discountcodes.php:569 adminpages/reports/login.php:81
856
+ msgid "Search"
857
+ msgstr "جستجو"
858
+
859
+ #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:549
860
+ #: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
861
+ msgid "Starts"
862
+ msgstr "آغاز"
863
+
864
+ #: adminpages/discountcodes.php:589 adminpages/memberslist.php:179
865
+ #: adminpages/reports/login.php:147 includes/profile.php:107
866
+ #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
867
+ #: adminpages/discountcodes.php:588 adminpages/memberslist.php:121
868
+ #: adminpages/memberslist.php:159 adminpages/memberslist.php:169
869
+ #: adminpages/reports/login.php:145 includes/profile.php:98 includes/profile.php:102
870
+ #: includes/profile.php:118 includes/profile.php:120
871
+ msgid "Expires"
872
+ msgstr "انقضا"
873
+
874
+ #: adminpages/discountcodes.php:591 adminpages/discountcodes.php:552
875
+ #: adminpages/discountcodes.php:562 adminpages/discountcodes.php:590
876
+ msgid "Levels"
877
+ msgstr "سطوح"
878
+
879
+ #: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
880
+ #: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
881
+ msgid "Create your first discount code now"
882
+ msgstr "اولین کد تخفیف را بسازید"
883
+
884
+ #: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
885
+ #: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
886
+ msgid ""
887
+ "Discount codes allow you to offer your memberships at discounted prices to select "
888
+ "customers."
889
+ msgstr ""
890
+ "کدهای تخفیف به شما امکان میدهد تا به اعضا پیشنهاد ویژه دهید موقع قیمت تخفیف خورده تا "
891
+ "مشتریان انتخاب کنند."
892
+
893
+ #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:669
894
+ #: adminpages/orders.php:992 adminpages/discountcodes.php:614
895
+ #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
896
+ #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:564
897
+ #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
898
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
899
+ #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:670
900
+ #: adminpages/orders.php:658 adminpages/orders.php:961 adminpages/orders.php:979
901
+ #: adminpages/orders.php:989
902
+ msgid "edit"
903
+ msgstr "ویرایش"
904
+
905
+ #: adminpages/discountcodes.php:652 adminpages/discountcodes.php:617
906
+ #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
907
+ #: adminpages/discountcodes.php:651
908
+ #, php-format
909
+ msgid ""
910
+ "Are you sure you want to delete the %s discount code? The subscriptions for existing "
911
+ "users will not change, but new users will not be able to use this code anymore."
912
+ msgstr ""
913
+ "آیا از حذف کد تخفیف %s اطمینان دارید؟ اشتراک ها برای اعضا موجود تغییر نخواهند کرد، "
914
+ "اما کاربران جدید امکان استفاده از این کد را نخواهند داشت."
915
+
916
+ #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:669
917
+ #: adminpages/orders.php:998 adminpages/discountcodes.php:617
918
+ #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
919
+ #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:566
920
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
921
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
922
+ #: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:670
923
+ #: adminpages/orders.php:664 adminpages/orders.php:967 adminpages/orders.php:985
924
+ #: adminpages/orders.php:995
925
+ msgid "delete"
926
+ msgstr "حذف"
927
+
928
+ #: adminpages/emailsettings.php:69 includes/adminpages.php:50
929
+ #: includes/adminpages.php:132 adminpages/emailsettings.php:60
930
+ #: includes/adminpages.php:12 includes/adminpages.php:59 includes/adminpages.php:121
931
+ #: includes/adminpages.php:128
932
+ msgid "Email Settings"
933
+ msgstr "تنظیمات ایمیل"
934
+
935
+ #: adminpages/emailsettings.php:70 adminpages/emailsettings.php:61
936
+ msgid ""
937
+ "By default, system generated emails are sent from <em><strong>wordpress@yourdomain."
938
+ "com</strong></em>. You can update this from address using the fields below."
939
+ msgstr ""
940
+ "در حالت پیشفرض، ایمیل های ارسالی سیستم از آدرس <em><strong>wordpress@yourdomain.com</"
941
+ "strong></em>ارسال میشوند. می توانید با استفاده از فیلدهای زیر، آدرس فرستنده این فرم "
942
+ "را تغییر دهید."
943
+
944
+ #: adminpages/emailsettings.php:72 adminpages/emailsettings.php:63
945
+ msgid ""
946
+ "To modify the appearance of system generated emails, add the files <em>email_header."
947
+ "html</em> and <em>email_footer.html</em> to your theme's directory. This will modify "
948
+ "both the WordPress default messages as well as messages generated by Paid Memberships "
949
+ "Pro. <a title=\"Paid Memberships Pro - Member Communications\" target=\"_blank\" href="
950
+ "\"http://www.paidmembershipspro.com/documentation/member-communications/\">Click here "
951
+ "to learn more about Paid Memberships Pro emails</a>."
952
+ msgstr ""
953
+ "برای ویرایش ظاهر ایمیل های ایجاد شده توسط سیستم، فایلهای <em>email_header.html</em> و "
954
+ "<em>email_footer.html</em> را به پوشه قالب خود کپی کنید. این کار پیام های پیشفرض "
955
+ "وردپرس و همینطور پیام های ایجاد شده توسط PMPro را تغییر می دهد. <a title=\"Paid "
956
+ "Memberships Pro - Member Communications\" target=\"_blank\" href=\"http://www."
957
+ "paidmembershipspro.com/documentation/member-communications/\">Click here to learn "
958
+ "more about Paid Memberships Pro emails</a>."
959
+
960
+ #: adminpages/emailsettings.php:78 adminpages/emailsettings.php:69
961
+ msgid "From Email"
962
+ msgstr "ایمیل فرستنده"
963
+
964
+ #: adminpages/emailsettings.php:86 adminpages/emailsettings.php:77
965
+ msgid "From Name"
966
+ msgstr "نام فرستنده"
967
+
968
+ #: adminpages/emailsettings.php:94
969
+ msgid "Only Filter PMPro Emails?"
970
+ msgstr "تنها ایمیل های PMPro فیلتر شود؟"
971
+
972
+ #: adminpages/emailsettings.php:98
973
+ msgid "If unchecked, all emails from \"WordPress &lt;"
974
+ msgstr "اگر علامت را بردارید، همه ایمیل ها از \"WordPress &lt;"
975
+
976
+ #: adminpages/emailsettings.php:115 adminpages/emailsettings.php:86
977
+ #: adminpages/emailsettings.php:104
978
+ msgid "Send the site admin emails"
979
+ msgstr "ارسال ایمیل های مدیر سایت"
980
+
981
+ #: adminpages/emailsettings.php:121 adminpages/emailsettings.php:92
982
+ #: adminpages/emailsettings.php:110
983
+ msgid "Checkout"
984
+ msgstr "اتمام خرید و پرداخت"
985
+
986
+ #: adminpages/emailsettings.php:125 adminpages/emailsettings.php:96
987
+ #: adminpages/emailsettings.php:114
988
+ msgid "when a member checks out."
989
+ msgstr "وقتی کاربر پرداخت میکند"
990
+
991
+ #: adminpages/emailsettings.php:130 adminpages/emailsettings.php:101
992
+ #: adminpages/emailsettings.php:119
993
+ msgid "Admin Changes"
994
+ msgstr "تغییرات مدیر"
995
+
996
+ #: adminpages/emailsettings.php:134 adminpages/emailsettings.php:105
997
+ #: adminpages/emailsettings.php:123
998
+ msgid "when an admin changes a user's membership level through the dashboard."
999
+ msgstr "وقتی یک مدیر سطح کاربری یک عضو را از طریق مدیریت(داشبورد) تغییر میدهد."
1000
+
1001
+ #: adminpages/emailsettings.php:139 adminpages/emailsettings.php:110
1002
+ #: adminpages/emailsettings.php:128
1003
+ msgid "Cancellation"
1004
+ msgstr "انصراف"
1005
+
1006
+ #: adminpages/emailsettings.php:143 adminpages/emailsettings.php:114
1007
+ #: adminpages/emailsettings.php:132
1008
+ msgid "when a user cancels his or her account."
1009
+ msgstr "وقتی کاربری حساب خود را لغو میکند"
1010
+
1011
+ #: adminpages/emailsettings.php:148 adminpages/emailsettings.php:119
1012
+ #: adminpages/emailsettings.php:137
1013
+ msgid "Bill Updates"
1014
+ msgstr "تغییرات پرداخت ها"
1015
+
1016
+ #: adminpages/emailsettings.php:152 adminpages/emailsettings.php:123
1017
+ #: adminpages/emailsettings.php:141
1018
+ msgid "when a user updates his or her billing information."
1019
+ msgstr "وقتی کاربر اطلاعات پرداختی خود را تغییر میدهد"
1020
+
1021
+ #: adminpages/emailsettings.php:158 adminpages/emailsettings.php:129
1022
+ #: adminpages/emailsettings.php:147
1023
+ msgid "Send members emails"
1024
+ msgstr "ارسال ایمیل های کاربر"
1025
+
1026
+ #: adminpages/emailsettings.php:164 adminpages/emailsettings.php:135
1027
+ #: adminpages/emailsettings.php:153
1028
+ msgid "New Users"
1029
+ msgstr "کاربران جدید"
1030
+
1031
+ #: adminpages/emailsettings.php:168 adminpages/emailsettings.php:139
1032
+ #: adminpages/emailsettings.php:157
1033
+ msgid ""
1034
+ "Default WP notification email. (Recommended: Leave unchecked. Members will still get "
1035
+ "an email confirmation from PMPro after checkout.)"
1036
+ msgstr ""
1037
+ "ایمیل های اطلاع رسانی پیش فرض WP. (ترجیحا تیک نزنید. با این وجود اعضا هنوز هم پس از "
1038
+ "اتمام خرید و پرداخت ایمیل تایید از PMPro دریافت خواهند کرد )"
1039
+
1040
+ #: adminpages/membershiplevels.php:120 adminpages/membershiplevels.php:118
1041
+ msgid "Membership level updated successfully."
1042
+ msgstr "سطح عضویت با موفقیت به روز شد."
1043
+
1044
+ #: adminpages/membershiplevels.php:126 adminpages/membershiplevels.php:124
1045
+ msgid "Error updating membership level."
1046
+ msgstr "خطا در به روز رسانی سطح عضویت."
1047
+
1048
+ #: adminpages/membershiplevels.php:143 adminpages/membershiplevels.php:141
1049
+ msgid "Membership level added successfully."
1050
+ msgstr "سطح عضویت با موفقیت اضافه شد."
1051
+
1052
+ #: adminpages/membershiplevels.php:148 adminpages/membershiplevels.php:146
1053
+ msgid "Error adding membership level."
1054
+ msgstr "خطا در اضافه کردن سطح عضویت."
1055
+
1056
+ #: adminpages/membershiplevels.php:183 adminpages/membershiplevels.php:179
1057
+ #: adminpages/membershiplevels.php:181
1058
+ #, php-format
1059
+ msgid ""
1060
+ "There was an error canceling the subscription for user with ID=%d. You will want to "
1061
+ "check your payment gateway to see if their subscription is still active."
1062
+ msgstr ""
1063
+ "خطا در لغو اشتراک برای کاربر %d وجود دارد. شما ممکن است بخواهید درگاه پرداخت خود را "
1064
+ "بررسی کنید تا از فعال بودن اشتراک آنها مطمئن شوید."
1065
+
1066
+ #: adminpages/membershiplevels.php:186 adminpages/membershiplevels.php:182
1067
+ #: adminpages/membershiplevels.php:184
1068
+ msgid "Last Invoice"
1069
+ msgstr "آخرین صورتحساب"
1070
+
1071
+ #: adminpages/membershiplevels.php:200 adminpages/membershiplevels.php:196
1072
+ #: adminpages/membershiplevels.php:198
1073
+ msgid "Membership level deleted successfully."
1074
+ msgstr "سطح عضویت با موفقیت حذف شد."
1075
+
1076
+ #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:211
1077
+ #: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:203
1078
+ #: adminpages/membershiplevels.php:207 adminpages/membershiplevels.php:209
1079
+ msgid "Error deleting membership level."
1080
+ msgstr "خطا در حذف سطح عضویت."
1081
+
1082
+ #: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:222
1083
+ #: adminpages/membershiplevels.php:224
1084
+ msgid "Edit Membership Level"
1085
+ msgstr "ویرایش سطح عضویت."
1086
+
1087
+ #: adminpages/membershiplevels.php:228 adminpages/membershiplevels.php:224
1088
+ #: adminpages/membershiplevels.php:226
1089
+ msgid "Add New Membership Level"
1090
+ msgstr "افزودن سطح عضویت جدید"
1091
+
1092
+ #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:637
1093
+ #: adminpages/reports/login.php:144 adminpages/membershiplevels.php:291
1094
+ #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:506
1095
+ #: adminpages/membershiplevels.php:512 adminpages/membershiplevels.php:514
1096
+ #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:542
1097
+ #: adminpages/membershiplevels.php:584 adminpages/membershiplevels.php:638
1098
+ #: adminpages/reports/login.php:142
1099
+ msgid "Name"
1100
+ msgstr "نام"
1101
+
1102
+ #: adminpages/membershiplevels.php:318 adminpages/membershiplevels.php:314
1103
+ #: adminpages/membershiplevels.php:316
1104
+ msgid "Confirmation Message"
1105
+ msgstr "پیام تایید"
1106
+
1107
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:638
1108
+ #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1109
+ #: adminpages/membershiplevels.php:338 adminpages/membershiplevels.php:543
1110
+ #: adminpages/membershiplevels.php:585 adminpages/membershiplevels.php:639
1111
+ msgid "Billing Details"
1112
+ msgstr "جزیئات صورتحساب"
1113
+
1114
+ #: adminpages/membershiplevels.php:372
1115
+ #: classes/gateways/class.pmprogateway_stripe.php:630
1116
+ #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1117
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:373
1118
+ #: classes/gateways/class.pmprogateway_stripe.php:619
1119
+ #: classes/gateways/class.pmprogateway_stripe.php:620
1120
+ msgid "per"
1121
+ msgstr "به ازای"
1122
+
1123
+ #: adminpages/membershiplevels.php:387 adminpages/membershiplevels.php:366
1124
+ #: adminpages/membershiplevels.php:385 adminpages/membershiplevels.php:388
1125
+ msgid ""
1126
+ "Stripe integration currently only supports billing periods of \"Week\", \"Month\" or "
1127
+ "\"Year\"."
1128
+ msgstr ""
1129
+ "ادغام Stripe در حال حاضر تنها دوره های زمانی صدور صورت حساب \"هفتگی\"، \"ماهانه\" یا "
1130
+ "\"سالانه\" را پشتیبانی میکند."
1131
+
1132
+ #: adminpages/membershiplevels.php:389 adminpages/membershiplevels.php:366
1133
+ #: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
1134
+ #: adminpages/membershiplevels.php:390
1135
+ msgid ""
1136
+ "Braintree integration currently only supports billing periods of \"Month\" or \"Year"
1137
+ "\"."
1138
+ msgstr ""
1139
+ "ادغام Braintree در حال حاضر تنها دوره های زمانی صدور صورت حساب \"ماهانه\" یا \"سالانه"
1140
+ "\" را پشتیبانی میکند."
1141
+
1142
+ #: adminpages/membershiplevels.php:391 adminpages/membershiplevels.php:368
1143
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:389
1144
+ #: adminpages/membershiplevels.php:392
1145
+ msgid ""
1146
+ "Payflow integration currently only supports billing frequencies of 1 and billing "
1147
+ "periods of \"Week\", \"Month\" or \"Year\"."
1148
+ msgstr ""
1149
+ "ادغام Payflow در حال حاضر تنها دوره های زمانی صدور صورت حساب \"هفتگی\"، \"ماهانه\" یا "
1150
+ "\"سالانه\" را پشتیبانی میکند."
1151
+
1152
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:372
1153
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:393
1154
+ #: adminpages/membershiplevels.php:396
1155
+ msgid ""
1156
+ "After saving this level, make note of the ID and create a \"Plan\" in your Braintree "
1157
+ "dashboard with the same settings and the \"Plan ID\" set to <em>pmpro_#</em>, where # "
1158
+ "is the level ID."
1159
+ msgstr ""
1160
+ "بعد از ذخیره این سطح، از شناسه آن یادداشت بردارید و یک \"Plan\" در داشبورد Braintree "
1161
+ "با تنظیمات مشابه ایجاد کرده و در قسمت \"Plan ID\" عبارت <em>pmpro_#</em> را وارد "
1162
+ "کنید، به طوریکه به جای # شناسه سطح را وارد نمایید."
1163
+
1164
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1165
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
1166
+ #: classes/gateways/class.pmprogateway_paypal.php:118
1167
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1168
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1169
+ #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1170
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
1171
+ #: adminpages/membershiplevels.php:396 adminpages/membershiplevels.php:398
1172
+ #: adminpages/paymentsettings.php:170 adminpages/paymentsettings.php:174
1173
+ #: adminpages/paymentsettings.php:179
1174
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1175
+ msgid "Note"
1176
+ msgstr "یادداشت"
1177
+
1178
+ #: adminpages/membershiplevels.php:397 adminpages/membershiplevels.php:374
1179
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:395
1180
+ #: adminpages/membershiplevels.php:398
1181
+ msgid ""
1182
+ "You will need to create a \"Plan\" in your Braintree dashboard with the same settings "
1183
+ "and the \"Plan ID\" set to"
1184
+ msgstr ""
1185
+ "یک \"Plan\" در داشبورد Braintree خود با تنظیمات مشابه و \"Plan ID\" سطح مربوطه ایجاد "
1186
+ "کنید"
1187
+
1188
+ #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:386
1189
+ #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
1190
+ #: adminpages/membershiplevels.php:410
1191
+ msgid ""
1192
+ "Stripe integration currently does not support billing limits. You can still set an "
1193
+ "expiration date below."
1194
+ msgstr ""
1195
+ "ادغام Stripe در حال حاضر محدودیت های صدور صورت حساب را پشتیبانی نمیکند. شما همچنان می "
1196
+ "توانید تاریخ انقضا را در زیر مشخص کنید"
1197
+
1198
+ #: adminpages/membershiplevels.php:421 adminpages/membershiplevels.php:398
1199
+ #: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
1200
+ #: adminpages/membershiplevels.php:422
1201
+ msgid ""
1202
+ "2Checkout integration does not support custom trials. You can do one period trials by "
1203
+ "setting an initial payment different from the billing amount."
1204
+ msgstr ""
1205
+ "ادغام 2Checkout در حال حاضر از دوره های آزمایشی سفارشی پشتیبانی نمیکند. میتوانید یک "
1206
+ "دوره آزمایشی را با تنظیم یک پرداخت اولیه مجزا از مقدار صورت حساب انجام دهید."
1207
+
1208
+ #: adminpages/membershiplevels.php:443 adminpages/membershiplevels.php:406
1209
+ #: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
1210
+ #: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:444
1211
+ msgid "Stripe integration currently does not support trial amounts greater than $0."
1212
+ msgstr ""
1213
+ "ادغام Stripe در حال حاضر دوره آزمایشی با مقادیر بالاتر از 0$ را پشتیبانی نمیکند."
1214
+
1215
+ #: adminpages/membershiplevels.php:447 adminpages/membershiplevels.php:410
1216
+ #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
1217
+ #: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:448
1218
+ msgid "Braintree integration currently does not support trial amounts greater than $0."
1219
+ msgstr ""
1220
+ "ادغام Braintree در حال حاضر دوره آزمایشی با مقادیر بالاتر از 0$ را پشتیبانی نمیکند."
1221
+
1222
+ #: adminpages/membershiplevels.php:451 adminpages/membershiplevels.php:414
1223
+ #: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
1224
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:452
1225
+ msgid "Payflow integration currently does not support trial amounts greater than $0."
1226
+ msgstr ""
1227
+ "ادغام Payflow در حال حاضر دوره آزمایشی با مقادیر بالاتر از 0$ را پشتیبانی نمیکند."
1228
+
1229
+ #: adminpages/membershiplevels.php:460 adminpages/membershiplevels.php:422
1230
+ #: adminpages/membershiplevels.php:428 adminpages/membershiplevels.php:430
1231
+ #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:458
1232
+ #: adminpages/membershiplevels.php:461
1233
+ msgid "Other Settings"
1234
+ msgstr "تنظیمات دیگر"
1235
+
1236
+ #: adminpages/membershiplevels.php:464 adminpages/membershiplevels.php:426
1237
+ #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:434
1238
+ #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:462
1239
+ #: adminpages/membershiplevels.php:465
1240
+ msgid "Disable New Signups"
1241
+ msgstr "غیرفعالسازی ثبت نام جدید"
1242
+
1243
+ #: adminpages/membershiplevels.php:465 adminpages/membershiplevels.php:427
1244
+ #: adminpages/membershiplevels.php:433 adminpages/membershiplevels.php:435
1245
+ #: adminpages/membershiplevels.php:462 adminpages/membershiplevels.php:463
1246
+ #: adminpages/membershiplevels.php:466
1247
+ msgid ""
1248
+ "Check to hide this level from the membership levels page and disable registration."
1249
+ msgstr "برای مخفی سازی این سطح از لیست سطوح عضویت و غیرفعال سازی ثبت نام، علامت بزنید."
1250
+
1251
+ #: adminpages/membershiplevels.php:495 adminpages/membershiplevels.php:457
1252
+ #: adminpages/membershiplevels.php:463 adminpages/membershiplevels.php:465
1253
+ #: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:493
1254
+ #: adminpages/membershiplevels.php:496
1255
+ msgid "Content Settings"
1256
+ msgstr "تنظیمات محتوا"
1257
+
1258
+ #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:461
1259
+ #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
1260
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:497
1261
+ #: adminpages/membershiplevels.php:500
1262
+ msgid "Categories"
1263
+ msgstr "دسته بندی ها"
1264
+
1265
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:517
1266
+ msgid "Save Level"
1267
+ msgstr "ذخیره سطح"
1268
+
1269
+ #: adminpages/membershiplevels.php:517 adminpages/orders.php:561 pages/billing.php:339
1270
+ #: pages/cancel.php:71 shortcodes/pmpro_account.php:70
1271
+ #: adminpages/membershiplevels.php:518 adminpages/orders.php:511 pages/account.php:44
1272
+ #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1273
+ msgid "Cancel"
1274
+ msgstr "لغو کردن"
1275
+
1276
+ #: adminpages/membershiplevels.php:618 adminpages/membershiplevels.php:490
1277
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1278
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
1279
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:619
1280
+ msgid "Add New Level"
1281
+ msgstr "افزودن سطح جدید"
1282
+
1283
+ #: adminpages/membershiplevels.php:621 adminpages/membershiplevels.php:624
1284
+ #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1285
+ #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1286
+ #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
1287
+ #: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:529
1288
+ #: adminpages/membershiplevels.php:531 adminpages/membershiplevels.php:532
1289
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:575
1290
+ #: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
1291
+ msgid "Search Levels"
1292
+ msgstr "جستجو تمام سطوح"
1293
+
1294
+ #: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:579
1295
+ #: adminpages/membershiplevels.php:631
1296
+ msgid "Drag and drop membership levels to reorder them on the Levels page."
1297
+ msgstr "برای جابجایی ترتیب سطوح عضویت را بکشید و رها کنید تا در صفحه سطوح مرتب شوند."
1298
+
1299
+ #: adminpages/membershiplevels.php:639 pages/cancel.php:53 pages/confirmation.php:83
1300
+ #: pages/invoice.php:70 shortcodes/pmpro_account.php:46
1301
+ #: adminpages/membershiplevels.php:510 adminpages/membershiplevels.php:516
1302
+ #: adminpages/membershiplevels.php:518 adminpages/membershiplevels.php:544
1303
+ #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:586
1304
+ #: adminpages/membershiplevels.php:640 pages/account.php:20 pages/confirmation.php:81
1305
+ #: pages/invoice.php:68
1306
+ msgid "Expiration"
1307
+ msgstr "انقضا"
1308
+
1309
+ #: adminpages/membershiplevels.php:640 adminpages/membershiplevels.php:511
1310
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1311
+ #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1312
+ #: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:641
1313
+ msgid "Allow Signups"
1314
+ msgstr "اجازه ثبت نام"
1315
+
1316
+ #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:534
1317
+ #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1318
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1319
+ #: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:656
1320
+ msgid "FREE"
1321
+ msgstr "رایگان"
1322
+
1323
+ #: adminpages/membershiplevels.php:664 adminpages/membershiplevels.php:560
1324
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1325
+ #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1326
+ #: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:665
1327
+ msgid "After"
1328
+ msgstr "بعد از"
1329
+
1330
+ #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:566
1331
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
1332
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
1333
+ #: adminpages/membershiplevels.php:660
1334
+ #, php-format
1335
+ msgid ""
1336
+ "Are you sure you want to delete membership level %s? All subscriptions will be "
1337
+ "cancelled."
1338
+ msgstr ""
1339
+ "آیا از حذف سطح عضویت %s اطمینان دارید؟ تمامی اشتراک های مربوط به این سطح لغو می شوند."
1340
+
1341
+ #: adminpages/membershiplevels.php:669 adminpages/orders.php:995
1342
+ #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1343
+ #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1344
+ #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1345
+ #: adminpages/membershiplevels.php:670 adminpages/orders.php:661
1346
+ #: adminpages/orders.php:964 adminpages/orders.php:982 adminpages/orders.php:992
1347
+ msgid "copy"
1348
+ msgstr "کپی کردن"
1349
+
1350
+ #: adminpages/memberslist.php:25 includes/adminpages.php:53 includes/adminpages.php:153
1351
+ #: includes/adminpages.php:15 includes/adminpages.php:74 includes/adminpages.php:142
1352
+ #: includes/adminpages.php:149
1353
+ msgid "Members List"
1354
+ msgstr "لیست اعضا"
1355
+
1356
+ #: adminpages/memberslist.php:26 adminpages/orders.php:591 adminpages/orders.php:522
1357
+ msgid "Export to CSV"
1358
+ msgstr "ذخیره با فرمت CSV"
1359
+
1360
+ #: adminpages/memberslist.php:30 adminpages/orders.php:603
1361
+ #: adminpages/reports/login.php:67 adminpages/reports/memberships.php:292
1362
+ #: adminpages/reports/sales.php:193 adminpages/reports/login.php:65
1363
+ #: adminpages/reports/sales.php:185 adminpages/reports/sales.php:194
1364
+ msgid "Show"
1365
+ msgstr "نمایش"
1366
+
1367
+ #: adminpages/memberslist.php:32 adminpages/reports/login.php:69
1368
+ #: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:216
1369
+ #: adminpages/reports/login.php:67 adminpages/reports/sales.php:208
1370
+ #: adminpages/reports/sales.php:217
1371
+ msgid "All Levels"
1372
+ msgstr "همه سطوح"
1373
+
1374
+ #: adminpages/memberslist.php:42
1375
+ msgid "Cancelled Members"
1376
+ msgstr "عضویت های لغو شده"
1377
+
1378
+ #: adminpages/memberslist.php:43
1379
+ msgid "Expired Members"
1380
+ msgstr "عضویت های منقضی شده"
1381
+
1382
+ #: adminpages/memberslist.php:44 adminpages/memberslist.php:42
1383
+ msgid "Old Members"
1384
+ msgstr "اعضای پیشین"
1385
+
1386
+ #: adminpages/memberslist.php:49 adminpages/memberslist.php:52
1387
+ #: adminpages/memberslist.php:46 adminpages/memberslist.php:47
1388
+ #: adminpages/memberslist.php:50
1389
+ msgid "Search Members"
1390
+ msgstr "جستجوی اعضا"
1391
+
1392
+ #: adminpages/memberslist.php:156 adminpages/memberslist.php:103
1393
+ #: adminpages/memberslist.php:136 adminpages/memberslist.php:146
1394
+ #, php-format
1395
+ msgid "%d members found."
1396
+ msgstr "%d عضو یافت شد"
1397
+
1398
+ #: adminpages/memberslist.php:165 pages/checkout.php:180
1399
+ #: shortcodes/pmpro_account.php:105 adminpages/memberslist.php:112
1400
+ #: adminpages/memberslist.php:145 adminpages/memberslist.php:155 pages/account.php:51
1401
+ #: pages/account.php:55 pages/account.php:76 pages/checkout.php:168
1402
+ #: pages/checkout.php:171 pages/checkout.php:173
1403
+ msgid "Username"
1404
+ msgstr "نام کاربری"
1405
+
1406
+ #: adminpages/memberslist.php:166 adminpages/memberslist.php:113
1407
+ #: adminpages/memberslist.php:146 adminpages/memberslist.php:156
1408
+ msgid "First&nbsp;Name"
1409
+ msgstr "نام&nbsp;"
1410
+
1411
+ #: adminpages/memberslist.php:167 adminpages/memberslist.php:114
1412
+ #: adminpages/memberslist.php:147 adminpages/memberslist.php:157
1413
+ msgid "Last&nbsp;Name"
1414
+ msgstr "نام&nbsp;خانوادگی"
1415
+
1416
+ #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:311
1417
+ #: pages/confirmation.php:61 pages/invoice.php:48 adminpages/memberslist.php:117
1418
+ #: adminpages/memberslist.php:150 adminpages/memberslist.php:160 pages/account.php:90
1419
+ #: pages/account.php:94 pages/billing.php:58 pages/billing.php:62 pages/checkout.php:298
1420
+ #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:314
1421
+ #: pages/checkout.php:321 pages/confirmation.php:59 pages/invoice.php:46
1422
+ msgid "Billing Address"
1423
+ msgstr "آدرس صورت حساب"
1424
+
1425
+ #: adminpages/memberslist.php:171 adminpages/reports/login.php:145
1426
+ #: classes/gateways/class.pmprogateway_authorizenet.php:303
1427
+ #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1428
+ #: adminpages/memberslist.php:161 adminpages/pagesettings.php:51
1429
+ #: adminpages/reports/login.php:143
1430
+ #: classes/gateways/class.pmprogateway_authorizenet.php:187
1431
+ msgid "Membership"
1432
+ msgstr "عضویت"
1433
+
1434
+ #: adminpages/memberslist.php:172 adminpages/memberslist.php:119
1435
+ #: adminpages/memberslist.php:152 adminpages/memberslist.php:162
1436
+ msgid "Fee"
1437
+ msgstr "هزینه"
1438
+
1439
+ #: adminpages/memberslist.php:173 adminpages/reports/login.php:146
1440
+ #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1441
+ #: adminpages/memberslist.php:163 adminpages/reports/login.php:144
1442
+ msgid "Joined"
1443
+ msgstr "عضو شده"
1444
+
1445
+ #: adminpages/memberslist.php:177 adminpages/memberslist.php:157
1446
+ #: adminpages/memberslist.php:167
1447
+ msgid "Ended"
1448
+ msgstr "به اتمام رسیده"
1449
+
1450
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:212
1451
+ #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1452
+ #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1453
+ msgid "No members found."
1454
+ msgstr "عضوی یافت نشد."
1455
+
1456
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:212
1457
+ #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1458
+ #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1459
+ msgid "Search all levels"
1460
+ msgstr "جستجو تمام سطوح"
1461
+
1462
+ #: adminpages/orders.php:67 adminpages/orders.php:26
1463
+ msgid "Order deleted successfully."
1464
+ msgstr "سفارش با موفقیت حذف شد."
1465
+
1466
+ #: adminpages/orders.php:72 adminpages/orders.php:31
1467
+ msgid "Error deleting order."
1468
+ msgstr "خطا در حذف سفارش."
1469
+
1470
+ #: adminpages/orders.php:169 adminpages/orders.php:119
1471
+ msgid "Order saved successfully."
1472
+ msgstr "سفارش با موفقیت ذخیره شد."
1473
+
1474
+ #: adminpages/orders.php:174 adminpages/orders.php:124
1475
+ msgid "Error updating order timestamp."
1476
+ msgstr "خطا در به روز کردن زمان سفارش."
1477
+
1478
+ #: adminpages/orders.php:180 adminpages/orders.php:130
1479
+ msgid "Error saving order."
1480
+ msgstr "خطا در ذخیره سفارش."
1481
+
1482
+ #: adminpages/orders.php:245 adminpages/orders.php:195
1483
+ msgid "Order"
1484
+ msgstr "سفارش"
1485
+
1486
+ #: adminpages/orders.php:247 adminpages/orders.php:197
1487
+ msgid "New Order"
1488
+ msgstr "سفارش جدید"
1489
+
1490
+ #: adminpages/orders.php:270 adminpages/orders.php:220
1491
+ msgid "Randomly generated for you."
1492
+ msgstr "به صورت تصادفی برای شما تولید شده است."
1493
+
1494
+ #: adminpages/orders.php:275 adminpages/orders.php:225
1495
+ msgid "User ID"
1496
+ msgstr "شناسه کاربر"
1497
+
1498
+ #: adminpages/orders.php:284 adminpages/orders.php:234
1499
+ msgid "Membership Level ID"
1500
+ msgstr "شناسه سطح عضویت"
1501
+
1502
+ #: adminpages/orders.php:293 adminpages/orders.php:243
1503
+ msgid "Billing Name"
1504
+ msgstr "نام در صورت حساب"
1505
+
1506
+ #: adminpages/orders.php:301 adminpages/orders.php:251
1507
+ msgid "Billing Street"
1508
+ msgstr "خیابان محل صورت حساب"
1509
+
1510
+ #: adminpages/orders.php:308 adminpages/orders.php:258
1511
+ msgid "Billing City"
1512
+ msgstr "شهر صورت حساب"
1513
+
1514
+ #: adminpages/orders.php:315 adminpages/orders.php:265
1515
+ msgid "Billing State"
1516
+ msgstr "ایالت صورت حساب"
1517
+
1518
+ #: adminpages/orders.php:322 adminpages/orders.php:272
1519
+ msgid "Billing Postal Code"
1520
+ msgstr "کد پستی صورت حساب"
1521
+
1522
+ #: adminpages/orders.php:329 adminpages/orders.php:279
1523
+ msgid "Billing Country"
1524
+ msgstr "کشور صورت حساب"
1525
+
1526
+ #: adminpages/orders.php:337 adminpages/orders.php:287
1527
+ msgid "Billing Phone"
1528
+ msgstr "تلفن صورت حساب"
1529
+
1530
+ #: adminpages/orders.php:346 adminpages/orders.php:296
1531
+ msgid "Sub Total"
1532
+ msgstr "جمع کل"
1533
+
1534
+ #: adminpages/orders.php:354 pages/invoice.php:80 adminpages/orders.php:304
1535
+ #: pages/invoice.php:78
1536
+ msgid "Tax"
1537
+ msgstr "مالیات"
1538
+
1539
+ #: adminpages/orders.php:362 adminpages/orders.php:312
1540
+ msgid "Coupon Amount"
1541
+ msgstr "مقدار کپن"
1542
+
1543
+ #: adminpages/orders.php:370 adminpages/orders.php:915 pages/invoice.php:84
1544
+ #: adminpages/orders.php:320 adminpages/orders.php:602 adminpages/orders.php:905
1545
+ #: pages/invoice.php:82
1546
+ msgid "Total"
1547
+ msgstr "مجموع"
1548
+
1549
+ #: adminpages/orders.php:375 adminpages/orders.php:325
1550
+ msgid "Should be subtotal + tax - couponamount."
1551
+ msgstr "باید جمع کل + مالیات - مقدار کوپن شود."
1552
+
1553
+ #: adminpages/orders.php:380 adminpages/orders.php:330
1554
+ msgid "Payment Type"
1555
+ msgstr "نوع پرداخت"
1556
+
1557
+ #: adminpages/orders.php:385 adminpages/orders.php:335
1558
+ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1559
+ msgstr "به عنوان مثال، پی پال اکسپرس، پی پال استاندارد، کارت اعتباری."
1560
+
1561
+ #: adminpages/orders.php:389 classes/gateways/class.pmprogateway_braintree.php:304
1562
+ #: classes/gateways/class.pmprogateway_stripe.php:419 pages/billing.php:247
1563
+ #: pages/checkout.php:516 adminpages/orders.php:339
1564
+ #: classes/gateways/class.pmprogateway_braintree.php:291
1565
+ #: classes/gateways/class.pmprogateway_stripe.php:408
1566
+ #: classes/gateways/class.pmprogateway_stripe.php:409 pages/billing.php:234
1567
+ #: pages/billing.php:238 pages/checkout.php:493 pages/checkout.php:507
1568
+ #: pages/checkout.php:510 pages/checkout.php:517
1569
+ msgid "Card Type"
1570
+ msgstr "نوع کارت"
1571
+
1572
+ #: adminpages/orders.php:394 adminpages/orders.php:344
1573
+ msgid "e.g. Visa, MasterCard, AMEX, etc"
1574
+ msgstr "به عنوان مثال، ویزا، مسترکارد، AMEX، و غیره"
1575
+
1576
+ #: adminpages/orders.php:398 classes/gateways/class.pmprogateway_twocheckout.php:148
1577
+ #: adminpages/orders.php:348 adminpages/paymentsettings.php:347
1578
+ #: adminpages/paymentsettings.php:352
1579
+ #: classes/gateways/class.pmprogateway_twocheckout.php:129
1580
+ msgid "Account Number"
1581
+ msgstr "شماره حساب"
1582
+
1583
+ #: adminpages/orders.php:403 adminpages/orders.php:353
1584
+ msgid "Obscure all but last 4 digits."
1585
+ msgstr "عدم نمایش به جز 4 رقم آخر"
1586
+
1587
+ #: adminpages/orders.php:408 adminpages/orders.php:358
1588
+ msgid "Expiration Month"
1589
+ msgstr "ماه انقضا"
1590
+
1591
+ #: adminpages/orders.php:415 adminpages/orders.php:365
1592
+ msgid "Expiration Year"
1593
+ msgstr "سال انقضا"
1594
+
1595
+ #: adminpages/orders.php:423 adminpages/orders.php:919 adminpages/orders.php:373
1596
+ #: adminpages/orders.php:606 adminpages/orders.php:909
1597
+ msgid "Status"
1598
+ msgstr "وضعیت"
1599
+
1600
+ #: adminpages/orders.php:444 adminpages/orders.php:917 adminpages/orders.php:394
1601
+ #: adminpages/orders.php:604 adminpages/orders.php:907
1602
+ msgid "Gateway"
1603
+ msgstr "درگاه پرداخت"
1604
+
1605
+ #: adminpages/orders.php:462 adminpages/paymentsettings.php:124
1606
+ #: adminpages/orders.php:411 adminpages/orders.php:461
1607
+ #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
1608
+ #: adminpages/paymentsettings.php:184
1609
+ msgid "Gateway Environment"
1610
+ msgstr "محیط درگاه"
1611
+
1612
+ #: adminpages/orders.php:466 adminpages/paymentsettings.php:128
1613
+ #: adminpages/orders.php:415 adminpages/orders.php:465
1614
+ #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
1615
+ #: adminpages/paymentsettings.php:188
1616
+ msgid "Sandbox/Testing"
1617
+ msgstr "Sandbox/تست"
1618
+
1619
+ #: adminpages/orders.php:467 adminpages/paymentsettings.php:129
1620
+ #: adminpages/orders.php:416 adminpages/orders.php:466
1621
+ #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
1622
+ #: adminpages/paymentsettings.php:189
1623
+ msgid "Live/Production"
1624
+ msgstr "زنده / تولید"
1625
+
1626
+ #: adminpages/orders.php:474 adminpages/orders.php:423 adminpages/orders.php:473
1627
+ msgid "Payment Transaction ID"
1628
+ msgstr "شناسه تراکنش پرداخت"
1629
+
1630
+ #: adminpages/orders.php:479 adminpages/orders.php:428 adminpages/orders.php:478
1631
+ msgid "Generated by the gateway. Useful to cross reference orders."
1632
+ msgstr "تولید شده توسط درگاه."
1633
+
1634
+ #: adminpages/orders.php:483 adminpages/orders.php:432 adminpages/orders.php:482
1635
+ msgid "Subscription Transaction ID"
1636
+ msgstr "شناسه تراکنش اشتراک"
1637
+
1638
+ #: adminpages/orders.php:488 adminpages/orders.php:437 adminpages/orders.php:487
1639
+ msgid "Generated by the gateway. Useful to cross reference subscriptions."
1640
+ msgstr "تولید شده توسط درگاه."
1641
+
1642
+ #: adminpages/orders.php:493 adminpages/orders.php:920 pages/invoice.php:107
1643
+ #: shortcodes/pmpro_account.php:122 adminpages/orders.php:442 adminpages/orders.php:492
1644
+ #: adminpages/orders.php:607 adminpages/orders.php:910 pages/account.php:91
1645
+ #: pages/invoice.php:105
1646
+ msgid "Date"
1647
+ msgstr "تاریخ"
1648
+
1649
+ #: adminpages/orders.php:527 adminpages/orders.php:477
1650
+ msgid "Affiliate ID"
1651
+ msgstr "شناسه بازاریاب"
1652
+
1653
+ #: adminpages/orders.php:535 adminpages/orders.php:485
1654
+ msgid "Affiliate SubID"
1655
+ msgstr "شناسه زیر دسته بازاریاب"
1656
+
1657
+ #: adminpages/orders.php:545 adminpages/orders.php:495
1658
+ msgid "Notes"
1659
+ msgstr "یادداشت ها"
1660
+
1661
+ #: adminpages/orders.php:560 adminpages/orders.php:510
1662
+ msgid "Save Order"
1663
+ msgstr "ذخیره سفارش"
1664
+
1665
+ #: adminpages/orders.php:570 includes/adminpages.php:55 includes/adminpages.php:167
1666
+ #: adminpages/orders.php:520 includes/adminpages.php:17 includes/adminpages.php:84
1667
+ #: includes/adminpages.php:156 includes/adminpages.php:163
1668
+ msgid "Orders"
1669
+ msgstr "سفارشات"
1670
+
1671
+ #: adminpages/orders.php:571 adminpages/orders.php:521
1672
+ msgid "Add New Order"
1673
+ msgstr "افزودن سفارش جدید"
1674
+
1675
+ #: adminpages/orders.php:606
1676
+ msgid "Within a Date Range"
1677
+ msgstr "در یک محدوده زمانی"
1678
+
1679
+ #: adminpages/orders.php:607
1680
+ msgid "Predefined Date Range"
1681
+ msgstr "محدوده زمانی پیش تعریف شده"
1682
+
1683
+ #: adminpages/orders.php:608
1684
+ msgid "Within a Level"
1685
+ msgstr "در یک سطح"
1686
+
1687
+ #: adminpages/orders.php:609
1688
+ msgid "Within a Status"
1689
+ msgstr "در یک وضعیت"
1690
+
1691
+ #: adminpages/orders.php:612
1692
+ msgid "From"
1693
+ msgstr "از"
1694
+
1695
+ #: adminpages/orders.php:624
1696
+ msgid "To"
1697
+ msgstr "به"
1698
+
1699
+ #: adminpages/orders.php:636
1700
+ msgid "filter by "
1701
+ msgstr "فیلتر بر اساس"
1702
+
1703
+ #: adminpages/orders.php:674
1704
+ msgid "Filter"
1705
+ msgstr "فیلتر"
1706
+
1707
+ #: adminpages/orders.php:777 adminpages/orders.php:780 adminpages/orders.php:535
1708
+ #: adminpages/orders.php:538
1709
+ msgid "Search Orders"
1710
+ msgstr "جستجوی سفارش"
1711
+
1712
+ #: adminpages/orders.php:903 adminpages/orders.php:590 adminpages/orders.php:893
1713
+ #, php-format
1714
+ msgid "%d orders found."
1715
+ msgstr "%d سفارش یافت شد"
1716
+
1717
+ #: adminpages/orders.php:912 adminpages/reports/login.php:143
1718
+ #: classes/gateways/class.pmprogateway_payflowpro.php:116 adminpages/orders.php:599
1719
+ #: adminpages/orders.php:902 adminpages/paymentsettings.php:211
1720
+ #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
1721
+ #: adminpages/reports/login.php:141
1722
+ msgid "User"
1723
+ msgstr "کاربر"
1724
+
1725
+ #: adminpages/orders.php:914 includes/init.php:230 includes/profile.php:27
1726
+ #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
1727
+ #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1728
+ #: adminpages/orders.php:601 adminpages/orders.php:904 includes/init.php:214
1729
+ #: includes/init.php:217 includes/init.php:218 includes/init.php:220
1730
+ #: includes/init.php:222 includes/profile.php:25 pages/checkout.php:33
1731
+ #: pages/checkout.php:34 pages/checkout.php:35 pages/confirmation.php:46
1732
+ #: pages/confirmation.php:62 pages/confirmation.php:103 pages/invoice.php:27
1733
+ #: pages/invoice.php:49
1734
+ msgid "Membership Level"
1735
+ msgstr "سطح عضویت"
1736
+
1737
+ #: adminpages/orders.php:916 adminpages/orders.php:982 adminpages/orders.php:603
1738
+ #: adminpages/orders.php:651 adminpages/orders.php:906 adminpages/orders.php:954
1739
+ #: adminpages/orders.php:972
1740
+ msgid "Payment"
1741
+ msgstr "پرداختی"
1742
+
1743
+ #: adminpages/orders.php:918 adminpages/orders.php:605 adminpages/orders.php:908
1744
+ msgid "Transaction IDs"
1745
+ msgstr "شناسه تراکنش"
1746
+
1747
+ #: adminpages/orders.php:943 adminpages/orders.php:630 adminpages/orders.php:933
1748
+ msgid "deleted"
1749
+ msgstr "پاک شد"
1750
+
1751
+ #: adminpages/orders.php:984 adminpages/orders.php:653 adminpages/orders.php:956
1752
+ #: adminpages/orders.php:974
1753
+ msgid "Subscription"
1754
+ msgstr "اشتراک"
1755
+
1756
+ #: adminpages/orders.php:998 adminpages/orders.php:664 adminpages/orders.php:967
1757
+ #: adminpages/orders.php:985 adminpages/orders.php:995
1758
+ #, php-format
1759
+ msgid ""
1760
+ "Deleting orders is permanent and can affect active users. Are you sure you want to "
1761
+ "delete order %s?"
1762
+ msgstr ""
1763
+ "حذف سفارشات دائمی است و این می تواند روی کاربران فعال تاثیر بگذارد. آیا شما برای حذف "
1764
+ "سفارش %s اطمینان دارید؟"
1765
+
1766
+ #: adminpages/orders.php:1008 adminpages/orders.php:674 adminpages/orders.php:977
1767
+ #: adminpages/orders.php:995 adminpages/orders.php:1005
1768
+ msgid "No orders found."
1769
+ msgstr "سفارشی یافت نشد."
1770
+
1771
+ #: adminpages/pagesettings.php:54
1772
+ msgid "Your page settings have been updated."
1773
+ msgstr "تنظیمات صفحه شما به روز شده است."
1774
+
1775
+ #: adminpages/pagesettings.php:64 adminpages/pagesettings.php:51
1776
+ msgid "Membership Account"
1777
+ msgstr "حساب کاربری"
1778
+
1779
+ #: adminpages/pagesettings.php:65 adminpages/pagesettings.php:54
1780
+ msgid "Membership Billing"
1781
+ msgstr "صورتحساب کاربری"
1782
+
1783
+ #: adminpages/pagesettings.php:66 adminpages/pagesettings.php:57
1784
+ msgid "Membership Cancel"
1785
+ msgstr "لغو کاربری"
1786
+
1787
+ #: adminpages/pagesettings.php:67 adminpages/pagesettings.php:60
1788
+ msgid "Membership Checkout"
1789
+ msgstr "پرداخت کاربری"
1790
+
1791
+ #: adminpages/pagesettings.php:68 adminpages/pagesettings.php:63
1792
+ msgid "Membership Confirmation"
1793
+ msgstr "تاییدیه کاربری"
1794
+
1795
+ #: adminpages/pagesettings.php:69 adminpages/pagesettings.php:66
1796
+ msgid "Membership Invoice"
1797
+ msgstr "فاکتور کاربری"
1798
+
1799
+ #: adminpages/pagesettings.php:83 adminpages/pagesettings.php:111
1800
+ msgid "The following pages have been created for you"
1801
+ msgstr "صفحات زیر برای شما ایجاد شدند"
1802
+
1803
+ #: adminpages/pagesettings.php:97 adminpages/pagesettings.php:98
1804
+ #: adminpages/pagesettings.php:126
1805
+ msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page."
1806
+ msgstr "مدیریت صفحات وردپرس اختصاص یافته به هر صفحه PMPro مورد نیاز."
1807
+
1808
+ #: adminpages/pagesettings.php:101 adminpages/pagesettings.php:104
1809
+ #: adminpages/pagesettings.php:132
1810
+ msgid "Assign the WordPress pages for each required Paid Memberships Pro page or"
1811
+ msgstr "اختصاص صفحات وردپرس برای هر صفحه PMPro مورد نیاز."
1812
+
1813
+ #: adminpages/pagesettings.php:102 adminpages/pagesettings.php:104
1814
+ #: adminpages/pagesettings.php:132
1815
+ msgid "click here to let us generate them for you"
1816
+ msgstr "برای ایجاد صفحات به طور خودکار اینجا کلیک کنید"
1817
+
1818
+ #: adminpages/pagesettings.php:111 adminpages/pagesettings.php:112
1819
+ #: adminpages/pagesettings.php:140
1820
+ msgid "Account Page"
1821
+ msgstr "صفحه حساب کاربری"
1822
+
1823
+ #: adminpages/pagesettings.php:115 adminpages/pagesettings.php:133
1824
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:170
1825
+ #: adminpages/pagesettings.php:189 adminpages/pagesettings.php:209
1826
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:268
1827
+ #: adminpages/pagesettings.php:144 adminpages/pagesettings.php:147
1828
+ #: adminpages/pagesettings.php:159 adminpages/pagesettings.php:162
1829
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:177
1830
+ #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:193
1831
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:222
1832
+ #: adminpages/pagesettings.php:225 adminpages/pagesettings.php:238
1833
+ #: adminpages/pagesettings.php:241
1834
+ msgid "Choose One"
1835
+ msgstr "انتخاب یکی"
1836
+
1837
+ #: adminpages/pagesettings.php:119 adminpages/pagesettings.php:137
1838
+ #: adminpages/pagesettings.php:155 adminpages/pagesettings.php:174
1839
+ #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:213
1840
+ #: adminpages/pagesettings.php:232 adminpages/pagesettings.php:274
1841
+ #: adminpages/pagesettings.php:132 adminpages/pagesettings.php:134
1842
+ #: adminpages/pagesettings.php:145 adminpages/pagesettings.php:147
1843
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:150
1844
+ #: adminpages/pagesettings.php:159 adminpages/pagesettings.php:162
1845
+ #: adminpages/pagesettings.php:165 adminpages/pagesettings.php:173
1846
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:180
1847
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:187
1848
+ #: adminpages/pagesettings.php:196 adminpages/pagesettings.php:197
1849
+ #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:209
1850
+ #: adminpages/pagesettings.php:212 adminpages/pagesettings.php:225
1851
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:241
1852
+ #: adminpages/pagesettings.php:244
1853
+ msgid "edit page"
1854
+ msgstr "ویرایش صفحه"
1855
+
1856
+ #: adminpages/pagesettings.php:122 adminpages/pagesettings.php:140
1857
+ #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:177
1858
+ #: adminpages/pagesettings.php:196 adminpages/pagesettings.php:216
1859
+ #: adminpages/pagesettings.php:235 adminpages/pagesettings.php:277
1860
+ #: adminpages/pagesettings.php:121 adminpages/pagesettings.php:136
1861
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:151
1862
+ #: adminpages/pagesettings.php:152 adminpages/pagesettings.php:164
1863
+ #: adminpages/pagesettings.php:167 adminpages/pagesettings.php:179
1864
+ #: adminpages/pagesettings.php:182 adminpages/pagesettings.php:183
1865
+ #: adminpages/pagesettings.php:195 adminpages/pagesettings.php:198
1866
+ #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:211
1867
+ #: adminpages/pagesettings.php:214 adminpages/pagesettings.php:215
1868
+ #: adminpages/pagesettings.php:227 adminpages/pagesettings.php:230
1869
+ #: adminpages/pagesettings.php:243 adminpages/pagesettings.php:246
1870
+ msgid "view page"
1871
+ msgstr "نمایش صفحه"
1872
+
1873
+ #: adminpages/pagesettings.php:125 adminpages/pagesettings.php:143
1874
+ #: adminpages/pagesettings.php:161 adminpages/pagesettings.php:180
1875
+ #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:219
1876
+ #: adminpages/pagesettings.php:238 adminpages/pagesettings.php:121
1877
+ #: adminpages/pagesettings.php:123 adminpages/pagesettings.php:134
1878
+ #: adminpages/pagesettings.php:138 adminpages/pagesettings.php:147
1879
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:153
1880
+ #: adminpages/pagesettings.php:154 adminpages/pagesettings.php:166
1881
+ #: adminpages/pagesettings.php:169 adminpages/pagesettings.php:175
1882
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:184
1883
+ #: adminpages/pagesettings.php:185 adminpages/pagesettings.php:189
1884
+ #: adminpages/pagesettings.php:197 adminpages/pagesettings.php:200
1885
+ #: adminpages/pagesettings.php:201 adminpages/pagesettings.php:203
1886
+ #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:216
1887
+ #: adminpages/pagesettings.php:217 adminpages/pagesettings.php:229
1888
+ #: adminpages/pagesettings.php:232 adminpages/pagesettings.php:245
1889
+ #: adminpages/pagesettings.php:248
1890
+ msgid "Include the shortcode"
1891
+ msgstr "شامل کد کوتاه"
1892
+
1893
+ #: adminpages/pagesettings.php:129 adminpages/pagesettings.php:125
1894
+ #: adminpages/pagesettings.php:127 adminpages/pagesettings.php:155
1895
+ #: adminpages/pagesettings.php:158
1896
+ msgid "Billing Information Page"
1897
+ msgstr "صفحه اطلاعات صورتحساب"
1898
+
1899
+ #: adminpages/pagesettings.php:147 adminpages/pagesettings.php:138
1900
+ #: adminpages/pagesettings.php:142 adminpages/pagesettings.php:170
1901
+ #: adminpages/pagesettings.php:173
1902
+ msgid "Cancel Page"
1903
+ msgstr "صفحه انصراف"
1904
+
1905
+ #: adminpages/pagesettings.php:166 adminpages/pagesettings.php:152
1906
+ #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:186
1907
+ #: adminpages/pagesettings.php:189
1908
+ msgid "Checkout Page"
1909
+ msgstr "صفحه پرداخت"
1910
+
1911
+ #: adminpages/pagesettings.php:185 adminpages/pagesettings.php:166
1912
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:202
1913
+ #: adminpages/pagesettings.php:205
1914
+ msgid "Confirmation Page"
1915
+ msgstr "صفحه تاییدیه"
1916
+
1917
+ #: adminpages/pagesettings.php:205 adminpages/pagesettings.php:180
1918
+ #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:218
1919
+ #: adminpages/pagesettings.php:221
1920
+ msgid "Invoice Page"
1921
+ msgstr "صفحه فاکتور"
1922
+
1923
+ #: adminpages/pagesettings.php:224 adminpages/pagesettings.php:194
1924
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:234
1925
+ #: adminpages/pagesettings.php:237
1926
+ msgid "Levels Page"
1927
+ msgstr "صفحه سطوح کاربری"
1928
+
1929
+ #: adminpages/pagesettings.php:245
1930
+ msgid "Additional Page Settings"
1931
+ msgstr "تنظیمات صفحه اضافی"
1932
+
1933
+ #: adminpages/pagesettings.php:280
1934
+ msgid "Generate Page"
1935
+ msgstr "ایجاد صفحه"
1936
+
1937
+ #: adminpages/paymentsettings.php:49 adminpages/paymentsettings.php:77
1938
+ #: adminpages/paymentsettings.php:82
1939
+ msgid "Your payment settings have been updated."
1940
+ msgstr "تنظیمات پرداخت شما به روز رسانی شد."
1941
+
1942
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:106
1943
+ #: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:146
1944
+ #: adminpages/paymentsettings.php:152 adminpages/paymentsettings.php:154
1945
+ msgid "Payment Gateway"
1946
+ msgstr "درگاه پرداخت"
1947
+
1948
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:144
1949
+ #: adminpages/paymentsettings.php:146
1950
+ msgid "SSL Settings"
1951
+ msgstr "تنظیمات اس اس ال"
1952
+
1953
+ #: adminpages/paymentsettings.php:95 adminpages/paymentsettings.php:148
1954
+ msgid ""
1955
+ "Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target=\"_blank\" "
1956
+ "href=\"http://www.paidmembershipspro.com/support/initial-plugin-setup/ssl/\">SSL</a> "
1957
+ "or <a title=\"Paid Memberships Pro - Payment Gateway Settings\" target=\"_blank\" "
1958
+ "href=\"http://www.paidmembershipspro.com/support/initial-plugin-setup/payment-gateway/"
1959
+ "\">Payment Gateway Settings</a>."
1960
+ msgstr ""
1961
+ "بیشتر بدانید <a title=\"Paid Memberships Pro - SSL Settings\" target=\"_blank\" href="
1962
+ "\"http://www.paidmembershipspro.com/support/initial-plugin-setup/ssl/\">SSL</a> or <a "
1963
+ "title=\"Paid Memberships Pro - Payment Gateway Settings\" target=\"_blank\" href="
1964
+ "\"http://www.paidmembershipspro.com/support/initial-plugin-setup/payment-gateway/"
1965
+ "\">Payment Gateway Settings</a>."
1966
+
1967
+ #: adminpages/paymentsettings.php:153 adminpages/paymentsettings.php:327
1968
+ #: adminpages/paymentsettings.php:337 adminpages/paymentsettings.php:356
1969
+ #: adminpages/paymentsettings.php:381 adminpages/paymentsettings.php:386
1970
+ msgid "Currency"
1971
+ msgstr "واحد پول"
1972
+
1973
+ #: adminpages/paymentsettings.php:169 adminpages/paymentsettings.php:400
1974
+ #: adminpages/paymentsettings.php:402
1975
+ msgid ""
1976
+ "Not all currencies will be supported by every gateway. Please check with your gateway."
1977
+ msgstr "همه واحدهای پول با هر درگاهی پشتیبانی نمی شوند. درگاه خود را بررسی کنید"
1978
+
1979
+ #: adminpages/paymentsettings.php:174 adminpages/paymentsettings.php:375
1980
+ #: adminpages/paymentsettings.php:401 adminpages/paymentsettings.php:406
1981
+ #: adminpages/paymentsettings.php:408
1982
+ msgid "Accepted Credit Card Types"
1983
+ msgstr "کارتهای پرداخت مورد قبول"
1984
+
1985
+ #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
1986
+ #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
1987
+ #: adminpages/paymentsettings.php:445
1988
+ msgid "Sales Tax"
1989
+ msgstr "مالیات فروش"
1990
+
1991
+ #: adminpages/paymentsettings.php:188 pages/billing.php:91
1992
+ #: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
1993
+ #: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
1994
+ #: pages/billing.php:78 pages/billing.php:82
1995
+ msgid "optional"
1996
+ msgstr "اختیاری"
1997
+
1998
+ #: adminpages/paymentsettings.php:191 adminpages/paymentsettings.php:401
1999
+ #: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:446
2000
+ #: adminpages/paymentsettings.php:448
2001
+ msgid "Tax State"
2002
+ msgstr "محدوده مالیات"
2003
+
2004
+ #: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:402
2005
+ #: adminpages/paymentsettings.php:442 adminpages/paymentsettings.php:447
2006
+ #: adminpages/paymentsettings.php:449
2007
+ msgid "abbreviation, e.g. \"PA\""
2008
+ msgstr "مخفف، به عنوان مثال \"PA\""
2009
+
2010
+ #: adminpages/paymentsettings.php:194 adminpages/paymentsettings.php:404
2011
+ #: adminpages/paymentsettings.php:444 adminpages/paymentsettings.php:449
2012
+ #: adminpages/paymentsettings.php:451
2013
+ msgid "decimal, e.g. \"0.06\""
2014
+ msgstr "ده دهی، به عنوان مثال \"0.06\""
2015
+
2016
+ #: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:450
2017
+ #: adminpages/paymentsettings.php:452
2018
+ msgid ""
2019
+ "US only. If values are given, tax will be applied for any members ordering from the "
2020
+ "selected state.<br />For non-US or more complex tax rules, use the <a target=\"_blank"
2021
+ "\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-taxes-paid-memberships-pro/"
2022
+ "\">pmpro_tax filter</a>."
2023
+ msgstr ""
2024
+ "تنها ایالات متحده. اگر مقادیر داده شده اند، مالیات برای کاربران اعمال خواهد شد سفارش "
2025
+ "شده از ایالت انتخاب شده. <br />For non-US or more complex tax rules, use the <a "
2026
+ "target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-taxes-paid-"
2027
+ "memberships-pro/\">pmpro_tax filter</a>."
2028
+
2029
+ #: adminpages/paymentsettings.php:206 adminpages/paymentsettings.php:450
2030
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:457
2031
+ msgid "Force SSL"
2032
+ msgstr "اجبار اس اس ال"
2033
+
2034
+ #: adminpages/paymentsettings.php:212 adminpages/paymentsettings.php:456
2035
+ #: adminpages/paymentsettings.php:461 adminpages/paymentsettings.php:463
2036
+ msgid "Yes (with JavaScript redirects)"
2037
+ msgstr "بله (with JavaScript redirects)"
2038
+
2039
+ #: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:430
2040
+ #: adminpages/paymentsettings.php:463 adminpages/paymentsettings.php:468
2041
+ #: adminpages/paymentsettings.php:470
2042
+ msgid "SSL Seal Code"
2043
+ msgstr "کد Seal SSL"
2044
+
2045
+ #: adminpages/paymentsettings.php:228
2046
+ msgid "Extra HTTPS URL Filter"
2047
+ msgstr "فیلتر HTTPS URL اضافه"
2048
+
2049
+ #: adminpages/paymentsettings.php:231
2050
+ msgid ""
2051
+ "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure "
2052
+ "pages. Check this if you are using SSL and have warnings on your checkout pages."
2053
+ msgstr ""
2054
+ "تمامی HTML ایجاد شده، از طریق فیلتر URL گذرانده شود، تا HTTPS به URL های استفاده شده "
2055
+ "در صفحات ایمن اضافه شود. از این تنظیمات برای داشتن آدرس های امن برای صفحات امن خود "
2056
+ "استفاده کنید. در صورتیکه از SSL استفاده میکنید و در صفحه پرداخت خود پیام هشدار "
2057
+ "میگیرید این گزینه را علامت بزنید."
2058
+
2059
+ #: adminpages/reports.php:40 adminpages/reports.php:26 adminpages/reports.php:37
2060
+ msgid "Details"
2061
+ msgstr "جزییات"
2062
+
2063
+ #: adminpages/reports/login.php:16
2064
+ msgid "Visits, Views, and Logins"
2065
+ msgstr "بازدید ها، نمایش ها، ورود ها"
2066
+
2067
+ #: adminpages/reports/login.php:27 adminpages/reports/login.php:26
2068
+ msgid "Visits Today"
2069
+ msgstr "بازدید های امروز"
2070
+
2071
+ #: adminpages/reports/login.php:28 adminpages/reports/login.php:149
2072
+ #: adminpages/reports/login.php:27 adminpages/reports/login.php:147
2073
+ msgid "Visits This Month"
2074
+ msgstr "بازدیدکنندگان این ماه"
2075
+
2076
+ #: adminpages/reports/login.php:29 adminpages/reports/login.php:28
2077
+ msgid "Visits All Time"
2078
+ msgstr "بازدید های همه زمانها"
2079
+
2080
+ #: adminpages/reports/login.php:32 adminpages/reports/login.php:31
2081
+ msgid "Views Today"
2082
+ msgstr "نمایش های امروز"
2083
+
2084
+ #: adminpages/reports/login.php:33 adminpages/reports/login.php:151
2085
+ #: adminpages/reports/login.php:32 adminpages/reports/login.php:149
2086
+ msgid "Views This Month"
2087
+ msgstr "نمایش های این ماه"
2088
+
2089
+ #: adminpages/reports/login.php:34 adminpages/reports/login.php:33
2090
+ msgid "Views All Time"
2091
+ msgstr "نمایش های همه زمانها"
2092
+
2093
+ #: adminpages/reports/login.php:37 adminpages/reports/login.php:36
2094
+ msgid "Logins Today"
2095
+ msgstr "ورود های امروز"
2096
+
2097
+ #: adminpages/reports/login.php:38 adminpages/reports/login.php:154
2098
+ #: adminpages/reports/login.php:37 adminpages/reports/login.php:152
2099
+ msgid "Logins This Month"
2100
+ msgstr "ورود های این ماه"
2101
+
2102
+ #: adminpages/reports/login.php:39 adminpages/reports/login.php:38
2103
+ msgid "Logins All Time"
2104
+ msgstr "ورود های همه زمانها"
2105
+
2106
+ #: adminpages/reports/login.php:63 adminpages/reports/login.php:61
2107
+ msgid "Visits, Views, and Logins Report"
2108
+ msgstr "گزارشات بازدید ها، نمایش ها، ورود ها"
2109
+
2110
+ #: adminpages/reports/login.php:68 adminpages/reports/login.php:66
2111
+ msgid "All Users"
2112
+ msgstr "تمامی کاربران"
2113
+
2114
+ #: adminpages/reports/login.php:148 adminpages/reports/login.php:146
2115
+ msgid "Last Visit"
2116
+ msgstr "آخرین بازدید"
2117
+
2118
+ #: adminpages/reports/login.php:150 adminpages/reports/login.php:148
2119
+ msgid "Total Visits"
2120
+ msgstr "مجموع بازدید ها"
2121
+
2122
+ #: adminpages/reports/login.php:152 adminpages/reports/login.php:150
2123
+ msgid "Total Views"
2124
+ msgstr "مجموع مشاهده ها"
2125
+
2126
+ #: adminpages/reports/login.php:153 adminpages/reports/login.php:151
2127
+ msgid "Last Login"
2128
+ msgstr "آخرین ورود"
2129
+
2130
+ #: adminpages/reports/login.php:155 adminpages/reports/login.php:153
2131
+ msgid "Total Logins"
2132
+ msgstr "مجموع ورود ها"
2133
+
2134
+ #: adminpages/reports/memberships.php:18 adminpages/reports/memberships.php:288
2135
+ msgid "Membership Stats"
2136
+ msgstr "آمار عضویت"
2137
+
2138
+ #: adminpages/reports/memberships.php:48
2139
+ msgid "Signups"
2140
+ msgstr "ثبت نام ها"
2141
+
2142
+ #: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:69
2143
+ msgid "All Time"
2144
+ msgstr "همه زمان ها"
2145
+
2146
+ #: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
2147
+ msgid "This Year"
2148
+ msgstr "این سال"
2149
+
2150
+ #: adminpages/reports/memberships.php:58 adminpages/reports/memberships.php:77
2151
+ msgid "This Month"
2152
+ msgstr "این ماه"
2153
+
2154
+ #: adminpages/reports/memberships.php:62 adminpages/reports/memberships.php:81
2155
+ msgid "Today"
2156
+ msgstr "امروز"
2157
+
2158
+ #: adminpages/reports/memberships.php:67
2159
+ msgid "Cancellations"
2160
+ msgstr "انصراف ها"
2161
+
2162
+ #: adminpages/reports/memberships.php:86
2163
+ msgid "Other Stats"
2164
+ msgstr "سایر آمار و اطلاعات"
2165
+
2166
+ #: adminpages/reports/memberships.php:88
2167
+ msgid "Monthly Recurring Revenue (MRR)"
2168
+ msgstr "درآمد ماهانه دوره (MRR)"
2169
+
2170
+ #: adminpages/reports/memberships.php:92
2171
+ msgid "Cancellation Rate"
2172
+ msgstr "نرخ انصراف ها"
2173
+
2174
+ #: adminpages/reports/memberships.php:96
2175
+ msgid "Lifetime Value (LTV)"
2176
+ msgstr "ارزش مادام العمر (LTV)"
2177
+
2178
+ #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:195
2179
+ #: adminpages/reports/sales.php:187 adminpages/reports/sales.php:196
2180
+ msgid "Daily"
2181
+ msgstr "روزانه"
2182
+
2183
+ #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:196
2184
+ #: adminpages/reports/sales.php:188 adminpages/reports/sales.php:197
2185
+ msgid "Monthly"
2186
+ msgstr "ماهانه"
2187
+
2188
+ #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:197
2189
+ #: adminpages/reports/sales.php:189 adminpages/reports/sales.php:198
2190
+ msgid "Annual"
2191
+ msgstr "سالانه"
2192
+
2193
+ #: adminpages/reports/memberships.php:299
2194
+ msgid "Signups vs. Cancellations"
2195
+ msgstr "ثبت نام ها در مقایسه با انصراف ها"
2196
+
2197
+ #: adminpages/reports/memberships.php:304 adminpages/reports/memberships.php:315
2198
+ #: adminpages/reports/sales.php:203 adminpages/reports/sales.php:214
2199
+ #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:551
2200
+ #: adminpages/membershiplevels.php:553 adminpages/membershiplevels.php:559
2201
+ #: adminpages/membershiplevels.php:561 adminpages/membershiplevels.php:580
2202
+ #: adminpages/membershiplevels.php:588 adminpages/reports/sales.php:195
2203
+ #: adminpages/reports/sales.php:204 adminpages/reports/sales.php:206
2204
+ #: adminpages/reports/sales.php:215
2205
+ msgid "for"
2206
+ msgstr "برای"
2207
+
2208
+ #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:230
2209
+ #: adminpages/reports/sales.php:222 adminpages/reports/sales.php:231
2210
+ msgid "Generate Report"
2211
+ msgstr "ایجاد گزارش"
2212
+
2213
+ #: adminpages/reports/sales.php:18
2214
+ msgid "Sales and Revenue (Testing/Sandbox)"
2215
+ msgstr "فروش و درآمد (تست/Sandbox)"
2216
+
2217
+ #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:189
2218
+ #: adminpages/reports/sales.php:180
2219
+ msgid "Sales and Revenue"
2220
+ msgstr "فروش و درآمد"
2221
+
2222
+ #: adminpages/reports/sales.php:200 adminpages/reports/sales.php:192
2223
+ #: adminpages/reports/sales.php:201
2224
+ msgid "Revenue"
2225
+ msgstr "درآمد"
2226
+
2227
+ #: adminpages/reports/sales.php:201 adminpages/reports/sales.php:193
2228
+ #: adminpages/reports/sales.php:202
2229
+ msgid "Sales"
2230
+ msgstr "فروش"
2231
+
2232
+ #: classes/class.memberorder.php:644 classes/class.memberorder.php:553
2233
+ #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2234
+ #: classes/class.memberorder.php:573 includes/cleanup.php:24
2235
+ #, php-format
2236
+ msgid ""
2237
+ "There was an error canceling the subscription for user with ID=%s. You will want to "
2238
+ "check your payment gateway to see if their subscription is still active."
2239
+ msgstr ""
2240
+ "خطا در لغو اشتراک برای کاربر %s وجود دارد. شما ممکن است بخواهید درگاه پرداخت خود را "
2241
+ "بررسی کنید تا از فعال بودن اشتراک آنها مطمئن شوید."
2242
+
2243
+ #: classes/class.pmproemail.php:37
2244
+ #, php-format
2245
+ msgid "An Email From %s"
2246
+ msgstr "یک ایمیل از %s."
2247
+
2248
+ #: classes/class.pmproemail.php:134 classes/class.pmproemail.php:120
2249
+ #: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
2250
+ #, php-format
2251
+ msgid "Your membership at %s has been CANCELLED"
2252
+ msgstr "عضویت شما در %s لغو شد"
2253
+
2254
+ #: classes/class.pmproemail.php:156 classes/class.pmproemail.php:142
2255
+ #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
2256
+ #, php-format
2257
+ msgid "Membership for %s at %s has been CANCELLED"
2258
+ msgstr "عضویت شما برای %s در %s لغو شد"
2259
+
2260
+ #: classes/class.pmproemail.php:187 classes/class.pmproemail.php:172
2261
+ #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2262
+ #: classes/class.pmproemail.php:178
2263
+ #, php-format
2264
+ msgid "Your membership confirmation for %s"
2265
+ msgstr "تایید عضویت شما برای %s"
2266
+
2267
+ #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2268
+ #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2269
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2270
+ #: classes/gateways/class.pmprogateway_braintree.php:362
2271
+ #: classes/gateways/class.pmprogateway_stripe.php:506 pages/checkout.php:75
2272
+ #: pages/checkout.php:85 pages/checkout.php:603 pages/confirmation.php:52
2273
+ #: pages/invoice.php:33 classes/class.pmproemail.php:216
2274
+ #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2275
+ #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
2276
+ #: classes/class.pmproemail.php:231 classes/class.pmproemail.php:234
2277
+ #: classes/class.pmproemail.php:236 classes/class.pmproemail.php:237
2278
+ #: classes/class.pmproemail.php:246 classes/class.pmproemail.php:304
2279
+ #: classes/class.pmproemail.php:307 classes/class.pmproemail.php:313
2280
+ #: classes/class.pmproemail.php:316 classes/class.pmproemail.php:325
2281
+ #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:334
2282
+ #: classes/class.pmproemail.php:532 classes/class.pmproemail.php:580
2283
+ #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:648
2284
+ #: classes/gateways/class.pmprogateway_braintree.php:349
2285
+ #: classes/gateways/class.pmprogateway_stripe.php:495
2286
+ #: classes/gateways/class.pmprogateway_stripe.php:496 pages/checkout.php:66
2287
+ #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:76
2288
+ #: pages/checkout.php:77 pages/checkout.php:78 pages/checkout.php:549
2289
+ #: pages/checkout.php:565 pages/checkout.php:566 pages/checkout.php:573
2290
+ #: pages/checkout.php:594 pages/confirmation.php:51 pages/invoice.php:32
2291
+ msgid "Discount Code"
2292
+ msgstr "کد تخفیف"
2293
+
2294
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
2295
+ #: classes/class.pmproemail.php:663 classes/class.pmproemail.php:241
2296
+ #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
2297
+ #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:325
2298
+ #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:346
2299
+ #: classes/class.pmproemail.php:349 classes/class.pmproemail.php:538
2300
+ #: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
2301
+ #: classes/class.pmproemail.php:654
2302
+ #, php-format
2303
+ msgid "This membership will expire on %s."
2304
+ msgstr "این عضویت در %s پایان خواهد یافت."
2305
+
2306
+ #: classes/class.pmproemail.php:287 classes/class.pmproemail.php:263
2307
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
2308
+ #: classes/class.pmproemail.php:278
2309
+ #, php-format
2310
+ msgid "Member Checkout for %s at %s"
2311
+ msgstr "پرداخت عضو برای %s در %s"
2312
+
2313
+ #: classes/class.pmproemail.php:375 classes/class.pmproemail.php:342
2314
+ #: classes/class.pmproemail.php:345 classes/class.pmproemail.php:363
2315
+ #: classes/class.pmproemail.php:366
2316
+ #, php-format
2317
+ msgid "Your billing information has been udpated at %s"
2318
+ msgstr "اطلاعات صورت حساب شما به روز شد در %s"
2319
+
2320
+ #: classes/class.pmproemail.php:428 classes/class.pmproemail.php:386
2321
+ #: classes/class.pmproemail.php:390 classes/class.pmproemail.php:416
2322
+ #: classes/class.pmproemail.php:419
2323
+ #, php-format
2324
+ msgid "Billing information has been udpated for %s at %s"
2325
+ msgstr "اطلاعات صورت حساب به روز شد برای %s در %s"
2326
+
2327
+ #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
2328
+ #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
2329
+ #: classes/class.pmproemail.php:467
2330
+ #, php-format
2331
+ msgid "Membership Payment Failed at %s"
2332
+ msgstr "پرداخت عضویت با خطا مواجه شد در %s"
2333
+
2334
+ #: classes/class.pmproemail.php:522 classes/class.pmproemail.php:462
2335
+ #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
2336
+ #: classes/class.pmproemail.php:513
2337
+ #, php-format
2338
+ msgid "Membership Payment Failed For %s at %s"
2339
+ msgstr "پرداخت عضویت با خطا مواجه شد برای %s در %s"
2340
+
2341
+ #: classes/class.pmproemail.php:569 classes/class.pmproemail.php:508
2342
+ #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
2343
+ #, php-format
2344
+ msgid "Credit Card on File Expiring Soon at %s"
2345
+ msgstr "کارت اعتباری شما به زودی منقضی خواهد شد در %s"
2346
+
2347
+ #: classes/class.pmproemail.php:617 classes/class.pmproemail.php:501
2348
+ #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
2349
+ #: classes/class.pmproemail.php:608
2350
+ #, php-format
2351
+ msgid "INVOICE for %s membership"
2352
+ msgstr "فاکتور برای عضویت %s"
2353
+
2354
+ #: classes/class.pmproemail.php:688 classes/class.pmproemail.php:563
2355
+ #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
2356
+ #: classes/class.pmproemail.php:679
2357
+ #, php-format
2358
+ msgid "Your trial at %s is ending soon"
2359
+ msgstr "عضویت آزمایشی شما در %s پایان خواهد یافت"
2360
+
2361
+ #: classes/class.pmproemail.php:722 classes/class.pmproemail.php:596
2362
+ #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
2363
+ #: classes/class.pmproemail.php:713
2364
+ #, php-format
2365
+ msgid "Your membership at %s has ended"
2366
+ msgstr "عضویت شما در %s پایان یافت"
2367
+
2368
+ #: classes/class.pmproemail.php:747 classes/class.pmproemail.php:621
2369
+ #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
2370
+ #: classes/class.pmproemail.php:738
2371
+ #, php-format
2372
+ msgid "Your membership at %s will end soon"
2373
+ msgstr "عضویت شما در %s به زودی به پایان خواهد رسید"
2374
+
2375
+ #: classes/class.pmproemail.php:767 classes/class.pmproemail.php:641
2376
+ #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
2377
+ #: classes/class.pmproemail.php:758
2378
+ #, php-format
2379
+ msgid "Your membership at %s has been changed"
2380
+ msgstr "عضویت شما در %s تغییر کرده است"
2381
+
2382
+ #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:809
2383
+ #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
2384
+ #: classes/class.pmproemail.php:800
2385
+ #, php-format
2386
+ msgid "The new level is %s"
2387
+ msgstr "سطح جدید %s است"
2388
+
2389
+ #: classes/class.pmproemail.php:773 classes/class.pmproemail.php:647
2390
+ #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
2391
+ #: classes/class.pmproemail.php:764
2392
+ msgid "Your membership has been cancelled"
2393
+ msgstr "عضویت شما لغو شد"
2394
+
2395
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:815
2396
+ #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
2397
+ #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
2398
+ #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
2399
+ #: classes/class.pmproemail.php:803 classes/class.pmproemail.php:806
2400
+ #, php-format
2401
+ msgid "This membership will expire on %s"
2402
+ msgstr "این عضویت در %s پایان خواهد یافت"
2403
+
2404
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:819
2405
+ #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
2406
+ #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
2407
+ #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
2408
+ #: classes/class.pmproemail.php:807 classes/class.pmproemail.php:810
2409
+ msgid "This membership does not expire"
2410
+ msgstr "این عضویت منقضی نمی شود"
2411
+
2412
+ #: classes/class.pmproemail.php:805 classes/class.pmproemail.php:679
2413
+ #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
2414
+ #: classes/class.pmproemail.php:796
2415
+ #, php-format
2416
+ msgid "Membership for %s at %s has been changed"
2417
+ msgstr "عضویت برای %s در %s تغییر کرد"
2418
+
2419
+ #: classes/class.pmproemail.php:811 classes/class.pmproemail.php:799
2420
+ #: classes/class.pmproemail.php:802
2421
+ msgid "Membership has been cancelled"
2422
+ msgstr "عضویت لغو شد"
2423
+
2424
+ #: classes/gateways/class.pmprogateway.php:55
2425
+ #: classes/gateways/class.pmprogateway_authorizenet.php:171
2426
+ #: classes/gateways/class.pmprogateway_check.php:193
2427
+ #: classes/gateways/class.pmprogateway_cybersource.php:171
2428
+ #: classes/gateways/class.pmprogateway_payflowpro.php:164
2429
+ #: classes/gateways/class.pmprogateway_paypal.php:247
2430
+ #: classes/gateways/class.pmprogateway_authorizenet.php:55
2431
+ #: classes/gateways/class.pmprogateway_check.php:60
2432
+ #: classes/gateways/class.pmprogateway_cybersource.php:57
2433
+ #: classes/gateways/class.pmprogateway_payflowpro.php:27
2434
+ #: classes/gateways/class.pmprogateway_paypal.php:27
2435
+ msgid "Unknown error: Authorization failed."
2436
+ msgstr "خطای ناشناخته: تأیید مجوز ناموفق"
2437
+
2438
+ #: classes/gateways/class.pmprogateway.php:106
2439
+ #: classes/gateways/class.pmprogateway.php:111
2440
+ #: classes/gateways/class.pmprogateway.php:129
2441
+ #: classes/gateways/class.pmprogateway_authorizenet.php:222
2442
+ #: classes/gateways/class.pmprogateway_authorizenet.php:227
2443
+ #: classes/gateways/class.pmprogateway_authorizenet.php:244
2444
+ #: classes/gateways/class.pmprogateway_check.php:244
2445
+ #: classes/gateways/class.pmprogateway_check.php:249
2446
+ #: classes/gateways/class.pmprogateway_check.php:267
2447
+ #: classes/gateways/class.pmprogateway_cybersource.php:222
2448
+ #: classes/gateways/class.pmprogateway_cybersource.php:227
2449
+ #: classes/gateways/class.pmprogateway_cybersource.php:245
2450
+ #: classes/gateways/class.pmprogateway_payflowpro.php:187
2451
+ #: classes/gateways/class.pmprogateway_payflowpro.php:192
2452
+ #: classes/gateways/class.pmprogateway_paypal.php:270
2453
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2454
+ #: classes/gateways/class.pmprogateway_authorizenet.php:111
2455
+ #: classes/gateways/class.pmprogateway_authorizenet.php:128
2456
+ #: classes/gateways/class.pmprogateway_check.php:111
2457
+ #: classes/gateways/class.pmprogateway_check.php:116
2458
+ #: classes/gateways/class.pmprogateway_check.php:134
2459
+ #: classes/gateways/class.pmprogateway_cybersource.php:108
2460
+ #: classes/gateways/class.pmprogateway_cybersource.php:113
2461
+ #: classes/gateways/class.pmprogateway_cybersource.php:131
2462
+ #: classes/gateways/class.pmprogateway_payflowpro.php:50
2463
+ #: classes/gateways/class.pmprogateway_payflowpro.php:55
2464
+ #: classes/gateways/class.pmprogateway_paypal.php:50
2465
+ msgid "Unknown error: Payment failed."
2466
+ msgstr "خطای ناشناخته: پرداخت ناموفق."
2467
+
2468
+ #: classes/gateways/class.pmprogateway.php:113
2469
+ #: classes/gateways/class.pmprogateway_authorizenet.php:228
2470
+ #: classes/gateways/class.pmprogateway_check.php:251
2471
+ #: classes/gateways/class.pmprogateway_cybersource.php:229
2472
+ #: classes/gateways/class.pmprogateway_authorizenet.php:112
2473
+ #: classes/gateways/class.pmprogateway_check.php:118
2474
+ #: classes/gateways/class.pmprogateway_cybersource.php:115
2475
+ msgid ""
2476
+ "A partial payment was made that we could not void. Please contact the site owner "
2477
+ "immediately to correct this."
2478
+ msgstr ""
2479
+ "پرداخت جزئی صورت گرفته که ما نمی توانیم باطل کنیم . لطفاً با مدیریت سایت تماس بگیرید "
2480
+ "سریعا تا اصلاح شود ."
2481
+
2482
+ #: classes/gateways/class.pmprogateway_authorizenet.php:39 paid-memberships-pro.php:130
2483
+ #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
2484
+ msgid "Authorize.net"
2485
+ msgstr "Authorize.net"
2486
+
2487
+ #: classes/gateways/class.pmprogateway_authorizenet.php:93
2488
+ msgid "Authorize.net Settings"
2489
+ msgstr "تنظیمات Authorize.net"
2490
+
2491
+ #: classes/gateways/class.pmprogateway_authorizenet.php:98
2492
+ #: adminpages/paymentsettings.php:260 adminpages/paymentsettings.php:264
2493
+ #: adminpages/paymentsettings.php:269
2494
+ msgid "Login Name"
2495
+ msgstr "نام کابری"
2496
+
2497
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2498
+ #: adminpages/paymentsettings.php:268 adminpages/paymentsettings.php:272
2499
+ #: adminpages/paymentsettings.php:277
2500
+ msgid "Transaction Key"
2501
+ msgstr "شناسه تراکنش"
2502
+
2503
+ #: classes/gateways/class.pmprogateway_authorizenet.php:114
2504
+ #: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:495
2505
+ #: adminpages/paymentsettings.php:501 adminpages/paymentsettings.php:503
2506
+ msgid "Silent Post URL"
2507
+ msgstr "آدرس (Silent Post URL)"
2508
+
2509
+ #: classes/gateways/class.pmprogateway_authorizenet.php:117
2510
+ #: adminpages/paymentsettings.php:457 adminpages/paymentsettings.php:498
2511
+ #: adminpages/paymentsettings.php:504 adminpages/paymentsettings.php:506
2512
+ msgid "To fully integrate with Authorize.net, be sure to set your Silent Post URL to"
2513
+ msgstr ""
2514
+ "برای ادغام کامل با Authorize.net، مطمئن شوید که آدرس Web Hook URL را به درستی تنظیم "
2515
+ "کرده اید."
2516
+
2517
+ #: classes/gateways/class.pmprogateway_authorizenet.php:908
2518
+ #: classes/gateways/class.pmprogateway_authorizenet.php:909
2519
+ #: classes/gateways/class.pmprogateway_authorizenet.php:787
2520
+ #: classes/gateways/class.pmprogateway_authorizenet.php:788
2521
+ #: classes/gateways/class.pmprogateway_authorizenet.php:789
2522
+ #: classes/gateways/class.pmprogateway_authorizenet.php:792
2523
+ #: classes/gateways/class.pmprogateway_authorizenet.php:793
2524
+ msgid "Could not connect to Authorize.net"
2525
+ msgstr "قادر به اتصال به سایت Authorize.net نمی باشد"
2526
+
2527
+ #: classes/gateways/class.pmprogateway_braintree.php:76 paid-memberships-pro.php:131
2528
+ #: classes/gateways/class.pmprogateway_braintree.php:63 paid-memberships-pro.php:123
2529
+ #: paid-memberships-pro.php:124
2530
+ msgid "Braintree Payments"
2531
+ msgstr "Braintree پرداخت"
2532
+
2533
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2534
+ #: classes/gateways/class.pmprogateway_braintree.php:119
2535
+ msgid "Braintree Settings"
2536
+ msgstr "تنظیمات Braintree"
2537
+
2538
+ #: classes/gateways/class.pmprogateway_braintree.php:137
2539
+ #: classes/gateways/class.pmprogateway_cybersource.php:106
2540
+ #: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
2541
+ #: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
2542
+ #: adminpages/paymentsettings.php:369
2543
+ #: classes/gateways/class.pmprogateway_braintree.php:124
2544
+ msgid "Merchant ID"
2545
+ msgstr "ای دی مرچنت (Merchant ID)"
2546
+
2547
+ #: classes/gateways/class.pmprogateway_braintree.php:145
2548
+ #: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
2549
+ #: adminpages/paymentsettings.php:311
2550
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2551
+ msgid "Public Key"
2552
+ msgstr "کلید عمومی"
2553
+
2554
+ #: classes/gateways/class.pmprogateway_braintree.php:153
2555
+ #: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
2556
+ #: adminpages/paymentsettings.php:319
2557
+ #: classes/gateways/class.pmprogateway_braintree.php:140
2558
+ msgid "Private Key"
2559
+ msgstr "کلید خصوصی"
2560
+
2561
+ #: classes/gateways/class.pmprogateway_braintree.php:161
2562
+ #: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
2563
+ #: adminpages/paymentsettings.php:327
2564
+ #: classes/gateways/class.pmprogateway_braintree.php:148
2565
+ msgid "Client-Side Encryption Key"
2566
+ msgstr "کلید رمزنگاری سمت کاربر"
2567
+
2568
+ #: classes/gateways/class.pmprogateway_braintree.php:169
2569
+ #: classes/gateways/class.pmprogateway_stripe.php:192 adminpages/paymentsettings.php:462
2570
+ #: adminpages/paymentsettings.php:470 adminpages/paymentsettings.php:503
2571
+ #: adminpages/paymentsettings.php:509 adminpages/paymentsettings.php:511
2572
+ #: adminpages/paymentsettings.php:517 adminpages/paymentsettings.php:519
2573
+ #: classes/gateways/class.pmprogateway_braintree.php:156
2574
+ #: classes/gateways/class.pmprogateway_stripe.php:181
2575
+ #: classes/gateways/class.pmprogateway_stripe.php:182
2576
+ msgid "Web Hook URL"
2577
+ msgstr "آدرس (Web Hook URL)"
2578
+
2579
+ #: classes/gateways/class.pmprogateway_braintree.php:173
2580
+ #: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
2581
+ #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
2582
+ #: classes/gateways/class.pmprogateway_braintree.php:160
2583
+ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
2584
+ msgstr ""
2585
+ "برای ادغام کامل با Braintree، مطمئن شوید که آدرس Web Hook URL را به درستی تنظیم کرده "
2586
+ "اید."
2587
+
2588
+ #: classes/gateways/class.pmprogateway_braintree.php:283
2589
+ #: classes/gateways/class.pmprogateway_stripe.php:398 pages/checkout.php:494
2590
+ #: classes/gateways/class.pmprogateway_braintree.php:270
2591
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2592
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:476
2593
+ #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2594
+ #: pages/checkout.php:500
2595
+ msgid "Payment Information"
2596
+ msgstr "اطلاعات پرداخت"
2597
+
2598
+ #: classes/gateways/class.pmprogateway_braintree.php:283
2599
+ #: classes/gateways/class.pmprogateway_stripe.php:398 pages/checkout.php:494
2600
+ #: classes/gateways/class.pmprogateway_braintree.php:270
2601
+ #: classes/gateways/class.pmprogateway_stripe.php:387
2602
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:476
2603
+ #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2604
+ #: pages/checkout.php:500
2605
+ #, php-format
2606
+ msgid "We Accept %s"
2607
+ msgstr "ما پذیرفتیم %s"
2608
+
2609
+ #: classes/gateways/class.pmprogateway_braintree.php:316
2610
+ #: classes/gateways/class.pmprogateway_stripe.php:460 pages/billing.php:257
2611
+ #: pages/checkout.php:557 classes/gateways/class.pmprogateway_braintree.php:303
2612
+ #: classes/gateways/class.pmprogateway_stripe.php:449
2613
+ #: classes/gateways/class.pmprogateway_stripe.php:450 pages/billing.php:244
2614
+ #: pages/billing.php:248 pages/checkout.php:503 pages/checkout.php:519
2615
+ #: pages/checkout.php:520 pages/checkout.php:527 pages/checkout.php:548
2616
+ msgid "Card Number"
2617
+ msgstr "شماره کارت"
2618
+
2619
+ #: classes/gateways/class.pmprogateway_braintree.php:353
2620
+ #: classes/gateways/class.pmprogateway_stripe.php:497 pages/billing.php:294
2621
+ #: pages/checkout.php:594 classes/gateways/class.pmprogateway_braintree.php:340
2622
+ #: classes/gateways/class.pmprogateway_stripe.php:486
2623
+ #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:281
2624
+ #: pages/billing.php:285 pages/checkout.php:540 pages/checkout.php:556
2625
+ #: pages/checkout.php:557 pages/checkout.php:564 pages/checkout.php:585
2626
+ msgid "CVV"
2627
+ msgstr "CVV"
2628
+
2629
+ #: classes/gateways/class.pmprogateway_braintree.php:354
2630
+ #: classes/gateways/class.pmprogateway_stripe.php:498 pages/billing.php:295
2631
+ #: pages/checkout.php:595 classes/gateways/class.pmprogateway_braintree.php:341
2632
+ #: classes/gateways/class.pmprogateway_stripe.php:487
2633
+ #: classes/gateways/class.pmprogateway_stripe.php:488 pages/billing.php:282
2634
+ #: pages/billing.php:286 pages/checkout.php:541 pages/checkout.php:557
2635
+ #: pages/checkout.php:558 pages/checkout.php:565 pages/checkout.php:586
2636
+ msgid "what's this?"
2637
+ msgstr "این چیست؟"
2638
+
2639
+ #: classes/gateways/class.pmprogateway_braintree.php:364
2640
+ #: classes/gateways/class.pmprogateway_stripe.php:508 pages/checkout.php:87
2641
+ #: pages/checkout.php:605 classes/gateways/class.pmprogateway_braintree.php:351
2642
+ #: classes/gateways/class.pmprogateway_stripe.php:497
2643
+ #: classes/gateways/class.pmprogateway_stripe.php:498 pages/checkout.php:78
2644
+ #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:551
2645
+ #: pages/checkout.php:567 pages/checkout.php:568 pages/checkout.php:575
2646
+ #: pages/checkout.php:596
2647
+ msgid "Apply"
2648
+ msgstr "اعمال"
2649
+
2650
+ #: classes/gateways/class.pmprogateway_braintree.php:419
2651
+ #: classes/gateways/class.pmprogateway_stripe.php:1036
2652
+ #: classes/gateways/class.pmprogateway_braintree.php:61
2653
+ #: classes/gateways/class.pmprogateway_braintree.php:406
2654
+ #: classes/gateways/class.pmprogateway_stripe.php:53
2655
+ #: classes/gateways/class.pmprogateway_stripe.php:1011
2656
+ #: classes/gateways/class.pmprogateway_stripe.php:1025
2657
+ #: classes/gateways/class.pmprogateway_stripe.php:1026
2658
+ msgid "Unknown error: Initial payment failed."
2659
+ msgstr "خطای ناشناخته: پرداخت اولیه ناموفق."
2660
+
2661
+ #: classes/gateways/class.pmprogateway_braintree.php:478
2662
+ #: classes/gateways/class.pmprogateway_braintree.php:120
2663
+ #: classes/gateways/class.pmprogateway_braintree.php:465
2664
+ msgid "Error during settlement:"
2665
+ msgstr "خطا در طول تسویه:"
2666
+
2667
+ #: classes/gateways/class.pmprogateway_braintree.php:487
2668
+ #: classes/gateways/class.pmprogateway_braintree.php:129
2669
+ #: classes/gateways/class.pmprogateway_braintree.php:474
2670
+ msgid "Error during charge:"
2671
+ msgstr "خطا در طول شارژ:"
2672
+
2673
+ #: classes/gateways/class.pmprogateway_braintree.php:579
2674
+ #: classes/gateways/class.pmprogateway_braintree.php:198
2675
+ #: classes/gateways/class.pmprogateway_braintree.php:221
2676
+ #: classes/gateways/class.pmprogateway_braintree.php:566
2677
+ msgid "Failed to update customer."
2678
+ msgstr "خطا در بروز رسانی مشتری"
2679
+
2680
+ #: classes/gateways/class.pmprogateway_braintree.php:627
2681
+ #: classes/gateways/class.pmprogateway_braintree.php:246
2682
+ #: classes/gateways/class.pmprogateway_braintree.php:269
2683
+ #: classes/gateways/class.pmprogateway_braintree.php:614
2684
+ msgid "Failed to create customer."
2685
+ msgstr "خطا در ایجاد مشتری"
2686
+
2687
+ #: classes/gateways/class.pmprogateway_braintree.php:634
2688
+ #: classes/gateways/class.pmprogateway_braintree.php:253
2689
+ #: classes/gateways/class.pmprogateway_braintree.php:276
2690
+ #: classes/gateways/class.pmprogateway_braintree.php:621
2691
+ msgid "Error creating customer record with Braintree:"
2692
+ msgstr "خطا در ایجاد رکورد مشتری با Braintree"
2693
+
2694
+ #: classes/gateways/class.pmprogateway_braintree.php:734
2695
+ #: classes/gateways/class.pmprogateway_braintree.php:344
2696
+ #: classes/gateways/class.pmprogateway_braintree.php:345
2697
+ #: classes/gateways/class.pmprogateway_braintree.php:376
2698
+ #: classes/gateways/class.pmprogateway_braintree.php:721
2699
+ msgid "Error subscribing customer to plan with Braintree:"
2700
+ msgstr "خطا در عضویت مشتری در پلن با Braintree"
2701
+
2702
+ #: classes/gateways/class.pmprogateway_braintree.php:749
2703
+ #: classes/gateways/class.pmprogateway_braintree.php:359
2704
+ #: classes/gateways/class.pmprogateway_braintree.php:360
2705
+ #: classes/gateways/class.pmprogateway_braintree.php:391
2706
+ #: classes/gateways/class.pmprogateway_braintree.php:736
2707
+ msgid "Failed to subscribe with Braintree:"
2708
+ msgstr "خطا در عضویت با Braintree:"
2709
+
2710
+ #: classes/gateways/class.pmprogateway_braintree.php:787
2711
+ #: classes/gateways/class.pmprogateway_braintree.php:800
2712
+ #: classes/gateways/class.pmprogateway_braintree.php:807
2713
+ #: classes/gateways/class.pmprogateway_braintree.php:397
2714
+ #: classes/gateways/class.pmprogateway_braintree.php:398
2715
+ #: classes/gateways/class.pmprogateway_braintree.php:410
2716
+ #: classes/gateways/class.pmprogateway_braintree.php:411
2717
+ #: classes/gateways/class.pmprogateway_braintree.php:417
2718
+ #: classes/gateways/class.pmprogateway_braintree.php:418
2719
+ #: classes/gateways/class.pmprogateway_braintree.php:429
2720
+ #: classes/gateways/class.pmprogateway_braintree.php:442
2721
+ #: classes/gateways/class.pmprogateway_braintree.php:449
2722
+ #: classes/gateways/class.pmprogateway_braintree.php:774
2723
+ #: classes/gateways/class.pmprogateway_braintree.php:794
2724
+ #: classes/gateways/class.pmprogateway_stripe.php:343
2725
+ #: classes/gateways/class.pmprogateway_stripe.php:344
2726
+ #: classes/gateways/class.pmprogateway_stripe.php:351
2727
+ #: classes/gateways/class.pmprogateway_stripe.php:353
2728
+ #: classes/gateways/class.pmprogateway_stripe.php:354
2729
+ #: classes/gateways/class.pmprogateway_stripe.php:361
2730
+ #: classes/gateways/class.pmprogateway_stripe.php:396
2731
+ #: classes/gateways/class.pmprogateway_stripe.php:402
2732
+ #: classes/gateways/class.pmprogateway_stripe.php:423
2733
+ msgid "Could not find the subscription."
2734
+ msgstr "اشتراک پیدا نمی شود"
2735
+
2736
+ #: classes/gateways/class.pmprogateway_check.php:48 paid-memberships-pro.php:124
2737
+ #: adminpages/orders.php:399 adminpages/orders.php:449
2738
+ #: adminpages/paymentsettings.php:157 adminpages/paymentsettings.php:159
2739
+ #: paid-memberships-pro.php:116 paid-memberships-pro.php:117
2740
+ msgid "Pay by Check"
2741
+ msgstr "پرداخت با فیش بانکی"
2742
+
2743
+ #: classes/gateways/class.pmprogateway_check.php:100
2744
+ msgid "Pay by Check Settings"
2745
+ msgstr "تنظیمات پرداخت با فیش بانکی"
2746
+
2747
+ #: classes/gateways/class.pmprogateway_check.php:105 adminpages/paymentsettings.php:389
2748
+ #: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:420
2749
+ #: adminpages/paymentsettings.php:422
2750
+ msgid "Instructions"
2751
+ msgstr "دستورالعمل"
2752
+
2753
+ #: classes/gateways/class.pmprogateway_check.php:109 adminpages/paymentsettings.php:393
2754
+ #: adminpages/paymentsettings.php:419 adminpages/paymentsettings.php:424
2755
+ #: adminpages/paymentsettings.php:426
2756
+ msgid ""
2757
+ "Who to write the check out to. Where to mail it. Shown on checkout, confirmation, and "
2758
+ "invoice pages."
2759
+ msgstr ""
2760
+ "چک برای چه کسی نوشته شود. کجا باید ارسال شود. در صفحه پرداخت، تائیدیه و فاکتور نمایش "
2761
+ "داده می شود."
2762
+
2763
+ #: classes/gateways/class.pmprogateway_cybersource.php:42
2764
+ msgid "CyberSource"
2765
+ msgstr "CyberSource"
2766
+
2767
+ #: classes/gateways/class.pmprogateway_cybersource.php:96
2768
+ msgid "CyberSource Settings"
2769
+ msgstr "تنظیمات CyberSource"
2770
+
2771
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
2772
+ #: adminpages/paymentsettings.php:174
2773
+ msgid ""
2774
+ "This gateway option is in beta. Some functionality may not be available. Please "
2775
+ "contact Paid Memberships Pro with any issues you run into. <strong>Please be sure to "
2776
+ "upgrade Paid Memberships Pro to the latest versions when available.</strong>"
2777
+ msgstr ""
2778
+ "تنظیمات این درگاه در حالت آزمایش می باشد. برخی از قابلیت های ممکن است در دسترس نباشد. "
2779
+ "لطفا با هر گونه مسائل در اجرا با PMPro تماس بگیرید. <strong>لطفا مطمئن شوید که Paid "
2780
+ "Memberships Pro را به آخرین نسخه که در دسترس است بروز رسانی کنید.</strong>"
2781
+
2782
+ #: classes/gateways/class.pmprogateway_cybersource.php:114
2783
+ #: adminpages/paymentsettings.php:372 adminpages/paymentsettings.php:377
2784
+ msgid "Transaction Security Key"
2785
+ msgstr "کلید امنیتی تراکنش"
2786
+
2787
+ #: classes/gateways/class.pmprogateway_payflowpro.php:39
2788
+ msgid "Payflow Pro/PayPal Pro"
2789
+ msgstr "Payflow Pro/PayPal Pro"
2790
+
2791
+ #: classes/gateways/class.pmprogateway_payflowpro.php:95
2792
+ msgid "Payflow Pro Settings"
2793
+ msgstr "تنظیمات Payflow Pro"
2794
+
2795
+ #: classes/gateways/class.pmprogateway_payflowpro.php:100
2796
+ #: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:199
2797
+ #: adminpages/paymentsettings.php:204
2798
+ msgid "Partner"
2799
+ msgstr "همکار"
2800
+
2801
+ #: classes/gateways/class.pmprogateway_payflowpro.php:108
2802
+ #: adminpages/paymentsettings.php:203 adminpages/paymentsettings.php:207
2803
+ #: adminpages/paymentsettings.php:212
2804
+ msgid "Vendor"
2805
+ msgstr "فروشنده"
2806
+
2807
+ #: classes/gateways/class.pmprogateway_payflowpro.php:124 pages/checkout.php:189
2808
+ #: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:223
2809
+ #: adminpages/paymentsettings.php:228 pages/checkout.php:177 pages/checkout.php:180
2810
+ #: pages/checkout.php:182
2811
+ msgid "Password"
2812
+ msgstr "رمزعبور"
2813
+
2814
+ #: classes/gateways/class.pmprogateway_payflowpro.php:132
2815
+ msgid "IPN Handler"
2816
+ msgstr "IPN Handler"
2817
+
2818
+ #: classes/gateways/class.pmprogateway_payflowpro.php:137
2819
+ #, php-format
2820
+ msgid ""
2821
+ "Payflow does not use IPN. To sync recurring subscriptions, please see <a target="
2822
+ "\"_blank\" href=\"%s\">this addon</a>."
2823
+ msgstr ""
2824
+ "Payflow از IPN استفاده نمی کنید. برای همگامسازی اشتراک در محدوده زمانی معین، مراجعه "
2825
+ "کنید به <a target=\"_blank\" href=\"%s\">این افزونه</a> ."
2826
+
2827
+ #: classes/gateways/class.pmprogateway_payflowpro.php:194
2828
+ #: classes/gateways/class.pmprogateway_paypal.php:277
2829
+ #: classes/gateways/class.pmprogateway_payflowpro.php:57
2830
+ #: classes/gateways/class.pmprogateway_paypal.php:57
2831
+ msgid ""
2832
+ "A partial payment was made that we could not refund. Please contact the site owner "
2833
+ "immediately to correct this."
2834
+ msgstr ""
2835
+ "پرداخت جزئی صورت گرفته که ما نمی توانیم استرداد کنیم . لطفاً با مدیریت سایت تماس "
2836
+ "بگیرید سریعا تا اصلاح شود ."
2837
+
2838
+ #: classes/gateways/class.pmprogateway_paypal.php:57 paid-memberships-pro.php:127
2839
+ #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
2840
+ msgid "PayPal Website Payments Pro"
2841
+ msgstr "PayPal Website Payments Pro"
2842
+
2843
+ #: classes/gateways/class.pmprogateway_paypal.php:113
2844
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
2845
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:112
2846
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:118
2847
+ msgid "PayPal Settings"
2848
+ msgstr "تنظیمات PayPal"
2849
+
2850
+ #: classes/gateways/class.pmprogateway_paypal.php:118
2851
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
2852
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
2853
+ #: adminpages/paymentsettings.php:179
2854
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
2855
+ msgid ""
2856
+ "We do not recommend using PayPal Standard. We suggest using PayPal Express, Website "
2857
+ "Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href="
2858
+ "\"http://www.paidmembershipspro.com/2013/09/read-using-paypal-standard-paid-"
2859
+ "memberships-pro/\">More information on why can be found here.</a>"
2860
+ msgstr ""
2861
+ "ما استفاده از پی پال استاندارد را توصیه نمی کنیم. ما استفاده از پی پال اکسپرس را "
2862
+ "توصیه می کنیم، PayPal Website Payments Pro (میراث)، و یا PayPal Pro (Payflow Pro). "
2863
+ "<a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-"
2864
+ "paypal-standard-paid-memberships-pro/\">اطلاعات بیشتر در مورد همین دلیل می توان در "
2865
+ "اینجا یافت می شود.</a>"
2866
+
2867
+ #: classes/gateways/class.pmprogateway_paypal.php:123
2868
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:138
2869
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:122
2870
+ #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
2871
+ #: adminpages/paymentsettings.php:236
2872
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
2873
+ msgid "Gateway Account Email"
2874
+ msgstr "ایمیل حساب کاربری درگاه پرداخت"
2875
+
2876
+ #: classes/gateways/class.pmprogateway_paypal.php:131
2877
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:146
2878
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:130
2879
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
2880
+ #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
2881
+ #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
2882
+ #: adminpages/paymentsettings.php:336
2883
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:136
2884
+ #: classes/gateways/class.pmprogateway_twocheckout.php:113
2885
+ msgid "API Username"
2886
+ msgstr "نام کاربری API"
2887
+
2888
+ #: classes/gateways/class.pmprogateway_paypal.php:139
2889
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:154
2890
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:138
2891
+ #: classes/gateways/class.pmprogateway_twocheckout.php:130
2892
+ #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
2893
+ #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
2894
+ #: adminpages/paymentsettings.php:344
2895
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:144
2896
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
2897
+ msgid "API Password"
2898
+ msgstr "رمز عبور API"
2899
+
2900
+ #: classes/gateways/class.pmprogateway_paypal.php:147
2901
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2902
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:146
2903
+ #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
2904
+ #: adminpages/paymentsettings.php:260
2905
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:152
2906
+ msgid "API Signature"
2907
+ msgstr "امضاء API"
2908
+
2909
+ #: classes/gateways/class.pmprogateway_paypal.php:155
2910
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2911
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2912
+ #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
2913
+ #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
2914
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:160
2915
+ msgid "IPN Handler URL"
2916
+ msgstr "آدرس IPN Handler"
2917
+
2918
+ #: classes/gateways/class.pmprogateway_paypal.php:158
2919
+ msgid ""
2920
+ "This URL is passed to PayPal for all new charges and subscriptions. You SHOULD NOT "
2921
+ "set this in your PayPal account settings."
2922
+ msgstr ""
2923
+ "This URL is passed to PayPal for all new charges and subscriptions. You SHOULD NOT "
2924
+ "set this in your PayPal account settings."
2925
+
2926
+ #: classes/gateways/class.pmprogateway_paypal.php:178
2927
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:412
2928
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:202 pages/checkout.php:295
2929
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:402 pages/checkout.php:286
2930
+ #: pages/checkout.php:288 pages/checkout.php:302 pages/checkout.php:309
2931
+ #: pages/checkout.php:675 pages/checkout.php:682 pages/checkout.php:685
2932
+ #: pages/checkout.php:701
2933
+ msgid "Check Out with PayPal"
2934
+ msgstr "Check Out with PayPal"
2935
+
2936
+ #: classes/gateways/class.pmprogateway_paypal.php:184
2937
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
2938
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208 pages/checkout.php:713
2939
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408 pages/checkout.php:681
2940
+ #: pages/checkout.php:688 pages/checkout.php:691 pages/checkout.php:704
2941
+ #: pages/checkout.php:707
2942
+ msgid "Submit and Check Out"
2943
+ msgstr "Submit and Check Out"
2944
+
2945
+ #: classes/gateways/class.pmprogateway_paypal.php:184
2946
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
2947
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2948
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214 pages/checkout.php:713
2949
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2950
+ #: classes/gateways/class.pmprogateway_twocheckout.php:192 pages/checkout.php:681
2951
+ #: pages/checkout.php:688 pages/checkout.php:691 pages/checkout.php:704
2952
+ #: pages/checkout.php:707
2953
+ msgid "Submit and Confirm"
2954
+ msgstr "Submit and Confirm"
2955
+
2956
+ #: classes/gateways/class.pmprogateway_paypal.php:605
2957
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:750
2958
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:466
2959
+ #: classes/gateways/class.pmprogateway_paypal.php:385
2960
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:301
2961
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:303
2962
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:305
2963
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:731
2964
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:740
2965
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:216
2966
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:220
2967
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:230
2968
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:231
2969
+ msgid ""
2970
+ "Please contact the site owner or cancel your subscription from within PayPal to make "
2971
+ "sure you are not charged going forward."
2972
+ msgstr ""
2973
+ "Please contact the site owner or cancel your subscription from within PayPal to make "
2974
+ "sure you are not charged going forward."
2975
+
2976
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:73 paid-memberships-pro.php:126
2977
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:63 paid-memberships-pro.php:118
2978
+ #: paid-memberships-pro.php:119
2979
+ msgid "PayPal Express"
2980
+ msgstr "PayPal Express"
2981
+
2982
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:173
2983
+ #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
2984
+ #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
2985
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:163
2986
+ msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2987
+ msgstr "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2988
+
2989
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:278
2990
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:330
2991
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:268
2992
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:320 preheaders/checkout.php:690
2993
+ #: preheaders/checkout.php:697 preheaders/checkout.php:702 preheaders/checkout.php:735
2994
+ #: preheaders/checkout.php:750 preheaders/checkout.php:753 preheaders/checkout.php:754
2995
+ #: preheaders/checkout.php:757 preheaders/checkout.php:762 preheaders/checkout.php:803
2996
+ #: preheaders/checkout.php:822 preheaders/checkout.php:823
2997
+ msgid "The PayPal Token was lost."
2998
+ msgstr "The PayPal Token was lost."
2999
+
3000
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3001
+ #: paid-memberships-pro.php:129 paid-memberships-pro.php:121
3002
+ #: paid-memberships-pro.php:122
3003
+ msgid "PayPal Standard"
3004
+ msgstr "PayPal Standard"
3005
+
3006
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:157
3007
+ msgid ""
3008
+ "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal settings."
3009
+ msgstr ""
3010
+ "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal settings."
3011
+
3012
+ #: classes/gateways/class.pmprogateway_stripe.php:104 paid-memberships-pro.php:125
3013
+ #: classes/gateways/class.pmprogateway_stripe.php:93
3014
+ #: classes/gateways/class.pmprogateway_stripe.php:94 paid-memberships-pro.php:117
3015
+ #: paid-memberships-pro.php:118
3016
+ msgid "Stripe"
3017
+ msgstr "Stripe"
3018
+
3019
+ #: classes/gateways/class.pmprogateway_stripe.php:159
3020
+ #: classes/gateways/class.pmprogateway_stripe.php:148
3021
+ #: classes/gateways/class.pmprogateway_stripe.php:149
3022
+ msgid "Stripe Settings"
3023
+ msgstr "Stripe Settings"
3024
+
3025
+ #: classes/gateways/class.pmprogateway_stripe.php:164 adminpages/paymentsettings.php:277
3026
+ #: adminpages/paymentsettings.php:281 adminpages/paymentsettings.php:286
3027
+ #: classes/gateways/class.pmprogateway_stripe.php:153
3028
+ #: classes/gateways/class.pmprogateway_stripe.php:154
3029
+ msgid "Secret Key"
3030
+ msgstr "Secret Key"
3031
+
3032
+ #: classes/gateways/class.pmprogateway_stripe.php:172 adminpages/paymentsettings.php:285
3033
+ #: adminpages/paymentsettings.php:289 adminpages/paymentsettings.php:294
3034
+ #: classes/gateways/class.pmprogateway_stripe.php:161
3035
+ #: classes/gateways/class.pmprogateway_stripe.php:162
3036
+ msgid "Publishable Key"
3037
+ msgstr "Publishable Key"
3038
+
3039
+ #: classes/gateways/class.pmprogateway_stripe.php:180 adminpages/paymentsettings.php:425
3040
+ #: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:432
3041
+ #: classes/gateways/class.pmprogateway_stripe.php:169
3042
+ #: classes/gateways/class.pmprogateway_stripe.php:170
3043
+ msgid "Show Billing Address Fields"
3044
+ msgstr "Show Billing Address Fields"
3045
+
3046
+ #: classes/gateways/class.pmprogateway_stripe.php:187 adminpages/paymentsettings.php:437
3047
+ #: adminpages/paymentsettings.php:439 classes/gateways/class.pmprogateway_stripe.php:176
3048
+ #: classes/gateways/class.pmprogateway_stripe.php:177
3049
+ msgid ""
3050
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on the "
3051
+ "checkout page.<br /><strong>If No, make sure you disable address verification in the "
3052
+ "Stripe dashboard settings.</strong>"
3053
+ msgstr ""
3054
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on the "
3055
+ "checkout page.<br /><strong>If No, make sure you disable address verification in the "
3056
+ "Stripe dashboard settings.</strong>"
3057
+
3058
+ #: classes/gateways/class.pmprogateway_stripe.php:195 adminpages/paymentsettings.php:465
3059
+ #: adminpages/paymentsettings.php:506 adminpages/paymentsettings.php:512
3060
+ #: adminpages/paymentsettings.php:514 classes/gateways/class.pmprogateway_stripe.php:184
3061
+ #: classes/gateways/class.pmprogateway_stripe.php:185
3062
+ msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3063
+ msgstr "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3064
+
3065
+ #: classes/gateways/class.pmprogateway_stripe.php:578
3066
+ #: classes/gateways/class.pmprogateway_stripe.php:567
3067
+ #: classes/gateways/class.pmprogateway_stripe.php:568
3068
+ msgid "Subscription Updates"
3069
+ msgstr "به روز رسانی اشتراک"
3070
+
3071
+ #: classes/gateways/class.pmprogateway_stripe.php:582
3072
+ #: classes/gateways/class.pmprogateway_stripe.php:571
3073
+ #: classes/gateways/class.pmprogateway_stripe.php:572
3074
+ msgid ""
3075
+ "Subscription updates, allow you to change the member's subscription values at "
3076
+ "predefined times. Be sure to click Update Profile after making changes."
3077
+ msgstr ""
3078
+ "Subscription updates, allow you to change the member's subscription values at "
3079
+ "predefined times. Be sure to click Update Profile after making changes."
3080
+
3081
+ #: classes/gateways/class.pmprogateway_stripe.php:584
3082
+ #: classes/gateways/class.pmprogateway_stripe.php:573
3083
+ #: classes/gateways/class.pmprogateway_stripe.php:574
3084
+ msgid ""
3085
+ "Subscription updates, allow you to change the member's subscription values at "
3086
+ "predefined times. Be sure to click Update User after making changes."
3087
+ msgstr ""
3088
+ "Subscription updates, allow you to change the member's subscription values at "
3089
+ "predefined times. Be sure to click Update User after making changes."
3090
+
3091
+ #: classes/gateways/class.pmprogateway_stripe.php:589 pages/billing.php:338
3092
+ #: classes/gateways/class.pmprogateway_stripe.php:578
3093
+ #: classes/gateways/class.pmprogateway_stripe.php:579 pages/billing.php:294
3094
+ #: pages/billing.php:298 pages/billing.php:329
3095
+ msgid "Update"
3096
+ msgstr "‌بروزرسانی"
3097
+
3098
+ #: classes/gateways/class.pmprogateway_stripe.php:780
3099
+ #: classes/gateways/class.pmprogateway_stripe.php:769
3100
+ #: classes/gateways/class.pmprogateway_stripe.php:770
3101
+ msgid "Could not cancel the old subscription. Updates have not been processed."
3102
+ msgstr "قادر به لغو اشتراک قبل نمی باشد. به روز رسانی پردازش نشده است."
3103
+
3104
+ #: classes/gateways/class.pmprogateway_stripe.php:1214
3105
+ #: classes/gateways/class.pmprogateway_stripe.php:190
3106
+ #: classes/gateways/class.pmprogateway_stripe.php:192
3107
+ #: classes/gateways/class.pmprogateway_stripe.php:199
3108
+ #: classes/gateways/class.pmprogateway_stripe.php:201
3109
+ #: classes/gateways/class.pmprogateway_stripe.php:1187
3110
+ #: classes/gateways/class.pmprogateway_stripe.php:1188
3111
+ #: classes/gateways/class.pmprogateway_stripe.php:1202
3112
+ #: classes/gateways/class.pmprogateway_stripe.php:1203
3113
+ #: classes/gateways/class.pmprogateway_stripe.php:1204
3114
+ msgid "Error creating customer record with Stripe:"
3115
+ msgstr "خطا در ایجاد رکورد مشتری با Stripe:"
3116
+
3117
+ #: classes/gateways/class.pmprogateway_stripe.php:1271
3118
+ #: classes/gateways/class.pmprogateway_stripe.php:1421
3119
+ #: classes/gateways/class.pmprogateway_stripe.php:278
3120
+ #: classes/gateways/class.pmprogateway_stripe.php:279
3121
+ #: classes/gateways/class.pmprogateway_stripe.php:286
3122
+ #: classes/gateways/class.pmprogateway_stripe.php:302
3123
+ #: classes/gateways/class.pmprogateway_stripe.php:308
3124
+ #: classes/gateways/class.pmprogateway_stripe.php:311
3125
+ #: classes/gateways/class.pmprogateway_stripe.php:1244
3126
+ #: classes/gateways/class.pmprogateway_stripe.php:1245
3127
+ #: classes/gateways/class.pmprogateway_stripe.php:1259
3128
+ #: classes/gateways/class.pmprogateway_stripe.php:1260
3129
+ #: classes/gateways/class.pmprogateway_stripe.php:1261
3130
+ #: classes/gateways/class.pmprogateway_stripe.php:1390
3131
+ #: classes/gateways/class.pmprogateway_stripe.php:1391
3132
+ #: classes/gateways/class.pmprogateway_stripe.php:1409
3133
+ #: classes/gateways/class.pmprogateway_stripe.php:1410
3134
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
3135
+ msgid "Error creating plan with Stripe:"
3136
+ msgstr "خطا در ایجاد پلن با Stripe:"
3137
+
3138
+ #: classes/gateways/class.pmprogateway_stripe.php:1452
3139
+ #: classes/gateways/class.pmprogateway_stripe.php:294
3140
+ #: classes/gateways/class.pmprogateway_stripe.php:295
3141
+ #: classes/gateways/class.pmprogateway_stripe.php:302
3142
+ #: classes/gateways/class.pmprogateway_stripe.php:318
3143
+ #: classes/gateways/class.pmprogateway_stripe.php:324
3144
+ #: classes/gateways/class.pmprogateway_stripe.php:330
3145
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
3146
+ #: classes/gateways/class.pmprogateway_stripe.php:1421
3147
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
3148
+ #: classes/gateways/class.pmprogateway_stripe.php:1440
3149
+ #: classes/gateways/class.pmprogateway_stripe.php:1441
3150
+ #: classes/gateways/class.pmprogateway_stripe.php:1442
3151
+ msgid "Error subscribing customer to plan with Stripe:"
3152
+ msgstr "خطا در عضویت مشتری در پلن با Stripe:"
3153
+
3154
+ #: classes/gateways/class.pmprogateway_stripe.php:1548
3155
+ #: classes/gateways/class.pmprogateway_stripe.php:383
3156
+ #: classes/gateways/class.pmprogateway_stripe.php:389
3157
+ #: classes/gateways/class.pmprogateway_stripe.php:410
3158
+ #: classes/gateways/class.pmprogateway_stripe.php:1516
3159
+ #: classes/gateways/class.pmprogateway_stripe.php:1517
3160
+ #: classes/gateways/class.pmprogateway_stripe.php:1518
3161
+ #: classes/gateways/class.pmprogateway_stripe.php:1536
3162
+ #: classes/gateways/class.pmprogateway_stripe.php:1537
3163
+ #: classes/gateways/class.pmprogateway_stripe.php:1538
3164
+ msgid "Could not cancel old subscription."
3165
+ msgstr "اشتراک های قدیمی را نمی توان لغو کرد"
3166
+
3167
+ #: classes/gateways/class.pmprogateway_stripe.php:1565
3168
+ #: classes/gateways/class.pmprogateway_stripe.php:1533
3169
+ #: classes/gateways/class.pmprogateway_stripe.php:1534
3170
+ #: classes/gateways/class.pmprogateway_stripe.php:1535
3171
+ #: classes/gateways/class.pmprogateway_stripe.php:1553
3172
+ #: classes/gateways/class.pmprogateway_stripe.php:1554
3173
+ #: classes/gateways/class.pmprogateway_stripe.php:1555
3174
+ msgid "Could not find the customer."
3175
+ msgstr "مشتری پیدا نشد"
3176
+
3177
+ #: classes/gateways/class.pmprogateway_twocheckout.php:60 paid-memberships-pro.php:132
3178
+ #: classes/gateways/class.pmprogateway_twocheckout.php:53 paid-memberships-pro.php:124
3179
+ #: paid-memberships-pro.php:125
3180
+ msgid "2Checkout"
3181
+ msgstr "2Checkout"
3182
+
3183
+ #: classes/gateways/class.pmprogateway_twocheckout.php:116
3184
+ #: classes/gateways/class.pmprogateway_twocheckout.php:108
3185
+ msgid "2Checkout Settings"
3186
+ msgstr "2Checkout Settings"
3187
+
3188
+ #: classes/gateways/class.pmprogateway_twocheckout.php:125
3189
+ msgid ""
3190
+ "Go to Account &raquo; User Management in 2Checkout and create a user with API Access "
3191
+ "and API Updating."
3192
+ msgstr ""
3193
+ "Go to Account &raquo; User Management in 2Checkout and create a user with API Access "
3194
+ "and API Updating."
3195
+
3196
+ #: classes/gateways/class.pmprogateway_twocheckout.php:134
3197
+ msgid "Password for the API user created."
3198
+ msgstr "Password for the API user created."
3199
+
3200
+ #: classes/gateways/class.pmprogateway_twocheckout.php:139
3201
+ msgid "API Private Key"
3202
+ msgstr "API Private Key"
3203
+
3204
+ #: classes/gateways/class.pmprogateway_twocheckout.php:143
3205
+ msgid "Go to API in 2Checkout and generate a new key pair. Paste the Private Key here."
3206
+ msgstr "Go to API in 2Checkout and generate a new key pair. Paste the Private Key here."
3207
+
3208
+ #: classes/gateways/class.pmprogateway_twocheckout.php:152
3209
+ msgid "Click on the profile icon in 2Checkout to find your Account Number."
3210
+ msgstr "Click on the profile icon in 2Checkout to find your Account Number."
3211
+
3212
+ #: classes/gateways/class.pmprogateway_twocheckout.php:157
3213
+ #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3214
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
3215
+ msgid "Secret Word"
3216
+ msgstr "Secret Word"
3217
+
3218
+ #: classes/gateways/class.pmprogateway_twocheckout.php:161
3219
+ msgid ""
3220
+ "Go to Account &raquo; Site Management. Look under Checkout Options to find the Secret "
3221
+ "Word."
3222
+ msgstr ""
3223
+ "Go to Account &raquo; Site Management. Look under Checkout Options to find the Secret "
3224
+ "Word."
3225
+
3226
+ #: classes/gateways/class.pmprogateway_twocheckout.php:166
3227
+ #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
3228
+ #: adminpages/paymentsettings.php:495
3229
+ #: classes/gateways/class.pmprogateway_twocheckout.php:145
3230
+ msgid "TwoCheckout INS URL"
3231
+ msgstr "TwoCheckout INS URL"
3232
+
3233
+ #: classes/gateways/class.pmprogateway_twocheckout.php:169
3234
+ msgid ""
3235
+ "To fully integrate with 2Checkout, be sure to use the following for your INS URL and "
3236
+ "Approved URL"
3237
+ msgstr ""
3238
+ "To fully integrate with 2Checkout, be sure to use the following for your INS URL and "
3239
+ "Approved URL"
3240
+
3241
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3242
+ #: classes/gateways/class.pmprogateway_twocheckout.php:192
3243
+ msgid "Check Out with 2Checkout"
3244
+ msgstr "Check Out with 2Checkout"
3245
+
3246
+ #: includes/adminpages.php:47 includes/adminpages.php:9 includes/adminpages.php:39
3247
+ #: includes/adminpages.php:93 includes/adminpages.php:100
3248
+ msgid "Memberships"
3249
+ msgstr "عضویت ها"
3250
+
3251
+ #: includes/adminpages.php:48 includes/adminpages.php:118 includes/adminpages.php:10
3252
+ #: includes/adminpages.php:49 includes/adminpages.php:107 includes/adminpages.php:114
3253
+ msgid "Page Settings"
3254
+ msgstr "تنظیمات برگه"
3255
+
3256
+ #: includes/adminpages.php:49 includes/adminpages.php:125 includes/adminpages.php:11
3257
+ #: includes/adminpages.php:54 includes/adminpages.php:114 includes/adminpages.php:121
3258
+ msgid "Payment Settings"
3259
+ msgstr "تنظیمات پرداخت"
3260
+
3261
+ #: includes/adminpages.php:54 includes/adminpages.php:160 includes/adminpages.php:16
3262
+ #: includes/adminpages.php:79 includes/adminpages.php:149 includes/adminpages.php:156
3263
+ msgid "Reports"
3264
+ msgstr "گزارش ها"
3265
+
3266
+ #: includes/adminpages.php:56 includes/adminpages.php:174 includes/adminpages.php:18
3267
+ #: includes/adminpages.php:89 includes/adminpages.php:163 includes/adminpages.php:170
3268
+ msgid "Discount Codes"
3269
+ msgstr "کد تخفیف"
3270
+
3271
+ #: includes/adminpages.php:104 includes/adminpages.php:100
3272
+ msgid "<span class=\"ab-icon\"></span>Memberships"
3273
+ msgstr "عضویت ها <span class=\"ab-icon\"></span>"
3274
+
3275
+ #: includes/adminpages.php:265 includes/adminpages.php:261
3276
+ msgid "Docs"
3277
+ msgstr "اسناد"
3278
+
3279
+ #: includes/adminpages.php:265 includes/adminpages.php:261
3280
+ msgid "View PMPro Documentation"
3281
+ msgstr "View PMPro Documentation"
3282
+
3283
+ #: includes/adminpages.php:266 includes/adminpages.php:262
3284
+ msgid "Support"
3285
+ msgstr "Support"
3286
+
3287
+ #: includes/adminpages.php:266 includes/adminpages.php:262
3288
+ msgid "Visit Customer Support Forum"
3289
+ msgstr "Visit Customer Support Forum"
3290
+
3291
+ #: includes/currencies.php:7 includes/currencies.php:75 includes/currencies.php:37
3292
+ #: includes/currencies.php:44 includes/currencies.php:64 includes/currencies.php:68
3293
+ msgid "US Dollars (&#36;)"
3294
+ msgstr "دلار (&#36;)"
3295
+
3296
+ #: includes/currencies.php:9 includes/currencies.php:78 includes/currencies.php:8
3297
+ #: includes/currencies.php:40 includes/currencies.php:47 includes/currencies.php:67
3298
+ #: includes/currencies.php:71
3299
+ msgid "Euros (&euro;)"
3300
+ msgstr "هزار تومان (هزار تومان)"
3301
+
3302
+ #: includes/currencies.php:14 includes/currencies.php:77 includes/currencies.php:9
3303
+ #: includes/currencies.php:39 includes/currencies.php:46 includes/currencies.php:66
3304
+ #: includes/currencies.php:70
3305
+ msgid "Pounds Sterling (&pound;)"
3306
+ msgstr "پوند (&pound;)"
3307
+
3308
+ #: includes/currencies.php:18 includes/currencies.php:10
3309
+ msgid "Australian Dollars (&#36;)"
3310
+ msgstr "دلار استرالیا (&#36;)"
3311
+
3312
+ #: includes/currencies.php:20
3313
+ msgid "Brazilian Real (R&#36;)"
3314
+ msgstr "برزیل ریل (R $)"
3315
+
3316
+ #: includes/currencies.php:24 includes/currencies.php:76 includes/currencies.php:12
3317
+ #: includes/currencies.php:38 includes/currencies.php:45 includes/currencies.php:65
3318
+ #: includes/currencies.php:69
3319
+ msgid "Canadian Dollars (&#36;)"
3320
+ msgstr "دلار کانادا (&#36;)"
3321
+
3322
+ #: includes/currencies.php:25 includes/currencies.php:13
3323
+ msgid "Chinese Yuan"
3324
+ msgstr "یوان چین"
3325
+
3326
+ #: includes/currencies.php:27 includes/currencies.php:13 includes/currencies.php:14
3327
+ #: includes/currencies.php:26
3328
+ msgid "Czech Koruna"
3329
+ msgstr "کرونا چک"
3330
+
3331
+ #: includes/currencies.php:34 includes/currencies.php:14 includes/currencies.php:15
3332
+ #: includes/currencies.php:27
3333
+ msgid "Danish Krone"
3334
+ msgstr "کرون دانمارک"
3335
+
3336
+ #: includes/currencies.php:35 includes/currencies.php:15 includes/currencies.php:16
3337
+ #: includes/currencies.php:28
3338
+ msgid "Hong Kong Dollar (&#36;)"
3339
+ msgstr "دلار هنگ کنگ (&#36;)"
3340
+
3341
+ #: includes/currencies.php:36 includes/currencies.php:16 includes/currencies.php:17
3342
+ #: includes/currencies.php:29
3343
+ msgid "Hungarian Forint"
3344
+ msgstr "فورینت مجارستان"
3345
+
3346
+ #: includes/currencies.php:37 includes/currencies.php:18 includes/currencies.php:30
3347
+ msgid "Indian Rupee"
3348
+ msgstr "روپیه هند"
3349
+
3350
+ #: includes/currencies.php:38 includes/currencies.php:19 includes/currencies.php:31
3351
+ msgid "Indonesia Rupiah"
3352
+ msgstr "روپیه اندونزی"
3353
+
3354
+ #: includes/currencies.php:39 includes/currencies.php:17 includes/currencies.php:20
3355
+ #: includes/currencies.php:32
3356
+ msgid "Israeli Shekel"
3357
+ msgstr "شکل اسرائیل"
3358
+
3359
+ #: includes/currencies.php:41 includes/currencies.php:18 includes/currencies.php:21
3360
+ #: includes/currencies.php:34
3361
+ msgid "Japanese Yen (&yen;)"
3362
+ msgstr "ین ژاپن (&yen;)"
3363
+
3364
+ #: includes/currencies.php:45 includes/currencies.php:19 includes/currencies.php:22
3365
+ #: includes/currencies.php:38
3366
+ msgid "Malaysian Ringgits"
3367
+ msgstr "رینگیت مالزی"
3368
+
3369
+ #: includes/currencies.php:46 includes/currencies.php:20 includes/currencies.php:23
3370
+ #: includes/currencies.php:39
3371
+ msgid "Mexican Peso (&#36;)"
3372
+ msgstr "پزوی مکزیک (&#36;)"
3373
+
3374
+ #: includes/currencies.php:47 includes/currencies.php:21 includes/currencies.php:24
3375
+ #: includes/currencies.php:40
3376
+ msgid "New Zealand Dollar (&#36;)"
3377
+ msgstr "دلار نیوزلند (&#36;)"
3378
+
3379
+ #: includes/currencies.php:48 includes/currencies.php:22 includes/currencies.php:25
3380
+ #: includes/currencies.php:41
3381
+ msgid "Norwegian Krone"
3382
+ msgstr "کرون نروژ"
3383
+
3384
+ #: includes/currencies.php:49 includes/currencies.php:23 includes/currencies.php:26
3385
+ #: includes/currencies.php:42
3386
+ msgid "Philippine Pesos"
3387
+ msgstr "پزو فیلیپین"
3388
+
3389
+ #: includes/currencies.php:50 includes/currencies.php:24 includes/currencies.php:27
3390
+ #: includes/currencies.php:43
3391
+ msgid "Polish Zloty"
3392
+ msgstr "زلوتی لهستان"
3393
+
3394
+ #: includes/currencies.php:52 includes/currencies.php:25 includes/currencies.php:28
3395
+ #: includes/currencies.php:45
3396
+ msgid "Singapore Dollar (&#36;)"
3397
+ msgstr "دلار سنگاپور (&#36;)"
3398
+
3399
+ #: includes/currencies.php:57 includes/currencies.php:50
3400
+ msgid "South African Rand (R)"
3401
+ msgstr "راند آفریقا جنوبی (R)"
3402
+
3403
+ #: includes/currencies.php:61 includes/currencies.php:30 includes/currencies.php:50
3404
+ #: includes/currencies.php:54
3405
+ msgid "South Korean Won"
3406
+ msgstr "وون کره جنوبی"
3407
+
3408
+ #: includes/currencies.php:62 includes/currencies.php:26 includes/currencies.php:31
3409
+ #: includes/currencies.php:51 includes/currencies.php:55
3410
+ msgid "Swedish Krona"
3411
+ msgstr "کرون سوئد"
3412
+
3413
+ #: includes/currencies.php:63 includes/currencies.php:27 includes/currencies.php:32
3414
+ #: includes/currencies.php:52 includes/currencies.php:56
3415
+ msgid "Swiss Franc"
3416
+ msgstr "فرانک سوییس"
3417
+
3418
+ #: includes/currencies.php:64 includes/currencies.php:28 includes/currencies.php:33
3419
+ #: includes/currencies.php:53 includes/currencies.php:57
3420
+ msgid "Taiwan New Dollars"
3421
+ msgstr "دلار جدید تایوان"
3422
+
3423
+ #: includes/currencies.php:65 includes/currencies.php:29 includes/currencies.php:34
3424
+ #: includes/currencies.php:54 includes/currencies.php:58
3425
+ msgid "Thai Baht"
3426
+ msgstr "بات تایلند"
3427
+
3428
+ #: includes/currencies.php:66 includes/currencies.php:35 includes/currencies.php:55
3429
+ #: includes/currencies.php:59
3430
+ msgid "Turkish Lira"
3431
+ msgstr "لیر ترکیه"
3432
+
3433
+ #: includes/currencies.php:67 includes/currencies.php:36 includes/currencies.php:56
3434
+ #: includes/currencies.php:60
3435
+ msgid "Vietnamese Dong"
3436
+ msgstr "دونگ ویتنام"
3437
+
3438
+ #: includes/functions.php:200 includes/functions.php:160 includes/functions.php:196
3439
+ #: includes/functions.php:202 includes/functions.php:203 includes/functions.php:204
3440
+ #: includes/functions.php:207
3441
+ #, php-format
3442
+ msgid "The price for membership is <strong>%s</strong> now"
3443
+ msgstr "هم اکنون هزینه عضویت <strong>%s</strong> است"
3444
+
3445
+ #: includes/functions.php:202 includes/functions.php:204 includes/functions.php:205
3446
+ #: includes/functions.php:206 includes/functions.php:209
3447
+ #, php-format
3448
+ msgid "<strong>%s</strong> now"
3449
+ msgstr "حالا <strong>%s</strong>"
3450
+
3451
+ #: includes/functions.php:211 includes/functions.php:169 includes/functions.php:205
3452
+ #: includes/functions.php:213 includes/functions.php:214 includes/functions.php:215
3453
+ #: includes/functions.php:218
3454
+ #, php-format
3455
+ msgid " and then <strong>%s per %s for %d more %s</strong>."
3456
+ msgstr "وسپس <strong>%s هر %s برای %d روز بیشتر %s</strong>."
3457
+
3458
+ #: includes/functions.php:215 includes/functions.php:173 includes/functions.php:209
3459
+ #: includes/functions.php:217 includes/functions.php:218 includes/functions.php:219
3460
+ #: includes/functions.php:222
3461
+ #, php-format
3462
+ msgid " and then <strong>%s every %d %s for %d more %s</strong>."
3463
+ msgstr "و سپس <strong>%s هر %d %s برای %d روز بیشتر %s</strong>."
3464
+
3465
+ #: includes/functions.php:220 includes/functions.php:178 includes/functions.php:214
3466
+ #: includes/functions.php:222 includes/functions.php:223 includes/functions.php:224
3467
+ #: includes/functions.php:227
3468
+ #, php-format
3469
+ msgid " and then <strong>%s after %d %s</strong>."
3470
+ msgstr "و سپس <strong>%s بعد از %d %s</strong>"
3471
+
3472
+ #: includes/functions.php:228 includes/functions.php:229 includes/functions.php:230
3473
+ #: includes/functions.php:231 includes/functions.php:235
3474
+ #, php-format
3475
+ msgid "The price for membership is <strong>%s per %s</strong>."
3476
+ msgstr "قیمت برای عضویت <strong>%s به ازای %s</strong>"
3477
+
3478
+ #: includes/functions.php:230 includes/functions.php:233 includes/functions.php:237
3479
+ #, php-format
3480
+ msgid "<strong>%s per %s</strong>."
3481
+ msgstr "<strong>%s به ازای هر %s</strong>."
3482
+
3483
+ #: includes/functions.php:235 includes/functions.php:233 includes/functions.php:234
3484
+ #: includes/functions.php:238 includes/functions.php:242
3485
+ #, php-format
3486
+ msgid "The price for membership is <strong>%s every %d %s</strong>."
3487
+ msgstr "قیمت برای عضویت <strong> %s هر %d %s</strong>."
3488
+
3489
+ #: includes/functions.php:237 includes/functions.php:240 includes/functions.php:244
3490
+ #, php-format
3491
+ msgid "<strong>%s every %d %s</strong>."
3492
+ msgstr "<strong> %s هر %d %s</strong>."
3493
+
3494
+ #: includes/functions.php:242 includes/functions.php:184 includes/functions.php:220
3495
+ #: includes/functions.php:228 includes/functions.php:238 includes/functions.php:239
3496
+ #: includes/functions.php:240 includes/functions.php:245 includes/functions.php:249
3497
+ #, php-format
3498
+ msgid " and then <strong>%s per %s</strong>."
3499
+ msgstr "و سپس <strong>%s به ازای %s</strong>."
3500
+
3501
+ #: includes/functions.php:246 includes/functions.php:188 includes/functions.php:224
3502
+ #: includes/functions.php:232 includes/functions.php:242 includes/functions.php:243
3503
+ #: includes/functions.php:244 includes/functions.php:249 includes/functions.php:253
3504
+ #, php-format
3505
+ msgid " and then <strong>%s every %d %s</strong>."
3506
+ msgstr "و سپس <strong>%s هر %d %s</strong>"
3507
+
3508
+ #: includes/functions.php:264 includes/functions.php:202 includes/functions.php:238
3509
+ #: includes/functions.php:249 includes/functions.php:260 includes/functions.php:261
3510
+ #: includes/functions.php:262 includes/functions.php:267 includes/functions.php:271
3511
+ #: pages/levels.php:82
3512
+ msgid "After your initial payment, your first payment is Free."
3513
+ msgstr "بعد از پرداخت اولیه، پرداخت اول شما رایگان است."
3514
+
3515
+ #: includes/functions.php:268 includes/functions.php:206 includes/functions.php:242
3516
+ #: includes/functions.php:253 includes/functions.php:264 includes/functions.php:265
3517
+ #: includes/functions.php:266 includes/functions.php:271 includes/functions.php:275
3518
+ #: pages/levels.php:86
3519
+ #, php-format
3520
+ msgid "After your initial payment, your first %d payments are Free."
3521
+ msgstr "بعد از پرداخت اولیه، اولین %d پرداخت شما رایگان است."
3522
+
3523
+ #: includes/functions.php:275 includes/functions.php:213 includes/functions.php:249
3524
+ #: includes/functions.php:260 includes/functions.php:271 includes/functions.php:272
3525
+ #: includes/functions.php:273 includes/functions.php:278 includes/functions.php:282
3526
+ #: pages/levels.php:93
3527
+ #, php-format
3528
+ msgid "After your initial payment, your first payment will cost %s."
3529
+ msgstr "بعد از پرداخت اولیه، پرداخت اول شما %s هزینه خواهد داشت."
3530
+
3531
+ #: includes/functions.php:279 includes/functions.php:217 includes/functions.php:253
3532
+ #: includes/functions.php:264 includes/functions.php:275 includes/functions.php:276
3533
+ #: includes/functions.php:277 includes/functions.php:282 includes/functions.php:286
3534
+ #: pages/levels.php:97
3535
+ #, php-format
3536
+ msgid "After your initial payment, your first %d payments will cost %s."
3537
+ msgstr "بعد از پرداخت اولیه، %d پرداخت اول شما %s هزینه خواهد داشت."
3538
+
3539
+ #: includes/functions.php:290 includes/functions.php:228 includes/functions.php:264
3540
+ #: includes/functions.php:275 includes/functions.php:286 includes/functions.php:287
3541
+ #: includes/functions.php:288 includes/functions.php:293 includes/functions.php:297
3542
+ #, php-format
3543
+ msgid "Customers in %s will be charged %s%% tax."
3544
+ msgstr "مشتریان %s شامل %s%% مالیات خواهند شد."
3545
+
3546
+ #: includes/functions.php:304 includes/functions.php:242 includes/functions.php:278
3547
+ #: includes/functions.php:289 includes/functions.php:300 includes/functions.php:301
3548
+ #: includes/functions.php:302 includes/functions.php:307 includes/functions.php:311
3549
+ #, php-format
3550
+ msgid "Membership expires after %d %s."
3551
+ msgstr "عضویت بعد از%d %s منقضی خواهد شد."
3552
+
3553
+ #: includes/functions.php:615 includes/functions.php:491 includes/functions.php:514
3554
+ #: includes/functions.php:525 includes/functions.php:536 includes/functions.php:537
3555
+ #: includes/functions.php:538 includes/functions.php:545 includes/functions.php:569
3556
+ #: includes/functions.php:570 includes/functions.php:576 includes/functions.php:592
3557
+ msgid "User ID not found."
3558
+ msgstr "شناسه کاربر یافت نشد."
3559
+
3560
+ #: includes/functions.php:635 includes/functions.php:508 includes/functions.php:531
3561
+ #: includes/functions.php:542 includes/functions.php:553 includes/functions.php:554
3562
+ #: includes/functions.php:555 includes/functions.php:562 includes/functions.php:586
3563
+ #: includes/functions.php:587 includes/functions.php:589 includes/functions.php:596
3564
+ #: includes/functions.php:612
3565
+ msgid "Invalid level."
3566
+ msgstr "سطح نامعتبر است."
3567
+
3568
+ #: includes/functions.php:646 includes/functions.php:520 includes/functions.php:542
3569
+ #: includes/functions.php:553 includes/functions.php:564 includes/functions.php:565
3570
+ #: includes/functions.php:566 includes/functions.php:573 includes/functions.php:597
3571
+ #: includes/functions.php:598 includes/functions.php:600 includes/functions.php:607
3572
+ #: includes/functions.php:623
3573
+ msgid "not changing?"
3574
+ msgstr "تغییر نمیکند؟"
3575
+
3576
+ #: includes/functions.php:663 includes/functions.php:722 includes/functions.php:746
3577
+ #: includes/functions.php:537 includes/functions.php:559 includes/functions.php:570
3578
+ #: includes/functions.php:581 includes/functions.php:582 includes/functions.php:583
3579
+ #: includes/functions.php:590 includes/functions.php:592 includes/functions.php:605
3580
+ #: includes/functions.php:614 includes/functions.php:615 includes/functions.php:617
3581
+ #: includes/functions.php:624 includes/functions.php:626 includes/functions.php:628
3582
+ #: includes/functions.php:631 includes/functions.php:632 includes/functions.php:633
3583
+ #: includes/functions.php:637 includes/functions.php:640 includes/functions.php:649
3584
+ #: includes/functions.php:656 includes/functions.php:657 includes/functions.php:673
3585
+ #: includes/functions.php:674 includes/functions.php:676 includes/functions.php:683
3586
+ #: includes/functions.php:697 includes/functions.php:698 includes/functions.php:699
3587
+ #: includes/functions.php:700 includes/functions.php:707 includes/functions.php:723
3588
+ msgid "Error interacting with database"
3589
+ msgstr "خطا در برقراری ارتباط با پایگاه داده"
3590
+
3591
+ #: includes/functions.php:787 includes/functions.php:826 includes/functions.php:629
3592
+ #: includes/functions.php:651 includes/functions.php:667 includes/functions.php:668
3593
+ #: includes/functions.php:678 includes/functions.php:681 includes/functions.php:690
3594
+ #: includes/functions.php:697 includes/functions.php:698 includes/functions.php:706
3595
+ #: includes/functions.php:714 includes/functions.php:717 includes/functions.php:720
3596
+ #: includes/functions.php:736 includes/functions.php:737 includes/functions.php:738
3597
+ #: includes/functions.php:739 includes/functions.php:741 includes/functions.php:748
3598
+ #: includes/functions.php:753 includes/functions.php:764 includes/functions.php:777
3599
+ #: includes/functions.php:778 includes/functions.php:780 includes/functions.php:803
3600
+ msgid "Membership level not found."
3601
+ msgstr "سطح عضویت یافت نشد."
3602
+
3603
+ #: includes/functions.php:1196 includes/functions.php:1100 includes/functions.php:1101
3604
+ #: includes/functions.php:1118 includes/functions.php:1142 includes/functions.php:1143
3605
+ #: includes/functions.php:1150 includes/functions.php:1157 includes/functions.php:1173
3606
+ msgid "No code was given to check."
3607
+ msgstr "کدی برای بررسی داده نشد."
3608
+
3609
+ #: includes/functions.php:1205 includes/functions.php:1050 includes/functions.php:1072
3610
+ #: includes/functions.php:1088 includes/functions.php:1099 includes/functions.php:1102
3611
+ #: includes/functions.php:1109 includes/functions.php:1110 includes/functions.php:1112
3612
+ #: includes/functions.php:1113 includes/functions.php:1127 includes/functions.php:1151
3613
+ #: includes/functions.php:1152 includes/functions.php:1159 includes/functions.php:1166
3614
+ #: includes/functions.php:1182
3615
+ msgid "The discount code could not be found."
3616
+ msgstr "کد تخفیف یافت نمی شود."
3617
+
3618
+ #: includes/functions.php:1220 includes/functions.php:1066 includes/functions.php:1088
3619
+ #: includes/functions.php:1104 includes/functions.php:1115 includes/functions.php:1118
3620
+ #: includes/functions.php:1124 includes/functions.php:1125 includes/functions.php:1128
3621
+ #: includes/functions.php:1129 includes/functions.php:1142 includes/functions.php:1166
3622
+ #: includes/functions.php:1167 includes/functions.php:1174 includes/functions.php:1181
3623
+ #: includes/functions.php:1197
3624
+ #, php-format
3625
+ msgid "This discount code goes into effect on %s."
3626
+ msgstr "این کد تخفیف برای %s موثر است"
3627
+
3628
+ #: includes/functions.php:1227 includes/functions.php:1075 includes/functions.php:1097
3629
+ #: includes/functions.php:1113 includes/functions.php:1124 includes/functions.php:1127
3630
+ #: includes/functions.php:1131 includes/functions.php:1132 includes/functions.php:1137
3631
+ #: includes/functions.php:1138 includes/functions.php:1149 includes/functions.php:1173
3632
+ #: includes/functions.php:1174 includes/functions.php:1181 includes/functions.php:1188
3633
+ #: includes/functions.php:1204
3634
+ #, php-format
3635
+ msgid "This discount code expired on %s."
3636
+ msgstr "تاریخ اتمام کد تخفیف در %s."
3637
+
3638
+ #: includes/functions.php:1237 includes/functions.php:1087 includes/functions.php:1109
3639
+ #: includes/functions.php:1125 includes/functions.php:1136 includes/functions.php:1139
3640
+ #: includes/functions.php:1141 includes/functions.php:1142 includes/functions.php:1149
3641
+ #: includes/functions.php:1150 includes/functions.php:1159 includes/functions.php:1183
3642
+ #: includes/functions.php:1184 includes/functions.php:1191 includes/functions.php:1198
3643
+ #: includes/functions.php:1214
3644
+ msgid "This discount code is no longer valid."
3645
+ msgstr "این کد تخفیف دیگر معتبر نیست."
3646
+
3647
+ #: includes/functions.php:1250 includes/functions.php:1102 includes/functions.php:1124
3648
+ #: includes/functions.php:1140 includes/functions.php:1151 includes/functions.php:1154
3649
+ #: includes/functions.php:1155 includes/functions.php:1164 includes/functions.php:1165
3650
+ #: includes/functions.php:1172 includes/functions.php:1196 includes/functions.php:1197
3651
+ #: includes/functions.php:1204 includes/functions.php:1211 includes/functions.php:1227
3652
+ msgid "This discount code does not apply to this membership level."
3653
+ msgstr "این کد تخفیف روی این سطح عضویت اعمال نمی شود."
3654
+
3655
+ #: includes/functions.php:1276 includes/functions.php:1110 includes/functions.php:1132
3656
+ #: includes/functions.php:1148 includes/functions.php:1159 includes/functions.php:1162
3657
+ #: includes/functions.php:1172 includes/functions.php:1180 includes/functions.php:1181
3658
+ #: includes/functions.php:1182 includes/functions.php:1198 includes/functions.php:1222
3659
+ #: includes/functions.php:1223 includes/functions.php:1230 includes/functions.php:1237
3660
+ #: includes/functions.php:1253
3661
+ msgid "This discount code is okay."
3662
+ msgstr "کد تخفیف صحیح است."
3663
+
3664
+ #: includes/functions.php:1301 includes/functions.php:1134 includes/functions.php:1156
3665
+ #: includes/functions.php:1172 includes/functions.php:1183 includes/functions.php:1186
3666
+ #: includes/functions.php:1196 includes/functions.php:1205 includes/functions.php:1206
3667
+ #: includes/functions.php:1223 includes/functions.php:1247 includes/functions.php:1248
3668
+ #: includes/functions.php:1255 includes/functions.php:1262 includes/functions.php:1278
3669
+ msgid "and"
3670
+ msgstr "و"
3671
+
3672
+ #: includes/functions.php:1501 includes/functions.php:1319 includes/functions.php:1341
3673
+ #: includes/functions.php:1361 includes/functions.php:1372 includes/functions.php:1375
3674
+ #: includes/functions.php:1385 includes/functions.php:1394 includes/functions.php:1395
3675
+ #: includes/functions.php:1412 includes/functions.php:1436 includes/functions.php:1437
3676
+ #: includes/functions.php:1450 includes/functions.php:1457 includes/functions.php:1473
3677
+ #: includes/functions.php:1496
3678
+ msgid "Sign Up for !!name!! Now"
3679
+ msgstr "هم اکنون برای !!name!! ثبت نام کنید"
3680
+
3681
+ #: includes/functions.php:1507 includes/functions.php:1325 includes/functions.php:1347
3682
+ #: includes/functions.php:1367 includes/functions.php:1378 includes/functions.php:1381
3683
+ #: includes/functions.php:1391 includes/functions.php:1400 includes/functions.php:1401
3684
+ #: includes/functions.php:1418 includes/functions.php:1442 includes/functions.php:1443
3685
+ #: includes/functions.php:1456 includes/functions.php:1463 includes/functions.php:1479
3686
+ #: includes/functions.php:1502
3687
+ msgid "Please specify a level id."
3688
+ msgstr "لطفا یک شناسه سطح را مشخص کنید."
3689
+
3690
+ #: includes/init.php:245 includes/profile.php:39 includes/init.php:229
3691
+ #: includes/init.php:232 includes/init.php:233 includes/init.php:235
3692
+ #: includes/init.php:237 includes/profile.php:37
3693
+ msgid "None"
3694
+ msgstr "هیچ"
3695
+
3696
+ #: includes/license.php:51
3697
+ msgid "Your license key has been validated."
3698
+ msgstr "کلید لایسنس شما اعتبار سنجی شد."
3699
+
3700
+ #: includes/license.php:81
3701
+ msgid "Paid Memberships Pro Support License"
3702
+ msgstr "لایسنس پشتیبانی Paid Memberships Pro"
3703
+
3704
+ #: includes/license.php:86
3705
+ msgid "License Key"
3706
+ msgstr "کد لایسنس"
3707
+
3708
+ #: includes/license.php:89
3709
+ msgid ""
3710
+ "Enter your support license key.</strong> Your license key can be found in your "
3711
+ "membership email receipt or in your <a href=\"http://www.paidmembershipspro.com/"
3712
+ "login/?redirect_to=/membership-account/\" target=\"_blank\">Membership Account</a>."
3713
+ msgstr ""
3714
+ "Enter your support license key.</strong> Your license key can be found in your "
3715
+ "membership email receipt or in your <a href=\"http://www.paidmembershipspro.com/"
3716
+ "login/?redirect_to=/membership-account/\" target=\"_blank\">Membership Account</a>."
3717
+
3718
+ #: includes/license.php:91
3719
+ msgid ""
3720
+ "Visit the PMPro <a href=\"http://www.paidmembershipspro.com/login/?redirect_to=/"
3721
+ "membership-account/\" target=\"_blank\">Membership Account</a> page to confirm that "
3722
+ "your account is active and to find your license key."
3723
+ msgstr ""
3724
+ "Visit the PMPro <a href=\"http://www.paidmembershipspro.com/login/?redirect_to=/"
3725
+ "membership-account/\" target=\"_blank\">Membership Account</a> page to confirm that "
3726
+ "your account is active and to find your license key."
3727
+
3728
+ #: includes/license.php:91
3729
+ msgid "Your license is invalid or expired."
3730
+ msgstr "مجوز شما غیر معتبر یا منقضی شده است."
3731
+
3732
+ #: includes/license.php:93
3733
+ #, php-format
3734
+ msgid ""
3735
+ "<p><strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used "
3736
+ "to activate your support license on this site.</p>"
3737
+ msgstr ""
3738
+ "<p><strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used "
3739
+ "to activate your support license on this site.</p>"
3740
+
3741
+ #: includes/license.php:100
3742
+ msgid "Enter license key here..."
3743
+ msgstr "کلید مجوز را اینجا وارد کنید ..."
3744
+
3745
+ #: includes/license.php:102
3746
+ msgid "Verify Key"
3747
+ msgstr "تایید کلید"
3748
+
3749
+ #: includes/license.php:288 includes/license.php:273
3750
+ msgid ""
3751
+ "If you're running Paid Memberships Pro on a production website, we recommend an "
3752
+ "annual support license."
3753
+ msgstr ""
3754
+ "If you're running Paid Memberships Pro on a production website, we recommend an "
3755
+ "annual support license."
3756
+
3757
+ #: includes/license.php:288 includes/license.php:273
3758
+ msgid "Invalid PMPro License Key."
3759
+ msgstr "کلید مجوز PMPro نامعتبر است."
3760
+
3761
+ #: includes/license.php:289 includes/license.php:274
3762
+ msgid "Dismiss"
3763
+ msgstr "پنهان کن"
3764
+
3765
+ #: includes/license.php:289 includes/license.php:274
3766
+ msgid "More Info"
3767
+ msgstr "اطلاعات بیشتر"
3768
+
3769
+ #: includes/localization.php:26 includes/localization.php:23
3770
+ msgid "Day"
3771
+ msgstr "روز"
3772
+
3773
+ #: includes/localization.php:28 includes/localization.php:25
3774
+ msgid "Week"
3775
+ msgstr "هفته"
3776
+
3777
+ #: includes/localization.php:30 includes/localization.php:27
3778
+ msgid "Month"
3779
+ msgstr "ماه"
3780
+
3781
+ #: includes/localization.php:32 includes/localization.php:29
3782
+ msgid "Year"
3783
+ msgstr "سال"
3784
+
3785
+ #: includes/localization.php:37
3786
+ msgid "Days"
3787
+ msgstr "روز"
3788
+
3789
+ #: includes/localization.php:39
3790
+ msgid "Weeks"
3791
+ msgstr "هفته"
3792
+
3793
+ #: includes/localization.php:41
3794
+ msgid "Months"
3795
+ msgstr "ماه"
3796
+
3797
+ #: includes/localization.php:43
3798
+ msgid "Years"
3799
+ msgstr "سال"
3800
+
3801
+ #: includes/metaboxes.php:38
3802
+ msgid ""
3803
+ "This post is already protected for this level because it is within a category that "
3804
+ "requires membership."
3805
+ msgstr ""
3806
+ "این مطلب قبلا برای این سطح محافظت شده است. (به دلیل انتشار در دسته بندی خاص که نیاز "
3807
+ "به عضویت دارد)"
3808
+
3809
+ #: includes/metaboxes.php:99 includes/metaboxes.php:100
3810
+ msgid "Require Membership"
3811
+ msgstr "نیاز به عضویت"
3812
+
3813
+ #: includes/metaboxes.php:130
3814
+ msgid "Only members of these levels will be able to view posts in this category."
3815
+ msgstr ""
3816
+ "تنها اعضای این سطوح قادر خواهند بود پست های قرار گرفته در این رده را مشاهده کنند."
3817
+
3818
+ #: includes/profile.php:36 includes/profile.php:34
3819
+ msgid "Current Level"
3820
+ msgstr "سطح کنونی"
3821
+
3822
+ #: includes/profile.php:65 includes/profile.php:54 includes/profile.php:60
3823
+ msgid "Not paying."
3824
+ msgstr "بدون پرداخت."
3825
+
3826
+ #: includes/profile.php:73 includes/profile.php:64 includes/profile.php:68
3827
+ msgid ""
3828
+ "This will not change the subscription at the gateway unless the 'Cancel' checkbox is "
3829
+ "selected below."
3830
+ msgstr ""
3831
+ "این اشتراک را تغییر نمیدهد در درگاه، مگر در صورتیکه گزینه \"انصراف\" در زیر علامت "
3832
+ "خورده باشد."
3833
+
3834
+ #: includes/upgradecheck.php:422 includes/upgradecheck.php:401
3835
+ #: includes/upgradecheck.php:410
3836
+ #, php-format
3837
+ msgid "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
3838
+ msgstr ""
3839
+ "این محتوا تنها برای اعضای ویژه و سطح مشخص می باشد.<br /><a href=\\\"%s\\\">ثبت نام</a>"
3840
+
3841
+ #: includes/upgradecheck.php:425 includes/upgradecheck.php:404
3842
+ #: includes/upgradecheck.php:413
3843
+ #, php-format
3844
+ msgid ""
3845
+ "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> <a href="
3846
+ "\"%s\">Register</a>"
3847
+ msgstr ""
3848
+ "این محتوا تنها برای اعضای ویژه و سطح مشخص می باشد.<br /><a href=\\\"%s\\\">ورود</a> "
3849
+ "<a href=\\\"%s\\\">ثبت نام</a>"
3850
+
3851
+ #: includes/upgradecheck.php:429 includes/upgradecheck.php:408
3852
+ #: includes/upgradecheck.php:417
3853
+ msgid ""
3854
+ "This content is for !!levels!! members only. Visit the site and log in/register to "
3855
+ "read."
3856
+ msgstr "این محتوا تنها برای اعضای ویژه و سطح مشخص می باشد. وارد شوید و یا ثبت نام کنید"
3857
+
3858
+ #: pages/billing.php:23 pages/billing.php:14
3859
+ #, php-format
3860
+ msgid "Logged in as <strong>%s</strong>."
3861
+ msgstr "وارد شده به عنوان <strong>%s</strong>."
3862
+
3863
+ #: pages/billing.php:23 pages/billing.php:14
3864
+ msgid "logout"
3865
+ msgstr "خروج"
3866
+
3867
+ #: pages/billing.php:25 pages/cancel.php:52 pages/invoice.php:109 pages/levels.php:13
3868
+ #: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123 pages/account.php:12
3869
+ #: pages/account.php:18 pages/account.php:92 pages/billing.php:16
3870
+ msgid "Level"
3871
+ msgstr "سطح"
3872
+
3873
+ #: pages/billing.php:27 pages/account.php:14 pages/billing.php:18
3874
+ msgid "Membership Fee"
3875
+ msgstr "حق عضویت"
3876
+
3877
+ #: pages/billing.php:31 pages/account.php:18 pages/billing.php:22 pages/levels.php:70
3878
+ #, php-format
3879
+ msgid "%s every %d %s."
3880
+ msgstr "%s هر %d %s."
3881
+
3882
+ #: pages/billing.php:33 pages/account.php:20 pages/billing.php:24 pages/levels.php:66
3883
+ #, php-format
3884
+ msgid "%s per %s."
3885
+ msgstr "%s در هر %s."
3886
+
3887
+ #: pages/billing.php:42 pages/account.php:25 pages/account.php:29 pages/billing.php:29
3888
+ #: pages/billing.php:33
3889
+ msgid "Duration"
3890
+ msgstr "مدت"
3891
+
3892
+ #: pages/billing.php:52 pages/billing.php:39 pages/billing.php:43
3893
+ msgid ""
3894
+ "Your payment subscription is managed by PayPal. Please <a href=\"http://www.paypal.com"
3895
+ "\">login to PayPal here</a> to update your billing information."
3896
+ msgstr ""
3897
+ "پرداخت اشتراک شما با پی پال صورت گرفته لطفا <a href=\\\"http://www.paypal.com\\\">به "
3898
+ "پی پال از اینجا وارد شوید</a> برای به روز کردن اطلاعات صورت حساب."
3899
+
3900
+ #: pages/billing.php:78 pages/checkout.php:318 pages/billing.php:65 pages/billing.php:69
3901
+ #: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
3902
+ #: pages/checkout.php:321 pages/checkout.php:328
3903
+ msgid "First Name"
3904
+ msgstr "نام"
3905
+
3906
+ #: pages/billing.php:82 pages/checkout.php:322 pages/billing.php:69 pages/billing.php:73
3907
+ #: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
3908
+ #: pages/checkout.php:325 pages/checkout.php:332
3909
+ msgid "Last Name"
3910
+ msgstr "نام خانوادگی"
3911
+
3912
+ #: pages/billing.php:86 pages/checkout.php:326 pages/billing.php:73 pages/billing.php:77
3913
+ #: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
3914
+ #: pages/checkout.php:329 pages/checkout.php:336
3915
+ msgid "Address 1"
3916
+ msgstr "نشانی ۱"
3917
+
3918
+ #: pages/billing.php:90 pages/checkout.php:330 pages/billing.php:77 pages/billing.php:81
3919
+ #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
3920
+ #: pages/checkout.php:333 pages/checkout.php:340
3921
+ msgid "Address 2"
3922
+ msgstr "نشانی ۲"
3923
+
3924
+ #: pages/billing.php:100 pages/checkout.php:340 pages/billing.php:87
3925
+ #: pages/billing.php:91 pages/checkout.php:327 pages/checkout.php:329
3926
+ #: pages/checkout.php:331 pages/checkout.php:343 pages/checkout.php:350
3927
+ msgid "City"
3928
+ msgstr "شهر"
3929
+
3930
+ #: pages/billing.php:104 pages/checkout.php:344 pages/billing.php:91
3931
+ #: pages/billing.php:95 pages/checkout.php:331 pages/checkout.php:333
3932
+ #: pages/checkout.php:335 pages/checkout.php:347 pages/checkout.php:354
3933
+ msgid "State"
3934
+ msgstr "ایالت"
3935
+
3936
+ #: pages/billing.php:108 pages/checkout.php:348 pages/billing.php:95
3937
+ #: pages/billing.php:99 pages/checkout.php:335 pages/checkout.php:337
3938
+ #: pages/checkout.php:339 pages/checkout.php:351 pages/checkout.php:358
3939
+ msgid "Postal Code"
3940
+ msgstr "کد پستی"
3941
+
3942
+ #: pages/billing.php:117 pages/checkout.php:357 pages/billing.php:104
3943
+ #: pages/billing.php:108 pages/checkout.php:344 pages/checkout.php:346
3944
+ #: pages/checkout.php:348 pages/checkout.php:360 pages/checkout.php:367
3945
+ msgid "City, State Zip"
3946
+ msgstr "کد پستی شهر، استان"
3947
+
3948
+ #: pages/billing.php:170 pages/checkout.php:410 pages/billing.php:157
3949
+ #: pages/billing.php:161 pages/checkout.php:397 pages/checkout.php:399
3950
+ #: pages/checkout.php:401 pages/checkout.php:413 pages/checkout.php:420
3951
+ msgid "Country"
3952
+ msgstr "کشور"
3953
+
3954
+ #: pages/billing.php:195 pages/checkout.php:435 pages/billing.php:182
3955
+ #: pages/billing.php:186 pages/checkout.php:422 pages/checkout.php:424
3956
+ #: pages/checkout.php:426 pages/checkout.php:438 pages/checkout.php:445
3957
+ msgid "Phone"
3958
+ msgstr "شماره تلفن"
3959
+
3960
+ #: pages/billing.php:206 pages/checkout.php:216 pages/checkout.php:449
3961
+ #: pages/billing.php:193 pages/billing.php:197 pages/checkout.php:204
3962
+ #: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:436
3963
+ #: pages/checkout.php:438 pages/checkout.php:440 pages/checkout.php:453
3964
+ #: pages/checkout.php:460
3965
+ msgid "E-mail Address"
3966
+ msgstr "آدرس ایمیل"
3967
+
3968
+ #: pages/billing.php:210 pages/checkout.php:458 pages/billing.php:197
3969
+ #: pages/billing.php:201 pages/checkout.php:445 pages/checkout.php:447
3970
+ #: pages/checkout.php:449 pages/checkout.php:462 pages/checkout.php:469
3971
+ msgid "Confirm E-mail"
3972
+ msgstr "تایید آدرس ایمیل"
3973
+
3974
+ #: pages/billing.php:230 pages/billing.php:217 pages/billing.php:221
3975
+ msgid "Credit Card Information"
3976
+ msgstr "اطلاعات کارت اعتباری"
3977
+
3978
+ #: pages/billing.php:230 pages/billing.php:217 pages/billing.php:221
3979
+ #, php-format
3980
+ msgid "We accept %s"
3981
+ msgstr "ما %s را قبول میکنیم"
3982
+
3983
+ #: pages/billing.php:353 pages/billing.php:309 pages/billing.php:313
3984
+ #: pages/billing.php:344
3985
+ msgid ""
3986
+ "This subscription is not recurring. So you don't need to update your billing "
3987
+ "information."
3988
+ msgstr "این اشتراک دوره ای نیست، نیازی به بروز رسانی اطلاعات صورت حساب ندارید."
3989
+
3990
+ #: pages/cancel.php:26 pages/cancel.php:14
3991
+ msgid "Are you sure you want to cancel your membership?"
3992
+ msgstr "آیا از لغو عضویت %s اطمینان دارید؟"
3993
+
3994
+ #: pages/cancel.php:32
3995
+ #, php-format
3996
+ msgid "Are you sure you want to cancel your %s membership?"
3997
+ msgstr "آیا از لغو عضویت %s اطمینان دارید؟"
3998
+
3999
+ #: pages/cancel.php:37 pages/cancel.php:17
4000
+ msgid "Yes, cancel my account"
4001
+ msgstr "بله، حسابم را لغو میکنم!"
4002
+
4003
+ #: pages/cancel.php:38 pages/cancel.php:19
4004
+ msgid "No, keep my account"
4005
+ msgstr "خیر، حسابم را لغو نمیکنم!"
4006
+
4007
+ #: pages/cancel.php:48 shortcodes/pmpro_account.php:40 pages/account.php:14
4008
+ msgid "My Memberships"
4009
+ msgstr "عضویت های من"
4010
+
4011
+ #: pages/cancel.php:77
4012
+ msgid "Cancel All Memberships"
4013
+ msgstr "لغو همه عضویت ها"
4014
+
4015
+ #: pages/cancel.php:86 pages/cancel.php:22
4016
+ msgid "Click here to go to the home page."
4017
+ msgstr "برای رفتن به صفحه اصلی اینجا را کلیک کنید."
4018
+
4019
+ #: pages/checkout.php:35 pages/checkout.php:26 pages/checkout.php:27
4020
+ #: pages/checkout.php:28
4021
+ msgid ""
4022
+ "Almost done. Review the membership information and pricing below then <strong>click "
4023
+ "the \"Complete Payment\" button</strong> to finish your order."
4024
+ msgstr ""
4025
+ "تقریبا آخر کار است! اطلاعات عضویت و تعرفه ها را در زیر بررسی کنید و وقتی تمام شد "
4026
+ "<strong>روی \"پایان\" کلیک کنید</strong>"
4027
+
4028
+ #: pages/checkout.php:42 pages/checkout.php:33 pages/checkout.php:34
4029
+ #: pages/checkout.php:35
4030
+ msgid "change"
4031
+ msgstr "تغییر"
4032
+
4033
+ #: pages/checkout.php:50 pages/checkout.php:41 pages/checkout.php:42
4034
+ #: pages/checkout.php:43
4035
+ #, php-format
4036
+ msgid "You have selected the <strong>%s</strong> membership level."
4037
+ msgstr "شما سطح کاربری <strong>%s</strong> را انتخاب کردید"
4038
+
4039
+ #: pages/checkout.php:60 pages/checkout.php:51 pages/checkout.php:53
4040
+ #, php-format
4041
+ msgid ""
4042
+ "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has been "
4043
+ "applied to your order.</p>"
4044
+ msgstr ""
4045
+ "<p class=\"pmpro_level_discount_applied\">کد <strong>%s</strong> در سفارش شما درج شد."
4046
+ "</p>"
4047
+
4048
+ #: pages/checkout.php:71 services/applydiscountcode.php:89 pages/checkout.php:62
4049
+ #: pages/checkout.php:63 pages/checkout.php:64 services/applydiscountcode.php:74
4050
+ #: services/applydiscountcode.php:75 services/applydiscountcode.php:78
4051
+ msgid "Click here to change your discount code"
4052
+ msgstr "کد تخفیف دیگری دارید؟ اینجا کلیک کنید"
4053
+
4054
+ #: pages/checkout.php:73 pages/checkout.php:64 pages/checkout.php:65
4055
+ #: pages/checkout.php:66
4056
+ msgid "Click here to enter your discount code"
4057
+ msgstr "برای وارد کردن کد تخفیف کلیک کنید"
4058
+
4059
+ #: pages/checkout.php:73 pages/checkout.php:64 pages/checkout.php:65
4060
+ #: pages/checkout.php:66
4061
+ msgid "Do you have a discount code?"
4062
+ msgstr "کد تخفیف دارید؟"
4063
+
4064
+ #: pages/checkout.php:172 pages/checkout.php:160 pages/checkout.php:163
4065
+ #: pages/checkout.php:165
4066
+ msgid "Account Information"
4067
+ msgstr "اطلاعات حساب"
4068
+
4069
+ #: pages/checkout.php:172 pages/checkout.php:160 pages/checkout.php:163
4070
+ #: pages/checkout.php:165
4071
+ msgid "Already have an account?"
4072
+ msgstr "قبلا ثبت نام کرده اید؟"
4073
+
4074
+ #: pages/checkout.php:172 pages/checkout.php:160 pages/checkout.php:163
4075
+ #: pages/checkout.php:165
4076
+ msgid "Log in here"
4077
+ msgstr "از اینجا وارد شوید"
4078
+
4079
+ #: pages/checkout.php:198 pages/checkout.php:186 pages/checkout.php:189
4080
+ #: pages/checkout.php:191
4081
+ msgid "Confirm Password"
4082
+ msgstr "تایید رمز عبور"
4083
+
4084
+ #: pages/checkout.php:225 pages/checkout.php:213 pages/checkout.php:216
4085
+ #: pages/checkout.php:218
4086
+ msgid "Confirm E-mail Address"
4087
+ msgstr "تایید آدرس ایمیل"
4088
+
4089
+ #: pages/checkout.php:244 pages/checkout.php:232 pages/checkout.php:235
4090
+ #: pages/checkout.php:237
4091
+ msgid "Full Name"
4092
+ msgstr "نام و نام خانوادگی"
4093
+
4094
+ #: pages/checkout.php:245 pages/checkout.php:233 pages/checkout.php:236
4095
+ #: pages/checkout.php:238
4096
+ msgid "LEAVE THIS BLANK"
4097
+ msgstr "اینجا را خالی بگذارید"
4098
+
4099
+ #: pages/checkout.php:269 pages/checkout.php:257 pages/checkout.php:260
4100
+ #: pages/checkout.php:262
4101
+ #, php-format
4102
+ msgid ""
4103
+ "You are logged in as <strong>%s</strong>. If you would like to use a different "
4104
+ "account for this membership, <a href=\"%s\">log out now</a>."
4105
+ msgstr ""
4106
+ "با نام کاربری <strong>%s</strong> وارد شده اید. اگر میخواهید برای این عضویت از یک "
4107
+ "حساب دیگر استفاده کنید، پس <a href=\"%s\">ابتدا خارج شوید</a>."
4108
+
4109
+ #: pages/checkout.php:285 pages/checkout.php:276 pages/checkout.php:278
4110
+ #: pages/checkout.php:292 pages/checkout.php:299
4111
+ msgid "Choose your Payment Method"
4112
+ msgstr "روش پرداخت خود را انتخاب کنید"
4113
+
4114
+ #: pages/checkout.php:293 pages/checkout.php:284 pages/checkout.php:286
4115
+ #: pages/checkout.php:300 pages/checkout.php:307
4116
+ msgid "Check Out with a Credit Card Here"
4117
+ msgstr "پرداخت توسط کارت اعتباری از اینجا"
4118
+
4119
+ #: pages/checkout.php:681 pages/checkout.php:277 pages/checkout.php:284
4120
+ #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
4121
+ #, php-format
4122
+ msgid "I agree to the %s"
4123
+ msgstr "با %s موافقم"
4124
+
4125
+ #: pages/checkout.php:701 pages/checkout.php:667 pages/checkout.php:674
4126
+ #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
4127
+ msgid "Complete Payment"
4128
+ msgstr "تکمیل پرداخت"
4129
+
4130
+ #: pages/checkout.php:723 pages/checkout.php:687 pages/checkout.php:694
4131
+ #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
4132
+ msgid "Processing..."
4133
+ msgstr "در حال پردازش..."
4134
+
4135
+ #: pages/confirmation.php:12
4136
+ msgid "Your payment has been submitted. Your membership will be activated shortly."
4137
+ msgstr "پرداخت شما ارسال شد، عضویت شما به زودی فعال میشود."
4138
+
4139
+ #: pages/confirmation.php:14
4140
+ #, php-format
4141
+ msgid "Thank you for your membership to %s. Your %s membership is now active."
4142
+ msgstr "تشکر از شما برای عضویت خود در %s.عضویت %s شما در حال حاضر فعال است"
4143
+
4144
+ #: pages/confirmation.php:28
4145
+ #, php-format
4146
+ msgid ""
4147
+ "Below are details about your membership account and a receipt for your initial "
4148
+ "membership invoice. A welcome email with a copy of your initial membership invoice "
4149
+ "has been sent to %s."
4150
+ msgstr ""
4151
+ "در زیر اطلاعات مربوط به حساب کاربری و رسید فاکتور پرداخت اولیه شما آمده است. یک ایمیل "
4152
+ "خوش آمد گویی به همراه یک ضمیمه از فاکتور پرداخت اولیه مربوطه به آدرس %s ارسال شده است."
4153
+
4154
+ #: pages/confirmation.php:41 pages/invoice.php:22
4155
+ #, php-format
4156
+ msgid "Invoice #%s on %s"
4157
+ msgstr "فاکتور #%s در %s"
4158
+
4159
+ #: pages/confirmation.php:43 pages/invoice.php:24
4160
+ msgid "Print"
4161
+ msgstr "چاپ"
4162
+
4163
+ #: pages/confirmation.php:46 pages/confirmation.php:104 pages/invoice.php:27
4164
+ #: pages/confirmation.php:45 pages/confirmation.php:102 pages/invoice.php:26
4165
+ msgid "Account"
4166
+ msgstr "حساب"
4167
+
4168
+ #: pages/confirmation.php:49 pages/invoice.php:30 pages/account.php:29
4169
+ #: pages/account.php:33 pages/confirmation.php:48 pages/invoice.php:29
4170
+ msgid "Membership Expires"
4171
+ msgstr "تاریخ انقضا عضویت:"
4172
+
4173
+ #: pages/confirmation.php:63 pages/invoice.php:50 pages/account.php:105
4174
+ #: pages/account.php:109 pages/confirmation.php:61 pages/invoice.php:48
4175
+ msgid "Payment Method"
4176
+ msgstr "روش پرداخت"
4177
+
4178
+ #: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
4179
+ #: pages/confirmation.php:63 pages/invoice.php:50 pages/invoice.php:107
4180
+ #: pages/invoice.php:109
4181
+ msgid "Total Billed"
4182
+ msgstr "مجموع صورتحساب"
4183
+
4184
+ #: pages/confirmation.php:82 pages/invoice.php:69 pages/confirmation.php:80
4185
+ #: pages/invoice.php:67
4186
+ msgid "ending in"
4187
+ msgstr "به اتمام می رسد در"
4188
+
4189
+ #: pages/confirmation.php:97
4190
+ #, php-format
4191
+ msgid ""
4192
+ "Below are details about your membership account. A welcome email has been sent to %s."
4193
+ msgstr "در زیر اطلاعات حساب کاربری شما آمده است. ایمیل خوش آمد گویی به %s ارسال شد."
4194
+
4195
+ #: pages/confirmation.php:105 pages/confirmation.php:103
4196
+ msgid "Pending"
4197
+ msgstr "در حال بررسی"
4198
+
4199
+ #: pages/confirmation.php:113 pages/invoice.php:141 pages/confirmation.php:111
4200
+ #: pages/invoice.php:139
4201
+ msgid "View Your Membership Account &rarr;"
4202
+ msgstr "مشاهده حساب کاربری و عضویت شما &rarr;"
4203
+
4204
+ #: pages/confirmation.php:115 pages/confirmation.php:113
4205
+ msgid ""
4206
+ "If your account is not activated within a few minutes, please contact the site owner."
4207
+ msgstr "اگر حساب شما ظرف چند دقیقه آینده فعال نشد، با مدیر سایت ارتباط برقرارکنید"
4208
+
4209
+ #: pages/invoice.php:79 pages/invoice.php:77
4210
+ msgid "Subtotal"
4211
+ msgstr "مجموع"
4212
+
4213
+ #: pages/invoice.php:82 pages/invoice.php:80
4214
+ msgid "Coupon"
4215
+ msgstr "کوپن تخفیف"
4216
+
4217
+ #: pages/invoice.php:108 pages/invoice.php:106
4218
+ msgid "Invoice #"
4219
+ msgstr "فاکتور شماره"
4220
+
4221
+ #: pages/invoice.php:134 pages/invoice.php:132
4222
+ msgid "No invoices found."
4223
+ msgstr "فاکتوری یافت نشد."
4224
+
4225
+ #: pages/invoice.php:145 pages/invoice.php:143
4226
+ msgid "&larr; View All Invoices"
4227
+ msgstr "مشاهده تمام فاکتورها &larr;"
4228
+
4229
+ #: pages/levels.php:14
4230
+ msgid "Price"
4231
+ msgstr "قیمت"
4232
+
4233
+ #: pages/levels.php:33 pages/levels.php:43
4234
+ msgid "Free"
4235
+ msgstr "رایگان"
4236
+
4237
+ #: pages/levels.php:47 pages/levels.php:49 pages/levels.php:113 pages/levels.php:115
4238
+ msgid "Select"
4239
+ msgstr "انتخاب"
4240
+
4241
+ #: pages/levels.php:57 shortcodes/pmpro_account.php:59 pages/account.php:33
4242
+ #: pages/levels.php:123
4243
+ msgid "Renew"
4244
+ msgstr "تجدید کردن"
4245
+
4246
+ #: pages/levels.php:63 pages/levels.php:117 pages/levels.php:129
4247
+ msgid "Your&nbsp;Level"
4248
+ msgstr "سطح&nbsp;شما"
4249
+
4250
+ #: pages/levels.php:79 pages/levels.php:129 pages/levels.php:145
4251
+ msgid "&larr; Return to Your Account"
4252
+ msgstr "&larr;بازگشت به حساب کاربری شما"
4253
+
4254
+ #: pages/levels.php:81 pages/levels.php:131 pages/levels.php:147
4255
+ msgid "&larr; Return to Home"
4256
+ msgstr "&larr;بازگشت به صفحه اصلی"
4257
+
4258
+ #: paid-memberships-pro.php:123 adminpages/orders.php:398 adminpages/orders.php:448
4259
+ #: paid-memberships-pro.php:115 paid-memberships-pro.php:116
4260
+ msgid "Testing Only"
4261
+ msgstr "تنها آزمایشی"
4262
+
4263
+ #: paid-memberships-pro.php:128 paid-memberships-pro.php:120
4264
+ #: paid-memberships-pro.php:121
4265
+ msgid "PayPal Payflow Pro/PayPal Pro"
4266
+ msgstr "PayPal Payflow Pro/PayPal Pro"
4267
+
4268
+ #: paid-memberships-pro.php:133 paid-memberships-pro.php:125
4269
+ #: paid-memberships-pro.php:126
4270
+ msgid "Cybersource"
4271
+ msgstr "CyberSource"
4272
+
4273
+ #: preheaders/account.php:10 preheaders/levels.php:22 preheaders/account.php:7
4274
+ #: preheaders/account.php:9 preheaders/levels.php:19 preheaders/levels.php:21
4275
+ msgid "Your membership status has been updated - Thank you!"
4276
+ msgstr "وضعیت عضویت شما بروز رسانی شد. متشکریم!"
4277
+
4278
+ #: preheaders/account.php:12 preheaders/levels.php:24 preheaders/account.php:11
4279
+ #: preheaders/levels.php:23
4280
+ msgid "Sorry, your request could not be completed - please try again in a few moments."
4281
+ msgstr "با عرض پوزش درخواست شما تکمیل نگردید - لحظاتی بعد امتحان کنید."
4282
+
4283
+ #: preheaders/billing.php:270 preheaders/checkout.php:332 preheaders/billing.php:258
4284
+ #: preheaders/billing.php:265 preheaders/billing.php:266 preheaders/billing.php:279
4285
+ #: preheaders/checkout.php:458 preheaders/checkout.php:464 preheaders/checkout.php:465
4286
+ #: preheaders/checkout.php:470 preheaders/checkout.php:481 preheaders/checkout.php:482
4287
+ msgid "Please complete all required fields."
4288
+ msgstr "لطفا همه فیلدهای ضروری را تکمیل کنید"
4289
+
4290
+ #: preheaders/billing.php:273 preheaders/checkout.php:340 preheaders/billing.php:263
4291
+ #: preheaders/billing.php:268 preheaders/billing.php:269 preheaders/billing.php:284
4292
+ #: preheaders/checkout.php:466 preheaders/checkout.php:473 preheaders/checkout.php:474
4293
+ #: preheaders/checkout.php:478 preheaders/checkout.php:491 preheaders/checkout.php:492
4294
+ msgid "Your email addresses do not match. Please try again."
4295
+ msgstr "آدرس ایمیل تطابق ندارد، دوباره تلاش کنید"
4296
+
4297
+ #: preheaders/billing.php:276 preheaders/checkout.php:345 preheaders/billing.php:268
4298
+ #: preheaders/billing.php:271 preheaders/billing.php:272 preheaders/billing.php:289
4299
+ #: preheaders/checkout.php:471 preheaders/checkout.php:478 preheaders/checkout.php:480
4300
+ #: preheaders/checkout.php:483 preheaders/checkout.php:497 preheaders/checkout.php:498
4301
+ msgid "The email address entered is in an invalid format. Please try again."
4302
+ msgstr "آدرس ایمیل وارد شده فرمت نا معتبری دارد، دوباره تلاش کنید."
4303
+
4304
+ #: preheaders/billing.php:280 preheaders/billing.php:274 preheaders/billing.php:275
4305
+ #: preheaders/billing.php:276 preheaders/billing.php:295
4306
+ msgid "All good!"
4307
+ msgstr "همه چیز خوب است!"
4308
+
4309
+ #: preheaders/billing.php:350 preheaders/billing.php:340 preheaders/billing.php:345
4310
+ #: preheaders/billing.php:346 preheaders/billing.php:370
4311
+ #, php-format
4312
+ msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
4313
+ msgstr "اطلاعات بروزرسانی شد. <a href=\"%s\">بازگشت به حساب کاربری</a>"
4314
+
4315
+ #: preheaders/billing.php:356 preheaders/billing.php:347 preheaders/billing.php:351
4316
+ #: preheaders/billing.php:352 preheaders/billing.php:378 preheaders/billing.php:380
4317
+ msgid "Error updating billing information."
4318
+ msgstr "خطا در به روز رسانی اطلاعات صورت حساب."
4319
+
4320
+ #: preheaders/cancel.php:28 preheaders/cancel.php:24 preheaders/cancel.php:25
4321
+ msgid "Your membership has been cancelled."
4322
+ msgstr "عضویت شما لغو شد"
4323
+
4324
+ #: preheaders/checkout.php:32 preheaders/checkout.php:354 preheaders/checkout.php:28
4325
+ #: preheaders/checkout.php:30 preheaders/checkout.php:31 preheaders/checkout.php:480
4326
+ #: preheaders/checkout.php:487 preheaders/checkout.php:491 preheaders/checkout.php:492
4327
+ #: preheaders/checkout.php:508 preheaders/checkout.php:509
4328
+ msgid "Invalid gateway."
4329
+ msgstr "درگاه پرداخت نا معتبر است."
4330
+
4331
+ #: preheaders/checkout.php:95 preheaders/checkout.php:88 preheaders/checkout.php:89
4332
+ #: preheaders/checkout.php:91 preheaders/checkout.php:96
4333
+ msgid "Checkout: Payment Information"
4334
+ msgstr "پرداخت: اطلاعات پرداخت"
4335
+
4336
+ #: preheaders/checkout.php:100
4337
+ msgid "Set Up Your Account"
4338
+ msgstr "حساب خود را تنظیم کنید"
4339
+
4340
+ #: preheaders/checkout.php:300 preheaders/checkout.php:416 preheaders/checkout.php:421
4341
+ msgid "There are JavaScript errors on the page. Please contact the webmaster."
4342
+ msgstr "خطا در جاوار اسکریپ صفحه، لطفا با مدیر سایت تماس بگیرید."
4343
+
4344
+ #: preheaders/checkout.php:335 preheaders/checkout.php:461 preheaders/checkout.php:468
4345
+ #: preheaders/checkout.php:473 preheaders/checkout.php:485 preheaders/checkout.php:486
4346
+ msgid "Your passwords do not match. Please try again."
4347
+ msgstr "رمز عبور تطابق ندارد، لطفا مجدد تلاش کنید"
4348
+
4349
+ #: preheaders/checkout.php:350 preheaders/checkout.php:476 preheaders/checkout.php:483
4350
+ #: preheaders/checkout.php:486 preheaders/checkout.php:488 preheaders/checkout.php:503
4351
+ #: preheaders/checkout.php:504
4352
+ #, php-format
4353
+ msgid "Please check the box to agree to the %s."
4354
+ msgstr "برای موافقت با %s علامت بزنید"
4355
+
4356
+ #: preheaders/checkout.php:357 preheaders/checkout.php:483 preheaders/checkout.php:490
4357
+ #: preheaders/checkout.php:495 preheaders/checkout.php:512 preheaders/checkout.php:513
4358
+ msgid "Are you a spammer?"
4359
+ msgstr "آیا یک spammer هستید؟"
4360
+
4361
+ #: preheaders/checkout.php:377 preheaders/checkout.php:503 preheaders/checkout.php:510
4362
+ #: preheaders/checkout.php:515 preheaders/checkout.php:518 preheaders/checkout.php:535
4363
+ #: preheaders/checkout.php:536
4364
+ msgid "That username is already taken. Please try another."
4365
+ msgstr "این نام کاربری قبلا انتخاب شده است، یکی دیگر را امتحان کنید."
4366
+
4367
+ #: preheaders/checkout.php:382 preheaders/checkout.php:508 preheaders/checkout.php:515
4368
+ #: preheaders/checkout.php:520 preheaders/checkout.php:524 preheaders/checkout.php:541
4369
+ #: preheaders/checkout.php:542
4370
+ msgid "That email address is already taken. Please try another."
4371
+ msgstr "آدرس ایمیل قبلا انتخاب شده است. یکی دیگر را انتخاب کنید."
4372
+
4373
+ #: preheaders/checkout.php:416 preheaders/checkout.php:397 preheaders/checkout.php:399
4374
+ #: preheaders/checkout.php:525 preheaders/checkout.php:532 preheaders/checkout.php:537
4375
+ #: preheaders/checkout.php:544 preheaders/checkout.php:561 preheaders/checkout.php:562
4376
+ #, php-format
4377
+ msgid "reCAPTCHA failed. (%s) Please try again."
4378
+ msgstr "کد امنیتی اشتباه است. (%s) مجدد تلاش کنید."
4379
+
4380
+ #: preheaders/checkout.php:501 preheaders/checkout.php:482 preheaders/checkout.php:484
4381
+ #: preheaders/checkout.php:647 preheaders/checkout.php:654 preheaders/checkout.php:659
4382
+ #: preheaders/checkout.php:683 preheaders/checkout.php:701 preheaders/checkout.php:702
4383
+ msgid "Payment accepted."
4384
+ msgstr "پرداخت پذیرفته شده است."
4385
+
4386
+ #: preheaders/checkout.php:509 preheaders/checkout.php:490 preheaders/checkout.php:492
4387
+ #: preheaders/checkout.php:653 preheaders/checkout.php:660 preheaders/checkout.php:665
4388
+ #: preheaders/checkout.php:691 preheaders/checkout.php:709 preheaders/checkout.php:710
4389
+ msgid "Unknown error generating account. Please contact us to set up your membership."
4390
+ msgstr "خطا در ایجاد کاربری. لطفا برای ایجاد حساب خود با ما تماس بگیرید"
4391
+
4392
+ #: preheaders/checkout.php:571 preheaders/checkout.php:550 preheaders/checkout.php:552
4393
+ #: preheaders/checkout.php:569 preheaders/checkout.php:785 preheaders/checkout.php:792
4394
+ #: preheaders/checkout.php:797 preheaders/checkout.php:825 preheaders/checkout.php:844
4395
+ #: preheaders/checkout.php:859 preheaders/checkout.php:860
4396
+ msgid ""
4397
+ "Your payment was accepted, but there was an error setting up your account. Please "
4398
+ "contact us."
4399
+ msgstr ""
4400
+ "پرداخت موفقیت آمیز بود اما در تنظیم حساب شما مشکلی رخ داده است. لطفا با مدیر سایت "
4401
+ "تماس بگیرید."
4402
+
4403
+ #: preheaders/checkout.php:712 preheaders/checkout.php:691 preheaders/checkout.php:693
4404
+ #: preheaders/checkout.php:710 preheaders/checkout.php:953 preheaders/checkout.php:960
4405
+ #: preheaders/checkout.php:970 preheaders/checkout.php:983 preheaders/checkout.php:1030
4406
+ #: preheaders/checkout.php:1045 preheaders/checkout.php:1046
4407
+ msgid ""
4408
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
4409
+ "authorized, but we cancelled the order immediately. You should not try to submit this "
4410
+ "form again. Please contact the site owner to fix this issue."
4411
+ msgstr ""
4412
+ "مهم: خطا در طول ایجاد عضویت. کارت اعتباری شما مجاز است، اما ما سفارش را بلافاصله لغو "
4413
+ "کردیم. شما نباید این فرم را دوباره ارسال کنید. لطفا برای حل این مشکل با صاحب سایت "
4414
+ "تماس بگیرید."
4415
+
4416
+ #: preheaders/checkout.php:715 preheaders/checkout.php:694 preheaders/checkout.php:696
4417
+ #: preheaders/checkout.php:713 preheaders/checkout.php:956 preheaders/checkout.php:963
4418
+ #: preheaders/checkout.php:973 preheaders/checkout.php:988 preheaders/checkout.php:1035
4419
+ #: preheaders/checkout.php:1050 preheaders/checkout.php:1051
4420
+ msgid ""
4421
+ "IMPORTANT: Something went wrong during membership creation. Your credit card was "
4422
+ "charged, but we couldn't assign your membership. You should not submit this form "
4423
+ "again. Please contact the site owner to fix this issue."
4424
+ msgstr ""
4425
+ "مهم: خطا در طول ایجاد عضویت. کارت اعتباری شما شارژ شد، اما ما نمی تواند عضویت شما را "
4426
+ "اختصاص دهیم. شما نباید این فرم را دوباره ارسال کنید. لطفا برای حل این مشکل با صاحب "
4427
+ "سایت تماس بگیرید."
4428
+
4429
+ #: preheaders/checkout.php:726 preheaders/checkout.php:705 preheaders/checkout.php:707
4430
+ #: preheaders/checkout.php:724 preheaders/checkout.php:967 preheaders/checkout.php:974
4431
+ #: preheaders/checkout.php:984 preheaders/checkout.php:1001 preheaders/checkout.php:1048
4432
+ #: preheaders/checkout.php:1063 preheaders/checkout.php:1064
4433
+ #, php-format
4434
+ msgid ""
4435
+ "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments will be "
4436
+ "processed."
4437
+ msgstr ""
4438
+ "شما باید <a href=\\\"%s\\\">درگاه پرداخت را تنظیم کنید</a> قبل از اینکه پرداخت های "
4439
+ "شما پردازش شوند."
4440
+
4441
+ #: preheaders/checkout.php:728 preheaders/checkout.php:707 preheaders/checkout.php:709
4442
+ #: preheaders/checkout.php:726 preheaders/checkout.php:969 preheaders/checkout.php:976
4443
+ #: preheaders/checkout.php:986 preheaders/checkout.php:1003 preheaders/checkout.php:1050
4444
+ #: preheaders/checkout.php:1065 preheaders/checkout.php:1066
4445
+ msgid "A Payment Gateway must be set up before any payments will be processed."
4446
+ msgstr "حتما یک درگاه پرداخت باید تنظیم شود قبل از اینکه پرداخت های شما پردازش شوند."
4447
+
4448
+ #: scheduled/crons.php:38 scheduled/crons.php:31 scheduled/crons.php:34
4449
+ #: scheduled/crons.php:61
4450
+ #, php-format
4451
+ msgid "Membership expired email sent to %s. "
4452
+ msgstr "ارسال ایمیل عضویت منقضی شده به %s."
4453
+
4454
+ #: scheduled/crons.php:84 scheduled/crons.php:27 scheduled/crons.php:74
4455
+ #: scheduled/crons.php:80
4456
+ #, php-format
4457
+ msgid "Membership expiring email sent to %s. "
4458
+ msgstr "ارسال ایمیل انقضاء عضویت به %s."
4459
+
4460
+ #: scheduled/crons.php:157 scheduled/crons.php:143 scheduled/crons.php:152
4461
+ #, php-format
4462
+ msgid "Credit card expiring email sent to %s. "
4463
+ msgstr "ارسال ایمیل انقضاء کارت اعتباری به %s."
4464
+
4465
+ #: scheduled/crons.php:210 scheduled/crons.php:104 scheduled/crons.php:196
4466
+ #: scheduled/crons.php:208
4467
+ #, php-format
4468
+ msgid "Trial ending email sent to %s. "
4469
+ msgstr "ارسال ایمیل اتمام دوره آزمایشی به %s."
4470
+
4471
+ #: services/applydiscountcode.php:67 services/applydiscountcode.php:64
4472
+ #, php-format
4473
+ msgid "The %s code has been applied to your order. "
4474
+ msgstr "کد %s روی سفارش شما اعمال گردید."
4475
+
4476
+ #: services/applydiscountcode.php:97 services/applydiscountcode.php:82
4477
+ #: services/applydiscountcode.php:83 services/applydiscountcode.php:86
4478
+ #, php-format
4479
+ msgid "The <strong>%s</strong> code has been applied to your order."
4480
+ msgstr "کد <strong>%s</strong> روی سفارش شما اعمال گردید."
4481
+
4482
+ #: services/authnet-silent-post.php:141 services/authnet-silent-post.php:133
4483
+ #: services/authnet-silent-post.php:138
4484
+ msgid ""
4485
+ "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information "
4486
+ "From Authorize.net"
4487
+ msgstr ""
4488
+ "<p>پرداخت در انتظار اعتبار سنجی Authorize.net.</p><p>اطلاعات فرم پرداخت Authorize.net"
4489
+
4490
+ #: services/stripe-webhook.php:270 services/stripe-webhook.php:176
4491
+ #: services/stripe-webhook.php:194
4492
+ #, php-format
4493
+ msgid ""
4494
+ "%s has had their payment subscription cancelled by Stripe. Please check that this "
4495
+ "user's membership is cancelled on your site if it should be."
4496
+ msgstr ""
4497
+ "عضو %s پرداخت اشتراک خود را با Stripe لغو نموده است. لطفا بررسی کنید که عضویت این "
4498
+ "کاربر در سایت شما لغو شده باشد"
4499
+
4500
+ #: shortcodes/pmpro_account.php:45 pages/account.php:19
4501
+ msgid "Billing"
4502
+ msgstr "صورتحساب"
4503
+
4504
+ #: shortcodes/pmpro_account.php:62 pages/account.php:36
4505
+ msgid "Update Billing Info"
4506
+ msgstr "بروزرسانی اطلاعات صورتحساب"
4507
+
4508
+ #: shortcodes/pmpro_account.php:68 pages/account.php:42
4509
+ msgid "Change"
4510
+ msgstr "تغییر"
4511
+
4512
+ #: shortcodes/pmpro_account.php:90 pages/account.php:64
4513
+ msgid "View all Membership Options"
4514
+ msgstr "مشاهده همه تنظیمات عضویت"
4515
+
4516
+ #: shortcodes/pmpro_account.php:99 pages/account.php:46 pages/account.php:50
4517
+ #: pages/account.php:71
4518
+ msgid "My Account"
4519
+ msgstr "حساب کاربری من"
4520
+
4521
+ #: shortcodes/pmpro_account.php:110 pages/account.php:55 pages/account.php:59
4522
+ #: pages/account.php:80
4523
+ msgid "Edit Profile"
4524
+ msgstr "ویرایش پروفایل"
4525
+
4526
+ #: shortcodes/pmpro_account.php:111 pages/account.php:56 pages/account.php:60
4527
+ #: pages/account.php:81
4528
+ msgid "Change Password"
4529
+ msgstr "تغییر رمز عبور"
4530
+
4531
+ #: shortcodes/pmpro_account.php:118 pages/account.php:87 pages/account.php:125
4532
+ #: pages/account.php:129
4533
+ msgid "Past Invoices"
4534
+ msgstr "فاکتورهای گذشته"
4535
+
4536
+ #: shortcodes/pmpro_account.php:124 pages/account.php:93
4537
+ msgid "Amount"
4538
+ msgstr "مقدار"
4539
+
4540
+ #: shortcodes/pmpro_account.php:152 pages/account.php:121 pages/account.php:140
4541
+ #: pages/account.php:144
4542
+ msgid "View All Invoices"
4543
+ msgstr "مشاهده همه فاکتورها"
4544
+
4545
+ #: shortcodes/pmpro_account.php:159 pages/account.php:128 pages/account.php:146
4546
+ #: pages/account.php:150
4547
+ msgid "Member Links"
4548
+ msgstr "لینک های کاربر"
4549
+
4550
+ #: adminpages/addons.php:79
4551
+ msgid "Disabled"
4552
+ msgstr "غیر فعال شده"
4553
+
4554
+ #: adminpages/addons.php:79
4555
+ msgid "Enabled"
4556
+ msgstr "فعال شده"
4557
+
4558
+ #: adminpages/discountcodes.php:437
4559
+ msgid "Billing Ammount"
4560
+ msgstr "میزان صورتحساب"
4561
+
4562
+ #: adminpages/discountcodes.php:480
4563
+ msgid "Check this to set an expiration date for new sign ups."
4564
+ msgstr "برای ثبت زمان انقضا برای ثبت نام های جدید علامت بزنید"
4565
+
4566
+ #: adminpages/discountcodes.php:497
4567
+ msgid ""
4568
+ "How long before the expiration expires. Note that any future payments will be "
4569
+ "cancelled when the membership expires."
4570
+ msgstr ""
4571
+ "How long before the expiration expires. Note that any future payments will be "
4572
+ "cancelled when the membership expires."
4573
+
4574
+ #: adminpages/membershiplevels.php:364
4575
+ msgid ""
4576
+ "Stripe integration currently only supports billing periods of \"Month\" or \"Year\"."
4577
+ msgstr ""
4578
+ "Stripe integration currently only supports billing periods of \"Month\" or \"Year\"."
4579
+
4580
+ #: adminpages/membershiplevels.php:398
4581
+ msgid ""
4582
+ "2Checkout integration does not currently support custom trials. You can do one period "
4583
+ "trials by setting an initial payment different from the billing amount."
4584
+ msgstr ""
4585
+ "2Checkout integration does not currently support custom trials. You can do one period "
4586
+ "trials by setting an initial payment different from the billing amount."
4587
+
4588
+ #: adminpages/membershiplevels.php:508 adminpages/membershiplevels.php:514
4589
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:543
4590
+ msgid "Billing Cycle"
4591
+ msgstr "دوره صورتحساب"
4592
+
4593
+ #: adminpages/membershiplevels.php:509 adminpages/membershiplevels.php:515
4594
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:544
4595
+ msgid "Trial Cycle"
4596
+ msgstr "دوره آزمایشی"
4597
+
4598
+ #: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:549
4599
+ #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:578
4600
+ msgid "every"
4601
+ msgstr "هر"
4602
+
4603
+ #: adminpages/memberslist.php:184 adminpages/memberslist.php:212
4604
+ msgid "Never"
4605
+ msgstr "هرگز"
4606
+
4607
+ #: adminpages/pagesettings.php:73
4608
+ #, php-format
4609
+ msgid "Membership %s"
4610
+ msgstr "عضویت %s"
4611
+
4612
+ #: adminpages/paymentsettings.php:170
4613
+ msgid ""
4614
+ "Payflow Pro currently only supports one-time payments. Users will not be able to "
4615
+ "checkout for levels with recurring payments."
4616
+ msgstr ""
4617
+ "Payflow Pro currently only supports one-time payments. Users will not be able to "
4618
+ "checkout for levels with recurring payments."
4619
+
4620
+ #: adminpages/paymentsettings.php:405 adminpages/paymentsettings.php:445
4621
+ msgid ""
4622
+ "If values are given, tax will be applied for any members ordering from the selected "
4623
+ "state. For more complex tax rules, use the \"pmpro_tax\" filter."
4624
+ msgstr ""
4625
+ "If values are given, tax will be applied for any members ordering from the selected "
4626
+ "state. For more complex tax rules, use the \"pmpro_tax\" filter."
4627
+
4628
+ #: adminpages/paymentsettings.php:410 adminpages/paymentsettings.php:421
4629
+ msgid "Use SSL"
4630
+ msgstr "استفاده از اس اس ال"
4631
+
4632
+ #: adminpages/paymentsettings.php:425
4633
+ msgid "Required by this Gateway Option"
4634
+ msgstr "Required by this Gateway Option"
4635
+
4636
+ #: adminpages/paymentsettings.php:432
4637
+ msgid ""
4638
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on the "
4639
+ "checkout page."
4640
+ msgstr ""
4641
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on the "
4642
+ "checkout page."
4643
+
4644
+ #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:471
4645
+ #: adminpages/paymentsettings.php:477 adminpages/paymentsettings.php:479
4646
+ msgid "HTTPS Nuclear Option"
4647
+ msgstr "HTTPS Nuclear Option"
4648
+
4649
+ #: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:474
4650
+ #: adminpages/paymentsettings.php:480 adminpages/paymentsettings.php:482
4651
+ msgid ""
4652
+ "Use the \"Nuclear Option\" to use secure (HTTPS) URLs on your secure pages. Check "
4653
+ "this if you are using SSL and have warnings on your checkout pages."
4654
+ msgstr ""
4655
+ "Use the \"Nuclear Option\" to use secure (HTTPS) URLs on your secure pages. Check "
4656
+ "this if you are using SSL and have warnings on your checkout pages."
4657
+
4658
+ #: adminpages/paymentsettings.php:490 adminpages/paymentsettings.php:496
4659
+ #: adminpages/paymentsettings.php:498
4660
+ #: classes/gateways/class.pmprogateway_twocheckout.php:148
4661
+ msgid "To fully integrate with 2Checkout, be sure to set your 2Checkout INS URL "
4662
+ msgstr "To fully integrate with 2Checkout, be sure to set your 2Checkout INS URL "
4663
+
4664
+ #: classes/class.pmproemail.php:685 classes/class.pmproemail.php:734
4665
+ #: classes/class.pmproemail.php:799
4666
+ msgid "membership has been cancelled"
4667
+ msgstr "عضویت لغو شد"
4668
+
4669
+ #: includes/currencies.php:11
4670
+ msgid "Brazilian Real (&#36;)"
4671
+ msgstr "ریل برزیل (&#36;)"
4672
+
4673
+ #: includes/currencies.php:29 includes/currencies.php:49
4674
+ msgid "South African Rand"
4675
+ msgstr "راند آفریقا جنوبی"
4676
+
4677
+ #: includes/profile.php:82 includes/profile.php:84
4678
+ msgid "User is not paying."
4679
+ msgstr "کاربر پرداخت نداشته است"
4680
+
4681
+ #: pages/account.php:10
4682
+ msgid "Your membership is <strong>active</strong>."
4683
+ msgstr "عضویت شما <strong>فعال</strong> است."
4684
+
4685
+ #: pages/account.php:34 pages/account.php:38
4686
+ #, php-format
4687
+ msgid "Your first payment will cost %s."
4688
+ msgstr "هزینه اولین پرداخت شما %s میباشد."
4689
+
4690
+ #: pages/account.php:38 pages/account.php:42
4691
+ #, php-format
4692
+ msgid "Your first %d payments will cost %s."
4693
+ msgstr "هزینه اولین %d پرداخت شما %s میباشد."
4694
+
4695
+ #: pages/account.php:87 pages/account.php:91
4696
+ msgid "Billing Information"
4697
+ msgstr "اطلاعات صورتحساب"
4698
+
4699
+ #: pages/account.php:114 pages/account.php:118
4700
+ msgid "Edit Billing Information"
4701
+ msgstr "ویرایش اطلاعات صورتحساب"
4702
+
4703
+ #: pages/account.php:152 pages/account.php:156
4704
+ msgid "Update Billing Information"
4705
+ msgstr "بروزرسانی اطلاعات صورت حساب"
4706
+
4707
+ #: pages/account.php:155 pages/account.php:159
4708
+ msgid "Change Membership Level"
4709
+ msgstr "تغییر سطح عضویت"
4710
+
4711
+ #: pages/account.php:157 pages/account.php:161
4712
+ msgid "Cancel Membership"
4713
+ msgstr "لغو عضویت"
4714
+
4715
+ #: pages/checkout.php:51 pages/checkout.php:52
4716
+ #, php-format
4717
+ msgid "<p>The <strong>%s</strong> code has been applied to your order.</p>"
4718
+ msgstr "<p>کد <strong>%s</strong> در سفارش شما درج شد.</p>"
4719
+
4720
+ #: pages/checkout.php:688 pages/checkout.php:691 pages/checkout.php:707
4721
+ msgid "Submit and Pay with 2CheckOut"
4722
+ msgstr "ارسال و پرداخت با 2CheckOut"
4723
+
4724
+ #: pages/confirmation.php:12
4725
+ msgid ""
4726
+ "Your payment has been submitted to PayPal. Your membership will be activated shortly."
4727
+ msgstr ""
4728
+ "پرداخت شما به پی پال با موفقیت ارسال شد و حساب کاربری شما به زودی فعال خواهد گردید."
4729
+
4730
+ #: pages/confirmation.php:95 pages/confirmation.php:97
4731
+ #, php-format
4732
+ msgid ""
4733
+ "Below are details about your membership account. A welcome email with has been sent "
4734
+ "to %s."
4735
+ msgstr ""
4736
+ "در زیر اطلاعات حساب کاربری شما آمده است. یک ایمیل خوش آمد گویی به آدرس %s ارسال شده "
4737
+ "است."
4738
+
4739
+ #: pages/invoice.php:120 pages/invoice.php:122
4740
+ msgid "View Invoice"
4741
+ msgstr "مشاهده فاکتور"
4742
+
4743
+ #: pages/levels.php:15
4744
+ msgid "Subscription Information"
4745
+ msgstr "اطلاعات اشتراک"
4746
+
4747
+ #: pages/levels.php:33
4748
+ msgid "--"
4749
+ msgstr "--"
4750
+
4751
+ #: pages/levels.php:51
4752
+ #, php-format
4753
+ msgid "%s per %s for %d more %s."
4754
+ msgstr "%s در هر %s برای %d %s بیشتر."
4755
+
4756
+ #: pages/levels.php:55
4757
+ #, php-format
4758
+ msgid "%s every %d %s for %d more %s."
4759
+ msgstr "%s هر %d %s برای %d بیشتر %s."
4760
+
4761
+ #: pages/levels.php:60
4762
+ #, php-format
4763
+ msgid "%s after %d %s."
4764
+ msgstr "%s پس از %d %s."
4765
+
4766
+ #: preheaders/checkout.php:99 preheaders/checkout.php:100 preheaders/checkout.php:102
4767
+ #: preheaders/checkout.php:109
4768
+ msgid "Set up Your Account"
4769
+ msgstr "حساب خود را تنظیم کنید"
languages/pmpro-fr_FR.po CHANGED
@@ -57,7 +57,7 @@ msgid ""
57
  "The billing details for some of your membership levels is not supported by "
58
  "Stripe."
59
  msgstr ""
60
- "Les détails de facturation pour certains de vos niveaux d'adhésion sont pas "
61
  "pris en charge par Stripe."
62
 
63
  #: adminpages/admin_header.php:46
@@ -155,7 +155,7 @@ msgstr "Passerelle de paiement et SSL"
155
  #: adminpages/admin_header.php:152 adminpages/memberslist.php:158
156
  #: shortcodes/pmpro_account.php:106
157
  msgid "Email"
158
- msgstr "Email"
159
 
160
  #: adminpages/admin_header.php:153
161
  msgid "Advanced"
@@ -618,7 +618,7 @@ msgstr "supprimer"
618
  #: adminpages/emailsettings.php:69 includes/adminpages.php:50
619
  #: includes/adminpages.php:128
620
  msgid "Email Settings"
621
- msgstr "Paramètres d'email"
622
 
623
  #: adminpages/emailsettings.php:70
624
  msgid ""
@@ -626,7 +626,7 @@ msgid ""
626
  "<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
627
  "address using the fields below."
628
  msgstr ""
629
- "Par défaut, les emails générés par le système sont envoyés par "
630
  "<em><strong>wordpress@yourdomain.com</strong></em>. Vous pouvez mettre à jour "
631
  "cette adresse en utilisant les champs ci-dessous"
632
 
@@ -640,17 +640,17 @@ msgid ""
640
  "paidmembershipspro.com/documentation/member-communications/\">Click here to "
641
  "learn more about Paid Memberships Pro emails</a>."
642
  msgstr ""
643
- "Pour modifier l'apparence des emails générés, ajoutez les fichiers "
644
  "<em>email_header.html</em> et <em>email_footer.html</em> dans le répertoire "
645
  "de votre thème. Cela modifiera à la fois les messages par défaut de Wordpress "
646
  "et les messages générés par Paid Menberships Pro. <a title=\"Paid Memberships "
647
  "Pro - Member Communications\" target=\"_blank\" href=\"http://www."
648
  "paidmembershipspro.com/documentation/member-communications/\">Cliquez ici "
649
- "pour en apprendre plus sur les emails dans Paid Memberships Pro</a>."
650
 
651
  #: adminpages/emailsettings.php:78
652
  msgid "From Email"
653
- msgstr "Email d'envoi"
654
 
655
  #: adminpages/emailsettings.php:86
656
  msgid "From Name"
@@ -658,15 +658,15 @@ msgstr "Nom d'envoi"
658
 
659
  #: adminpages/emailsettings.php:94
660
  msgid "Only Filter PMPro Emails?"
661
- msgstr "Filtrer seulement les emails de PMPro ?"
662
 
663
  #: adminpages/emailsettings.php:98
664
  msgid "If unchecked, all emails from \"WordPress &lt;"
665
- msgstr "Si décoché, tous les emails venant de \"WordPress &lt;"
666
 
667
  #: adminpages/emailsettings.php:115
668
  msgid "Send the site admin emails"
669
- msgstr "Envoyer des emails aux administrateurs du site"
670
 
671
  #: adminpages/emailsettings.php:121
672
  msgid "Checkout"
@@ -704,7 +704,7 @@ msgstr "lorsqu'un utilisateur met à jour ses informations de facturation."
704
 
705
  #: adminpages/emailsettings.php:158
706
  msgid "Send members emails"
707
- msgstr "Envoyer des emails aux membres"
708
 
709
  #: adminpages/emailsettings.php:164
710
  msgid "New Users"
@@ -715,8 +715,8 @@ msgid ""
715
  "Default WP notification email. (Recommended: Leave unchecked. Members will "
716
  "still get an email confirmation from PMPro after checkout.)"
717
  msgstr ""
718
- "Notification email de Wordpress par défaut. (Recommandé : Laissez décochée. "
719
- "Les membres continueront de recevoir un email de confirmation de PMPpro après "
720
  "paiement.)"
721
 
722
  #: adminpages/membershiplevels.php:118
@@ -1087,7 +1087,7 @@ msgstr "Ville de facturation"
1087
 
1088
  #: adminpages/orders.php:315
1089
  msgid "Billing State"
1090
- msgstr "État de facturation"
1091
 
1092
  #: adminpages/orders.php:322
1093
  msgid "Billing Postal Code"
@@ -1257,7 +1257,7 @@ msgstr "filtré par"
1257
 
1258
  #: adminpages/orders.php:674
1259
  msgid "Filter"
1260
- msgstr "FIltrer"
1261
 
1262
  #: adminpages/orders.php:777 adminpages/orders.php:780
1263
  msgid "Search Orders"
@@ -1530,7 +1530,7 @@ msgstr "Visites depuis le début"
1530
 
1531
  #: adminpages/reports/login.php:32
1532
  msgid "Views Today"
1533
- msgstr "Vues ajourdhui"
1534
 
1535
  #: adminpages/reports/login.php:33 adminpages/reports/login.php:151
1536
  msgid "Views This Month"
@@ -1674,13 +1674,13 @@ msgid ""
1674
  "active."
1675
  msgstr ""
1676
  "Une erreur est survenue lors de l'annulation d'abonnement pour l'utilisateur "
1677
- "avec l ID=%s. Vous devrez vérifier sur votre passerelle de paiement pour voir "
1678
  "si leur abonnement est toujours actif."
1679
 
1680
  #: classes/class.pmproemail.php:37
1681
  #, php-format
1682
  msgid "An Email From %s"
1683
- msgstr "Un Courrier électronique de %s"
1684
 
1685
  #: classes/class.pmproemail.php:125
1686
  #, php-format
@@ -2089,7 +2089,7 @@ msgstr ""
2089
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
2090
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
2091
  msgid "Gateway Account Email"
2092
- msgstr "Email du compte"
2093
 
2094
  #: classes/gateways/class.pmprogateway_paypal.php:131
2095
  #: classes/gateways/class.pmprogateway_paypalexpress.php:136
@@ -2171,7 +2171,7 @@ msgstr ""
2171
  #: classes/gateways/class.pmprogateway_paypalexpress.php:268
2172
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
2173
  msgid "The PayPal Token was lost."
2174
- msgstr "Le Token PayPal a été perdu."
2175
 
2176
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
2177
  #: paid-memberships-pro.php:122
@@ -2201,7 +2201,7 @@ msgstr "Clé secrète"
2201
 
2202
  #: classes/gateways/class.pmprogateway_stripe.php:161
2203
  msgid "Publishable Key"
2204
- msgstr "Clé publiable"
2205
 
2206
  #: classes/gateways/class.pmprogateway_stripe.php:169
2207
  msgid "Show Billing Address Fields"
@@ -2329,11 +2329,11 @@ msgstr "Consultez le forum de support"
2329
 
2330
  #: includes/adminpages.php:262
2331
  msgid "Support"
2332
- msgstr ""
2333
 
2334
  #: includes/currencies.php:7 includes/currencies.php:75
2335
  msgid "US Dollars (&#36;)"
2336
- msgstr ""
2337
 
2338
  #: includes/currencies.php:9 includes/currencies.php:78
2339
  msgid "Euros (&euro;)"
@@ -2341,11 +2341,11 @@ msgstr ""
2341
 
2342
  #: includes/currencies.php:14 includes/currencies.php:77
2343
  msgid "Pounds Sterling (&pound;)"
2344
- msgstr ""
2345
 
2346
  #: includes/currencies.php:18
2347
  msgid "Australian Dollars (&#36;)"
2348
- msgstr ""
2349
 
2350
  #: includes/currencies.php:20
2351
  msgid "Brazilian Real (R&#36;)"
@@ -2353,7 +2353,7 @@ msgstr ""
2353
 
2354
  #: includes/currencies.php:24 includes/currencies.php:76
2355
  msgid "Canadian Dollars (&#36;)"
2356
- msgstr ""
2357
 
2358
  #: includes/currencies.php:25
2359
  msgid "Chinese Yuan"
@@ -2639,12 +2639,12 @@ msgid ""
2639
  "This post is already protected for this level because it is within a category "
2640
  "that requires membership."
2641
  msgstr ""
2642
- "Ce poste est déjà protégé à ce niveau, car il est dans une catégorie qui "
2643
  "nécessite l'adhésion."
2644
 
2645
  #: includes/metaboxes.php:99 includes/metaboxes.php:100
2646
  msgid "Require Membership"
2647
- msgstr "Exiger l'adhésion"
2648
 
2649
  #: includes/profile.php:36
2650
  msgid "Current Level"
@@ -2704,7 +2704,7 @@ msgstr "Niveau"
2704
 
2705
  #: pages/billing.php:18
2706
  msgid "Membership Fee"
2707
- msgstr "Droits d'adhésion"
2708
 
2709
  #: pages/billing.php:22
2710
  #, php-format
@@ -2751,7 +2751,7 @@ msgstr "Ville"
2751
 
2752
  #: pages/billing.php:95 pages/checkout.php:335
2753
  msgid "State"
2754
- msgstr "État"
2755
 
2756
  #: pages/billing.php:99 pages/checkout.php:339
2757
  msgid "Postal Code"
@@ -2771,11 +2771,11 @@ msgstr "Téléphone"
2771
 
2772
  #: pages/billing.php:197 pages/checkout.php:207 pages/checkout.php:440
2773
  msgid "E-mail Address"
2774
- msgstr "Adresse email"
2775
 
2776
  #: pages/billing.php:201 pages/checkout.php:449
2777
  msgid "Confirm E-mail"
2778
- msgstr "Confirmer l'email"
2779
 
2780
  #: pages/billing.php:221
2781
  #, php-format
@@ -2896,7 +2896,7 @@ msgid ""
2896
  "You are logged in as <strong>%s</strong>. If you would like to use a "
2897
  "different account for this membership, <a href=\"%s\">log out now</a>."
2898
  msgstr ""
2899
- "Vous êtes connecté en tant de <strong>%s </ strong>. Si vous souhaitez "
2900
  "utiliser un compte différent pour cette adhésion, <a href=\"%s\">déconnectez-"
2901
  "vous</a>."
2902
 
@@ -2923,7 +2923,7 @@ msgstr "Traitement en cours ..."
2923
 
2924
  #: pages/checkout.php:751
2925
  msgid "Required field"
2926
- msgstr "Champ obligatoire"
2927
 
2928
  #: pages/confirmation.php:12
2929
  msgid ""
@@ -2934,7 +2934,7 @@ msgstr "Votre paiement a été envoyé. Votre adhésion sera activée très bien
2934
  #, php-format
2935
  msgid "Thank you for your membership to %s. Your %s membership is now active."
2936
  msgstr ""
2937
- "Nous vous remercions de votre adhésion à %s. Votres %s adhésion est "
2938
  "maintenant active."
2939
 
2940
  #: pages/confirmation.php:28
@@ -2945,7 +2945,7 @@ msgid ""
2945
  "membership invoice has been sent to %s."
2946
  msgstr ""
2947
  "Voici les détails de votre compte et un reçu pour votre adhésion initiale. Un "
2948
- "email de bienvenue avec une copie de votre reçu vous a été envoyé à %s."
2949
 
2950
  #: pages/confirmation.php:41 pages/invoice.php:22
2951
  #, php-format
@@ -2982,7 +2982,7 @@ msgid ""
2982
  "Below are details about your membership account. A welcome email has been "
2983
  "sent to %s."
2984
  msgstr ""
2985
- "Ci-dessous les détails de votre compte d'adhérent. Un mail de bienvenue a été "
2986
  "envoyé à %s."
2987
 
2988
  #: pages/confirmation.php:105
@@ -3079,12 +3079,12 @@ msgstr "Veuillez remplir tous les champs obligatoires."
3079
 
3080
  #: preheaders/billing.php:273 preheaders/checkout.php:340
3081
  msgid "Your email addresses do not match. Please try again."
3082
- msgstr "Vos adresses emails ne correspondent pas. Veuillez essayer de nouveau."
3083
 
3084
  #: preheaders/billing.php:276 preheaders/checkout.php:345
3085
  msgid "The email address entered is in an invalid format. Please try again."
3086
  msgstr ""
3087
- "L'adresse email saisie est dans un format non valide. Veuillez essayer de "
3088
  "nouveau."
3089
 
3090
  #: preheaders/billing.php:280
@@ -3119,7 +3119,7 @@ msgstr "Configurer votre compte"
3119
 
3120
  #: preheaders/checkout.php:300
3121
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
3122
- msgstr "Il y a des erreurs Javascript sur la page. Contactez le webmaster."
3123
 
3124
  #: preheaders/checkout.php:335
3125
  msgid "Your passwords do not match. Please try again."
@@ -3128,19 +3128,19 @@ msgstr "Vos mots de passe ne correspondent pas. Veuillez essayer de nouveau."
3128
  #: preheaders/checkout.php:350
3129
  #, php-format
3130
  msgid "Please check the box to agree to the %s."
3131
- msgstr "Veuillez cochee la case pour accepter le %s."
3132
 
3133
  #: preheaders/checkout.php:357
3134
  msgid "Are you a spammer?"
3135
- msgstr "Êtes-vous un spammeur?"
3136
 
3137
  #: preheaders/checkout.php:377
3138
  msgid "That username is already taken. Please try another."
3139
- msgstr "Ce nom d'utilisateur est déjà pris. Veuillez en essayer un autre."
3140
 
3141
  #: preheaders/checkout.php:382
3142
  msgid "That email address is already taken. Please try another."
3143
- msgstr "Cette adresse email est déjà prise."
3144
 
3145
  #: preheaders/checkout.php:416
3146
  #, php-format
@@ -3156,7 +3156,7 @@ msgid ""
3156
  "Unknown error generating account. Please contact us to set up your membership."
3157
  msgstr ""
3158
  "Erreur inconnue lors de la génération du compte. Veuillez nous contacter pour "
3159
- "finir votre adhésion."
3160
 
3161
  #: preheaders/checkout.php:569
3162
  msgid ""
@@ -3172,8 +3172,8 @@ msgid ""
3172
  "authorized, but we cancelled the order immediately. You should not try to "
3173
  "submit this form again. Please contact the site owner to fix this issue."
3174
  msgstr ""
3175
- "IMPORTANT : Quelque chose a mal tourné lors de la création d'adhésion. Votre "
3176
- "carte de crédit est autorisée, mais nous avons annulé la commande. Ne "
3177
  "renvoyez pas ce formulaire. Veuillez contacter le propriétaire du site pour "
3178
  "résoudre ce problème."
3179
 
@@ -3183,7 +3183,7 @@ msgid ""
3183
  "was charged, but we couldn't assign your membership. You should not submit "
3184
  "this form again. Please contact the site owner to fix this issue."
3185
  msgstr ""
3186
- "IMPORTANT: Quelque chose a mal tourné lors de la création d'adhésion. Votre "
3187
  "carte de crédit a été débitée, mais nous n'avons pas pu valider votre "
3188
  "adhésion. Ne renvoyez pas ce formulaire. Veuillez contacter le propriétaire "
3189
  "du site pour résoudre ce problème."
@@ -3206,22 +3206,22 @@ msgstr ""
3206
  #: scheduled/crons.php:38
3207
  #, php-format
3208
  msgid "Membership expired email sent to %s. "
3209
- msgstr "Email d'adhésion expirée envoyé à %s. "
3210
 
3211
  #: scheduled/crons.php:84
3212
  #, php-format
3213
  msgid "Membership expiring email sent to %s. "
3214
- msgstr "Email d'expiration d'adhésion envoyé à %s. "
3215
 
3216
  #: scheduled/crons.php:157
3217
  #, php-format
3218
  msgid "Credit card expiring email sent to %s. "
3219
- msgstr "Email d'expiration de la carte de crédit envoyé à %s. "
3220
 
3221
  #: scheduled/crons.php:210
3222
  #, php-format
3223
  msgid "Trial ending email sent to %s. "
3224
- msgstr "Email de fin de période d'essai envoyé à %s. "
3225
 
3226
  #: services/applydiscountcode.php:67
3227
  #, php-format
@@ -3290,7 +3290,7 @@ msgstr "Montant"
3290
 
3291
  #: shortcodes/pmpro_account.php:152
3292
  msgid "View All Invoices"
3293
- msgstr "Voir toutes les reçus"
3294
 
3295
  #: shortcodes/pmpro_account.php:159
3296
  msgid "Member Links"
@@ -3345,7 +3345,7 @@ msgstr "Liens pour les membres"
3345
  #~ msgstr "Utiliser SSL"
3346
 
3347
  #~ msgid "Required by this Gateway Option"
3348
- #~ msgstr "Recquis pour cette option de passerelle"
3349
 
3350
  #~ msgid "HTTPS Nuclear Option"
3351
  #~ msgstr "HTTPS Option nucléaire"
@@ -3375,7 +3375,7 @@ msgstr "Liens pour les membres"
3375
  #~ msgstr "Vos premiers paiements %d coûteront %s."
3376
 
3377
  #~ msgid "Edit Billing Information"
3378
- #~ msgstr "Éditer information de facturation."
3379
 
3380
  #~ msgid "Update Billing Information"
3381
  #~ msgstr "Mise à jour des informations de facturation"
@@ -3400,7 +3400,7 @@ msgstr "Liens pour les membres"
3400
  #~ "Below are details about your membership account. A welcome email with has "
3401
  #~ "been sent to %s."
3402
  #~ msgstr ""
3403
- #~ "Voici les détails de votre compte. Un email de bienvenue avec a été envoyé "
3404
  #~ "à %s."
3405
 
3406
  #~ msgid "View Invoice"
57
  "The billing details for some of your membership levels is not supported by "
58
  "Stripe."
59
  msgstr ""
60
+ "Les détails de facturation pour certains de vos niveaux d'adhésion ne sont pas "
61
  "pris en charge par Stripe."
62
 
63
  #: adminpages/admin_header.php:46
155
  #: adminpages/admin_header.php:152 adminpages/memberslist.php:158
156
  #: shortcodes/pmpro_account.php:106
157
  msgid "Email"
158
+ msgstr "Courriel"
159
 
160
  #: adminpages/admin_header.php:153
161
  msgid "Advanced"
618
  #: adminpages/emailsettings.php:69 includes/adminpages.php:50
619
  #: includes/adminpages.php:128
620
  msgid "Email Settings"
621
+ msgstr "Paramètres de courriel"
622
 
623
  #: adminpages/emailsettings.php:70
624
  msgid ""
626
  "<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
627
  "address using the fields below."
628
  msgstr ""
629
+ "Par défaut, les courriels générés par le système sont envoyés par "
630
  "<em><strong>wordpress@yourdomain.com</strong></em>. Vous pouvez mettre à jour "
631
  "cette adresse en utilisant les champs ci-dessous"
632
 
640
  "paidmembershipspro.com/documentation/member-communications/\">Click here to "
641
  "learn more about Paid Memberships Pro emails</a>."
642
  msgstr ""
643
+ "Pour modifier l'apparence des courriels générés, ajoutez les fichiers "
644
  "<em>email_header.html</em> et <em>email_footer.html</em> dans le répertoire "
645
  "de votre thème. Cela modifiera à la fois les messages par défaut de Wordpress "
646
  "et les messages générés par Paid Menberships Pro. <a title=\"Paid Memberships "
647
  "Pro - Member Communications\" target=\"_blank\" href=\"http://www."
648
  "paidmembershipspro.com/documentation/member-communications/\">Cliquez ici "
649
+ "pour en apprendre plus sur les courriels dans Paid Memberships Pro</a>."
650
 
651
  #: adminpages/emailsettings.php:78
652
  msgid "From Email"
653
+ msgstr "Courriel d'envoi"
654
 
655
  #: adminpages/emailsettings.php:86
656
  msgid "From Name"
658
 
659
  #: adminpages/emailsettings.php:94
660
  msgid "Only Filter PMPro Emails?"
661
+ msgstr "Filtrer seulement les courriels de PMPro ?"
662
 
663
  #: adminpages/emailsettings.php:98
664
  msgid "If unchecked, all emails from \"WordPress &lt;"
665
+ msgstr "Si décoché, tous les courriels venant de \"WordPress &lt;"
666
 
667
  #: adminpages/emailsettings.php:115
668
  msgid "Send the site admin emails"
669
+ msgstr "Envoyer des courriels aux administrateurs du site"
670
 
671
  #: adminpages/emailsettings.php:121
672
  msgid "Checkout"
704
 
705
  #: adminpages/emailsettings.php:158
706
  msgid "Send members emails"
707
+ msgstr "Envoyer des courriels aux membres"
708
 
709
  #: adminpages/emailsettings.php:164
710
  msgid "New Users"
715
  "Default WP notification email. (Recommended: Leave unchecked. Members will "
716
  "still get an email confirmation from PMPro after checkout.)"
717
  msgstr ""
718
+ "Notification courriel de Wordpress par défaut. (Recommandé : Laissez décochée. "
719
+ "Les membres continueront de recevoir un courriel de confirmation de PMPpro après "
720
  "paiement.)"
721
 
722
  #: adminpages/membershiplevels.php:118
1087
 
1088
  #: adminpages/orders.php:315
1089
  msgid "Billing State"
1090
+ msgstr "Province de facturation"
1091
 
1092
  #: adminpages/orders.php:322
1093
  msgid "Billing Postal Code"
1257
 
1258
  #: adminpages/orders.php:674
1259
  msgid "Filter"
1260
+ msgstr "Filtrer"
1261
 
1262
  #: adminpages/orders.php:777 adminpages/orders.php:780
1263
  msgid "Search Orders"
1530
 
1531
  #: adminpages/reports/login.php:32
1532
  msgid "Views Today"
1533
+ msgstr "Vues aujourd'hui"
1534
 
1535
  #: adminpages/reports/login.php:33 adminpages/reports/login.php:151
1536
  msgid "Views This Month"
1674
  "active."
1675
  msgstr ""
1676
  "Une erreur est survenue lors de l'annulation d'abonnement pour l'utilisateur "
1677
+ "avec l'ID=%s. Vous devrez vérifier sur votre passerelle de paiement pour voir "
1678
  "si leur abonnement est toujours actif."
1679
 
1680
  #: classes/class.pmproemail.php:37
1681
  #, php-format
1682
  msgid "An Email From %s"
1683
+ msgstr "Un courriel de %s"
1684
 
1685
  #: classes/class.pmproemail.php:125
1686
  #, php-format
2089
  #: classes/gateways/class.pmprogateway_paypalexpress.php:128
2090
  #: classes/gateways/class.pmprogateway_paypalstandard.php:122
2091
  msgid "Gateway Account Email"
2092
+ msgstr "Courriel du compte"
2093
 
2094
  #: classes/gateways/class.pmprogateway_paypal.php:131
2095
  #: classes/gateways/class.pmprogateway_paypalexpress.php:136
2171
  #: classes/gateways/class.pmprogateway_paypalexpress.php:268
2172
  #: classes/gateways/class.pmprogateway_paypalexpress.php:320
2173
  msgid "The PayPal Token was lost."
2174
+ msgstr "Le jeton PayPal a été perdu."
2175
 
2176
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
2177
  #: paid-memberships-pro.php:122
2201
 
2202
  #: classes/gateways/class.pmprogateway_stripe.php:161
2203
  msgid "Publishable Key"
2204
+ msgstr "Clé publique"
2205
 
2206
  #: classes/gateways/class.pmprogateway_stripe.php:169
2207
  msgid "Show Billing Address Fields"
2329
 
2330
  #: includes/adminpages.php:262
2331
  msgid "Support"
2332
+ msgstr "Soutien"
2333
 
2334
  #: includes/currencies.php:7 includes/currencies.php:75
2335
  msgid "US Dollars (&#36;)"
2336
+ msgstr "Dollar américain (&#36;)"
2337
 
2338
  #: includes/currencies.php:9 includes/currencies.php:78
2339
  msgid "Euros (&euro;)"
2341
 
2342
  #: includes/currencies.php:14 includes/currencies.php:77
2343
  msgid "Pounds Sterling (&pound;)"
2344
+ msgstr "Livres sterling (&pound;)"
2345
 
2346
  #: includes/currencies.php:18
2347
  msgid "Australian Dollars (&#36;)"
2348
+ msgstr "Dollar australien (&#36;)"
2349
 
2350
  #: includes/currencies.php:20
2351
  msgid "Brazilian Real (R&#36;)"
2353
 
2354
  #: includes/currencies.php:24 includes/currencies.php:76
2355
  msgid "Canadian Dollars (&#36;)"
2356
+ msgstr "Dollar canadien (&#36;)"
2357
 
2358
  #: includes/currencies.php:25
2359
  msgid "Chinese Yuan"
2639
  "This post is already protected for this level because it is within a category "
2640
  "that requires membership."
2641
  msgstr ""
2642
+ "Cet article est déjà protégé à ce niveau, car il est dans une catégorie qui "
2643
  "nécessite l'adhésion."
2644
 
2645
  #: includes/metaboxes.php:99 includes/metaboxes.php:100
2646
  msgid "Require Membership"
2647
+ msgstr "Exige un adhésion"
2648
 
2649
  #: includes/profile.php:36
2650
  msgid "Current Level"
2704
 
2705
  #: pages/billing.php:18
2706
  msgid "Membership Fee"
2707
+ msgstr "Coût d'adhésion"
2708
 
2709
  #: pages/billing.php:22
2710
  #, php-format
2751
 
2752
  #: pages/billing.php:95 pages/checkout.php:335
2753
  msgid "State"
2754
+ msgstr "Province"
2755
 
2756
  #: pages/billing.php:99 pages/checkout.php:339
2757
  msgid "Postal Code"
2771
 
2772
  #: pages/billing.php:197 pages/checkout.php:207 pages/checkout.php:440
2773
  msgid "E-mail Address"
2774
+ msgstr "Adresse courriel"
2775
 
2776
  #: pages/billing.php:201 pages/checkout.php:449
2777
  msgid "Confirm E-mail"
2778
+ msgstr "Confirmer courriel"
2779
 
2780
  #: pages/billing.php:221
2781
  #, php-format
2896
  "You are logged in as <strong>%s</strong>. If you would like to use a "
2897
  "different account for this membership, <a href=\"%s\">log out now</a>."
2898
  msgstr ""
2899
+ "Vous êtes connecté en tant que <strong>%s </ strong>. Si vous souhaitez "
2900
  "utiliser un compte différent pour cette adhésion, <a href=\"%s\">déconnectez-"
2901
  "vous</a>."
2902
 
2923
 
2924
  #: pages/checkout.php:751
2925
  msgid "Required field"
2926
+ msgstr "Champs obligatoire"
2927
 
2928
  #: pages/confirmation.php:12
2929
  msgid ""
2934
  #, php-format
2935
  msgid "Thank you for your membership to %s. Your %s membership is now active."
2936
  msgstr ""
2937
+ "Nous vous remercions de votre adhésion à %s. Votre adhésion <b>%s</b> est "
2938
  "maintenant active."
2939
 
2940
  #: pages/confirmation.php:28
2945
  "membership invoice has been sent to %s."
2946
  msgstr ""
2947
  "Voici les détails de votre compte et un reçu pour votre adhésion initiale. Un "
2948
+ "courriel de bienvenue avec une copie de votre reçu vous a été envoyé à %s."
2949
 
2950
  #: pages/confirmation.php:41 pages/invoice.php:22
2951
  #, php-format
2982
  "Below are details about your membership account. A welcome email has been "
2983
  "sent to %s."
2984
  msgstr ""
2985
+ "Ci-dessous les détails de votre compte d'adhérent. Un courriel de bienvenue a été "
2986
  "envoyé à %s."
2987
 
2988
  #: pages/confirmation.php:105
3079
 
3080
  #: preheaders/billing.php:273 preheaders/checkout.php:340
3081
  msgid "Your email addresses do not match. Please try again."
3082
+ msgstr "Vos adresses courriels ne correspondent pas. Veuillez essayer de nouveau."
3083
 
3084
  #: preheaders/billing.php:276 preheaders/checkout.php:345
3085
  msgid "The email address entered is in an invalid format. Please try again."
3086
  msgstr ""
3087
+ "L'adresse courriel saisie est dans un format non valide. Veuillez essayer de "
3088
  "nouveau."
3089
 
3090
  #: preheaders/billing.php:280
3119
 
3120
  #: preheaders/checkout.php:300
3121
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
3122
+ msgstr "Il y a des erreurs Javascript sur la page. Contactez le webmestre."
3123
 
3124
  #: preheaders/checkout.php:335
3125
  msgid "Your passwords do not match. Please try again."
3128
  #: preheaders/checkout.php:350
3129
  #, php-format
3130
  msgid "Please check the box to agree to the %s."
3131
+ msgstr "Veuillez cocher la case pour accepter le %s."
3132
 
3133
  #: preheaders/checkout.php:357
3134
  msgid "Are you a spammer?"
3135
+ msgstr "Êtes-vous un polluposteur?"
3136
 
3137
  #: preheaders/checkout.php:377
3138
  msgid "That username is already taken. Please try another."
3139
+ msgstr "Ce nom d'utilisateur est déjà utilisé. Veuillez en essayer un autre."
3140
 
3141
  #: preheaders/checkout.php:382
3142
  msgid "That email address is already taken. Please try another."
3143
+ msgstr "Cette adresse courriel est déjà utilisée. Veuillez en essayer une autre."
3144
 
3145
  #: preheaders/checkout.php:416
3146
  #, php-format
3156
  "Unknown error generating account. Please contact us to set up your membership."
3157
  msgstr ""
3158
  "Erreur inconnue lors de la génération du compte. Veuillez nous contacter pour "
3159
+ "compléter votre adhésion."
3160
 
3161
  #: preheaders/checkout.php:569
3162
  msgid ""
3172
  "authorized, but we cancelled the order immediately. You should not try to "
3173
  "submit this form again. Please contact the site owner to fix this issue."
3174
  msgstr ""
3175
+ "IMPORTANT : Quelque chose a mal tourné lors de la création de l'adhésion. Votre "
3176
+ "carte de crédit a été autorisée, mais nous avons annulé la commande. Ne "
3177
  "renvoyez pas ce formulaire. Veuillez contacter le propriétaire du site pour "
3178
  "résoudre ce problème."
3179
 
3183
  "was charged, but we couldn't assign your membership. You should not submit "
3184
  "this form again. Please contact the site owner to fix this issue."
3185
  msgstr ""
3186
+ "IMPORTANT: Quelque chose a mal tourné lors de la création de l'adhésion. Votre "
3187
  "carte de crédit a été débitée, mais nous n'avons pas pu valider votre "
3188
  "adhésion. Ne renvoyez pas ce formulaire. Veuillez contacter le propriétaire "
3189
  "du site pour résoudre ce problème."
3206
  #: scheduled/crons.php:38
3207
  #, php-format
3208
  msgid "Membership expired email sent to %s. "
3209
+ msgstr "Courriel d'adhésion expirée envoyé à %s. "
3210
 
3211
  #: scheduled/crons.php:84
3212
  #, php-format
3213
  msgid "Membership expiring email sent to %s. "
3214
+ msgstr "Courriel d'avis d'expiration d'adhésion envoyé à %s. "
3215
 
3216
  #: scheduled/crons.php:157
3217
  #, php-format
3218
  msgid "Credit card expiring email sent to %s. "
3219
+ msgstr "Courriel d'expiration de la carte de crédit envoyé à %s. "
3220
 
3221
  #: scheduled/crons.php:210
3222
  #, php-format
3223
  msgid "Trial ending email sent to %s. "
3224
+ msgstr "Courriel de fin de période d'essai envoyé à %s. "
3225
 
3226
  #: services/applydiscountcode.php:67
3227
  #, php-format
3290
 
3291
  #: shortcodes/pmpro_account.php:152
3292
  msgid "View All Invoices"
3293
+ msgstr "Voir tous les reçus"
3294
 
3295
  #: shortcodes/pmpro_account.php:159
3296
  msgid "Member Links"
3345
  #~ msgstr "Utiliser SSL"
3346
 
3347
  #~ msgid "Required by this Gateway Option"
3348
+ #~ msgstr "Requis pour cette option de passerelle"
3349
 
3350
  #~ msgid "HTTPS Nuclear Option"
3351
  #~ msgstr "HTTPS Option nucléaire"
3375
  #~ msgstr "Vos premiers paiements %d coûteront %s."
3376
 
3377
  #~ msgid "Edit Billing Information"
3378
+ #~ msgstr "Modifier l'information de facturation."
3379
 
3380
  #~ msgid "Update Billing Information"
3381
  #~ msgstr "Mise à jour des informations de facturation"
3400
  #~ "Below are details about your membership account. A welcome email with has "
3401
  #~ "been sent to %s."
3402
  #~ msgstr ""
3403
+ #~ "Voici les détails de votre compte. Un courriel de bienvenue avec a été envoyé "
3404
  #~ "à %s."
3405
 
3406
  #~ msgid "View Invoice"
languages/pmpro-nb_NO.mo CHANGED
Binary file
languages/pmpro-nb_NO.po CHANGED
@@ -1,3279 +1,4322 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Paid Memberships Pro v1.7.7\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: \n"
6
- "PO-Revision-Date: 2014-06-28 10:10:53+0000\n"
7
- "Last-Translator: admin <marit.kolle@getmail.no>\n"
8
- "Language-Team: \n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
13
- "X-Generator: CSL v1.x\n"
14
- "X-Poedit-Language: Norwegian (Bokmål)\n"
15
- "X-Poedit-Country: NORWAY\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
18
- "X-Poedit-Basepath: ../\n"
19
- "X-Poedit-Bookmarks: \n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Textdomain-Support: yes"
22
-
23
- #: adminpages/addons.php:5
24
- #: adminpages/advancedsettings.php:5
25
- #: adminpages/discountcodes.php:5
26
- #: adminpages/emailsettings.php:5
27
- #: adminpages/membershiplevels.php:5
28
- #: adminpages/memberslist-csv.php:5
29
- #: adminpages/memberslist.php:5
30
- #: adminpages/orders-csv.php:5
31
- #: adminpages/orders.php:5
32
- #: adminpages/pagesettings.php:5
33
- #: adminpages/paymentsettings.php:5
34
- #@ pmpro
35
- msgid "You do not have permissions to perform this action."
36
- msgstr "Du har ikke tillatelse til å utføre dette."
37
-
38
- #: adminpages/addons.php:79
39
- #@ pmpro
40
- msgid "Enabled"
41
- msgstr "Aktiv"
42
-
43
- #: adminpages/addons.php:79
44
- #@ pmpro
45
- msgid "Disabled"
46
- msgstr "Ikke aktiv"
47
-
48
- #: adminpages/admin_header.php:25
49
- #@ pmpro
50
- msgid "Add a membership level to get started."
51
- msgstr "Legg til et medlemskap for å starte."
52
-
53
- #: adminpages/admin_header.php:27
54
- #@ pmpro
55
- msgid "Set up the membership pages"
56
- msgstr "Oppsett for medlemskap-sidene"
57
-
58
- #: adminpages/admin_header.php:29
59
- #@ pmpro
60
- msgid "Set up your SSL certificate and payment gateway"
61
- msgstr "Oppsett for SSL sertifikat og betalingsmåte"
62
-
63
- #: adminpages/admin_header.php:38
64
- #@ pmpro
65
- msgid "The billing details for some of your membership levels is not supported by Stripe."
66
- msgstr "Faktureringsdetaljene for noen av dine medlemskapsnivåer er ikke støttet av Stripe."
67
-
68
- #: adminpages/admin_header.php:46
69
- #@ pmpro
70
- msgid "The billing details for this level are not supported by Stripe. Please review the notes in the Billing Details section below."
71
- msgstr "Faktureringsdetaljene for dette nivået er ikke støttet av Stripe. Les igjennom informasjonen i Faktureringsdetaljene under."
72
-
73
- #: adminpages/admin_header.php:50
74
- #: adminpages/admin_header.php:70
75
- #: adminpages/admin_header.php:90
76
- #: adminpages/admin_header.php:111
77
- #@ pmpro
78
- msgid "The levels with issues are highlighted below."
79
- msgstr "Nivåene med feil er markert under."
80
-
81
- #: adminpages/admin_header.php:52
82
- #: adminpages/admin_header.php:72
83
- #: adminpages/admin_header.php:92
84
- #: adminpages/admin_header.php:113
85
- #@ pmpro
86
- msgid "Please edit your levels"
87
- msgstr "Rediger nivåene dine under"
88
-
89
- #: adminpages/admin_header.php:58
90
- #@ pmpro
91
- msgid "The billing details for some of your membership levels is not supported by Payflow."
92
- msgstr "Faktureringsdetaljene for noen av dine medlemskapsnivåer er ikke støttet av Payflow."
93
-
94
- #: adminpages/admin_header.php:66
95
- #@ pmpro
96
- msgid "The billing details for this level are not supported by Payflow. Please review the notes in the Billing Details section below."
97
- msgstr "Faktureringsdetaljene for dette nivået er ikke støttet av Payflow. Les igjennom informasjonen i Faktureringsdetaljene under."
98
-
99
- #: adminpages/admin_header.php:78
100
- #@ pmpro
101
- msgid "The billing details for some of your membership levels is not supported by Braintree."
102
- msgstr "Faktureringsdetaljene for noen av dine medlemskapsnivåer er ikke støttet av Braintree."
103
-
104
- #: adminpages/admin_header.php:86
105
- #@ pmpro
106
- msgid "The billing details for this level are not supported by Braintree. Please review the notes in the Billing Details section below."
107
- msgstr "Faktureringsdetaljene for dette nivået er ikke støttet av Braintree. Les igjennom informasjonen i Faktureringsdetaljene under."
108
-
109
- #: adminpages/admin_header.php:98
110
- #@ pmpro
111
- msgid "The billing details for some of your membership levels is not supported by TwoCheckout."
112
- msgstr "Faktureringsdetaljene for noen av dine medlemskapsnivåer er ikke støttet av TwoCheckout."
113
-
114
- #: adminpages/admin_header.php:107
115
- #@ pmpro
116
- msgid "The billing details for this level are not supported by 2Checkout. Please review the notes in the Billing Details section below."
117
- msgstr "Faktureringsdetaljene for dette nivået er ikke støttet av 2Checkout. Les igjennom informasjonen i Faktureringsdetaljene under."
118
-
119
- #: adminpages/admin_header.php:127
120
- #@ pmpro
121
- msgid "Plugin Support"
122
- msgstr "Plugin Support"
123
-
124
- #: adminpages/admin_header.php:127
125
- #@ pmpro
126
- msgid "User Forum"
127
- msgstr "Brukerforum"
128
-
129
- #: adminpages/admin_header.php:149
130
- #: adminpages/membershiplevels.php:496
131
- #: includes/adminpages.php:44
132
- #@ pmpro
133
- msgid "Membership Levels"
134
- msgstr "Medlemskapsnivå"
135
-
136
- #: adminpages/admin_header.php:150
137
- #: adminpages/pagesettings.php:92
138
- #@ pmpro
139
- msgid "Pages"
140
- msgstr "Sider"
141
-
142
- #: adminpages/admin_header.php:151
143
- #@ pmpro
144
- msgid "Payment Gateway &amp; SSL"
145
- msgstr "Betalingsmåter &amp; SSL"
146
-
147
- #: adminpages/admin_header.php:152
148
- #: adminpages/memberslist.php:148
149
- #: pages/account.php:52
150
- #@ pmpro
151
- msgid "Email"
152
- msgstr "Epost"
153
-
154
- #: adminpages/admin_header.php:153
155
- #@ pmpro
156
- msgid "Advanced"
157
- msgstr "Avansert"
158
-
159
- #: adminpages/admin_header.php:154
160
- #: includes/adminpages.php:14
161
- #: includes/adminpages.php:69
162
- #@ pmpro
163
- msgid "Add Ons"
164
- msgstr "Add Ons"
165
-
166
- #: adminpages/advancedsettings.php:35
167
- #@ pmpro
168
- msgid "Your advanced settings have been updated."
169
- msgstr "Dine avanserte innstillinger har blitt oppdatert."
170
-
171
- #: adminpages/advancedsettings.php:79
172
- #: includes/adminpages.php:13
173
- #: includes/adminpages.php:64
174
- #@ pmpro
175
- msgid "Advanced Settings"
176
- msgstr "Avanserte innstillinger"
177
-
178
- #: adminpages/advancedsettings.php:85
179
- #@ pmpro
180
- msgid "Message for Logged-in Non-members"
181
- msgstr "Melding til innloggede ikke-medlemmer"
182
-
183
- #: adminpages/advancedsettings.php:89
184
- #@ pmpro
185
- msgid "This message replaces the post content for non-members. Available variables"
186
- msgstr "Denne meldingen erstatter innholdet i innleggene for ikke-medlemmer. Tilgjengelige variabler"
187
-
188
- #: adminpages/advancedsettings.php:94
189
- #@ pmpro
190
- msgid "Message for Logged-out Users"
191
- msgstr "Melding til utloggede brukere"
192
-
193
- #: adminpages/advancedsettings.php:98
194
- #@ pmpro
195
- msgid "This message replaces the post content for logged-out visitors."
196
- msgstr "Denne meldingen erstatter innholdet i innleggene for utloggede besøkende"
197
-
198
- #: adminpages/advancedsettings.php:103
199
- #@ pmpro
200
- msgid "Message for RSS Feed"
201
- msgstr "Melding for RSS Feed"
202
-
203
- #: adminpages/advancedsettings.php:107
204
- #@ pmpro
205
- msgid "This message replaces the post content in RSS feeds."
206
- msgstr "Denne meldingen erstatter innholdet i innleggene i RSS Feeden"
207
-
208
- #: adminpages/advancedsettings.php:113
209
- #@ pmpro
210
- msgid "Show Excerpts to Non-Members?"
211
- msgstr "Viser utdrag for ikke-medlemmer?"
212
-
213
- #: adminpages/advancedsettings.php:117
214
- #@ pmpro
215
- msgid "No - Hide excerpts."
216
- msgstr "Nei - Skjul utdragene."
217
-
218
- #: adminpages/advancedsettings.php:118
219
- #@ pmpro
220
- msgid "Yes - Show excerpts."
221
- msgstr "Ja - Vis utdragene."
222
-
223
- #: adminpages/advancedsettings.php:128
224
- #: adminpages/advancedsettings.php:187
225
- #: adminpages/advancedsettings.php:199
226
- #: adminpages/membershiplevels.php:569
227
- #: adminpages/paymentsettings.php:434
228
- #: adminpages/paymentsettings.php:459
229
- #: includes/profile.php:123
230
- #@ pmpro
231
- msgid "No"
232
- msgstr "Nei"
233
-
234
- #: adminpages/advancedsettings.php:129
235
- #@ pmpro
236
- msgid "Hide Ads From All Members"
237
- msgstr "Skjul reklamen for alle medlemmer"
238
-
239
- #: adminpages/advancedsettings.php:130
240
- #@ pmpro
241
- msgid "Hide Ads From Certain Members"
242
- msgstr "Skjul reklamen for visse medlemmer"
243
-
244
- #: adminpages/advancedsettings.php:137
245
- #@ pmpro
246
- msgid "Ads from the following plugins will be automatically turned off"
247
- msgstr "Reklamer fra følgende Plugins vil automatisk slås av"
248
-
249
- #: adminpages/advancedsettings.php:138
250
- #@ pmpro
251
- msgid "To hide ads in your template code, use code like the following"
252
- msgstr "For å skjule reklamer i template-koden, bruk kode som i det følgende"
253
-
254
- #: adminpages/advancedsettings.php:149
255
- #@ pmpro
256
- msgid "Choose Levels to Hide Ads From"
257
- msgstr "Velg nivåer for å skjule reklamer fra"
258
-
259
- #: adminpages/advancedsettings.php:183
260
- #@ pmpro
261
- msgid "Redirect all traffic from registration page to /susbcription/?"
262
- msgstr "Omdiriger all trafikk fra registreringssiden til /abonnement/?"
263
-
264
- #: adminpages/advancedsettings.php:183
265
- #@ pmpro
266
- msgid "multisite only"
267
- msgstr "kun for multisite"
268
-
269
- #: adminpages/advancedsettings.php:188
270
- #: adminpages/membershiplevels.php:569
271
- #: adminpages/paymentsettings.php:435
272
- #: adminpages/paymentsettings.php:460
273
- #: includes/profile.php:124
274
- #@ pmpro
275
- msgid "Yes"
276
- msgstr "Ja"
277
-
278
- #: adminpages/advancedsettings.php:195
279
- #@ pmpro
280
- msgid "Use reCAPTCHA?"
281
- msgstr "Bruk reCAPTCHA?"
282
-
283
- #: adminpages/advancedsettings.php:200
284
- #@ pmpro
285
- msgid "Yes - Free memberships only."
286
- msgstr "Ja - Kun for gratis medlemskap."
287
-
288
- #: adminpages/advancedsettings.php:201
289
- #@ pmpro
290
- msgid "Yes - All memberships."
291
- msgstr "Ja - Alle medlemskap."
292
-
293
- #: adminpages/advancedsettings.php:203
294
- #@ pmpro
295
- msgid "A free reCAPTCHA key is required."
296
- msgstr "Det trengs en gratis reCAPTCHA nøkkel"
297
-
298
- #: adminpages/advancedsettings.php:203
299
- #@ pmpro
300
- msgid "Click here to signup for reCAPTCHA"
301
- msgstr "Klikk her for å registrere deg for reCAPTCHA"
302
-
303
- #: adminpages/advancedsettings.php:209
304
- #@ pmpro
305
- msgid "reCAPTCHA Public Key"
306
- msgstr "reCAPTCHA Offentlig nøkkel"
307
-
308
- #: adminpages/advancedsettings.php:212
309
- #@ pmpro
310
- msgid "reCAPTCHA Private Key"
311
- msgstr "reCAPTCHA Privat nøkkel"
312
-
313
- #: adminpages/advancedsettings.php:218
314
- #@ pmpro
315
- msgid "Require Terms of Service on signups?"
316
- msgstr "Er det krav til Brukerbetingelser ved registrering?"
317
-
318
- #: adminpages/advancedsettings.php:225
319
- #@ pmpro
320
- msgid "If yes, create a WordPress page containing your TOS agreement and assign it using the dropdown above."
321
- msgstr "Hvis ja, lag en egen Wordpress-side som inneholder Brukerbetingelsene og tilknytt siden ved å bruke dropdown-menyen over."
322
-
323
- #: adminpages/advancedsettings.php:284
324
- #: adminpages/pagesettings.php:223
325
- #: adminpages/paymentsettings.php:532
326
- #@ pmpro
327
- msgid "Save Settings"
328
- msgstr "Lagre innstillingene"
329
-
330
- #: adminpages/discountcodes.php:48
331
- #@ pmpro
332
- msgid "Discount code updated successfully."
333
- msgstr "Rabattkoden er oppdatert."
334
-
335
- #: adminpages/discountcodes.php:55
336
- #@ pmpro
337
- msgid "Error updating discount code. That code may already be in use."
338
- msgstr "Feil ved oppdatering av rabattkoden. Koden kan allerede være i bruk."
339
-
340
- #: adminpages/discountcodes.php:64
341
- #@ pmpro
342
- msgid "Discount code added successfully."
343
- msgstr "Rabattkoden er lagt til."
344
-
345
- #: adminpages/discountcodes.php:71
346
- #@ pmpro
347
- msgid "Error adding discount code. That code may already be in use."
348
- msgstr "Feil ved innlegging av rabattkoden. Koden kan allerede være i bruk."
349
-
350
- #: adminpages/discountcodes.php:196
351
- #, php-format
352
- #@ pmpro
353
- msgid "Error saving values for the %s level."
354
- msgstr "Feil ved lagring av verdier for %s nivået."
355
-
356
- #: adminpages/discountcodes.php:204
357
- #@ pmpro
358
- msgid "There were errors updating the level values: "
359
- msgstr "Det oppsto feil ved oppdatering av nivå-verdiene:"
360
-
361
- #: adminpages/discountcodes.php:234
362
- #, php-format
363
- #@ pmpro
364
- msgid "Code %s deleted successfully."
365
- msgstr "Kode % ble slettet."
366
-
367
- #: adminpages/discountcodes.php:239
368
- #@ pmpro
369
- msgid "Error deleting discount code. The code was only partially deleted. Please try again."
370
- msgstr "Det oppsto feil ved sletting av rabattkoden. Koden ble bare delvis slettet. Prøv igjen."
371
-
372
- #: adminpages/discountcodes.php:245
373
- #@ pmpro
374
- msgid "Error deleting code. Please try again."
375
- msgstr "Feil ved sletting av koden. Prøv igjen."
376
-
377
- #: adminpages/discountcodes.php:251
378
- #@ pmpro
379
- msgid "Code not found."
380
- msgstr "Koden ble ikke funnet."
381
-
382
- #: adminpages/discountcodes.php:264
383
- #@ pmpro
384
- msgid "Edit Discount Code"
385
- msgstr "Rediger rabattkoden"
386
-
387
- #: adminpages/discountcodes.php:266
388
- #: adminpages/discountcodes.php:526
389
- #@ pmpro
390
- msgid "Add New Discount Code"
391
- msgstr "Legg til ny rabattkode"
392
-
393
- #: adminpages/discountcodes.php:306
394
- #: adminpages/discountcodes.php:547
395
- #: adminpages/membershiplevels.php:284
396
- #: adminpages/membershiplevels.php:511
397
- #: adminpages/memberslist.php:144
398
- #: adminpages/orders.php:597
399
- #: adminpages/reports/login.php:140
400
- #@ pmpro
401
- msgid "ID"
402
- msgstr "ID"
403
-
404
- #: adminpages/discountcodes.php:307
405
- #: adminpages/orders.php:211
406
- #@ pmpro
407
- msgid "This will be generated when you save."
408
- msgstr "Dette vil bli generert når du lagrer."
409
-
410
- #: adminpages/discountcodes.php:311
411
- #: adminpages/discountcodes.php:548
412
- #: adminpages/orders.php:215
413
- #: adminpages/orders.php:598
414
- #@ pmpro
415
- msgid "Code"
416
- msgstr "Kode"
417
-
418
- #: adminpages/discountcodes.php:349
419
- #@ pmpro
420
- msgid "Start Date"
421
- msgstr "Startdato"
422
-
423
- #: adminpages/discountcodes.php:367
424
- #: pages/billing.php:249
425
- #: pages/checkout.php:535
426
- #@ pmpro
427
- msgid "Expiration Date"
428
- msgstr "Utløpsdato"
429
-
430
- #: adminpages/discountcodes.php:385
431
- #@ pmpro
432
- msgid "Uses"
433
- msgstr "Ganger å bruke"
434
-
435
- #: adminpages/discountcodes.php:388
436
- #@ pmpro
437
- msgid "Leave blank for unlimited uses."
438
- msgstr "La stå åpen for ubegrenset bruk."
439
-
440
- #: adminpages/discountcodes.php:427
441
- #: adminpages/membershiplevels.php:337
442
- #: adminpages/membershiplevels.php:513
443
- #: pages/levels.php:14
444
- #@ pmpro
445
- msgid "Initial Payment"
446
- msgstr "Pris"
447
-
448
- #: adminpages/discountcodes.php:428
449
- #: adminpages/membershiplevels.php:338
450
- #@ pmpro
451
- msgid "The initial amount collected at registration."
452
- msgstr "Den første summen innbetales ved registrering."
453
-
454
- #: adminpages/discountcodes.php:432
455
- #: adminpages/membershiplevels.php:342
456
- #@ pmpro
457
- msgid "Recurring Subscription"
458
- msgstr "Abonnement"
459
-
460
- #: adminpages/discountcodes.php:433
461
- #: adminpages/membershiplevels.php:343
462
- #@ pmpro
463
- msgid "Check if this level has a recurring subscription payment."
464
- msgstr "Sjekk om dette nivået har betaling for abonnement."
465
-
466
- #: adminpages/discountcodes.php:437
467
- #: adminpages/membershiplevels.php:347
468
- #@ pmpro
469
- msgid "Billing Amount"
470
- msgstr "Faktureringsbeløp"
471
-
472
- #: adminpages/discountcodes.php:451
473
- #: adminpages/membershiplevels.php:362
474
- #@ pmpro
475
- msgid "The amount to be billed one cycle after the initial payment."
476
- msgstr "Beløpet som skal faktureres en syklus etter første betaling."
477
-
478
- #: adminpages/discountcodes.php:456
479
- #: adminpages/membershiplevels.php:380
480
- #@ pmpro
481
- msgid "Billing Cycle Limit"
482
- msgstr "Grense for faktureringssyklus"
483
-
484
- #: adminpages/discountcodes.php:459
485
- #: adminpages/membershiplevels.php:384
486
- #@ pmpro
487
- msgid "The <strong>total</strong> number of recurring billing cycles for this level, including the trial period (if applicable) but not including the initial payment. Set to zero if membership is indefinite."
488
- msgstr ""
489
-
490
- #: adminpages/discountcodes.php:464
491
- #: adminpages/membershiplevels.php:393
492
- #@ pmpro
493
- msgid "Custom Trial"
494
- msgstr ""
495
-
496
- #: adminpages/discountcodes.php:465
497
- #: adminpages/membershiplevels.php:395
498
- #@ pmpro
499
- msgid "Check to add a custom trial period."
500
- msgstr ""
501
-
502
- #: adminpages/discountcodes.php:469
503
- #: adminpages/membershiplevels.php:404
504
- #@ pmpro
505
- msgid "Trial Billing Amount"
506
- msgstr ""
507
-
508
- #: adminpages/discountcodes.php:472
509
- #: adminpages/membershiplevels.php:407
510
- #@ pmpro
511
- msgid "for the first"
512
- msgstr ""
513
-
514
- #: adminpages/discountcodes.php:474
515
- #: adminpages/membershiplevels.php:409
516
- #@ pmpro
517
- msgid "subscription payments"
518
- msgstr ""
519
-
520
- #: adminpages/discountcodes.php:479
521
- #: adminpages/membershiplevels.php:437
522
- #@ pmpro
523
- msgid "Membership Expiration"
524
- msgstr ""
525
-
526
- #: adminpages/discountcodes.php:480
527
- #: adminpages/membershiplevels.php:438
528
- #@ pmpro
529
- msgid "Check this to set when membership access expires."
530
- msgstr ""
531
-
532
- #: adminpages/discountcodes.php:484
533
- #: adminpages/membershiplevels.php:442
534
- #@ pmpro
535
- msgid "Expires In"
536
- msgstr ""
537
-
538
- #: adminpages/discountcodes.php:497
539
- #: adminpages/membershiplevels.php:455
540
- #@ pmpro
541
- msgid "Set the duration of membership access. Note that the any future payments (recurring subscription, if any) will be cancelled when the membership expires."
542
- msgstr ""
543
-
544
- #: adminpages/discountcodes.php:525
545
- #@ pmpro
546
- msgid "Memberships Discount Codes"
547
- msgstr ""
548
-
549
- #: adminpages/discountcodes.php:535
550
- #@ pmpro
551
- msgid "Search Discount Codes"
552
- msgstr ""
553
-
554
- #: adminpages/discountcodes.php:538
555
- #@ pmpro
556
- msgid "Search"
557
- msgstr ""
558
-
559
- #: adminpages/discountcodes.php:549
560
- #@ pmpro
561
- msgid "Starts"
562
- msgstr ""
563
-
564
- #: adminpages/discountcodes.php:550
565
- #: adminpages/memberslist.php:159
566
- #: adminpages/reports/login.php:145
567
- #: includes/profile.php:120
568
- #@ pmpro
569
- msgid "Expires"
570
- msgstr ""
571
-
572
- #: adminpages/discountcodes.php:552
573
- #@ pmpro
574
- msgid "Levels"
575
- msgstr "Nivåer"
576
-
577
- #: adminpages/discountcodes.php:570
578
- #@ pmpro
579
- msgid "Discount codes allow you to offer your memberships at discounted prices to select customers."
580
- msgstr ""
581
-
582
- #: adminpages/discountcodes.php:570
583
- #@ pmpro
584
- msgid "Create your first discount code now"
585
- msgstr ""
586
-
587
- #: adminpages/discountcodes.php:614
588
- #: adminpages/membershiplevels.php:570
589
- #: adminpages/orders.php:658
590
- #@ pmpro
591
- msgid "edit"
592
- msgstr ""
593
-
594
- #: adminpages/discountcodes.php:617
595
- #, php-format
596
- #@ pmpro
597
- msgid "Are you sure you want to delete the %s discount code? The subscriptions for existing users will not change, but new users will not be able to use this code anymore."
598
- msgstr ""
599
-
600
- #: adminpages/discountcodes.php:617
601
- #: adminpages/membershiplevels.php:572
602
- #: adminpages/orders.php:664
603
- #@ pmpro
604
- msgid "delete"
605
- msgstr ""
606
-
607
- #: adminpages/emailsettings.php:60
608
- #: includes/adminpages.php:12
609
- #: includes/adminpages.php:59
610
- #@ pmpro
611
- msgid "Email Settings"
612
- msgstr "Epost innstillinger"
613
-
614
- #: adminpages/emailsettings.php:61
615
- #@ pmpro
616
- msgid "By default, system generated emails are sent from <em><strong>wordpress@yourdomain.com</strong></em>. You can update this from address using the fields below."
617
- msgstr ""
618
-
619
- #: adminpages/emailsettings.php:63
620
- #@ pmpro
621
- msgid "To modify the appearance of system generated emails, add the files <em>email_header.html</em> and <em>email_footer.html</em> to your theme's directory. This will modify both the WordPress default messages as well as messages generated by Paid Memberships Pro. <a title=\"Paid Memberships Pro - Member Communications\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/documentation/member-communications/\">Click here to learn more about Paid Memberships Pro emails</a>."
622
- msgstr ""
623
-
624
- #: adminpages/emailsettings.php:69
625
- #@ pmpro
626
- msgid "From Email"
627
- msgstr ""
628
-
629
- #: adminpages/emailsettings.php:77
630
- #@ pmpro
631
- msgid "From Name"
632
- msgstr ""
633
-
634
- #: adminpages/emailsettings.php:86
635
- #@ pmpro
636
- msgid "Send the site admin emails"
637
- msgstr ""
638
-
639
- #: adminpages/emailsettings.php:92
640
- #@ pmpro
641
- msgid "Checkout"
642
- msgstr "Sjekk ut"
643
-
644
- #: adminpages/emailsettings.php:96
645
- #@ pmpro
646
- msgid "when a member checks out."
647
- msgstr ""
648
-
649
- #: adminpages/emailsettings.php:101
650
- #@ pmpro
651
- msgid "Admin Changes"
652
- msgstr ""
653
-
654
- #: adminpages/emailsettings.php:105
655
- #@ pmpro
656
- msgid "when an admin changes a user's membership level through the dashboard."
657
- msgstr ""
658
-
659
- #: adminpages/emailsettings.php:110
660
- #@ pmpro
661
- msgid "Cancellation"
662
- msgstr ""
663
-
664
- #: adminpages/emailsettings.php:114
665
- #@ pmpro
666
- msgid "when a user cancels his or her account."
667
- msgstr ""
668
-
669
- #: adminpages/emailsettings.php:119
670
- #@ pmpro
671
- msgid "Bill Updates"
672
- msgstr ""
673
-
674
- #: adminpages/emailsettings.php:123
675
- #@ pmpro
676
- msgid "when a user updates his or her billing information."
677
- msgstr ""
678
-
679
- #: adminpages/emailsettings.php:129
680
- #@ pmpro
681
- msgid "Send members emails"
682
- msgstr ""
683
-
684
- #: adminpages/emailsettings.php:135
685
- #@ pmpro
686
- msgid "New Users"
687
- msgstr ""
688
-
689
- #: adminpages/emailsettings.php:139
690
- #@ pmpro
691
- msgid "Default WP notification email. (Recommended: Leave unchecked. Members will still get an email confirmation from PMPro after checkout.)"
692
- msgstr ""
693
-
694
- #: adminpages/membershiplevels.php:118
695
- #@ pmpro
696
- msgid "Membership level updated successfully."
697
- msgstr ""
698
-
699
- #: adminpages/membershiplevels.php:124
700
- #@ pmpro
701
- msgid "Error updating membership level."
702
- msgstr ""
703
-
704
- #: adminpages/membershiplevels.php:141
705
- #@ pmpro
706
- msgid "Membership level added successfully."
707
- msgstr ""
708
-
709
- #: adminpages/membershiplevels.php:146
710
- #@ pmpro
711
- msgid "Error adding membership level."
712
- msgstr ""
713
-
714
- #: adminpages/membershiplevels.php:179
715
- #, php-format
716
- #@ pmpro
717
- msgid "There was an error canceling the subscription for user with ID=%d. You will want to check your payment gateway to see if their subscription is still active."
718
- msgstr ""
719
-
720
- #: adminpages/membershiplevels.php:182
721
- #@ pmpro
722
- msgid "Last Invoice"
723
- msgstr "Siste faktura"
724
-
725
- #: adminpages/membershiplevels.php:196
726
- #@ pmpro
727
- msgid "Membership level deleted successfully."
728
- msgstr ""
729
-
730
- #: adminpages/membershiplevels.php:201
731
- #: adminpages/membershiplevels.php:207
732
- #@ pmpro
733
- msgid "Error deleting membership level."
734
- msgstr ""
735
-
736
- #: adminpages/membershiplevels.php:222
737
- #@ pmpro
738
- msgid "Edit Membership Level"
739
- msgstr ""
740
-
741
- #: adminpages/membershiplevels.php:224
742
- #@ pmpro
743
- msgid "Add New Membership Level"
744
- msgstr "Legg til nytt medlemskap"
745
-
746
- #: adminpages/membershiplevels.php:291
747
- #: adminpages/membershiplevels.php:512
748
- #: adminpages/reports/login.php:142
749
- #@ pmpro
750
- msgid "Name"
751
- msgstr "Navn"
752
-
753
- #: adminpages/membershiplevels.php:296
754
- #@ pmpro
755
- msgid "Description"
756
- msgstr "Beskrivelse"
757
-
758
- #: adminpages/membershiplevels.php:314
759
- #@ pmpro
760
- msgid "Confirmation Message"
761
- msgstr "Bekreftelse"
762
-
763
- #: adminpages/membershiplevels.php:333
764
- #@ pmpro
765
- msgid "Billing Details"
766
- msgstr "Fakturadetaljer"
767
-
768
- #: adminpages/membershiplevels.php:349
769
- #@ pmpro
770
- msgid "per"
771
- msgstr ""
772
-
773
- #: adminpages/membershiplevels.php:353
774
- #@ pmpro
775
- msgid "Day(s)"
776
- msgstr ""
777
-
778
- #: adminpages/membershiplevels.php:353
779
- #@ pmpro
780
- msgid "Week(s)"
781
- msgstr ""
782
-
783
- #: adminpages/membershiplevels.php:353
784
- #@ pmpro
785
- msgid "Month(s)"
786
- msgstr ""
787
-
788
- #: adminpages/membershiplevels.php:353
789
- #@ pmpro
790
- msgid "Year(s)"
791
- msgstr ""
792
-
793
- #: adminpages/membershiplevels.php:364
794
- #@ pmpro
795
- msgid "Stripe integration currently only supports billing periods of \"Week\", \"Month\" or \"Year\"."
796
- msgstr ""
797
-
798
- #: adminpages/membershiplevels.php:366
799
- #@ pmpro
800
- msgid "Braintree integration currently only supports billing periods of \"Month\" or \"Year\"."
801
- msgstr ""
802
-
803
- #: adminpages/membershiplevels.php:368
804
- #@ pmpro
805
- msgid "Payflow integration currently only supports billing frequencies of 1 and billing periods of \"Week\", \"Month\" or \"Year\"."
806
- msgstr ""
807
-
808
- #: adminpages/membershiplevels.php:372
809
- #: adminpages/membershiplevels.php:374
810
- #: adminpages/paymentsettings.php:174
811
- #: adminpages/paymentsettings.php:179
812
- #@ pmpro
813
- msgid "Note"
814
- msgstr ""
815
-
816
- #: adminpages/membershiplevels.php:372
817
- #@ pmpro
818
- msgid "After saving this level, make note of the ID and create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to <em>pmpro_#</em>, where # is the level ID."
819
- msgstr ""
820
-
821
- #: adminpages/membershiplevels.php:374
822
- #@ pmpro
823
- msgid "You will need to create a \"Plan\" in your Braintree dashboard with the same settings and the \"Plan ID\" set to"
824
- msgstr ""
825
-
826
- #: adminpages/membershiplevels.php:386
827
- #@ pmpro
828
- msgid "Stripe integration currently does not support billing limits. You can still set an expiration date below."
829
- msgstr ""
830
-
831
- #: adminpages/membershiplevels.php:398
832
- #@ pmpro
833
- msgid "2Checkout integration does not support custom trials. You can do one period trials by setting an initial payment different from the billing amount."
834
- msgstr ""
835
-
836
- #: adminpages/membershiplevels.php:412
837
- #@ pmpro
838
- msgid "Stripe integration currently does not support trial amounts greater than $0."
839
- msgstr ""
840
-
841
- #: adminpages/membershiplevels.php:416
842
- #@ pmpro
843
- msgid "Braintree integration currently does not support trial amounts greater than $0."
844
- msgstr ""
845
-
846
- #: adminpages/membershiplevels.php:420
847
- #@ pmpro
848
- msgid "Payflow integration currently does not support trial amounts greater than $0."
849
- msgstr ""
850
-
851
- #: adminpages/membershiplevels.php:428
852
- #@ pmpro
853
- msgid "Other Settings"
854
- msgstr ""
855
-
856
- #: adminpages/membershiplevels.php:432
857
- #@ pmpro
858
- msgid "Disable New Signups"
859
- msgstr ""
860
-
861
- #: adminpages/membershiplevels.php:433
862
- #@ pmpro
863
- msgid "Check to hide this level from the membership levels page and disable registration."
864
- msgstr ""
865
-
866
- #: adminpages/membershiplevels.php:463
867
- #@ pmpro
868
- msgid "Content Settings"
869
- msgstr ""
870
-
871
- #: adminpages/membershiplevels.php:467
872
- #@ pmpro
873
- msgid "Categories"
874
- msgstr ""
875
-
876
- #: adminpages/membershiplevels.php:496
877
- #@ pmpro
878
- msgid "Add New Level"
879
- msgstr ""
880
-
881
- #: adminpages/membershiplevels.php:499
882
- #: adminpages/membershiplevels.php:502
883
- #@ pmpro
884
- msgid "Search Levels"
885
- msgstr ""
886
-
887
- #: adminpages/membershiplevels.php:514
888
- #@ pmpro
889
- msgid "Billing Cycle"
890
- msgstr ""
891
-
892
- #: adminpages/membershiplevels.php:515
893
- #@ pmpro
894
- msgid "Trial Cycle"
895
- msgstr ""
896
-
897
- #: adminpages/membershiplevels.php:516
898
- #: pages/confirmation.php:83
899
- #: pages/invoice.php:70
900
- #@ pmpro
901
- msgid "Expiration"
902
- msgstr ""
903
-
904
- #: adminpages/membershiplevels.php:517
905
- #@ pmpro
906
- msgid "Allow Signups"
907
- msgstr ""
908
-
909
- #: adminpages/membershiplevels.php:540
910
- #@ pmpro
911
- msgid "FREE"
912
- msgstr ""
913
-
914
- #: adminpages/membershiplevels.php:549
915
- #@ pmpro
916
- msgid "every"
917
- msgstr ""
918
-
919
- #: adminpages/membershiplevels.php:551
920
- #: adminpages/membershiplevels.php:559
921
- #@ pmpro
922
- msgid "for"
923
- msgstr ""
924
-
925
- #: adminpages/membershiplevels.php:566
926
- #@ pmpro
927
- msgid "After"
928
- msgstr ""
929
-
930
- #: adminpages/membershiplevels.php:571
931
- #: adminpages/orders.php:661
932
- #@ pmpro
933
- msgid "copy"
934
- msgstr ""
935
-
936
- #: adminpages/membershiplevels.php:572
937
- #, php-format
938
- #@ pmpro
939
- msgid "Are you sure you want to delete membership level %s? All subscriptions will be cancelled."
940
- msgstr ""
941
-
942
- #: adminpages/memberslist.php:25
943
- #: includes/adminpages.php:15
944
- #: includes/adminpages.php:74
945
- #@ pmpro
946
- msgid "Members List"
947
- msgstr ""
948
-
949
- #: adminpages/memberslist.php:26
950
- #: adminpages/orders.php:522
951
- #@ pmpro
952
- msgid "Export to CSV"
953
- msgstr ""
954
-
955
- #: adminpages/memberslist.php:30
956
- #@ pmpro
957
- msgid "Show"
958
- msgstr ""
959
-
960
- #: adminpages/memberslist.php:32
961
- #: adminpages/reports/login.php:67
962
- #: adminpages/reports/memberships.php:317
963
- #: adminpages/reports/sales.php:216
964
- #@ pmpro
965
- msgid "All Levels"
966
- msgstr ""
967
-
968
- #: adminpages/memberslist.php:42
969
- #@ pmpro
970
- msgid "Old Members"
971
- msgstr ""
972
-
973
- #: adminpages/memberslist.php:47
974
- #: adminpages/memberslist.php:50
975
- #@ pmpro
976
- msgid "Search Members"
977
- msgstr ""
978
-
979
- #: adminpages/memberslist.php:136
980
- #, php-format
981
- #@ pmpro
982
- msgid "%d members found."
983
- msgstr ""
984
-
985
- #: adminpages/memberslist.php:145
986
- #: pages/account.php:51
987
- #: pages/checkout.php:171
988
- #@ pmpro
989
- msgid "Username"
990
- msgstr "Brukernavn"
991
-
992
- #: adminpages/memberslist.php:146
993
- #@ pmpro
994
- msgid "First&nbsp;Name"
995
- msgstr "For&nbsp;navn"
996
-
997
- #: adminpages/memberslist.php:147
998
- #@ pmpro
999
- msgid "Last&nbsp;Name"
1000
- msgstr "Etter&nbsp;navn"
1001
-
1002
- #: adminpages/memberslist.php:150
1003
- #: pages/account.php:90
1004
- #: pages/billing.php:58
1005
- #: pages/checkout.php:325
1006
- #: pages/confirmation.php:61
1007
- #: pages/invoice.php:48
1008
- #@ pmpro
1009
- msgid "Billing Address"
1010
- msgstr "Adresse"
1011
-
1012
- #: adminpages/memberslist.php:151
1013
- #: adminpages/pagesettings.php:51
1014
- #: adminpages/reports/login.php:143
1015
- #: classes/gateways/class.pmprogateway_authorizenet.php:187
1016
- #@ pmpro
1017
- msgid "Membership"
1018
- msgstr "Medlemskap"
1019
-
1020
- #: adminpages/memberslist.php:152
1021
- #@ pmpro
1022
- msgid "Fee"
1023
- msgstr ""
1024
-
1025
- #: adminpages/memberslist.php:153
1026
- #: adminpages/reports/login.php:144
1027
- #@ pmpro
1028
- msgid "Joined"
1029
- msgstr ""
1030
-
1031
- #: adminpages/memberslist.php:157
1032
- #@ pmpro
1033
- msgid "Ended"
1034
- msgstr ""
1035
-
1036
- #: adminpages/memberslist.php:212
1037
- #@ pmpro
1038
- msgid "Never"
1039
- msgstr ""
1040
-
1041
- #: adminpages/memberslist.php:223
1042
- #: adminpages/reports/login.php:210
1043
- #@ pmpro
1044
- msgid "No members found."
1045
- msgstr ""
1046
-
1047
- #: adminpages/memberslist.php:223
1048
- #: adminpages/reports/login.php:210
1049
- #@ pmpro
1050
- msgid "Search all levels"
1051
- msgstr ""
1052
-
1053
- #: adminpages/orders.php:26
1054
- #@ pmpro
1055
- msgid "Order deleted successfully."
1056
- msgstr ""
1057
-
1058
- #: adminpages/orders.php:31
1059
- #@ pmpro
1060
- msgid "Error deleting order."
1061
- msgstr ""
1062
-
1063
- #: adminpages/orders.php:119
1064
- #@ pmpro
1065
- msgid "Order saved successfully."
1066
- msgstr ""
1067
-
1068
- #: adminpages/orders.php:124
1069
- #@ pmpro
1070
- msgid "Error updating order timestamp."
1071
- msgstr ""
1072
-
1073
- #: adminpages/orders.php:130
1074
- #@ pmpro
1075
- msgid "Error saving order."
1076
- msgstr ""
1077
-
1078
- #: adminpages/orders.php:195
1079
- #@ pmpro
1080
- msgid "Order"
1081
- msgstr ""
1082
-
1083
- #: adminpages/orders.php:197
1084
- #@ pmpro
1085
- msgid "New Order"
1086
- msgstr ""
1087
-
1088
- #: adminpages/orders.php:220
1089
- #@ pmpro
1090
- msgid "Randomly generated for you."
1091
- msgstr ""
1092
-
1093
- #: adminpages/orders.php:225
1094
- #@ pmpro
1095
- msgid "User ID"
1096
- msgstr "Bruker ID"
1097
-
1098
- #: adminpages/orders.php:234
1099
- #@ pmpro
1100
- msgid "Membership Level ID"
1101
- msgstr ""
1102
-
1103
- #: adminpages/orders.php:243
1104
- #@ pmpro
1105
- msgid "Billing Name"
1106
- msgstr "Navn"
1107
-
1108
- #: adminpages/orders.php:251
1109
- #@ pmpro
1110
- msgid "Billing Street"
1111
- msgstr "Gate"
1112
-
1113
- #: adminpages/orders.php:258
1114
- #@ pmpro
1115
- msgid "Billing City"
1116
- msgstr "By"
1117
-
1118
- #: adminpages/orders.php:265
1119
- #@ pmpro
1120
- msgid "Billing State"
1121
- msgstr "Fylke for regninger"
1122
-
1123
- #: adminpages/orders.php:272
1124
- #@ pmpro
1125
- msgid "Billing Postal Code"
1126
- msgstr "Postnummer for regning"
1127
-
1128
- #: adminpages/orders.php:279
1129
- #@ pmpro
1130
- msgid "Billing Country"
1131
- msgstr "Land"
1132
-
1133
- #: adminpages/orders.php:287
1134
- #@ pmpro
1135
- msgid "Billing Phone"
1136
- msgstr "Telefon"
1137
-
1138
- #: adminpages/orders.php:296
1139
- #@ pmpro
1140
- msgid "Sub Total"
1141
- msgstr "Totalbeløp"
1142
-
1143
- #: adminpages/orders.php:304
1144
- #: pages/invoice.php:80
1145
- #@ pmpro
1146
- msgid "Tax"
1147
- msgstr ""
1148
-
1149
- #: adminpages/orders.php:312
1150
- #@ pmpro
1151
- msgid "Coupon Amount"
1152
- msgstr ""
1153
-
1154
- #: adminpages/orders.php:320
1155
- #: adminpages/orders.php:602
1156
- #: pages/invoice.php:84
1157
- #@ pmpro
1158
- msgid "Total"
1159
- msgstr ""
1160
-
1161
- #: adminpages/orders.php:325
1162
- #@ pmpro
1163
- msgid "Should be subtotal + tax - couponamount."
1164
- msgstr ""
1165
-
1166
- #: adminpages/orders.php:330
1167
- #@ pmpro
1168
- msgid "Payment Type"
1169
- msgstr "Betalingstype"
1170
-
1171
- #: adminpages/orders.php:335
1172
- #@ pmpro
1173
- msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1174
- msgstr ""
1175
-
1176
- #: adminpages/orders.php:339
1177
- #: pages/billing.php:234
1178
- #: pages/checkout.php:520
1179
- #@ pmpro
1180
- msgid "Card Type"
1181
- msgstr "Kort type"
1182
-
1183
- #: adminpages/orders.php:344
1184
- #@ pmpro
1185
- msgid "e.g. Visa, MasterCard, AMEX, etc"
1186
- msgstr ""
1187
-
1188
- #: adminpages/orders.php:348
1189
- #: adminpages/paymentsettings.php:352
1190
- #@ pmpro
1191
- msgid "Account Number"
1192
- msgstr ""
1193
-
1194
- #: adminpages/orders.php:353
1195
- #@ pmpro
1196
- msgid "Obscure all but last 4 digits."
1197
- msgstr ""
1198
-
1199
- #: adminpages/orders.php:358
1200
- #@ pmpro
1201
- msgid "Expiration Month"
1202
- msgstr "Utløpsmåned"
1203
-
1204
- #: adminpages/orders.php:365
1205
- #@ pmpro
1206
- msgid "Expiration Year"
1207
- msgstr "Utløpsår"
1208
-
1209
- #: adminpages/orders.php:373
1210
- #: adminpages/orders.php:606
1211
- #@ pmpro
1212
- msgid "Status"
1213
- msgstr ""
1214
-
1215
- #: adminpages/orders.php:394
1216
- #: adminpages/orders.php:604
1217
- #@ pmpro
1218
- msgid "Gateway"
1219
- msgstr ""
1220
-
1221
- #: adminpages/orders.php:398
1222
- #@ pmpro
1223
- msgid "Testing Only"
1224
- msgstr ""
1225
-
1226
- #: adminpages/orders.php:399
1227
- #: adminpages/paymentsettings.php:159
1228
- #@ pmpro
1229
- msgid "Pay by Check"
1230
- msgstr ""
1231
-
1232
- #: adminpages/orders.php:411
1233
- #: adminpages/paymentsettings.php:184
1234
- #@ pmpro
1235
- msgid "Gateway Environment"
1236
- msgstr ""
1237
-
1238
- #: adminpages/orders.php:415
1239
- #: adminpages/paymentsettings.php:188
1240
- #@ pmpro
1241
- msgid "Sandbox/Testing"
1242
- msgstr ""
1243
-
1244
- #: adminpages/orders.php:416
1245
- #: adminpages/paymentsettings.php:189
1246
- #@ pmpro
1247
- msgid "Live/Production"
1248
- msgstr ""
1249
-
1250
- #: adminpages/orders.php:423
1251
- #@ pmpro
1252
- msgid "Payment Transaction ID"
1253
- msgstr ""
1254
-
1255
- #: adminpages/orders.php:428
1256
- #@ pmpro
1257
- msgid "Generated by the gateway. Useful to cross reference orders."
1258
- msgstr ""
1259
-
1260
- #: adminpages/orders.php:432
1261
- #@ pmpro
1262
- msgid "Subscription Transaction ID"
1263
- msgstr ""
1264
-
1265
- #: adminpages/orders.php:437
1266
- #@ pmpro
1267
- msgid "Generated by the gateway. Useful to cross reference subscriptions."
1268
- msgstr ""
1269
-
1270
- #: adminpages/orders.php:442
1271
- #: adminpages/orders.php:607
1272
- #: pages/invoice.php:107
1273
- #@ pmpro
1274
- msgid "Date"
1275
- msgstr ""
1276
-
1277
- #: adminpages/orders.php:477
1278
- #@ pmpro
1279
- msgid "Affiliate ID"
1280
- msgstr ""
1281
-
1282
- #: adminpages/orders.php:485
1283
- #@ pmpro
1284
- msgid "Affiliate SubID"
1285
- msgstr ""
1286
-
1287
- #: adminpages/orders.php:495
1288
- #@ pmpro
1289
- msgid "Notes"
1290
- msgstr ""
1291
-
1292
- #: adminpages/orders.php:510
1293
- #@ pmpro
1294
- msgid "Save Order"
1295
- msgstr ""
1296
-
1297
- #: adminpages/orders.php:511
1298
- #: pages/billing.php:295
1299
- #@ pmpro
1300
- msgid "Cancel"
1301
- msgstr ""
1302
-
1303
- #: adminpages/orders.php:520
1304
- #: includes/adminpages.php:17
1305
- #: includes/adminpages.php:84
1306
- #@ pmpro
1307
- msgid "Orders"
1308
- msgstr ""
1309
-
1310
- #: adminpages/orders.php:521
1311
- #@ pmpro
1312
- msgid "Add New Order"
1313
- msgstr ""
1314
-
1315
- #: adminpages/orders.php:535
1316
- #: adminpages/orders.php:538
1317
- #@ pmpro
1318
- msgid "Search Orders"
1319
- msgstr ""
1320
-
1321
- #: adminpages/orders.php:590
1322
- #, php-format
1323
- #@ pmpro
1324
- msgid "%d orders found."
1325
- msgstr ""
1326
-
1327
- #: adminpages/orders.php:599
1328
- #: adminpages/paymentsettings.php:220
1329
- #: adminpages/reports/login.php:141
1330
- #@ pmpro
1331
- msgid "User"
1332
- msgstr ""
1333
-
1334
- #: adminpages/orders.php:601
1335
- #: includes/profile.php:27
1336
- #: pages/checkout.php:33
1337
- #: pages/confirmation.php:47
1338
- #: pages/confirmation.php:64
1339
- #: pages/confirmation.php:105
1340
- #: pages/invoice.php:28
1341
- #: pages/invoice.php:51
1342
- #@ pmpro
1343
- msgid "Membership Level"
1344
- msgstr "Type medlemskap"
1345
-
1346
- #: adminpages/orders.php:603
1347
- #: adminpages/orders.php:651
1348
- #@ pmpro
1349
- msgid "Payment"
1350
- msgstr "Betaling"
1351
-
1352
- #: adminpages/orders.php:605
1353
- #@ pmpro
1354
- msgid "Transaction IDs"
1355
- msgstr ""
1356
-
1357
- #: adminpages/orders.php:630
1358
- #@ pmpro
1359
- msgid "deleted"
1360
- msgstr ""
1361
-
1362
- #: adminpages/orders.php:653
1363
- #@ pmpro
1364
- msgid "Subscription"
1365
- msgstr ""
1366
-
1367
- #: adminpages/orders.php:664
1368
- #, php-format
1369
- #@ pmpro
1370
- msgid "Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?"
1371
- msgstr ""
1372
-
1373
- #: adminpages/orders.php:674
1374
- #@ pmpro
1375
- msgid "No orders found."
1376
- msgstr ""
1377
-
1378
- #: adminpages/pagesettings.php:83
1379
- #@ pmpro
1380
- msgid "The following pages have been created for you"
1381
- msgstr ""
1382
-
1383
- #: adminpages/pagesettings.php:98
1384
- #@ pmpro
1385
- msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page."
1386
- msgstr ""
1387
-
1388
- #: adminpages/pagesettings.php:104
1389
- #@ pmpro
1390
- msgid "Assign the WordPress pages for each required Paid Memberships Pro page or"
1391
- msgstr ""
1392
-
1393
- #: adminpages/pagesettings.php:104
1394
- #@ pmpro
1395
- msgid "click here to let us generate them for you"
1396
- msgstr ""
1397
-
1398
- #: adminpages/pagesettings.php:112
1399
- #@ pmpro
1400
- msgid "Account Page"
1401
- msgstr ""
1402
-
1403
- #: adminpages/pagesettings.php:119
1404
- #: adminpages/pagesettings.php:134
1405
- #: adminpages/pagesettings.php:149
1406
- #: adminpages/pagesettings.php:165
1407
- #: adminpages/pagesettings.php:181
1408
- #: adminpages/pagesettings.php:197
1409
- #: adminpages/pagesettings.php:213
1410
- #@ pmpro
1411
- msgid "edit page"
1412
- msgstr ""
1413
-
1414
- #: adminpages/pagesettings.php:121
1415
- #: adminpages/pagesettings.php:136
1416
- #: adminpages/pagesettings.php:151
1417
- #: adminpages/pagesettings.php:167
1418
- #: adminpages/pagesettings.php:183
1419
- #: adminpages/pagesettings.php:199
1420
- #: adminpages/pagesettings.php:215
1421
- #@ pmpro
1422
- msgid "view page"
1423
- msgstr ""
1424
-
1425
- #: adminpages/pagesettings.php:123
1426
- #: adminpages/pagesettings.php:138
1427
- #: adminpages/pagesettings.php:153
1428
- #: adminpages/pagesettings.php:169
1429
- #: adminpages/pagesettings.php:185
1430
- #: adminpages/pagesettings.php:201
1431
- #: adminpages/pagesettings.php:217
1432
- #@ pmpro
1433
- msgid "Include the shortcode"
1434
- msgstr ""
1435
-
1436
- #: adminpages/pagesettings.php:127
1437
- #@ pmpro
1438
- msgid "Billing Information Page"
1439
- msgstr ""
1440
-
1441
- #: adminpages/pagesettings.php:142
1442
- #@ pmpro
1443
- msgid "Cancel Page"
1444
- msgstr ""
1445
-
1446
- #: adminpages/pagesettings.php:158
1447
- #@ pmpro
1448
- msgid "Checkout Page"
1449
- msgstr ""
1450
-
1451
- #: adminpages/pagesettings.php:174
1452
- #@ pmpro
1453
- msgid "Confirmation Page"
1454
- msgstr ""
1455
-
1456
- #: adminpages/pagesettings.php:190
1457
- #@ pmpro
1458
- msgid "Invoice Page"
1459
- msgstr "Fakturaside"
1460
-
1461
- #: adminpages/pagesettings.php:206
1462
- #@ pmpro
1463
- msgid "Levels Page"
1464
- msgstr ""
1465
-
1466
- #: adminpages/paymentsettings.php:77
1467
- #@ pmpro
1468
- msgid "Your payment settings have been updated."
1469
- msgstr ""
1470
-
1471
- #: adminpages/paymentsettings.php:146
1472
- #: adminpages/paymentsettings.php:154
1473
- #@ pmpro
1474
- msgid "Payment Gateway"
1475
- msgstr ""
1476
-
1477
- #: adminpages/paymentsettings.php:146
1478
- #@ pmpro
1479
- msgid "SSL Settings"
1480
- msgstr ""
1481
-
1482
- #: adminpages/paymentsettings.php:174
1483
- #@ pmpro
1484
- msgid "This gateway option is in beta. Some functionality may not be available. Please contact Paid Memberships Pro with any issues you run into. <strong>Please be sure to upgrade Paid Memberships Pro to the latest versions when available.</strong>"
1485
- msgstr ""
1486
-
1487
- #: adminpages/paymentsettings.php:179
1488
- #@ pmpro
1489
- msgid "We do not recommend using PayPal Standard. We suggest using PayPal Express, Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-paypal-standard-paid-memberships-pro/\">More information on why can be found here.</a>"
1490
- msgstr ""
1491
-
1492
- #: adminpages/paymentsettings.php:204
1493
- #@ pmpro
1494
- msgid "Partner"
1495
- msgstr ""
1496
-
1497
- #: adminpages/paymentsettings.php:212
1498
- #@ pmpro
1499
- msgid "Vendor"
1500
- msgstr ""
1501
-
1502
- #: adminpages/paymentsettings.php:228
1503
- #: pages/checkout.php:180
1504
- #@ pmpro
1505
- msgid "Password"
1506
- msgstr "Passord"
1507
-
1508
- #: adminpages/paymentsettings.php:236
1509
- #@ pmpro
1510
- msgid "Gateway Account Email"
1511
- msgstr ""
1512
-
1513
- #: adminpages/paymentsettings.php:244
1514
- #: adminpages/paymentsettings.php:336
1515
- #@ pmpro
1516
- msgid "API Username"
1517
- msgstr ""
1518
-
1519
- #: adminpages/paymentsettings.php:252
1520
- #: adminpages/paymentsettings.php:344
1521
- #@ pmpro
1522
- msgid "API Password"
1523
- msgstr ""
1524
-
1525
- #: adminpages/paymentsettings.php:260
1526
- #@ pmpro
1527
- msgid "API Signature"
1528
- msgstr ""
1529
-
1530
- #: adminpages/paymentsettings.php:269
1531
- #@ pmpro
1532
- msgid "Login Name"
1533
- msgstr ""
1534
-
1535
- #: adminpages/paymentsettings.php:277
1536
- #@ pmpro
1537
- msgid "Transaction Key"
1538
- msgstr ""
1539
-
1540
- #: adminpages/paymentsettings.php:286
1541
- #@ pmpro
1542
- msgid "Secret Key"
1543
- msgstr ""
1544
-
1545
- #: adminpages/paymentsettings.php:294
1546
- #@ pmpro
1547
- msgid "Publishable Key"
1548
- msgstr ""
1549
-
1550
- #: adminpages/paymentsettings.php:303
1551
- #: adminpages/paymentsettings.php:369
1552
- #@ pmpro
1553
- msgid "Merchant ID"
1554
- msgstr ""
1555
-
1556
- #: adminpages/paymentsettings.php:311
1557
- #@ pmpro
1558
- msgid "Public Key"
1559
- msgstr ""
1560
-
1561
- #: adminpages/paymentsettings.php:319
1562
- #@ pmpro
1563
- msgid "Private Key"
1564
- msgstr ""
1565
-
1566
- #: adminpages/paymentsettings.php:327
1567
- #@ pmpro
1568
- msgid "Client-Side Encryption Key"
1569
- msgstr ""
1570
-
1571
- #: adminpages/paymentsettings.php:360
1572
- #@ pmpro
1573
- msgid "Secret Word"
1574
- msgstr ""
1575
-
1576
- #: adminpages/paymentsettings.php:377
1577
- #@ pmpro
1578
- msgid "Transaction Security Key"
1579
- msgstr ""
1580
-
1581
- #: adminpages/paymentsettings.php:386
1582
- #@ pmpro
1583
- msgid "Currency"
1584
- msgstr "Valuta"
1585
-
1586
- #: adminpages/paymentsettings.php:406
1587
- #@ pmpro
1588
- msgid "Accepted Credit Card Types"
1589
- msgstr ""
1590
-
1591
- #: adminpages/paymentsettings.php:420
1592
- #@ pmpro
1593
- msgid "Instructions"
1594
- msgstr ""
1595
-
1596
- #: adminpages/paymentsettings.php:424
1597
- #@ pmpro
1598
- msgid "Who to write the check out to. Where to mail it. Shown on checkout, confirmation, and invoice pages."
1599
- msgstr ""
1600
-
1601
- #: adminpages/paymentsettings.php:430
1602
- #@ pmpro
1603
- msgid "Show Billing Address Fields"
1604
- msgstr ""
1605
-
1606
- #: adminpages/paymentsettings.php:437
1607
- #@ pmpro
1608
- msgid "Stripe doesn't require billing address fields. Choose 'No' to hide them on the checkout page.<br /><strong>If No, make sure you disable address verification in the Stripe dashboard settings.</strong>"
1609
- msgstr ""
1610
-
1611
- #: adminpages/paymentsettings.php:443
1612
- #@ pmpro
1613
- msgid "Sales Tax"
1614
- msgstr ""
1615
-
1616
- #: adminpages/paymentsettings.php:443
1617
- #: pages/billing.php:78
1618
- #@ pmpro
1619
- msgid "optional"
1620
- msgstr ""
1621
-
1622
- #: adminpages/paymentsettings.php:446
1623
- #@ pmpro
1624
- msgid "Tax State"
1625
- msgstr ""
1626
-
1627
- #: adminpages/paymentsettings.php:447
1628
- #@ pmpro
1629
- msgid "abbreviation, e.g. \"PA\""
1630
- msgstr ""
1631
-
1632
- #: adminpages/paymentsettings.php:449
1633
- #@ pmpro
1634
- msgid "decimal, e.g. \"0.06\""
1635
- msgstr ""
1636
-
1637
- #: adminpages/paymentsettings.php:450
1638
- #@ pmpro
1639
- msgid "US only. If values are given, tax will be applied for any members ordering from the selected state.<br />For non-US or more complex tax rules, use the <a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-taxes-paid-memberships-pro/\">pmpro_tax filter</a>."
1640
- msgstr ""
1641
-
1642
- #: adminpages/paymentsettings.php:455
1643
- #@ pmpro
1644
- msgid "Force SSL"
1645
- msgstr ""
1646
-
1647
- #: adminpages/paymentsettings.php:461
1648
- #@ pmpro
1649
- msgid "Yes (with JavaScript redirects)"
1650
- msgstr ""
1651
-
1652
- #: adminpages/paymentsettings.php:468
1653
- #@ pmpro
1654
- msgid "SSL Seal Code"
1655
- msgstr ""
1656
-
1657
- #: adminpages/paymentsettings.php:477
1658
- #@ pmpro
1659
- msgid "HTTPS Nuclear Option"
1660
- msgstr ""
1661
-
1662
- #: adminpages/paymentsettings.php:480
1663
- #@ pmpro
1664
- msgid "Use the \"Nuclear Option\" to use secure (HTTPS) URLs on your secure pages. Check this if you are using SSL and have warnings on your checkout pages."
1665
- msgstr ""
1666
-
1667
- #: adminpages/paymentsettings.php:485
1668
- #@ pmpro
1669
- msgid "IPN Handler URL"
1670
- msgstr ""
1671
-
1672
- #: adminpages/paymentsettings.php:488
1673
- #@ pmpro
1674
- msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
1675
- msgstr ""
1676
-
1677
- #: adminpages/paymentsettings.php:493
1678
- #@ pmpro
1679
- msgid "TwoCheckout INS URL"
1680
- msgstr ""
1681
-
1682
- #: adminpages/paymentsettings.php:496
1683
- #@ pmpro
1684
- msgid "To fully integrate with 2Checkout, be sure to set your 2Checkout INS URL "
1685
- msgstr ""
1686
-
1687
- #: adminpages/paymentsettings.php:501
1688
- #@ pmpro
1689
- msgid "Silent Post URL"
1690
- msgstr ""
1691
-
1692
- #: adminpages/paymentsettings.php:504
1693
- #@ pmpro
1694
- msgid "To fully integrate with Authorize.net, be sure to set your Silent Post URL to"
1695
- msgstr ""
1696
-
1697
- #: adminpages/paymentsettings.php:509
1698
- #: adminpages/paymentsettings.php:517
1699
- #@ pmpro
1700
- msgid "Web Hook URL"
1701
- msgstr ""
1702
-
1703
- #: adminpages/paymentsettings.php:512
1704
- #@ pmpro
1705
- msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
1706
- msgstr ""
1707
-
1708
- #: adminpages/paymentsettings.php:521
1709
- #@ pmpro
1710
- msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
1711
- msgstr ""
1712
-
1713
- #: adminpages/reports/login.php:16
1714
- #@ pmpro
1715
- msgid "Visits, Views, and Logins"
1716
- msgstr ""
1717
-
1718
- #: adminpages/reports/login.php:26
1719
- #@ pmpro
1720
- msgid "Visits Today"
1721
- msgstr ""
1722
-
1723
- #: adminpages/reports/login.php:27
1724
- #: adminpages/reports/login.php:147
1725
- #@ pmpro
1726
- msgid "Visits This Month"
1727
- msgstr ""
1728
-
1729
- #: adminpages/reports/login.php:28
1730
- #@ pmpro
1731
- msgid "Visits All Time"
1732
- msgstr ""
1733
-
1734
- #: adminpages/reports/login.php:31
1735
- #@ pmpro
1736
- msgid "Views Today"
1737
- msgstr ""
1738
-
1739
- #: adminpages/reports/login.php:32
1740
- #: adminpages/reports/login.php:149
1741
- #@ pmpro
1742
- msgid "Views This Month"
1743
- msgstr ""
1744
-
1745
- #: adminpages/reports/login.php:33
1746
- #@ pmpro
1747
- msgid "Views All Time"
1748
- msgstr ""
1749
-
1750
- #: adminpages/reports/login.php:36
1751
- #@ pmpro
1752
- msgid "Logins Today"
1753
- msgstr ""
1754
-
1755
- #: adminpages/reports/login.php:37
1756
- #: adminpages/reports/login.php:152
1757
- #@ pmpro
1758
- msgid "Logins This Month"
1759
- msgstr ""
1760
-
1761
- #: adminpages/reports/login.php:38
1762
- #@ pmpro
1763
- msgid "Logins All Time"
1764
- msgstr ""
1765
-
1766
- #: adminpages/reports/login.php:61
1767
- #@ pmpro
1768
- msgid "Visits, Views, and Logins Report"
1769
- msgstr ""
1770
-
1771
- #: adminpages/reports/login.php:66
1772
- #@ pmpro
1773
- msgid "All Users"
1774
- msgstr ""
1775
-
1776
- #: adminpages/reports/login.php:146
1777
- #@ pmpro
1778
- msgid "Last Visit"
1779
- msgstr ""
1780
-
1781
- #: adminpages/reports/login.php:148
1782
- #@ pmpro
1783
- msgid "Total Visits"
1784
- msgstr ""
1785
-
1786
- #: adminpages/reports/login.php:150
1787
- #@ pmpro
1788
- msgid "Total Views"
1789
- msgstr ""
1790
-
1791
- #: adminpages/reports/login.php:151
1792
- #@ pmpro
1793
- msgid "Last Login"
1794
- msgstr ""
1795
-
1796
- #: adminpages/reports/login.php:153
1797
- #@ pmpro
1798
- msgid "Total Logins"
1799
- msgstr ""
1800
-
1801
- #: adminpages/reports/memberships.php:18
1802
- #: adminpages/reports/memberships.php:288
1803
- #@ pmpro
1804
- msgid "Membership Stats"
1805
- msgstr ""
1806
-
1807
- #: adminpages/reports/memberships.php:294
1808
- #: adminpages/reports/sales.php:195
1809
- #@ pmpro
1810
- msgid "Daily"
1811
- msgstr ""
1812
-
1813
- #: adminpages/reports/memberships.php:295
1814
- #: adminpages/reports/sales.php:196
1815
- #@ pmpro
1816
- msgid "Monthly"
1817
- msgstr ""
1818
-
1819
- #: adminpages/reports/memberships.php:296
1820
- #: adminpages/reports/sales.php:197
1821
- #@ pmpro
1822
- msgid "Annual"
1823
- msgstr ""
1824
-
1825
- #: adminpages/reports/memberships.php:299
1826
- #@ pmpro
1827
- msgid "Signups vs. Cancellations"
1828
- msgstr ""
1829
-
1830
- #: adminpages/reports/memberships.php:331
1831
- #: adminpages/reports/sales.php:230
1832
- #@ pmpro
1833
- msgid "Generate Report"
1834
- msgstr ""
1835
-
1836
- #: adminpages/reports/sales.php:18
1837
- #@ pmpro
1838
- msgid "Sales and Revenue (Testing/Sandbox)"
1839
- msgstr ""
1840
-
1841
- #: adminpages/reports/sales.php:20
1842
- #: adminpages/reports/sales.php:189
1843
- #@ pmpro
1844
- msgid "Sales and Revenue"
1845
- msgstr ""
1846
-
1847
- #: adminpages/reports/sales.php:200
1848
- #@ pmpro
1849
- msgid "Revenue"
1850
- msgstr ""
1851
-
1852
- #: adminpages/reports/sales.php:201
1853
- #@ pmpro
1854
- msgid "Sales"
1855
- msgstr ""
1856
-
1857
- #: adminpages/reports.php:37
1858
- #@ pmpro
1859
- msgid "Details"
1860
- msgstr ""
1861
-
1862
- #: classes/class.memberorder.php:553
1863
- #, php-format
1864
- #@ pmpro
1865
- msgid "There was an error canceling the subscription for user with ID=%s. You will want to check your payment gateway to see if their subscription is still active."
1866
- msgstr ""
1867
-
1868
- #: classes/class.pmproemail.php:37
1869
- #, php-format
1870
- #@ pmpro
1871
- msgid "An Email From %s"
1872
- msgstr "En epost fra %s"
1873
-
1874
- #: classes/class.pmproemail.php:122
1875
- #, php-format
1876
- #@ pmpro
1877
- msgid "Your membership at %s has been CANCELLED"
1878
- msgstr ""
1879
-
1880
- #: classes/class.pmproemail.php:144
1881
- #, php-format
1882
- #@ pmpro
1883
- msgid "Membership for %s at %s has been CANCELLED"
1884
- msgstr ""
1885
-
1886
- #: classes/class.pmproemail.php:175
1887
- #, php-format
1888
- #@ pmpro
1889
- msgid "Your membership confirmation for %s"
1890
- msgstr "Bekreftelse medlemskap i %s"
1891
-
1892
- #: classes/class.pmproemail.php:228
1893
- #: classes/class.pmproemail.php:237
1894
- #: classes/class.pmproemail.php:246
1895
- #: classes/class.pmproemail.php:325
1896
- #: classes/class.pmproemail.php:334
1897
- #: classes/class.pmproemail.php:645
1898
- #: pages/checkout.php:66
1899
- #: pages/checkout.php:76
1900
- #: pages/checkout.php:576
1901
- #: pages/confirmation.php:52
1902
- #: pages/invoice.php:33
1903
- #@ pmpro
1904
- msgid "Discount Code"
1905
- msgstr ""
1906
-
1907
- #: classes/class.pmproemail.php:253
1908
- #: classes/class.pmproemail.php:346
1909
- #: classes/class.pmproemail.php:651
1910
- #, php-format
1911
- #@ pmpro
1912
- msgid "This membership will expire on %s."
1913
- msgstr ""
1914
-
1915
- #: classes/class.pmproemail.php:275
1916
- #, php-format
1917
- #@ pmpro
1918
- msgid "Member Checkout for %s at %s"
1919
- msgstr ""
1920
-
1921
- #: classes/class.pmproemail.php:363
1922
- #, php-format
1923
- #@ pmpro
1924
- msgid "Your billing information has been udpated at %s"
1925
- msgstr ""
1926
-
1927
- #: classes/class.pmproemail.php:416
1928
- #, php-format
1929
- #@ pmpro
1930
- msgid "Billing information has been udpated for %s at %s"
1931
- msgstr ""
1932
-
1933
- #: classes/class.pmproemail.php:464
1934
- #, php-format
1935
- #@ pmpro
1936
- msgid "Membership Payment Failed at %s"
1937
- msgstr ""
1938
-
1939
- #: classes/class.pmproemail.php:510
1940
- #, php-format
1941
- #@ pmpro
1942
- msgid "Membership Payment Failed For %s at %s"
1943
- msgstr ""
1944
-
1945
- #: classes/class.pmproemail.php:557
1946
- #, php-format
1947
- #@ pmpro
1948
- msgid "Credit Card on File Expiring Soon at %s"
1949
- msgstr ""
1950
-
1951
- #: classes/class.pmproemail.php:605
1952
- #, php-format
1953
- #@ pmpro
1954
- msgid "INVOICE for %s membership"
1955
- msgstr ""
1956
-
1957
- #: classes/class.pmproemail.php:676
1958
- #, php-format
1959
- #@ pmpro
1960
- msgid "Your trial at %s is ending soon"
1961
- msgstr ""
1962
-
1963
- #: classes/class.pmproemail.php:710
1964
- #, php-format
1965
- #@ pmpro
1966
- msgid "Your membership at %s has ended"
1967
- msgstr ""
1968
-
1969
- #: classes/class.pmproemail.php:735
1970
- #, php-format
1971
- #@ pmpro
1972
- msgid "Your membership at %s will end soon"
1973
- msgstr ""
1974
-
1975
- #: classes/class.pmproemail.php:755
1976
- #, php-format
1977
- #@ pmpro
1978
- msgid "Your membership at %s has been changed"
1979
- msgstr "Medlemskapet ditt ved %s er endret"
1980
-
1981
- #: classes/class.pmproemail.php:759
1982
- #, php-format
1983
- #@ pmpro
1984
- msgid "The new level is %s."
1985
- msgstr ""
1986
-
1987
- #: classes/class.pmproemail.php:761
1988
- #@ pmpro
1989
- msgid "Your membership has been cancelled"
1990
- msgstr "Medlemskapet ditt er kansellert"
1991
-
1992
- #: classes/class.pmproemail.php:765
1993
- #: classes/class.pmproemail.php:803
1994
- #, php-format
1995
- #@ pmpro
1996
- msgid "This membership will expire on %s"
1997
- msgstr ""
1998
-
1999
- #: classes/class.pmproemail.php:769
2000
- #: classes/class.pmproemail.php:807
2001
- #@ pmpro
2002
- msgid "This membership does not expire"
2003
- msgstr ""
2004
-
2005
- #: classes/class.pmproemail.php:793
2006
- #, php-format
2007
- #@ pmpro
2008
- msgid "Membership for %s at %s has been changed"
2009
- msgstr "Medlemskapet for %s ved %s er endret"
2010
-
2011
- #: classes/class.pmproemail.php:797
2012
- #, php-format
2013
- #@ pmpro
2014
- msgid "The new level is %s. This membership is free"
2015
- msgstr ""
2016
-
2017
- #: classes/class.pmproemail.php:799
2018
- #@ pmpro
2019
- msgid "membership has been cancelled"
2020
- msgstr "medlemskapet er kansellert"
2021
-
2022
- #: classes/gateways/class.pmprogateway.php:55
2023
- #: classes/gateways/class.pmprogateway_authorizenet.php:55
2024
- #: classes/gateways/class.pmprogateway_check.php:60
2025
- #: classes/gateways/class.pmprogateway_cybersource.php:57
2026
- #: classes/gateways/class.pmprogateway_payflowpro.php:27
2027
- #: classes/gateways/class.pmprogateway_paypal.php:27
2028
- #@ pmpro
2029
- msgid "Unknown error: Authorization failed."
2030
- msgstr ""
2031
-
2032
- #: classes/gateways/class.pmprogateway.php:106
2033
- #: classes/gateways/class.pmprogateway.php:111
2034
- #: classes/gateways/class.pmprogateway.php:129
2035
- #: classes/gateways/class.pmprogateway_authorizenet.php:106
2036
- #: classes/gateways/class.pmprogateway_authorizenet.php:111
2037
- #: classes/gateways/class.pmprogateway_authorizenet.php:128
2038
- #: classes/gateways/class.pmprogateway_check.php:111
2039
- #: classes/gateways/class.pmprogateway_check.php:116
2040
- #: classes/gateways/class.pmprogateway_check.php:134
2041
- #: classes/gateways/class.pmprogateway_cybersource.php:108
2042
- #: classes/gateways/class.pmprogateway_cybersource.php:113
2043
- #: classes/gateways/class.pmprogateway_cybersource.php:131
2044
- #: classes/gateways/class.pmprogateway_payflowpro.php:50
2045
- #: classes/gateways/class.pmprogateway_payflowpro.php:55
2046
- #: classes/gateways/class.pmprogateway_paypal.php:50
2047
- #@ pmpro
2048
- msgid "Unknown error: Payment failed."
2049
- msgstr ""
2050
-
2051
- #: classes/gateways/class.pmprogateway.php:113
2052
- #: classes/gateways/class.pmprogateway_authorizenet.php:112
2053
- #: classes/gateways/class.pmprogateway_check.php:118
2054
- #: classes/gateways/class.pmprogateway_cybersource.php:115
2055
- #@ pmpro
2056
- msgid "A partial payment was made that we could not void. Please contact the site owner immediately to correct this."
2057
- msgstr ""
2058
-
2059
- #: classes/gateways/class.pmprogateway_authorizenet.php:787
2060
- #: classes/gateways/class.pmprogateway_authorizenet.php:788
2061
- #@ pmpro
2062
- msgid "Could not connect to Authorize.net"
2063
- msgstr ""
2064
-
2065
- #: classes/gateways/class.pmprogateway_braintree.php:61
2066
- #: classes/gateways/class.pmprogateway_stripe.php:53
2067
- #@ pmpro
2068
- msgid "Unknown error: Initial payment failed."
2069
- msgstr ""
2070
-
2071
- #: classes/gateways/class.pmprogateway_braintree.php:120
2072
- #@ pmpro
2073
- msgid "Error during settlement:"
2074
- msgstr ""
2075
-
2076
- #: classes/gateways/class.pmprogateway_braintree.php:129
2077
- #@ pmpro
2078
- msgid "Error during charge:"
2079
- msgstr ""
2080
-
2081
- #: classes/gateways/class.pmprogateway_braintree.php:198
2082
- #@ pmpro
2083
- msgid "Failed to update customer."
2084
- msgstr ""
2085
-
2086
- #: classes/gateways/class.pmprogateway_braintree.php:246
2087
- #@ pmpro
2088
- msgid "Failed to create customer."
2089
- msgstr ""
2090
-
2091
- #: classes/gateways/class.pmprogateway_braintree.php:253
2092
- #@ pmpro
2093
- msgid "Error creating customer record with Braintree:"
2094
- msgstr ""
2095
-
2096
- #: classes/gateways/class.pmprogateway_braintree.php:344
2097
- #@ pmpro
2098
- msgid "Error subscribing customer to plan with Braintree:"
2099
- msgstr ""
2100
-
2101
- #: classes/gateways/class.pmprogateway_braintree.php:359
2102
- #@ pmpro
2103
- msgid "Failed to subscribe with Braintree:"
2104
- msgstr ""
2105
-
2106
- #: classes/gateways/class.pmprogateway_braintree.php:397
2107
- #: classes/gateways/class.pmprogateway_braintree.php:410
2108
- #: classes/gateways/class.pmprogateway_braintree.php:417
2109
- #: classes/gateways/class.pmprogateway_stripe.php:344
2110
- #: classes/gateways/class.pmprogateway_stripe.php:354
2111
- #@ pmpro
2112
- msgid "Could not find the subscription."
2113
- msgstr ""
2114
-
2115
- #: classes/gateways/class.pmprogateway_payflowpro.php:57
2116
- #: classes/gateways/class.pmprogateway_paypal.php:57
2117
- #@ pmpro
2118
- msgid "A partial payment was made that we could not refund. Please contact the site owner immediately to correct this."
2119
- msgstr ""
2120
-
2121
- #: classes/gateways/class.pmprogateway_stripe.php:192
2122
- #@ pmpro
2123
- msgid "Error creating customer record with Stripe:"
2124
- msgstr ""
2125
-
2126
- #: classes/gateways/class.pmprogateway_stripe.php:279
2127
- #@ pmpro
2128
- msgid "Error creating plan with Stripe:"
2129
- msgstr ""
2130
-
2131
- #: classes/gateways/class.pmprogateway_stripe.php:295
2132
- #@ pmpro
2133
- msgid "Error subscribing customer to plan with Stripe:"
2134
- msgstr ""
2135
-
2136
- #: includes/adminpages.php:9
2137
- #: includes/adminpages.php:39
2138
- #@ pmpro
2139
- msgid "Memberships"
2140
- msgstr "Medlemskap"
2141
-
2142
- #: includes/adminpages.php:10
2143
- #: includes/adminpages.php:49
2144
- #@ pmpro
2145
- msgid "Page Settings"
2146
- msgstr ""
2147
-
2148
- #: includes/adminpages.php:11
2149
- #: includes/adminpages.php:54
2150
- #@ pmpro
2151
- msgid "Payment Settings"
2152
- msgstr ""
2153
-
2154
- #: includes/adminpages.php:16
2155
- #: includes/adminpages.php:79
2156
- #@ pmpro
2157
- msgid "Reports"
2158
- msgstr ""
2159
-
2160
- #: includes/adminpages.php:18
2161
- #: includes/adminpages.php:89
2162
- #@ pmpro
2163
- msgid "Discount Codes"
2164
- msgstr ""
2165
-
2166
- #: includes/currencies.php:7
2167
- #: includes/currencies.php:44
2168
- #@ pmpro
2169
- msgid "US Dollars (&#36;)"
2170
- msgstr ""
2171
-
2172
- #: includes/currencies.php:8
2173
- #: includes/currencies.php:47
2174
- #@ pmpro
2175
- msgid "Euros (&euro;)"
2176
- msgstr ""
2177
-
2178
- #: includes/currencies.php:9
2179
- #: includes/currencies.php:46
2180
- #@ pmpro
2181
- msgid "Pounds Sterling (&pound;)"
2182
- msgstr ""
2183
-
2184
- #: includes/currencies.php:10
2185
- #@ pmpro
2186
- msgid "Australian Dollars (&#36;)"
2187
- msgstr ""
2188
-
2189
- #: includes/currencies.php:11
2190
- #@ pmpro
2191
- msgid "Brazilian Real (&#36;)"
2192
- msgstr ""
2193
-
2194
- #: includes/currencies.php:12
2195
- #: includes/currencies.php:45
2196
- #@ pmpro
2197
- msgid "Canadian Dollars (&#36;)"
2198
- msgstr ""
2199
-
2200
- #: includes/currencies.php:13
2201
- #@ pmpro
2202
- msgid "Chinese Yuan"
2203
- msgstr ""
2204
-
2205
- #: includes/currencies.php:14
2206
- #@ pmpro
2207
- msgid "Czech Koruna"
2208
- msgstr ""
2209
-
2210
- #: includes/currencies.php:15
2211
- #@ pmpro
2212
- msgid "Danish Krone"
2213
- msgstr ""
2214
-
2215
- #: includes/currencies.php:16
2216
- #@ pmpro
2217
- msgid "Hong Kong Dollar (&#36;)"
2218
- msgstr ""
2219
-
2220
- #: includes/currencies.php:17
2221
- #@ pmpro
2222
- msgid "Hungarian Forint"
2223
- msgstr ""
2224
-
2225
- #: includes/currencies.php:18
2226
- #@ pmpro
2227
- msgid "Indian Rupee"
2228
- msgstr ""
2229
-
2230
- #: includes/currencies.php:19
2231
- #@ pmpro
2232
- msgid "Indonesia Rupiah"
2233
- msgstr ""
2234
-
2235
- #: includes/currencies.php:20
2236
- #@ pmpro
2237
- msgid "Israeli Shekel"
2238
- msgstr ""
2239
-
2240
- #: includes/currencies.php:21
2241
- #@ pmpro
2242
- msgid "Japanese Yen (&yen;)"
2243
- msgstr ""
2244
-
2245
- #: includes/currencies.php:22
2246
- #@ pmpro
2247
- msgid "Malaysian Ringgits"
2248
- msgstr ""
2249
-
2250
- #: includes/currencies.php:23
2251
- #@ pmpro
2252
- msgid "Mexican Peso (&#36;)"
2253
- msgstr ""
2254
-
2255
- #: includes/currencies.php:24
2256
- #@ pmpro
2257
- msgid "New Zealand Dollar (&#36;)"
2258
- msgstr ""
2259
-
2260
- #: includes/currencies.php:25
2261
- #@ pmpro
2262
- msgid "Norwegian Krone"
2263
- msgstr "Norske kroner"
2264
-
2265
- #: includes/currencies.php:26
2266
- #@ pmpro
2267
- msgid "Philippine Pesos"
2268
- msgstr ""
2269
-
2270
- #: includes/currencies.php:27
2271
- #@ pmpro
2272
- msgid "Polish Zloty"
2273
- msgstr ""
2274
-
2275
- #: includes/currencies.php:28
2276
- #@ pmpro
2277
- msgid "Singapore Dollar (&#36;)"
2278
- msgstr ""
2279
-
2280
- #: includes/currencies.php:29
2281
- #@ pmpro
2282
- msgid "South African Rand"
2283
- msgstr ""
2284
-
2285
- #: includes/currencies.php:30
2286
- #@ pmpro
2287
- msgid "South Korean Won"
2288
- msgstr ""
2289
-
2290
- #: includes/currencies.php:31
2291
- #@ pmpro
2292
- msgid "Swedish Krona"
2293
- msgstr ""
2294
-
2295
- #: includes/currencies.php:32
2296
- #@ pmpro
2297
- msgid "Swiss Franc"
2298
- msgstr ""
2299
-
2300
- #: includes/currencies.php:33
2301
- #@ pmpro
2302
- msgid "Taiwan New Dollars"
2303
- msgstr ""
2304
-
2305
- #: includes/currencies.php:34
2306
- #@ pmpro
2307
- msgid "Thai Baht"
2308
- msgstr ""
2309
-
2310
- #: includes/currencies.php:35
2311
- #@ pmpro
2312
- msgid "Turkish Lira"
2313
- msgstr ""
2314
-
2315
- #: includes/currencies.php:36
2316
- #@ pmpro
2317
- msgid "Vietnamese Dong"
2318
- msgstr ""
2319
-
2320
- #: includes/functions.php:201
2321
- #, php-format
2322
- #@ pmpro
2323
- msgid "The price for membership is <strong>%s</strong> now"
2324
- msgstr "Prisen for medlemskapet er <strong>%s</strong> nå"
2325
-
2326
- #: includes/functions.php:210
2327
- #, php-format
2328
- #@ Recurring payment in cost text generation. E.g. $5 every month for 2 more payments.
2329
- msgid " and then <strong>%s per %s for %d more %s</strong>."
2330
- msgstr ""
2331
-
2332
- #: includes/functions.php:214
2333
- #, php-format
2334
- #@ Recurring payment in cost text generation. E.g., $5 every 2 months for 2 more payments.
2335
- msgid " and then <strong>%s every %d %s for %d more %s</strong>."
2336
- msgstr ""
2337
-
2338
- #: includes/functions.php:219
2339
- #, php-format
2340
- #@ Recurring payment in cost text generation. E.g. $5 after 2 months.
2341
- msgid " and then <strong>%s after %d %s</strong>."
2342
- msgstr ""
2343
-
2344
- #: includes/functions.php:225
2345
- #, php-format
2346
- #@ Recurring payment in cost text generation. E.g. $5 every month.
2347
- msgid " and then <strong>%s per %s</strong>."
2348
- msgstr ""
2349
-
2350
- #: includes/functions.php:229
2351
- #, php-format
2352
- #@ Recurring payment in cost text generation. E.g., $5 every 2 months.
2353
- msgid " and then <strong>%s every %d %s</strong>."
2354
- msgstr ""
2355
-
2356
- #: includes/functions.php:246
2357
- #: pages/levels.php:82
2358
- #@ pmpro
2359
- msgid "After your initial payment, your first payment is Free."
2360
- msgstr ""
2361
-
2362
- #: includes/functions.php:250
2363
- #: pages/levels.php:86
2364
- #, php-format
2365
- #@ pmpro
2366
- msgid "After your initial payment, your first %d payments are Free."
2367
- msgstr ""
2368
-
2369
- #: includes/functions.php:257
2370
- #: pages/levels.php:93
2371
- #, php-format
2372
- #@ pmpro
2373
- msgid "After your initial payment, your first payment will cost %s."
2374
- msgstr ""
2375
-
2376
- #: includes/functions.php:261
2377
- #: pages/levels.php:97
2378
- #, php-format
2379
- #@ pmpro
2380
- msgid "After your initial payment, your first %d payments will cost %s."
2381
- msgstr ""
2382
-
2383
- #: includes/functions.php:272
2384
- #, php-format
2385
- #@ pmpro
2386
- msgid "Customers in %s will be charged %s%% tax."
2387
- msgstr ""
2388
-
2389
- #: includes/functions.php:286
2390
- #, php-format
2391
- #@ pmpro
2392
- msgid "Membership expires after %d %s."
2393
- msgstr ""
2394
-
2395
- #: includes/functions.php:522
2396
- #@ pmpro
2397
- msgid "User ID not found."
2398
- msgstr ""
2399
-
2400
- #: includes/functions.php:539
2401
- #@ pmpro
2402
- msgid "Invalid level."
2403
- msgstr ""
2404
-
2405
- #: includes/functions.php:550
2406
- #@ pmpro
2407
- msgid "not changing?"
2408
- msgstr ""
2409
-
2410
- #: includes/functions.php:567
2411
- #: includes/functions.php:614
2412
- #: includes/functions.php:623
2413
- #@ pmpro
2414
- msgid "Error interacting with database"
2415
- msgstr ""
2416
-
2417
- #: includes/functions.php:664
2418
- #: includes/functions.php:703
2419
- #@ pmpro
2420
- msgid "Membership level not found."
2421
- msgstr ""
2422
-
2423
- #: includes/functions.php:1085
2424
- #@ pmpro
2425
- msgid "The discount code could not be found."
2426
- msgstr ""
2427
-
2428
- #: includes/functions.php:1101
2429
- #, php-format
2430
- #@ pmpro
2431
- msgid "This discount code goes into effect on %s."
2432
- msgstr ""
2433
-
2434
- #: includes/functions.php:1110
2435
- #, php-format
2436
- #@ pmpro
2437
- msgid "This discount code expired on %s."
2438
- msgstr ""
2439
-
2440
- #: includes/functions.php:1122
2441
- #@ pmpro
2442
- msgid "This discount code is no longer valid."
2443
- msgstr ""
2444
-
2445
- #: includes/functions.php:1137
2446
- #@ pmpro
2447
- msgid "This discount code does not apply to this membership level."
2448
- msgstr ""
2449
-
2450
- #: includes/functions.php:1145
2451
- #@ pmpro
2452
- msgid "This discount code is okay."
2453
- msgstr ""
2454
-
2455
- #: includes/functions.php:1169
2456
- #@ pmpro
2457
- msgid "and"
2458
- msgstr ""
2459
-
2460
- #: includes/functions.php:1354
2461
- #@ pmpro
2462
- msgid "Sign Up for !!name!! Now"
2463
- msgstr ""
2464
-
2465
- #: includes/functions.php:1360
2466
- #@ pmpro
2467
- msgid "Please specify a level id."
2468
- msgstr ""
2469
-
2470
- #: includes/localization.php:23
2471
- #@ pmpro
2472
- msgid "Day"
2473
- msgid_plural "Days"
2474
- msgstr[0] ""
2475
- msgstr[1] ""
2476
-
2477
- #: includes/localization.php:25
2478
- #@ pmpro
2479
- msgid "Week"
2480
- msgid_plural "Weeks"
2481
- msgstr[0] ""
2482
- msgstr[1] ""
2483
-
2484
- #: includes/localization.php:27
2485
- #@ pmpro
2486
- msgid "Month"
2487
- msgid_plural "Months"
2488
- msgstr[0] ""
2489
- msgstr[1] ""
2490
-
2491
- #: includes/localization.php:29
2492
- #@ pmpro
2493
- msgid "Year"
2494
- msgid_plural "Years"
2495
- msgstr[0] ""
2496
- msgstr[1] ""
2497
-
2498
- #: includes/metaboxes.php:38
2499
- #@ pmpro
2500
- msgid "This post is already protected for this level because it is within a category that requires membership."
2501
- msgstr ""
2502
-
2503
- #: includes/metaboxes.php:99
2504
- #: includes/metaboxes.php:100
2505
- #@ pmpro
2506
- msgid "Require Membership"
2507
- msgstr ""
2508
-
2509
- #: includes/profile.php:36
2510
- #@ pmpro
2511
- msgid "Current Level"
2512
- msgstr ""
2513
-
2514
- #: includes/profile.php:39
2515
- #@ pmpro
2516
- msgid "None"
2517
- msgstr "Ingen"
2518
-
2519
- #: includes/profile.php:84
2520
- #@ pmpro
2521
- msgid "User is not paying."
2522
- msgstr ""
2523
-
2524
- #: pages/account.php:10
2525
- #@ pmpro
2526
- msgid "Your membership is <strong>active</strong>."
2527
- msgstr "Medlemskapet ditt er <strong>aktivt</strong>."
2528
-
2529
- #: pages/account.php:12
2530
- #: pages/billing.php:16
2531
- #: pages/levels.php:13
2532
- #@ pmpro
2533
- msgid "Level"
2534
- msgstr "Kurs"
2535
-
2536
- #: pages/account.php:14
2537
- #: pages/billing.php:18
2538
- #@ pmpro
2539
- msgid "Membership Fee"
2540
- msgstr "Pris medlemskap"
2541
-
2542
- #: pages/account.php:25
2543
- #: pages/billing.php:29
2544
- #@ pmpro
2545
- msgid "Duration"
2546
- msgstr ""
2547
-
2548
- #: pages/account.php:29
2549
- #: pages/confirmation.php:49
2550
- #: pages/invoice.php:30
2551
- #@ pmpro
2552
- msgid "Membership Expires"
2553
- msgstr ""
2554
-
2555
- #: pages/account.php:34
2556
- #, php-format
2557
- #@ pmpro
2558
- msgid "Your first payment will cost %s."
2559
- msgstr ""
2560
-
2561
- #: pages/account.php:38
2562
- #, php-format
2563
- #@ pmpro
2564
- msgid "Your first %d payments will cost %s."
2565
- msgstr ""
2566
-
2567
- #: pages/account.php:46
2568
- #@ pmpro
2569
- msgid "My Account"
2570
- msgstr "Min konto"
2571
-
2572
- #: pages/account.php:55
2573
- #@ pmpro
2574
- msgid "Edit Profile"
2575
- msgstr "Rediger profil"
2576
-
2577
- #: pages/account.php:56
2578
- #@ pmpro
2579
- msgid "Change Password"
2580
- msgstr "Endre passord"
2581
-
2582
- #: pages/account.php:87
2583
- #@ pmpro
2584
- msgid "Billing Information"
2585
- msgstr "Fakturainformasjon"
2586
-
2587
- #: pages/account.php:105
2588
- #: pages/confirmation.php:63
2589
- #: pages/invoice.php:50
2590
- #@ pmpro
2591
- msgid "Payment Method"
2592
- msgstr "Betalingsinformasjon"
2593
-
2594
- #: pages/account.php:114
2595
- #@ pmpro
2596
- msgid "Edit Billing Information"
2597
- msgstr ""
2598
-
2599
- #: pages/account.php:125
2600
- #@ pmpro
2601
- msgid "Past Invoices"
2602
- msgstr "Siste faktura"
2603
-
2604
- #: pages/account.php:140
2605
- #@ pmpro
2606
- msgid "View All Invoices"
2607
- msgstr "Se alle fakturaer"
2608
-
2609
- #: pages/account.php:146
2610
- #@ pmpro
2611
- msgid "Member Links"
2612
- msgstr "Medlemslinker"
2613
-
2614
- #: pages/account.php:152
2615
- #@ pmpro
2616
- msgid "Update Billing Information"
2617
- msgstr ""
2618
-
2619
- #: pages/account.php:155
2620
- #@ pmpro
2621
- msgid "Change Membership Level"
2622
- msgstr ""
2623
-
2624
- #: pages/account.php:157
2625
- #@ pmpro
2626
- msgid "Cancel Membership"
2627
- msgstr "Kanseller medlemskap"
2628
-
2629
- #: pages/billing.php:14
2630
- #, php-format
2631
- #@ pmpro
2632
- msgid "Logged in as <strong>%s</strong>."
2633
- msgstr "Logget inn som <strong>%s</strong>."
2634
-
2635
- #: pages/billing.php:14
2636
- #@ pmpro
2637
- msgid "logout"
2638
- msgstr "Logg ut"
2639
-
2640
- #: pages/billing.php:39
2641
- #@ pmpro
2642
- msgid "Your payment subscription is managed by PayPal. Please <a href=\"http://www.paypal.com\">login to PayPal here</a> to update your billing information."
2643
- msgstr ""
2644
-
2645
- #: pages/billing.php:65
2646
- #: pages/checkout.php:332
2647
- #@ pmpro
2648
- msgid "First Name"
2649
- msgstr "Fornavn"
2650
-
2651
- #: pages/billing.php:69
2652
- #: pages/checkout.php:336
2653
- #@ pmpro
2654
- msgid "Last Name"
2655
- msgstr "Etternavn"
2656
-
2657
- #: pages/billing.php:73
2658
- #: pages/checkout.php:340
2659
- #@ pmpro
2660
- msgid "Address 1"
2661
- msgstr "Adresse 1"
2662
-
2663
- #: pages/billing.php:77
2664
- #: pages/checkout.php:344
2665
- #@ pmpro
2666
- msgid "Address 2"
2667
- msgstr "Adresse 2"
2668
-
2669
- #: pages/billing.php:87
2670
- #: pages/checkout.php:354
2671
- #@ pmpro
2672
- msgid "City"
2673
- msgstr "By"
2674
-
2675
- #: pages/billing.php:91
2676
- #: pages/checkout.php:358
2677
- #@ pmpro
2678
- msgid "State"
2679
- msgstr "Fylke"
2680
-
2681
- #: pages/billing.php:95
2682
- #: pages/checkout.php:362
2683
- #@ pmpro
2684
- msgid "Postal Code"
2685
- msgstr "Postnummer"
2686
-
2687
- #: pages/billing.php:104
2688
- #: pages/checkout.php:371
2689
- #@ pmpro
2690
- msgid "City, State Zip"
2691
- msgstr ""
2692
-
2693
- #: pages/billing.php:157
2694
- #: pages/checkout.php:424
2695
- #@ pmpro
2696
- msgid "Country"
2697
- msgstr "Land"
2698
-
2699
- #: pages/billing.php:182
2700
- #: pages/checkout.php:449
2701
- #@ pmpro
2702
- msgid "Phone"
2703
- msgstr "Telefon"
2704
-
2705
- #: pages/billing.php:193
2706
- #: pages/checkout.php:207
2707
- #: pages/checkout.php:463
2708
- #@ pmpro
2709
- msgid "E-mail Address"
2710
- msgstr "E-post-adresse"
2711
-
2712
- #: pages/billing.php:197
2713
- #: pages/checkout.php:472
2714
- #@ pmpro
2715
- msgid "Confirm E-mail"
2716
- msgstr "Bekreft e-post-adresse"
2717
-
2718
- #: pages/billing.php:217
2719
- #, php-format
2720
- #@ pmpro
2721
- msgid "We accept %s"
2722
- msgstr ""
2723
-
2724
- #: pages/billing.php:217
2725
- #@ pmpro
2726
- msgid "Credit Card Information"
2727
- msgstr "Kredittkortinformasjon"
2728
-
2729
- #: pages/billing.php:244
2730
- #: pages/checkout.php:530
2731
- #@ pmpro
2732
- msgid "Card Number"
2733
- msgstr "Kortnummer"
2734
-
2735
- #: pages/billing.php:281
2736
- #: pages/checkout.php:567
2737
- #@ pmpro
2738
- msgid "CVV"
2739
- msgstr ""
2740
-
2741
- #: pages/billing.php:282
2742
- #: pages/checkout.php:568
2743
- #@ pmpro
2744
- msgid "what's this?"
2745
- msgstr ""
2746
-
2747
- #: pages/billing.php:294
2748
- #@ pmpro
2749
- msgid "Update"
2750
- msgstr "Oppdater"
2751
-
2752
- #: pages/billing.php:309
2753
- #@ pmpro
2754
- msgid "This subscription is not recurring. So you don't need to update your billing information."
2755
- msgstr ""
2756
-
2757
- #: pages/cancel.php:14
2758
- #@ pmpro
2759
- msgid "Are you sure you want to cancel your membership?"
2760
- msgstr "Er du sikker at du vil kansellere medlemskapet ditt?"
2761
-
2762
- #: pages/cancel.php:17
2763
- #@ pmpro
2764
- msgid "Yes, cancel my account"
2765
- msgstr "Ja, kanseller kontoen min"
2766
-
2767
- #: pages/cancel.php:19
2768
- #@ pmpro
2769
- msgid "No, keep my account"
2770
- msgstr "Nei, behold kontoen min"
2771
-
2772
- #: pages/cancel.php:22
2773
- #@ pmpro
2774
- msgid "Click here to go to the home page."
2775
- msgstr "Klikk her for å gå til hjemmesiden."
2776
-
2777
- #: pages/checkout.php:26
2778
- #@ pmpro
2779
- msgid "Almost done. Review the membership information and pricing below then <strong>click the \"Complete Payment\" button</strong> to finish your order."
2780
- msgstr "Nå er alt nesten klart. Les igjennom informasjonen under om medlemskapet ditt, og <strong>klikk så på \"Fullfør betaling\" knappen</strong> for å fullføre bestillingen."
2781
-
2782
- #: pages/checkout.php:33
2783
- #@ pmpro
2784
- msgid "change"
2785
- msgstr ""
2786
-
2787
- #: pages/checkout.php:41
2788
- #, php-format
2789
- #@ pmpro
2790
- msgid "You have selected the <strong>%s</strong> membership level."
2791
- msgstr "Du har valgt <strong>%s</strong>."
2792
-
2793
- #: pages/checkout.php:51
2794
- #, php-format
2795
- #@ pmpro
2796
- msgid "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has been applied to your order.</p>"
2797
- msgstr ""
2798
-
2799
- #: pages/checkout.php:62
2800
- #: services/applydiscountcode.php:75
2801
- #@ pmpro
2802
- msgid "Click here to change your discount code"
2803
- msgstr ""
2804
-
2805
- #: pages/checkout.php:64
2806
- #@ pmpro
2807
- msgid "Do you have a discount code?"
2808
- msgstr ""
2809
-
2810
- #: pages/checkout.php:64
2811
- #@ pmpro
2812
- msgid "Click here to enter your discount code"
2813
- msgstr ""
2814
-
2815
- #: pages/checkout.php:78
2816
- #: pages/checkout.php:578
2817
- #@ pmpro
2818
- msgid "Apply"
2819
- msgstr ""
2820
-
2821
- #: pages/checkout.php:163
2822
- #@ pmpro
2823
- msgid "Already have an account?"
2824
- msgstr "Har du allerede en konto?"
2825
-
2826
- #: pages/checkout.php:163
2827
- #@ pmpro
2828
- msgid "Log in here"
2829
- msgstr "Logg inn her"
2830
-
2831
- #: pages/checkout.php:163
2832
- #@ pmpro
2833
- msgid "Account Information"
2834
- msgstr "Kontoinformasjon"
2835
-
2836
- #: pages/checkout.php:189
2837
- #@ pmpro
2838
- msgid "Confirm Password"
2839
- msgstr "Bekreft passord"
2840
-
2841
- #: pages/checkout.php:216
2842
- #@ pmpro
2843
- msgid "Confirm E-mail Address"
2844
- msgstr "Bekreft e-post-adresse"
2845
-
2846
- #: pages/checkout.php:235
2847
- #@ pmpro
2848
- msgid "Full Name"
2849
- msgstr "Fullt navn"
2850
-
2851
- #: pages/checkout.php:236
2852
- #@ pmpro
2853
- msgid "LEAVE THIS BLANK"
2854
- msgstr ""
2855
-
2856
- #: pages/checkout.php:260
2857
- #, php-format
2858
- #@ pmpro
2859
- msgid "You are logged in as <strong>%s</strong>. If you would like to use a different account for this membership, <a href=\"%s\">log out now</a>."
2860
- msgstr "Du er nå logget inn som <strong>%s</strong>. Hvis du ønsker å logge deg på med en annen konto, <a href=\"%s\">logg ut nå</a>."
2861
-
2862
- #: pages/checkout.php:288
2863
- #, php-format
2864
- #@ pmpro
2865
- msgid "I agree to the %s"
2866
- msgstr "Jeg har lest og aksepterer de angitte %s"
2867
-
2868
- #: pages/checkout.php:303
2869
- #@ pmpro
2870
- msgid "Choose your Payment Method"
2871
- msgstr "Velg betalingsmetode"
2872
-
2873
- #: pages/checkout.php:311
2874
- #@ pmpro
2875
- msgid "Check Out with a Credit Card Here"
2876
- msgstr ""
2877
-
2878
- #: pages/checkout.php:313
2879
- #: pages/checkout.php:685
2880
- #@ pmpro
2881
- msgid "Check Out with PayPal"
2882
- msgstr "Sjekk ut med Paypal"
2883
-
2884
- #: pages/checkout.php:503
2885
- #, php-format
2886
- #@ pmpro
2887
- msgid "We Accept %s"
2888
- msgstr ""
2889
-
2890
- #: pages/checkout.php:503
2891
- #@ pmpro
2892
- msgid "Payment Information"
2893
- msgstr "Betalingsinformasjon"
2894
-
2895
- #: pages/checkout.php:677
2896
- #@ pmpro
2897
- msgid "Complete Payment"
2898
- msgstr "Fullfør betaling"
2899
-
2900
- #: pages/checkout.php:691
2901
- #@ pmpro
2902
- msgid "Submit and Pay with 2CheckOut"
2903
- msgstr ""
2904
-
2905
- #: pages/checkout.php:691
2906
- #@ pmpro
2907
- msgid "Submit and Check Out"
2908
- msgstr ""
2909
-
2910
- #: pages/checkout.php:691
2911
- #@ pmpro
2912
- msgid "Submit and Confirm"
2913
- msgstr ""
2914
-
2915
- #: pages/checkout.php:697
2916
- #@ pmpro
2917
- msgid "Processing..."
2918
- msgstr "Prosesserer.."
2919
-
2920
- #: pages/confirmation.php:12
2921
- #@ pmpro
2922
- msgid "Your payment has been submitted. Your membership will be activated shortly."
2923
- msgstr "Betalingen din er gjennomført. Medlemskapet ditt vil snart bli aktivert."
2924
-
2925
- #: pages/confirmation.php:14
2926
- #, php-format
2927
- #@ pmpro
2928
- msgid "Thank you for your membership to %s. Your %s membership is now active."
2929
- msgstr "Tusen takk for påmeldingen din til %s. Ditt medlemskap ved %s er nå aktivt."
2930
-
2931
- #: pages/confirmation.php:28
2932
- #, php-format
2933
- #@ pmpro
2934
- msgid "Below are details about your membership account and a receipt for your initial membership invoice. A welcome email with a copy of your initial membership invoice has been sent to %s."
2935
- msgstr "Under finner du detaljer om medlemskontoen din og en kvittering for betaling. Det er også sendt en e-post med en kopi av fakturaen til %s."
2936
-
2937
- #: pages/confirmation.php:41
2938
- #: pages/invoice.php:22
2939
- #, php-format
2940
- #@ pmpro
2941
- msgid "Invoice #%s on %s"
2942
- msgstr "Faktura #%s for %s"
2943
-
2944
- #: pages/confirmation.php:43
2945
- #@ pmpro
2946
- msgid "Print"
2947
- msgstr "Skriv ut"
2948
-
2949
- #: pages/confirmation.php:46
2950
- #: pages/confirmation.php:104
2951
- #: pages/invoice.php:27
2952
- #@ pmpro
2953
- msgid "Account"
2954
- msgstr "Konto"
2955
-
2956
- #: pages/confirmation.php:65
2957
- #: pages/invoice.php:52
2958
- #: pages/invoice.php:109
2959
- #@ pmpro
2960
- msgid "Total Billed"
2961
- msgstr "Totalpris"
2962
-
2963
- #: pages/confirmation.php:82
2964
- #: pages/invoice.php:69
2965
- #@ credit card type {ending in} xxxx
2966
- msgid "ending in"
2967
- msgstr ""
2968
-
2969
- #: pages/confirmation.php:97
2970
- #, php-format
2971
- #@ pmpro
2972
- msgid "Below are details about your membership account. A welcome email with has been sent to %s."
2973
- msgstr "Under finner du detaljer om medlemskontoen din. En e-post med har blitt sendt til %s."
2974
-
2975
- #: pages/confirmation.php:105
2976
- #@ pmpro
2977
- msgid "Pending"
2978
- msgstr "Ventende"
2979
-
2980
- #: pages/confirmation.php:113
2981
- #: pages/invoice.php:141
2982
- #@ pmpro
2983
- msgid "View Your Membership Account &rarr;"
2984
- msgstr "Se kontoen for medlemskapet ditt &rarr;"
2985
-
2986
- #: pages/confirmation.php:115
2987
- #@ pmpro
2988
- msgid "If your account is not activated within a few minutes, please contact the site owner."
2989
- msgstr "Hvis kontoen din ikke aktiveres i løpet av et par minutter, så ta kontakt med Syskolen."
2990
-
2991
- #: pages/invoice.php:79
2992
- #@ pmpro
2993
- msgid "Subtotal"
2994
- msgstr ""
2995
-
2996
- #: pages/invoice.php:82
2997
- #@ pmpro
2998
- msgid "Coupon"
2999
- msgstr ""
3000
-
3001
- #: pages/invoice.php:108
3002
- #@ pmpro
3003
- msgid "Invoice #"
3004
- msgstr "Faktura #"
3005
-
3006
- #: pages/invoice.php:122
3007
- #@ pmpro
3008
- msgid "View Invoice"
3009
- msgstr "Se på faktura"
3010
-
3011
- #: pages/invoice.php:134
3012
- #@ pmpro
3013
- msgid "No invoices found."
3014
- msgstr "Ingen fakturaer funnet"
3015
-
3016
- #: pages/invoice.php:145
3017
- #@ pmpro
3018
- msgid "&larr; View All Invoices"
3019
- msgstr "&larr; Se alle fakturaer"
3020
-
3021
- #: pages/levels.php:15
3022
- #@ pmpro
3023
- msgid "Subscription Information"
3024
- msgstr "Kursinformasjon"
3025
-
3026
- #: pages/levels.php:33
3027
- #@ pmpro
3028
- msgid "--"
3029
- msgstr ""
3030
-
3031
- #: pages/levels.php:43
3032
- #@ pmpro
3033
- msgid "Free"
3034
- msgstr ""
3035
-
3036
- #: pages/levels.php:51
3037
- #, php-format
3038
- #@ Recurring payment in cost text generation. E.g. $5 every month for 2 more payments.
3039
- msgid "%s per %s for %d more %s."
3040
- msgstr ""
3041
-
3042
- #: pages/levels.php:55
3043
- #, php-format
3044
- #@ Recurring payment in cost text generation. E.g., $5 every 2 months for 2 more payments.
3045
- msgid "%s every %d %s for %d more %s."
3046
- msgstr ""
3047
-
3048
- #: pages/levels.php:60
3049
- #, php-format
3050
- #@ Recurring payment in cost text generation. E.g. $5 after 2 months.
3051
- msgid "%s after %d %s."
3052
- msgstr ""
3053
-
3054
- #: pages/levels.php:66
3055
- #, php-format
3056
- #@ Recurring payment in cost text generation. E.g. $5 every month.
3057
- msgid "%s per %s."
3058
- msgstr ""
3059
-
3060
- #: pages/levels.php:70
3061
- #, php-format
3062
- #@ Recurring payment in cost text generation. E.g., $5 every 2 months.
3063
- msgid "%s every %d %s."
3064
- msgstr ""
3065
-
3066
- #: pages/levels.php:113
3067
- #: pages/levels.php:115
3068
- #@ Choose a level from levels page
3069
- msgid "Select"
3070
- msgstr ""
3071
-
3072
- #: pages/levels.php:123
3073
- #@ Clickign to renew from levels page
3074
- msgid "Renew"
3075
- msgstr ""
3076
-
3077
- #: pages/levels.php:129
3078
- #@ pmpro
3079
- msgid "Your&nbsp;Level"
3080
- msgstr "Ditt&nbsp;Medlemskap"
3081
-
3082
- #: pages/levels.php:145
3083
- #@ pmpro
3084
- msgid "&larr; Return to Your Account"
3085
- msgstr "&larr; Gå tilbake til din konto"
3086
-
3087
- #: pages/levels.php:147
3088
- #@ pmpro
3089
- msgid "&larr; Return to Home"
3090
- msgstr "&larr; Gå til hjemmesiden"
3091
-
3092
- #: preheaders/account.php:7
3093
- #: preheaders/levels.php:19
3094
- #@ pmpro
3095
- msgid "Your membership status has been updated - Thank you!"
3096
- msgstr ""
3097
-
3098
- #: preheaders/account.php:11
3099
- #: preheaders/levels.php:23
3100
- #@ pmpro
3101
- msgid "Sorry, your request could not be completed - please try again in a few moments."
3102
- msgstr ""
3103
-
3104
- #: preheaders/billing.php:258
3105
- #: preheaders/checkout.php:482
3106
- #@ pmpro
3107
- msgid "Please complete all required fields."
3108
- msgstr "Fyll ut alle påkrevde felt."
3109
-
3110
- #: preheaders/billing.php:263
3111
- #: preheaders/checkout.php:492
3112
- #@ pmpro
3113
- msgid "Your email addresses do not match. Please try again."
3114
- msgstr "E-post-adressene dine stemmer ikke overens. Prøv igjen."
3115
-
3116
- #: preheaders/billing.php:268
3117
- #: preheaders/checkout.php:498
3118
- #@ pmpro
3119
- msgid "The email address entered is in an invalid format. Please try again."
3120
- msgstr "E-post-adressen er i et ugyldig format. Prøv igjen."
3121
-
3122
- #: preheaders/billing.php:274
3123
- #@ pmpro
3124
- msgid "All good!"
3125
- msgstr "Alt bra!"
3126
-
3127
- #: preheaders/billing.php:340
3128
- #, php-format
3129
- #@ pmpro
3130
- msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
3131
- msgstr "Informasjonen er oppdatert. <a href=\"%s\">&laquo; gå tilbake til kontoen</a>"
3132
-
3133
- #: preheaders/billing.php:347
3134
- #@ pmpro
3135
- msgid "Error updating billing information."
3136
- msgstr ""
3137
-
3138
- #: preheaders/cancel.php:24
3139
- #@ pmpro
3140
- msgid "Your membership has been cancelled."
3141
- msgstr "Medlemskapet ditt er blitt kansellert."
3142
-
3143
- #: preheaders/checkout.php:28
3144
- #: preheaders/checkout.php:509
3145
- #@ pmpro
3146
- msgid "Invalid gateway."
3147
- msgstr ""
3148
-
3149
- #: preheaders/checkout.php:96
3150
- #@ pmpro
3151
- msgid "Checkout: Payment Information"
3152
- msgstr ""
3153
-
3154
- #: preheaders/checkout.php:109
3155
- #@ pmpro
3156
- msgid "Set up Your Account"
3157
- msgstr ""
3158
-
3159
- #: preheaders/checkout.php:486
3160
- #@ pmpro
3161
- msgid "Your passwords do not match. Please try again."
3162
- msgstr "Passordene stemmer ikke overens. Prøv igjen."
3163
-
3164
- #: preheaders/checkout.php:504
3165
- #, php-format
3166
- #@ pmpro
3167
- msgid "Please check the box to agree to the %s."
3168
- msgstr "Huk av i boksen for å godta %s."
3169
-
3170
- #: preheaders/checkout.php:513
3171
- #@ pmpro
3172
- msgid "Are you a spammer?"
3173
- msgstr ""
3174
-
3175
- #: preheaders/checkout.php:536
3176
- #@ pmpro
3177
- msgid "That username is already taken. Please try another."
3178
- msgstr "Brukernavnet er opptatt. Prøv et annet."
3179
-
3180
- #: preheaders/checkout.php:542
3181
- #@ pmpro
3182
- msgid "That email address is already taken. Please try another."
3183
- msgstr "Denne e-post-adressen er allerede registrert. Bruk en annen adresse."
3184
-
3185
- #: preheaders/checkout.php:562
3186
- #, php-format
3187
- #@ pmpro
3188
- msgid "reCAPTCHA failed. (%s) Please try again."
3189
- msgstr ""
3190
-
3191
- #: preheaders/checkout.php:702
3192
- #@ pmpro
3193
- msgid "Payment accepted."
3194
- msgstr "Betaling er akseptert."
3195
-
3196
- #: preheaders/checkout.php:710
3197
- #@ pmpro
3198
- msgid "Unknown error generating account. Please contact us to set up your membership."
3199
- msgstr "Det skjedde en ukjent feil når kontoen din skulle genereres. Ta kontakt med oss for å registrere medlemskapet ditt."
3200
-
3201
- #: preheaders/checkout.php:754
3202
- #: preheaders/checkout.php:823
3203
- #@ pmpro
3204
- msgid "The PayPal Token was lost."
3205
- msgstr ""
3206
-
3207
- #: preheaders/checkout.php:860
3208
- #@ pmpro
3209
- msgid "Your payment was accepted, but there was an error setting up your account. Please contact us."
3210
- msgstr "Betalingen din er akseptert, men det skjedde en feil ved etablering av kontoen din. Ta kontakt med oss."
3211
-
3212
- #: preheaders/checkout.php:1046
3213
- #@ pmpro
3214
- msgid "IMPORTANT: Something went wrong during membership creation. Your credit card authorized, but we cancelled the order immediately. You should not try to submit this form again. Please contact the site owner to fix this issue."
3215
- msgstr ""
3216
-
3217
- #: preheaders/checkout.php:1051
3218
- #@ pmpro
3219
- msgid "IMPORTANT: Something went wrong during membership creation. Your credit card was charged, but we couldn't assign your membership. You should not submit this form again. Please contact the site owner to fix this issue."
3220
- msgstr ""
3221
-
3222
- #: preheaders/checkout.php:1064
3223
- #, php-format
3224
- #@ pmpro
3225
- msgid "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments will be processed."
3226
- msgstr ""
3227
-
3228
- #: preheaders/checkout.php:1066
3229
- #@ pmpro
3230
- msgid "A Payment Gateway must be set up before any payments will be processed."
3231
- msgstr ""
3232
-
3233
- #: scheduled/crons.php:31
3234
- #, php-format
3235
- #@ pmpro
3236
- msgid "Membership expired email sent to %s. "
3237
- msgstr ""
3238
-
3239
- #: scheduled/crons.php:74
3240
- #, php-format
3241
- #@ pmpro
3242
- msgid "Membership expiring email sent to %s. "
3243
- msgstr ""
3244
-
3245
- #: scheduled/crons.php:143
3246
- #, php-format
3247
- #@ pmpro
3248
- msgid "Credit card expiring email sent to %s. "
3249
- msgstr ""
3250
-
3251
- #: scheduled/crons.php:196
3252
- #, php-format
3253
- #@ pmpro
3254
- msgid "Trial ending email sent to %s. "
3255
- msgstr ""
3256
-
3257
- #: services/applydiscountcode.php:64
3258
- #, php-format
3259
- #@ pmpro
3260
- msgid "The %s code has been applied to your order. "
3261
- msgstr ""
3262
-
3263
- #: services/applydiscountcode.php:83
3264
- #, php-format
3265
- #@ pmpro
3266
- msgid "The <strong>%s</strong> code has been applied to your order."
3267
- msgstr ""
3268
-
3269
- #: services/authnet-silent-post.php:133
3270
- #@ pmpro
3271
- msgid "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information From Authorize.net"
3272
- msgstr ""
3273
-
3274
- #: services/stripe-webhook.php:176
3275
- #, php-format
3276
- #@ pmpro
3277
- msgid "%s has had their payment subscription cancelled by Stripe. Please check that this user's membership is cancelled on your site if it should be."
3278
- msgstr ""
3279
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Paid Memberships Pro v1.8.6.8.1\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2016-01-16 22:46-0500\n"
6
+ "PO-Revision-Date: 2016-01-16 23:43-0500\n"
7
+ "Last-Translator: Thomas Sjolshagen <thomas@eighty20results.com>\n"
8
+ "Language-Team: \n"
9
+ "Language: nb_NO\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
+ "X-Generator: Poedit 1.8.6\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
18
+ "X-Poedit-Basepath: ..\n"
19
+ "X-Textdomain-Support: yes\n"
20
+ "X-Poedit-SearchPath-0: .\n"
21
+ "X-Poedit-SearchPath-1: pages\n"
22
+ "X-Poedit-SearchPath-2: pages/levels.php\n"
23
+
24
+ # @ pmpro
25
+ #: adminpages/addons.php:5 adminpages/advancedsettings.php:5
26
+ #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
27
+ #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
28
+ #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
29
+ #: adminpages/orders-print.php:12 adminpages/orders.php:5
30
+ #: adminpages/pagesettings.php:4 adminpages/paymentsettings.php:5
31
+ #: includes/license.php:36
32
+ msgid "You do not have permissions to perform this action."
33
+ msgstr "Du har ikke rettigheter nok for denne aktiviteten."
34
+
35
+ # @ pmpro
36
+ #: adminpages/addons.php:64 adminpages/admin_header.php:170
37
+ #: includes/adminpages.php:52 includes/adminpages.php:146
38
+ msgid "Add Ons"
39
+ msgstr "Add Ons"
40
+
41
+ #: adminpages/addons.php:71
42
+ #, php-format
43
+ msgid "Last checked on %s at %s."
44
+ msgstr "Sist sjekket på %s ved %s."
45
+
46
+ #: adminpages/addons.php:72
47
+ msgid "Check Again"
48
+ msgstr "Sjekk igjen"
49
+
50
+ #: adminpages/addons.php:76 adminpages/orders.php:712
51
+ msgid "All"
52
+ msgstr "Alle"
53
+
54
+ #: adminpages/addons.php:77
55
+ msgid "Active"
56
+ msgstr "Aktive"
57
+
58
+ #: adminpages/addons.php:78
59
+ msgid "Inactive"
60
+ msgstr "Ikke avktive"
61
+
62
+ #: adminpages/addons.php:79
63
+ msgid "Update Available"
64
+ msgstr "Oppdatering er tilgjengelig"
65
+
66
+ #: adminpages/addons.php:80
67
+ msgid "Not Installed"
68
+ msgstr "Ikke innstallert"
69
+
70
+ #: adminpages/addons.php:93
71
+ msgid "Add On Name"
72
+ msgstr "Navnet på utvidelsen"
73
+
74
+ #: adminpages/addons.php:94
75
+ msgid "Type"
76
+ msgstr "Type"
77
+
78
+ # @ pmpro
79
+ #: adminpages/addons.php:95 adminpages/membershiplevels.php:300
80
+ msgid "Description"
81
+ msgstr "Beskrivelse"
82
+
83
+ #: adminpages/addons.php:118
84
+ msgid "No Add Ons found."
85
+ msgstr "Fant ikke utvidelser"
86
+
87
+ #: adminpages/addons.php:179 adminpages/addons.php:184
88
+ #: adminpages/addons.php:196
89
+ msgid "Install Now"
90
+ msgstr "Installer"
91
+
92
+ #: adminpages/addons.php:185 adminpages/addons.php:191
93
+ #: adminpages/addons.php:197 adminpages/addons.php:203
94
+ msgid "Download"
95
+ msgstr "Last ned"
96
+
97
+ #: adminpages/addons.php:190 adminpages/addons.php:202
98
+ msgid "Update License"
99
+ msgstr "Oppdater lisensnøkkelen"
100
+
101
+ #: adminpages/addons.php:208
102
+ #, php-format
103
+ msgid "Deactivate %s"
104
+ msgstr "Deaktiver %s"
105
+
106
+ #: adminpages/addons.php:208
107
+ msgid "Deactivate"
108
+ msgstr "Deaktiver"
109
+
110
+ #: adminpages/addons.php:212
111
+ #, php-format
112
+ msgid "Activate %s"
113
+ msgstr "Aktiver %s"
114
+
115
+ #: adminpages/addons.php:212
116
+ msgid "Activate"
117
+ msgstr "Aktiver"
118
+
119
+ #: adminpages/addons.php:213
120
+ #, php-format
121
+ msgid "Delete %s"
122
+ msgstr "Slett %s"
123
+
124
+ #: adminpages/addons.php:213
125
+ msgid "Delete"
126
+ msgstr "Slett"
127
+
128
+ #: adminpages/addons.php:223
129
+ msgid "PMPro Free"
130
+ msgstr "PMPro Free"
131
+
132
+ #: adminpages/addons.php:225
133
+ msgid "PMPro Core"
134
+ msgstr "PMPro Core"
135
+
136
+ #: adminpages/addons.php:227
137
+ msgid "PMPro Plus"
138
+ msgstr "PMPro Plus"
139
+
140
+ #: adminpages/addons.php:229
141
+ msgid "WordPress.org"
142
+ msgstr "WordPress.org"
143
+
144
+ #: adminpages/addons.php:231
145
+ msgid "N/A"
146
+ msgstr "Ikke tilgjengelig"
147
+
148
+ #: adminpages/addons.php:240
149
+ #, php-format
150
+ msgid "Version %s"
151
+ msgstr "Versjon %s"
152
+
153
+ #: adminpages/addons.php:245
154
+ #, php-format
155
+ msgid "By %s"
156
+ msgstr "Av %s"
157
+
158
+ #: adminpages/addons.php:252
159
+ #, php-format
160
+ msgid "More information about %s"
161
+ msgstr "Mer informasjon om %s"
162
+
163
+ #: adminpages/addons.php:254
164
+ msgid "View details"
165
+ msgstr "Vis detaljer"
166
+
167
+ #: adminpages/addons.php:259
168
+ msgid "Visit plugin site"
169
+ msgstr "Besøk tilleggets nettsted"
170
+
171
+ # @ pmpro
172
+ #: adminpages/admin_header.php:25
173
+ msgid "Add a membership level to get started."
174
+ msgstr "Legg til et medlemskap for å starte."
175
+
176
+ # @ pmpro
177
+ #: adminpages/admin_header.php:27
178
+ msgid "Set up the membership pages"
179
+ msgstr "Oppsett for medlemskap-sidene"
180
+
181
+ # @ pmpro
182
+ #: adminpages/admin_header.php:29
183
+ msgid "Set up your SSL certificate and payment gateway"
184
+ msgstr "Oppsett for SSL sertifikat og betalingsmåte"
185
+
186
+ # @ pmpro
187
+ #: adminpages/admin_header.php:38
188
+ msgid ""
189
+ "The billing details for some of your membership levels is not supported by "
190
+ "Stripe."
191
+ msgstr ""
192
+ "Faktureringsdetaljene for noen av dine medlemskapsnivåer er ikke støttet av "
193
+ "Stripe."
194
+
195
+ # @ pmpro
196
+ #: adminpages/admin_header.php:46
197
+ msgid ""
198
+ "The billing details for this level are not supported by Stripe. Please "
199
+ "review the notes in the Billing Details section below."
200
+ msgstr ""
201
+ "Faktureringsdetaljene for dette nivået er ikke støttet av Stripe. Les "
202
+ "igjennom informasjonen i Faktureringsdetaljene under."
203
+
204
+ # @ pmpro
205
+ #: adminpages/admin_header.php:50 adminpages/admin_header.php:70
206
+ #: adminpages/admin_header.php:90 adminpages/admin_header.php:111
207
+ msgid "The levels with issues are highlighted below."
208
+ msgstr "Nivåene med feil er markert under."
209
+
210
+ # @ pmpro
211
+ #: adminpages/admin_header.php:52 adminpages/admin_header.php:72
212
+ #: adminpages/admin_header.php:92 adminpages/admin_header.php:113
213
+ msgid "Please edit your levels"
214
+ msgstr "Rediger nivåene dine under"
215
+
216
+ # @ pmpro
217
+ #: adminpages/admin_header.php:58
218
+ msgid ""
219
+ "The billing details for some of your membership levels is not supported by "
220
+ "Payflow."
221
+ msgstr ""
222
+ "Faktureringsdetaljene for noen av dine medlemskapsnivåer er ikke støttet av "
223
+ "Payflow."
224
+
225
+ # @ pmpro
226
+ #: adminpages/admin_header.php:66
227
+ msgid ""
228
+ "The billing details for this level are not supported by Payflow. Please "
229
+ "review the notes in the Billing Details section below."
230
+ msgstr ""
231
+ "Faktureringsdetaljene for dette nivået er ikke støttet av Payflow. Les "
232
+ "igjennom informasjonen i Faktureringsdetaljene under."
233
+
234
+ # @ pmpro
235
+ #: adminpages/admin_header.php:78
236
+ msgid ""
237
+ "The billing details for some of your membership levels is not supported by "
238
+ "Braintree."
239
+ msgstr ""
240
+ "Faktureringsdetaljene for noen av dine medlemskapsnivåer er ikke støttet av "
241
+ "Braintree."
242
+
243
+ # @ pmpro
244
+ #: adminpages/admin_header.php:86
245
+ msgid ""
246
+ "The billing details for this level are not supported by Braintree. Please "
247
+ "review the notes in the Billing Details section below."
248
+ msgstr ""
249
+ "Faktureringsdetaljene for dette nivået er ikke støttet av Braintree. Les "
250
+ "igjennom informasjonen i Faktureringsdetaljene under."
251
+
252
+ # @ pmpro
253
+ #: adminpages/admin_header.php:98
254
+ msgid ""
255
+ "The billing details for some of your membership levels is not supported by "
256
+ "TwoCheckout."
257
+ msgstr ""
258
+ "Faktureringsdetaljene for noen av dine medlemskapsnivåer er ikke støttet av "
259
+ "TwoCheckout."
260
+
261
+ # @ pmpro
262
+ #: adminpages/admin_header.php:107
263
+ msgid ""
264
+ "The billing details for this level are not supported by 2Checkout. Please "
265
+ "review the notes in the Billing Details section below."
266
+ msgstr ""
267
+ "Faktureringsdetaljene for dette nivået er ikke støttet av 2Checkout. Les "
268
+ "igjennom informasjonen i Faktureringsdetaljene under."
269
+
270
+ # @ pmpro
271
+ #: adminpages/admin_header.php:127
272
+ msgid "Plugin Support"
273
+ msgstr "Plugin Support"
274
+
275
+ # @ pmpro
276
+ #: adminpages/admin_header.php:127
277
+ msgid "User Forum"
278
+ msgstr "Brukerforum"
279
+
280
+ # @ pmpro
281
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:618
282
+ #: adminpages/pagesettings.php:70 includes/adminpages.php:64
283
+ #: includes/adminpages.php:65 includes/adminpages.php:111
284
+ #: includes/metaboxes.php:131
285
+ msgid "Membership Levels"
286
+ msgstr "Medlemskapsnivå"
287
+
288
+ # @ pmpro
289
+ #: adminpages/admin_header.php:154 adminpages/pagesettings.php:92
290
+ msgid "Pages"
291
+ msgstr "Sider"
292
+
293
+ # @ pmpro
294
+ #: adminpages/admin_header.php:158
295
+ msgid "Payment Gateway &amp; SSL"
296
+ msgstr "Betalingsmåter &amp; SSL"
297
+
298
+ # @ pmpro
299
+ #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
300
+ #: shortcodes/pmpro_account.php:109
301
+ msgid "Email"
302
+ msgstr "E-post"
303
+
304
+ # @ pmpro
305
+ #: adminpages/admin_header.php:166
306
+ msgid "Advanced"
307
+ msgstr "Avansert"
308
+
309
+ # @ pmpro
310
+ #: adminpages/advancedsettings.php:43
311
+ msgid "Your advanced settings have been updated."
312
+ msgstr "Dine avanserte innstillinger har blitt oppdatert."
313
+
314
+ #: adminpages/advancedsettings.php:68
315
+ #, php-format
316
+ msgid ""
317
+ "This content is for !!levels!! members only. <a href=\"%s\">Register here</"
318
+ "a>."
319
+ msgstr ""
320
+ "Dette innholdet er kun for brukere som er medlemmer av følgende nivåer: !!"
321
+ "levels!!. <a href=\"%s\">Registrer deg her</a>."
322
+
323
+ #: adminpages/advancedsettings.php:73
324
+ #, php-format
325
+ msgid ""
326
+ "Please <a href=\"%s\">login</a> to view this content. (<a href=\"%s"
327
+ "\">Register here</a>.)"
328
+ msgstr ""
329
+ "Du må være <a href=\"%s\">pålogget</a> for å ha tilgang til dette innholdet. "
330
+ "(<a href=\"%s\">Registrer deg her</a>.)"
331
+
332
+ #: adminpages/advancedsettings.php:78
333
+ msgid ""
334
+ "This content is for members only. Visit the site and log in/register to read."
335
+ msgstr ""
336
+ "Dette innholdet er tilgjengelig til våre medlemmer. Du må enten være "
337
+ "pålogget som bruker, eller ha registrert deg for å tilgang."
338
+
339
+ # @ pmpro
340
+ #: adminpages/advancedsettings.php:88 includes/adminpages.php:51
341
+ #: includes/adminpages.php:139
342
+ msgid "Advanced Settings"
343
+ msgstr "Avanserte innstillinger"
344
+
345
+ # @ pmpro
346
+ #: adminpages/advancedsettings.php:94
347
+ msgid "Message for Logged-in Non-members"
348
+ msgstr "Melding til innloggede ikke-medlemmer"
349
+
350
+ # @ pmpro
351
+ #: adminpages/advancedsettings.php:98
352
+ msgid ""
353
+ "This message replaces the post content for non-members. Available variables"
354
+ msgstr ""
355
+ "Denne meldingen erstatter innholdet i innleggene for ikke-medlemmer. "
356
+ "Tilgjengelige variabler"
357
+
358
+ # @ pmpro
359
+ #: adminpages/advancedsettings.php:103
360
+ msgid "Message for Logged-out Users"
361
+ msgstr "Melding til utloggede brukere"
362
+
363
+ # @ pmpro
364
+ #: adminpages/advancedsettings.php:107
365
+ msgid "This message replaces the post content for logged-out visitors."
366
+ msgstr ""
367
+ "Denne meldingen erstatter innholdet i innleggene for utloggede besøkende"
368
+
369
+ # @ pmpro
370
+ #: adminpages/advancedsettings.php:112
371
+ msgid "Message for RSS Feed"
372
+ msgstr "Melding for RSS Feed"
373
+
374
+ # @ pmpro
375
+ #: adminpages/advancedsettings.php:116
376
+ msgid "This message replaces the post content in RSS feeds."
377
+ msgstr "Denne meldingen erstatter innholdet i innleggene i RSS Feeden"
378
+
379
+ #: adminpages/advancedsettings.php:122
380
+ msgid "Filter searches and archives?"
381
+ msgstr "Bruke filter for alle søk og arkivsider?"
382
+
383
+ #: adminpages/advancedsettings.php:126
384
+ msgid ""
385
+ "No - Non-members will see restricted posts/pages in searches and archives."
386
+ msgstr ""
387
+ "Nei - Brukere som ikke er medlemmer vil kunne få tilgang til innhold i "
388
+ "innlegg/sider ved søk eller i arkivene."
389
+
390
+ #: adminpages/advancedsettings.php:127
391
+ msgid ""
392
+ "Yes - Only members will see restricted posts/pages in searches and archives."
393
+ msgstr ""
394
+ "Ja - Kun brukere som også er medlemmer vil kunne få tilgang til innhold i "
395
+ "innlegg/sider ved søk eller i arkivene."
396
+
397
+ # @ pmpro
398
+ #: adminpages/advancedsettings.php:133
399
+ msgid "Show Excerpts to Non-Members?"
400
+ msgstr "Viser utdrag for ikke-medlemmer?"
401
+
402
+ # @ pmpro
403
+ #: adminpages/advancedsettings.php:137
404
+ msgid "No - Hide excerpts."
405
+ msgstr "Nei - Skjul utdragene."
406
+
407
+ # @ pmpro
408
+ #: adminpages/advancedsettings.php:138
409
+ msgid "Yes - Show excerpts."
410
+ msgstr "Ja - Vis utdragene."
411
+
412
+ #: adminpages/advancedsettings.php:144
413
+ msgid "Hide Ads From Members?"
414
+ msgstr "Skjule annonser fra alle medlemmer?"
415
+
416
+ # @ pmpro
417
+ #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
418
+ #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:667
419
+ #: adminpages/paymentsettings.php:210
420
+ #: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:110
421
+ msgid "No"
422
+ msgstr "Nei"
423
+
424
+ # @ pmpro
425
+ #: adminpages/advancedsettings.php:149
426
+ msgid "Hide Ads From All Members"
427
+ msgstr "Skjul reklamen for alle medlemmer"
428
+
429
+ # @ pmpro
430
+ #: adminpages/advancedsettings.php:150
431
+ msgid "Hide Ads From Certain Members"
432
+ msgstr "Skjul reklamen for visse medlemmer"
433
+
434
+ # @ pmpro
435
+ #: adminpages/advancedsettings.php:157
436
+ msgid "Ads from the following plugins will be automatically turned off"
437
+ msgstr "Reklamer fra følgende Plugins vil automatisk slås av"
438
+
439
+ # @ pmpro
440
+ #: adminpages/advancedsettings.php:158
441
+ msgid "To hide ads in your template code, use code like the following"
442
+ msgstr "For å skjule reklamer i template-koden, bruk kode som i det følgende"
443
+
444
+ # @ pmpro
445
+ #: adminpages/advancedsettings.php:169
446
+ msgid "Choose Levels to Hide Ads From"
447
+ msgstr "Velg nivåer for å skjule reklamer fra"
448
+
449
+ # @ pmpro
450
+ #: adminpages/advancedsettings.php:203
451
+ msgid "Redirect all traffic from registration page to /susbcription/?"
452
+ msgstr "Omdiriger all trafikk fra registreringssiden til /abonnement/?"
453
+
454
+ # @ pmpro
455
+ #: adminpages/advancedsettings.php:203
456
+ msgid "multisite only"
457
+ msgstr "kun for multisite"
458
+
459
+ # @ pmpro
460
+ #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:667
461
+ #: adminpages/paymentsettings.php:211
462
+ #: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:111
463
+ msgid "Yes"
464
+ msgstr "Ja"
465
+
466
+ # @ pmpro
467
+ #: adminpages/advancedsettings.php:215
468
+ msgid "Use reCAPTCHA?"
469
+ msgstr "Bruk reCAPTCHA?"
470
+
471
+ # @ pmpro
472
+ #: adminpages/advancedsettings.php:220
473
+ msgid "Yes - Free memberships only."
474
+ msgstr "Ja - Kun for gratis medlemskap."
475
+
476
+ # @ pmpro
477
+ #: adminpages/advancedsettings.php:221
478
+ msgid "Yes - All memberships."
479
+ msgstr "Ja - Alle medlemskap."
480
+
481
+ # @ pmpro
482
+ #: adminpages/advancedsettings.php:223
483
+ msgid "A free reCAPTCHA key is required."
484
+ msgstr "Det trengs en gratis reCAPTCHA nøkkel"
485
+
486
+ # @ pmpro
487
+ #: adminpages/advancedsettings.php:223
488
+ msgid "Click here to signup for reCAPTCHA"
489
+ msgstr "Klikk her for å registrere deg for reCAPTCHA"
490
+
491
+ # @ pmpro
492
+ #: adminpages/advancedsettings.php:229
493
+ msgid "reCAPTCHA Public Key"
494
+ msgstr "reCAPTCHA Offentlig nøkkel"
495
+
496
+ # @ pmpro
497
+ #: adminpages/advancedsettings.php:232
498
+ msgid "reCAPTCHA Private Key"
499
+ msgstr "reCAPTCHA Privat nøkkel"
500
+
501
+ # @ pmpro
502
+ #: adminpages/advancedsettings.php:238
503
+ msgid "Require Terms of Service on signups?"
504
+ msgstr "Er det krav til Brukerbetingelser ved registrering?"
505
+
506
+ # @ pmpro
507
+ #: adminpages/advancedsettings.php:245
508
+ msgid ""
509
+ "If yes, create a WordPress page containing your TOS agreement and assign it "
510
+ "using the dropdown above."
511
+ msgstr ""
512
+ "Hvis ja, så lag en egen Wordpress-side som inneholder Brukerbetingelsene og "
513
+ "tilknytt siden ved å bruke dropdown-menyen over."
514
+
515
+ #: adminpages/advancedsettings.php:285
516
+ msgid "selected"
517
+ msgstr "valgte"
518
+
519
+ # @ pmpro
520
+ #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:294
521
+ #: adminpages/paymentsettings.php:238
522
+ msgid "Save Settings"
523
+ msgstr "Lagre innstillingene"
524
+
525
+ # @ pmpro
526
+ #: adminpages/discountcodes.php:48
527
+ msgid "Discount code updated successfully."
528
+ msgstr "Rabattkoden er oppdatert."
529
+
530
+ # @ pmpro
531
+ #: adminpages/discountcodes.php:55
532
+ msgid "Error updating discount code. That code may already be in use."
533
+ msgstr "Feil ved oppdatering av rabattkoden. Koden kan allerede være i bruk."
534
+
535
+ # @ pmpro
536
+ #: adminpages/discountcodes.php:64
537
+ msgid "Discount code added successfully."
538
+ msgstr "Rabattkoden er lagt til."
539
+
540
+ # @ pmpro
541
+ #: adminpages/discountcodes.php:72
542
+ msgid "Error adding discount code. That code may already be in use."
543
+ msgstr "Feil ved innlegging av rabattkoden. Koden kan allerede være i bruk."
544
+
545
+ # @ pmpro
546
+ #: adminpages/discountcodes.php:197
547
+ #, php-format
548
+ msgid "Error saving values for the %s level."
549
+ msgstr "Feil ved lagring av verdier for %s nivået."
550
+
551
+ # @ pmpro
552
+ #: adminpages/discountcodes.php:205
553
+ msgid "There were errors updating the level values: "
554
+ msgstr "Det oppsto feil ved oppdatering av nivå-verdiene:"
555
+
556
+ # @ pmpro
557
+ #: adminpages/discountcodes.php:238
558
+ #, php-format
559
+ msgid "Code %s deleted successfully."
560
+ msgstr "Vi har slettet %s"
561
+
562
+ # @ pmpro
563
+ #: adminpages/discountcodes.php:243
564
+ msgid ""
565
+ "Error deleting discount code. The code was only partially deleted. Please "
566
+ "try again."
567
+ msgstr ""
568
+ "Det oppsto feil ved sletting av rabattkoden. Koden ble bare delvis slettet. "
569
+ "Prøv igjen."
570
+
571
+ # @ pmpro
572
+ #: adminpages/discountcodes.php:249
573
+ msgid "Error deleting code. Please try again."
574
+ msgstr "Feil ved sletting av koden. Prøv igjen."
575
+
576
+ # @ pmpro
577
+ #: adminpages/discountcodes.php:255
578
+ msgid "Code not found."
579
+ msgstr "Koden ble ikke funnet."
580
+
581
+ # @ pmpro
582
+ #: adminpages/discountcodes.php:268
583
+ msgid "Edit Discount Code"
584
+ msgstr "Rediger rabattkoden"
585
+
586
+ # @ pmpro
587
+ #: adminpages/discountcodes.php:270 adminpages/discountcodes.php:558
588
+ msgid "Add New Discount Code"
589
+ msgstr "Legg til ny rabattkode"
590
+
591
+ # @ pmpro
592
+ #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
593
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:636
594
+ #: adminpages/memberslist.php:164 adminpages/orders.php:937
595
+ #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
596
+ #: adminpages/templates/orders-print.php:75
597
+ msgid "ID"
598
+ msgstr "ID"
599
+
600
+ # @ pmpro
601
+ #: adminpages/discountcodes.php:311 adminpages/orders.php:333
602
+ msgid "This will be generated when you save."
603
+ msgstr "Dette vil bli generert når du lagrer."
604
+
605
+ # @ pmpro
606
+ #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
607
+ #: adminpages/orders.php:337 adminpages/orders.php:938
608
+ msgid "Code"
609
+ msgstr "Kode"
610
+
611
+ # @ pmpro
612
+ #: adminpages/discountcodes.php:353
613
+ msgid "Start Date"
614
+ msgstr "Startdato"
615
+
616
+ # @ pmpro
617
+ #: adminpages/discountcodes.php:371
618
+ #: classes/gateways/class.pmprogateway_braintree.php:323
619
+ #: classes/gateways/class.pmprogateway_stripe.php:495 pages/billing.php:265
620
+ #: pages/checkout.php:575
621
+ msgid "Expiration Date"
622
+ msgstr "Utløpsdato"
623
+
624
+ # @ pmpro
625
+ #: adminpages/discountcodes.php:389 adminpages/discountcodes.php:590
626
+ msgid "Uses"
627
+ msgstr "Ganger å bruke"
628
+
629
+ # @ pmpro
630
+ #: adminpages/discountcodes.php:392
631
+ msgid "Leave blank for unlimited uses."
632
+ msgstr "La stå åpen for ubegrenset bruk."
633
+
634
+ #: adminpages/discountcodes.php:401
635
+ msgid "Which Levels Will This Code Apply To?"
636
+ msgstr "Hvilke nivåer vil denne koden gjelde for?"
637
+
638
+ # @ pmpro
639
+ #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:341
640
+ msgid "Initial Payment"
641
+ msgstr "Pris"
642
+
643
+ # @ pmpro
644
+ #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:352
645
+ msgid "The initial amount collected at registration."
646
+ msgstr "Den første summen innbetales ved registrering."
647
+
648
+ # @ pmpro
649
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:356
650
+ msgid "Recurring Subscription"
651
+ msgstr "Abonnement"
652
+
653
+ # @ pmpro
654
+ #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:357
655
+ msgid "Check if this level has a recurring subscription payment."
656
+ msgstr "Kryss av dersom nivået har regelmessige abonnementsinnbetalinger."
657
+
658
+ # @ pmpro
659
+ #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:361
660
+ msgid "Billing Amount"
661
+ msgstr "Faktureringsbeløp"
662
+
663
+ # @ pmpro
664
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
665
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
666
+ #: classes/gateways/class.pmprogateway_stripe.php:562
667
+ msgid "Day(s)"
668
+ msgstr "Dag(er)"
669
+
670
+ # @ pmpro
671
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
672
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
673
+ #: classes/gateways/class.pmprogateway_stripe.php:562
674
+ msgid "Week(s)"
675
+ msgstr "Uke(r)"
676
+
677
+ # @ pmpro
678
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
679
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
680
+ #: classes/gateways/class.pmprogateway_stripe.php:562
681
+ msgid "Month(s)"
682
+ msgstr "Måned(er)"
683
+
684
+ # @ pmpro
685
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
686
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
687
+ #: classes/gateways/class.pmprogateway_stripe.php:562
688
+ msgid "Year(s)"
689
+ msgstr "År"
690
+
691
+ # @ pmpro
692
+ #: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:385
693
+ msgid "The amount to be billed one cycle after the initial payment."
694
+ msgstr "Beløpet som skal faktureres en syklus etter første betaling."
695
+
696
+ # @ pmpro
697
+ #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:403
698
+ msgid "Billing Cycle Limit"
699
+ msgstr "Grense for faktureringssyklus"
700
+
701
+ # @ pmpro
702
+ #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:407
703
+ msgid ""
704
+ "The <strong>total</strong> number of recurring billing cycles for this "
705
+ "level, including the trial period (if applicable) but not including the "
706
+ "initial payment. Set to zero if membership is indefinite."
707
+ msgstr ""
708
+ "Det <strong>totale</strong> antall tilbakevendende faktureringssykluser for "
709
+ "dette nivået, inkludert prøveperioden (hvis aktuelt), men ekslusdert den "
710
+ "første betalingen. Satt til null dersom medlemskapet er for ubestemt tid."
711
+
712
+ # @ pmpro
713
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:416
714
+ msgid "Custom Trial"
715
+ msgstr "Prøve-periode"
716
+
717
+ # @ pmpro
718
+ #: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:418
719
+ msgid "Check to add a custom trial period."
720
+ msgstr "Kryss av for å legge til en egen prøveperiode."
721
+
722
+ # @ pmpro
723
+ #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:427
724
+ msgid "Trial Billing Amount"
725
+ msgstr "Betalingsbeløp for prøveperioden"
726
+
727
+ # @ pmpro
728
+ #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:438
729
+ msgid "for the first"
730
+ msgstr "for den første"
731
+
732
+ # @ pmpro
733
+ #: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:440
734
+ msgid "subscription payments"
735
+ msgstr "abonnementsbetalinger"
736
+
737
+ # @ pmpro
738
+ #: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:469
739
+ msgid "Membership Expiration"
740
+ msgstr "Medlemskapsutløp"
741
+
742
+ # @ pmpro
743
+ #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:470
744
+ msgid "Check this to set when membership access expires."
745
+ msgstr "Kryss av for å definere når medlemskapet utløper"
746
+
747
+ # @ pmpro
748
+ #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:474
749
+ msgid "Expires In"
750
+ msgstr "Utløper om"
751
+
752
+ # @ pmpro
753
+ #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:487
754
+ msgid ""
755
+ "Set the duration of membership access. Note that the any future payments "
756
+ "(recurring subscription, if any) will be cancelled when the membership "
757
+ "expires."
758
+ msgstr ""
759
+ "Angi varigheten av medlemskapet. Vær oppmerksom på at fremtidige "
760
+ "utbetalinger (repeterende abonnement, osv) vil bli slettet når medlemskapet "
761
+ "utløper."
762
+
763
+ # @ pmpro
764
+ #: adminpages/discountcodes.php:557
765
+ msgid "Memberships Discount Codes"
766
+ msgstr "Rabattkoder"
767
+
768
+ # @ pmpro
769
+ #: adminpages/discountcodes.php:567
770
+ msgid "Search Discount Codes"
771
+ msgstr "Søk i rabattkodene"
772
+
773
+ # @ pmpro
774
+ #: adminpages/discountcodes.php:570
775
+ msgid "Search"
776
+ msgstr "Søk"
777
+
778
+ # @ pmpro
779
+ #: adminpages/discountcodes.php:588
780
+ msgid "Starts"
781
+ msgstr "Begynner"
782
+
783
+ # @ pmpro
784
+ #: adminpages/discountcodes.php:589 adminpages/memberslist.php:179
785
+ #: adminpages/reports/login.php:163 includes/profile.php:107
786
+ msgid "Expires"
787
+ msgstr "Utløper"
788
+
789
+ # @ pmpro
790
+ #: adminpages/discountcodes.php:591
791
+ msgid "Levels"
792
+ msgstr "Nivåer"
793
+
794
+ # @ pmpro
795
+ #: adminpages/discountcodes.php:603
796
+ msgid ""
797
+ "Discount codes allow you to offer your memberships at discounted prices to "
798
+ "select customers."
799
+ msgstr ""
800
+ "Rabattkoder er noe du kan tilby for å redusere medlemsprisen for enkelte "
801
+ "kunder."
802
+
803
+ # @ pmpro
804
+ #: adminpages/discountcodes.php:603
805
+ msgid "Create your first discount code now"
806
+ msgstr "Opprett din først rabattkode"
807
+
808
+ # @ pmpro
809
+ #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:669
810
+ #: adminpages/orders.php:1021
811
+ msgid "edit"
812
+ msgstr "rediger"
813
+
814
+ # @ pmpro
815
+ #: adminpages/discountcodes.php:652
816
+ #, php-format
817
+ msgid ""
818
+ "Are you sure you want to delete the %s discount code? The subscriptions for "
819
+ "existing users will not change, but new users will not be able to use this "
820
+ "code anymore."
821
+ msgstr ""
822
+ "Er du sikker på at du vil slette rabattkoden for %s? Innbetalingsbeløp for "
823
+ "eksisterende medlemmers vill ikke endres, men nye medlemmer vil ikke kunne "
824
+ "benytte seg av denne rabattkoden."
825
+
826
+ # @ pmpro
827
+ #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:669
828
+ #: adminpages/orders.php:1027
829
+ msgid "delete"
830
+ msgstr "slett"
831
+
832
+ # @ pmpro
833
+ #: adminpages/emailsettings.php:69 includes/adminpages.php:50
834
+ #: includes/adminpages.php:132
835
+ msgid "Email Settings"
836
+ msgstr "Innstillinger for e-post"
837
+
838
+ # @ pmpro
839
+ #: adminpages/emailsettings.php:70
840
+ msgid ""
841
+ "By default, system generated emails are sent from "
842
+ "<em><strong>wordpress@yourdomain.com</strong></em>. You can update this from "
843
+ "address using the fields below."
844
+ msgstr ""
845
+ "Normalt sendes automatiske e-postmeldinger fra <em>wordpress@yourdomain.com</"
846
+ "em>. Du kan endre denne “fra” adressen ved å fylle ut feltene under."
847
+
848
+ # @ pmpro
849
+ #: adminpages/emailsettings.php:72
850
+ msgid ""
851
+ "To modify the appearance of system generated emails, add the files "
852
+ "<em>email_header.html</em> and <em>email_footer.html</em> to your theme's "
853
+ "directory. This will modify both the WordPress default messages as well as "
854
+ "messages generated by Paid Memberships Pro. <a title=\"Paid Memberships Pro "
855
+ "- Member Communications\" target=\"_blank\" href=\"http://www."
856
+ "paidmembershipspro.com/documentation/member-communications/\">Click here to "
857
+ "learn more about Paid Memberships Pro emails</a>."
858
+ msgstr ""
859
+ "Hvis du vil endre utseendet på genererte e-postmeldinger, pass på å legge "
860
+ "filene <em>email_header.html</em>, og <em>email_footer.html</em> til "
861
+ "katalogen for det aktive temaet ditt. Resultatet av å inkludere disse filene "
862
+ "er at både standardmeldinger fra WordPress, meldinger som produseres fra "
863
+ "Paid Memberships Pro vil endre seg. <a title=“Paid Memberships Pro - Member "
864
+ "Communications” target=“_blank” href=“http://www.paidmembershipspro.com/"
865
+ "documentation/member-communications/“>Lær mer om e-postmeldinger fra Paid "
866
+ "Memberships Pro.</a>"
867
+
868
+ # @ pmpro
869
+ #: adminpages/emailsettings.php:78
870
+ msgid "From Email"
871
+ msgstr "E-postadressen til avsender:"
872
+
873
+ # @ pmpro
874
+ #: adminpages/emailsettings.php:86
875
+ msgid "From Name"
876
+ msgstr "Navnet på e-postavsender:"
877
+
878
+ #: adminpages/emailsettings.php:94
879
+ msgid "Only Filter PMPro Emails?"
880
+ msgstr "Kun behandle e-post for PMPro?"
881
+
882
+ #: adminpages/emailsettings.php:98
883
+ msgid "If unchecked, all emails from \"WordPress &lt;"
884
+ msgstr "Dersom denne ikke er krysset av sendes alle email fra “WordPress &lt;"
885
+
886
+ # @ pmpro
887
+ #: adminpages/emailsettings.php:115
888
+ msgid "Send the site admin emails"
889
+ msgstr "Send ut nettstedets administrative e-postmeldinger"
890
+
891
+ # @ pmpro
892
+ #: adminpages/emailsettings.php:121
893
+ msgid "Checkout"
894
+ msgstr "Betaling"
895
+
896
+ # @ pmpro
897
+ #: adminpages/emailsettings.php:125
898
+ msgid "when a member checks out."
899
+ msgstr "når ett medlem betaler"
900
+
901
+ # @ pmpro
902
+ #: adminpages/emailsettings.php:130
903
+ msgid "Admin Changes"
904
+ msgstr "Administrative endringer"
905
+
906
+ # @ pmpro
907
+ #: adminpages/emailsettings.php:134
908
+ msgid "when an admin changes a user's membership level through the dashboard."
909
+ msgstr ""
910
+ "når en administrator endrer brukerens medlemsnivå ved hjelp av dashbordet."
911
+
912
+ # @ pmpro
913
+ #: adminpages/emailsettings.php:139
914
+ msgid "Cancellation"
915
+ msgstr "Avbestilling"
916
+
917
+ # @ pmpro
918
+ #: adminpages/emailsettings.php:143
919
+ msgid "when a user cancels his or her account."
920
+ msgstr "Når en bruker avbestiller kontoen sin"
921
+
922
+ # @ pmpro
923
+ #: adminpages/emailsettings.php:148
924
+ msgid "Bill Updates"
925
+ msgstr "Betalingsoppdateringer"
926
+
927
+ # @ pmpro
928
+ #: adminpages/emailsettings.php:152
929
+ msgid "when a user updates his or her billing information."
930
+ msgstr "når en bruker pppdater fakturaadresse og kredittkortinformasjon."
931
+
932
+ # @ pmpro
933
+ #: adminpages/emailsettings.php:158
934
+ msgid "Send members emails"
935
+ msgstr "Send e-post til medlemmer"
936
+
937
+ # @ pmpro
938
+ #: adminpages/emailsettings.php:164
939
+ msgid "New Users"
940
+ msgstr "Nye brukere"
941
+
942
+ # @ pmpro
943
+ #: adminpages/emailsettings.php:168
944
+ msgid ""
945
+ "Default WP notification email. (Recommended: Leave unchecked. Members will "
946
+ "still get an email confirmation from PMPro after checkout.)"
947
+ msgstr ""
948
+ "Standard e-post fra WP. (Vi anbefaler at du lar denne forbli blank/ikke "
949
+ "avsjekket. Nye medlemmer vil fortsatt motta bekreftelse via e-post fra PMPro "
950
+ "etter innbetalingen.)"
951
+
952
+ # @ pmpro
953
+ #: adminpages/membershiplevels.php:120
954
+ msgid "Membership level updated successfully."
955
+ msgstr "Vellykket oppgradering av medlemsnivået."
956
+
957
+ # @ pmpro
958
+ #: adminpages/membershiplevels.php:126
959
+ msgid "Error updating membership level."
960
+ msgstr "Feil ved oppdatering av medlemsnivået."
961
+
962
+ # @ pmpro
963
+ #: adminpages/membershiplevels.php:143
964
+ msgid "Membership level added successfully."
965
+ msgstr "Nytt medlemsskapsnivå lagt til."
966
+
967
+ # @ pmpro
968
+ #: adminpages/membershiplevels.php:148
969
+ msgid "Error adding membership level."
970
+ msgstr "Det oppsto en feil ved opprettelsen av medlemsnivå."
971
+
972
+ # @ pmpro
973
+ #: adminpages/membershiplevels.php:183
974
+ #, php-format
975
+ msgid ""
976
+ "There was an error canceling the subscription for user with ID=%d. You will "
977
+ "want to check your payment gateway to see if their subscription is still "
978
+ "active."
979
+ msgstr ""
980
+ "Det oppstod en feil ved avsluttingen av abonnementet til brukeren med ID ="
981
+ "%d. Du må sjekke kontoen din betalingsformidlerportalen du bruker for å "
982
+ "bekrefte hvorvidt denne brukerens abonnement fortsatt er aktivt."
983
+
984
+ # @ pmpro
985
+ #: adminpages/membershiplevels.php:186
986
+ msgid "Last Invoice"
987
+ msgstr "Siste faktura"
988
+
989
+ # @ pmpro
990
+ #: adminpages/membershiplevels.php:200
991
+ msgid "Membership level deleted successfully."
992
+ msgstr "Medlemsnivået har blitt slettet."
993
+
994
+ # @ pmpro
995
+ #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:211
996
+ msgid "Error deleting membership level."
997
+ msgstr "Feil ved sletting av medlemsnivået."
998
+
999
+ # @ pmpro
1000
+ #: adminpages/membershiplevels.php:226
1001
+ msgid "Edit Membership Level"
1002
+ msgstr "Redigering av medlemsnivået"
1003
+
1004
+ # @ pmpro
1005
+ #: adminpages/membershiplevels.php:228
1006
+ msgid "Add New Membership Level"
1007
+ msgstr "Legg til nytt medlemsskapsnivå"
1008
+
1009
+ # @ pmpro
1010
+ #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:637
1011
+ #: adminpages/reports/login.php:160
1012
+ msgid "Name"
1013
+ msgstr "Navn"
1014
+
1015
+ # @ pmpro
1016
+ #: adminpages/membershiplevels.php:318
1017
+ msgid "Confirmation Message"
1018
+ msgstr "Bekreftelse"
1019
+
1020
+ # @ pmpro
1021
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:638
1022
+ msgid "Billing Details"
1023
+ msgstr "Fakturadetaljer"
1024
+
1025
+ # @ pmpro
1026
+ #: adminpages/membershiplevels.php:372
1027
+ #: classes/gateways/class.pmprogateway_stripe.php:660
1028
+ msgid "per"
1029
+ msgstr "per"
1030
+
1031
+ # @ pmpro
1032
+ #: adminpages/membershiplevels.php:387
1033
+ msgid ""
1034
+ "Stripe integration currently only supports billing periods of \"Week\", "
1035
+ "\"Month\" or \"Year\"."
1036
+ msgstr ""
1037
+ "Stripe som betalingsbehandler støtter kun “Uker”, “Måneder” eller “År” som "
1038
+ "abonnementsperiodeverdier."
1039
+
1040
+ # @ pmpro
1041
+ #: adminpages/membershiplevels.php:389
1042
+ msgid ""
1043
+ "Braintree integration currently only supports billing periods of \"Month\" "
1044
+ "or \"Year\"."
1045
+ msgstr ""
1046
+ "Braintree som betalingsbehandler støtter kun “Måneder” eller “År” som "
1047
+ "abonnementsperiodeverdier."
1048
+
1049
+ # @ pmpro
1050
+ #: adminpages/membershiplevels.php:391
1051
+ msgid ""
1052
+ "Payflow integration currently only supports billing frequencies of 1 and "
1053
+ "billing periods of \"Week\", \"Month\" or \"Year\"."
1054
+ msgstr ""
1055
+ "PayPal Payflow som betalingsbehandler støtter kun en betalingsfrekvens "
1056
+ "bestående av verdien 1, og av abonnementsperiodeverdier bestående av “uker”, "
1057
+ "“måneder” og “år”."
1058
+
1059
+ # @ pmpro
1060
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1061
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
1062
+ #: classes/gateways/class.pmprogateway_paypal.php:118
1063
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1064
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1065
+ msgid "Note"
1066
+ msgstr "Notat"
1067
+
1068
+ # @ pmpro
1069
+ #: adminpages/membershiplevels.php:395
1070
+ msgid ""
1071
+ "After saving this level, make note of the ID and create a \"Plan\" in your "
1072
+ "Braintree dashboard with the same settings and the \"Plan ID\" set to "
1073
+ "<em>pmpro_#</em>, where # is the level ID."
1074
+ msgstr ""
1075
+ "Etter att du har lagret dette medlemsnivået, ta notis av ID nummeret og "
1076
+ "opprett en “Plant” i dashboardet for Braintree. Her må du bruke de samme "
1077
+ "innstillingene samt sette “Plan ID”et til <em>pmpro_#</em>, der #-tegnet "
1078
+ "representerer det ID nummeret du noterte deg."
1079
+
1080
+ # @ pmpro
1081
+ #: adminpages/membershiplevels.php:397
1082
+ msgid ""
1083
+ "You will need to create a \"Plan\" in your Braintree dashboard with the same "
1084
+ "settings and the \"Plan ID\" set to"
1085
+ msgstr ""
1086
+ "Du må opprette en “Plan” i kontrollpanelet til Braintree der du bruker de "
1087
+ "samme innstillingene og setter “Plan ID”et til "
1088
+
1089
+ # @ pmpro
1090
+ #: adminpages/membershiplevels.php:409
1091
+ msgid ""
1092
+ "Stripe integration currently does not support billing limits. You can still "
1093
+ "set an expiration date below."
1094
+ msgstr ""
1095
+ "Stripe som betalingsbehandler støtter per tiden ikke begrensinger i hvor "
1096
+ "lenge ett abonnnement kan løpe. På tross av dette kan du fortsatt sette en "
1097
+ "utløpsdato i feltet nedenfor."
1098
+
1099
+ # @ pmpro
1100
+ #: adminpages/membershiplevels.php:421
1101
+ msgid ""
1102
+ "2Checkout integration does not support custom trials. You can do one period "
1103
+ "trials by setting an initial payment different from the billing amount."
1104
+ msgstr ""
1105
+ "2Checkout som betalingsbehandler støtter for øyeblikket spesialtilpassede "
1106
+ "prøvetider. Du kan konfigurere en singel prøveperiode ved å konfigurere ett "
1107
+ "innledende betalingsbeløp som er annerledes enn hva den normale "
1108
+ "innbetalingen kommer til å være."
1109
+
1110
+ # @ pmpro
1111
+ #: adminpages/membershiplevels.php:443
1112
+ msgid ""
1113
+ "Stripe integration currently does not support trial amounts greater than $0."
1114
+ msgstr ""
1115
+ "Stripe som betalingsbehandler støtter foreløpig ikke å ta betalt for "
1116
+ "prøveperioder."
1117
+
1118
+ # @ pmpro
1119
+ #: adminpages/membershiplevels.php:447
1120
+ msgid ""
1121
+ "Braintree integration currently does not support trial amounts greater than "
1122
+ "$0."
1123
+ msgstr ""
1124
+ "Braintree som betalingsbehandler støtter foreløpig ikke å ta betalt for "
1125
+ "prøveperioder."
1126
+
1127
+ # @ pmpro
1128
+ #: adminpages/membershiplevels.php:451
1129
+ msgid ""
1130
+ "Payflow integration currently does not support trial amounts greater than $0."
1131
+ msgstr ""
1132
+ "PayPal Payflow som betalingsbehandler støtter foreløpig ikke å ta betalt for "
1133
+ "prøveperioder."
1134
+
1135
+ # @ pmpro
1136
+ #: adminpages/membershiplevels.php:460
1137
+ msgid "Other Settings"
1138
+ msgstr "Andre innstillinger"
1139
+
1140
+ # @ pmpro
1141
+ #: adminpages/membershiplevels.php:464
1142
+ msgid "Disable New Signups"
1143
+ msgstr "Ikke tillat nye registreringer"
1144
+
1145
+ # @ pmpro
1146
+ #: adminpages/membershiplevels.php:465
1147
+ msgid ""
1148
+ "Check to hide this level from the membership levels page and disable "
1149
+ "registration."
1150
+ msgstr ""
1151
+ "Kryss av for å gjemme dette medlemsnivået fra nivåsiden, samt å deaktivere "
1152
+ "registrering for nivået."
1153
+
1154
+ # @ pmpro
1155
+ #: adminpages/membershiplevels.php:495
1156
+ msgid "Content Settings"
1157
+ msgstr "Innstillinger for innhold"
1158
+
1159
+ # @ pmpro
1160
+ #: adminpages/membershiplevels.php:499
1161
+ msgid "Categories"
1162
+ msgstr "Kategorier"
1163
+
1164
+ #: adminpages/membershiplevels.php:516
1165
+ msgid "Save Level"
1166
+ msgstr "Lagre nivået"
1167
+
1168
+ # @ pmpro
1169
+ #: adminpages/membershiplevels.php:517 adminpages/orders.php:633
1170
+ #: pages/billing.php:344 pages/cancel.php:71 shortcodes/pmpro_account.php:73
1171
+ msgid "Cancel"
1172
+ msgstr "Avbryt"
1173
+
1174
+ # @ pmpro
1175
+ #: adminpages/membershiplevels.php:618
1176
+ msgid "Add New Level"
1177
+ msgstr "Legge til nytt medlemsskapsnivå"
1178
+
1179
+ # @ pmpro
1180
+ #: adminpages/membershiplevels.php:621 adminpages/membershiplevels.php:624
1181
+ msgid "Search Levels"
1182
+ msgstr "Søke i medlemsnivåer"
1183
+
1184
+ #: adminpages/membershiplevels.php:630
1185
+ msgid "Drag and drop membership levels to reorder them on the Levels page."
1186
+ msgstr ""
1187
+ "Bruk “dra og slipp” prinsippet for å endre rekkefølgen på nivåene på "
1188
+ "Medlemsnivåsiden."
1189
+
1190
+ # @ pmpro
1191
+ #: adminpages/membershiplevels.php:639 pages/cancel.php:53
1192
+ #: pages/confirmation.php:83 pages/invoice.php:70
1193
+ #: shortcodes/pmpro_account.php:46
1194
+ msgid "Expiration"
1195
+ msgstr "Utløpsdato"
1196
+
1197
+ # @ pmpro
1198
+ #: adminpages/membershiplevels.php:640
1199
+ msgid "Allow Signups"
1200
+ msgstr "Tillat nye registreringer"
1201
+
1202
+ # @ pmpro
1203
+ #: adminpages/membershiplevels.php:655
1204
+ msgid "FREE"
1205
+ msgstr "GRATIS"
1206
+
1207
+ # @ pmpro
1208
+ #: adminpages/membershiplevels.php:664
1209
+ msgid "After"
1210
+ msgstr "etter"
1211
+
1212
+ # @ pmpro
1213
+ #: adminpages/membershiplevels.php:669 adminpages/orders.php:1024
1214
+ msgid "copy"
1215
+ msgstr "kopier"
1216
+
1217
+ # @ pmpro
1218
+ #: adminpages/membershiplevels.php:669
1219
+ #, php-format
1220
+ msgid ""
1221
+ "Are you sure you want to delete membership level %s? All subscriptions will "
1222
+ "be cancelled."
1223
+ msgstr ""
1224
+ "Er du sikker på at du vil slette medlemsskapsnivå %s? Alle eksisterende "
1225
+ "abonnement vil bli avsluttet."
1226
+
1227
+ # @ pmpro
1228
+ #: adminpages/memberslist.php:25 includes/adminpages.php:53
1229
+ #: includes/adminpages.php:153
1230
+ msgid "Members List"
1231
+ msgstr "Medlemsliste"
1232
+
1233
+ # @ pmpro
1234
+ #: adminpages/memberslist.php:26 adminpages/orders.php:698
1235
+ msgid "Export to CSV"
1236
+ msgstr "Eksporter som kommaseparerte verdier (CSV)"
1237
+
1238
+ # @ pmpro
1239
+ #: adminpages/memberslist.php:30
1240
+ msgid "Show"
1241
+ msgstr "Vis"
1242
+
1243
+ # @ pmpro
1244
+ #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1245
+ #: adminpages/reports/memberships.php:290 adminpages/reports/sales.php:225
1246
+ msgid "All Levels"
1247
+ msgstr "Alle nivåer"
1248
+
1249
+ #: adminpages/memberslist.php:42
1250
+ msgid "Cancelled Members"
1251
+ msgstr "Avburtte medlemsskap"
1252
+
1253
+ #: adminpages/memberslist.php:43
1254
+ msgid "Expired Members"
1255
+ msgstr "Utløpte medlemsskap"
1256
+
1257
+ # @ pmpro
1258
+ #: adminpages/memberslist.php:44
1259
+ msgid "Old Members"
1260
+ msgstr "Tidligere medlemmer"
1261
+
1262
+ # @ pmpro
1263
+ #: adminpages/memberslist.php:49 adminpages/memberslist.php:52
1264
+ msgid "Search Members"
1265
+ msgstr "Søk i Medlemmer"
1266
+
1267
+ # @ pmpro
1268
+ #: adminpages/memberslist.php:156
1269
+ #, php-format
1270
+ msgid "%d members found."
1271
+ msgstr "funnet %d medlemmer"
1272
+
1273
+ # @ pmpro
1274
+ #: adminpages/memberslist.php:165 pages/checkout.php:184
1275
+ #: shortcodes/pmpro_account.php:108
1276
+ msgid "Username"
1277
+ msgstr "Brukernavn"
1278
+
1279
+ # @ pmpro
1280
+ #: adminpages/memberslist.php:166
1281
+ msgid "First&nbsp;Name"
1282
+ msgstr "Fornavn"
1283
+
1284
+ # @ pmpro
1285
+ #: adminpages/memberslist.php:167
1286
+ msgid "Last&nbsp;Name"
1287
+ msgstr "Etternavn"
1288
+
1289
+ # @ pmpro
1290
+ #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:319
1291
+ #: pages/confirmation.php:61 pages/invoice.php:48
1292
+ msgid "Billing Address"
1293
+ msgstr "Fakturadresse"
1294
+
1295
+ # @ pmpro
1296
+ #: adminpages/memberslist.php:171 adminpages/reports/login.php:161
1297
+ #: classes/gateways/class.pmprogateway_authorizenet.php:303
1298
+ msgid "Membership"
1299
+ msgstr "Medlemskap"
1300
+
1301
+ # @ pmpro
1302
+ #: adminpages/memberslist.php:172
1303
+ msgid "Fee"
1304
+ msgstr "Gebyr"
1305
+
1306
+ # @ pmpro
1307
+ #: adminpages/memberslist.php:173 adminpages/reports/login.php:162
1308
+ msgid "Joined"
1309
+ msgstr "Påmeldt"
1310
+
1311
+ # @ pmpro
1312
+ #: adminpages/memberslist.php:177
1313
+ msgid "Ended"
1314
+ msgstr "Avsluttet"
1315
+
1316
+ # @ pmpro
1317
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1318
+ msgid "No members found."
1319
+ msgstr "Fant ingen medlemmer."
1320
+
1321
+ # @ pmpro
1322
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:228
1323
+ msgid "Search all levels"
1324
+ msgstr "Søk alle nivåer"
1325
+
1326
+ #: adminpages/orders.php:155
1327
+ msgid "Invoice emailed successfully."
1328
+ msgstr "Fakturaen ble sendt med e-post"
1329
+
1330
+ #: adminpages/orders.php:160
1331
+ msgid "Error emailing invoice."
1332
+ msgstr "Feil ved sending av fakturaen via e-post."
1333
+
1334
+ # @ pmpro
1335
+ #: adminpages/orders.php:175
1336
+ msgid "Order deleted successfully."
1337
+ msgstr "Bestillingen ble slettet."
1338
+
1339
+ # @ pmpro
1340
+ #: adminpages/orders.php:180
1341
+ msgid "Error deleting order."
1342
+ msgstr "Feil ved sletting av bestillingen."
1343
+
1344
+ # @ pmpro
1345
+ #: adminpages/orders.php:270
1346
+ msgid "Order saved successfully."
1347
+ msgstr "Bestillingen ble lagret."
1348
+
1349
+ # @ pmpro
1350
+ #: adminpages/orders.php:275
1351
+ msgid "Error updating order timestamp."
1352
+ msgstr "Feil oppstod når vi oppdaterte tidspunktet for bestillingen."
1353
+
1354
+ # @ pmpro
1355
+ #: adminpages/orders.php:281
1356
+ msgid "Error saving order."
1357
+ msgstr "Feil oppstod mens vi forsøkte å lagre bestillingen."
1358
+
1359
+ # @ pmpro
1360
+ #: adminpages/orders.php:317
1361
+ msgid "Order"
1362
+ msgstr "Bestilling"
1363
+
1364
+ # @ pmpro
1365
+ #: adminpages/orders.php:319
1366
+ msgid "New Order"
1367
+ msgstr "Ny bestilling"
1368
+
1369
+ # @ pmpro
1370
+ #: adminpages/orders.php:342
1371
+ msgid "Randomly generated for you."
1372
+ msgstr "Tilfeldig generert verdi"
1373
+
1374
+ # @ pmpro
1375
+ #: adminpages/orders.php:347
1376
+ msgid "User ID"
1377
+ msgstr "Bruker ID"
1378
+
1379
+ # @ pmpro
1380
+ #: adminpages/orders.php:356
1381
+ msgid "Membership Level ID"
1382
+ msgstr "ID for medlemsnivået."
1383
+
1384
+ # @ pmpro
1385
+ #: adminpages/orders.php:365
1386
+ msgid "Billing Name"
1387
+ msgstr "Navn"
1388
+
1389
+ # @ pmpro
1390
+ #: adminpages/orders.php:373
1391
+ msgid "Billing Street"
1392
+ msgstr "Gate"
1393
+
1394
+ # @ pmpro
1395
+ #: adminpages/orders.php:380
1396
+ msgid "Billing City"
1397
+ msgstr "By"
1398
+
1399
+ # @ pmpro
1400
+ #: adminpages/orders.php:387
1401
+ msgid "Billing State"
1402
+ msgstr "Fylke for regninger"
1403
+
1404
+ # @ pmpro
1405
+ #: adminpages/orders.php:394
1406
+ msgid "Billing Postal Code"
1407
+ msgstr "Postnummer for regning"
1408
+
1409
+ # @ pmpro
1410
+ #: adminpages/orders.php:401
1411
+ msgid "Billing Country"
1412
+ msgstr "Land"
1413
+
1414
+ # @ pmpro
1415
+ #: adminpages/orders.php:409
1416
+ msgid "Billing Phone"
1417
+ msgstr "Telefon"
1418
+
1419
+ # @ pmpro
1420
+ #: adminpages/orders.php:418
1421
+ msgid "Sub Total"
1422
+ msgstr "Totalbeløp"
1423
+
1424
+ # @ pmpro
1425
+ #: adminpages/orders.php:426 adminpages/templates/orders-email.php:60
1426
+ #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1427
+ msgid "Tax"
1428
+ msgstr "MVA"
1429
+
1430
+ # @ pmpro
1431
+ #: adminpages/orders.php:434
1432
+ msgid "Coupon Amount"
1433
+ msgstr "Rabattkodebeløp"
1434
+
1435
+ # @ pmpro
1436
+ #: adminpages/orders.php:442 adminpages/orders.php:942
1437
+ #: adminpages/templates/orders-email.php:64
1438
+ #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1439
+ msgid "Total"
1440
+ msgstr "Totalbeløp"
1441
+
1442
+ # @ pmpro
1443
+ #: adminpages/orders.php:447
1444
+ msgid "Should be subtotal + tax - couponamount."
1445
+ msgstr "Bør være tilsvarende delsum + MVS/VAT - rabattkodebeløp."
1446
+
1447
+ # @ pmpro
1448
+ #: adminpages/orders.php:452
1449
+ msgid "Payment Type"
1450
+ msgstr "Betalingstype"
1451
+
1452
+ # @ pmpro
1453
+ #: adminpages/orders.php:457
1454
+ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1455
+ msgstr "f.eks. PayPal Express, PayPal standard, kredittkort."
1456
+
1457
+ # @ pmpro
1458
+ #: adminpages/orders.php:461
1459
+ #: classes/gateways/class.pmprogateway_braintree.php:306
1460
+ #: classes/gateways/class.pmprogateway_stripe.php:447 pages/billing.php:250
1461
+ #: pages/checkout.php:527
1462
+ msgid "Card Type"
1463
+ msgstr "Korttype"
1464
+
1465
+ # @ pmpro
1466
+ #: adminpages/orders.php:466
1467
+ msgid "e.g. Visa, MasterCard, AMEX, etc"
1468
+ msgstr "F.eks Visa, MasteCard, American Express, osv."
1469
+
1470
+ # @ pmpro
1471
+ #: adminpages/orders.php:470
1472
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
1473
+ msgid "Account Number"
1474
+ msgstr "Kontonummer"
1475
+
1476
+ # @ pmpro
1477
+ #: adminpages/orders.php:475
1478
+ msgid "Obscure all but last 4 digits."
1479
+ msgstr "Skjul alle siffer unntatt de 4 siste sifrene. "
1480
+
1481
+ # @ pmpro
1482
+ #: adminpages/orders.php:480
1483
+ msgid "Expiration Month"
1484
+ msgstr "Utløpsmåned"
1485
+
1486
+ # @ pmpro
1487
+ #: adminpages/orders.php:487
1488
+ msgid "Expiration Year"
1489
+ msgstr "Utløpsår"
1490
+
1491
+ # @ pmpro
1492
+ #: adminpages/orders.php:495 adminpages/orders.php:946
1493
+ msgid "Status"
1494
+ msgstr "Status"
1495
+
1496
+ # @ pmpro
1497
+ #: adminpages/orders.php:516 adminpages/orders.php:944
1498
+ msgid "Gateway"
1499
+ msgstr "portal"
1500
+
1501
+ # @ pmpro
1502
+ #: adminpages/orders.php:534 adminpages/paymentsettings.php:124
1503
+ msgid "Gateway Environment"
1504
+ msgstr "Portaloppsett"
1505
+
1506
+ # @ pmpro
1507
+ #: adminpages/orders.php:538 adminpages/paymentsettings.php:128
1508
+ msgid "Sandbox/Testing"
1509
+ msgstr "For testing"
1510
+
1511
+ # @ pmpro
1512
+ #: adminpages/orders.php:539 adminpages/paymentsettings.php:129
1513
+ msgid "Live/Production"
1514
+ msgstr "For produksjon/live"
1515
+
1516
+ # @ pmpro
1517
+ #: adminpages/orders.php:546
1518
+ msgid "Payment Transaction ID"
1519
+ msgstr "Transaksjons ID for betalinger"
1520
+
1521
+ # @ pmpro
1522
+ #: adminpages/orders.php:551
1523
+ msgid "Generated by the gateway. Useful to cross reference orders."
1524
+ msgstr "Opprettet av betalingstjenestens "
1525
+
1526
+ # @ pmpro
1527
+ #: adminpages/orders.php:555
1528
+ msgid "Subscription Transaction ID"
1529
+ msgstr "Transaksjons ID for abonnement"
1530
+
1531
+ # @ pmpro
1532
+ #: adminpages/orders.php:560
1533
+ msgid "Generated by the gateway. Useful to cross reference subscriptions."
1534
+ msgstr ""
1535
+ "Opprettet av betalingsformidlingstjenesten. Kan brukes for å kryssreferere "
1536
+ "abonnenter."
1537
+
1538
+ # @ pmpro
1539
+ #: adminpages/orders.php:565 adminpages/orders.php:947 pages/invoice.php:107
1540
+ #: shortcodes/pmpro_account.php:125
1541
+ msgid "Date"
1542
+ msgstr "Dato"
1543
+
1544
+ # @ pmpro
1545
+ #: adminpages/orders.php:599
1546
+ msgid "Affiliate ID"
1547
+ msgstr "Affiliate ID"
1548
+
1549
+ # @ pmpro
1550
+ #: adminpages/orders.php:607
1551
+ msgid "Affiliate SubID"
1552
+ msgstr "Affiliate under-ID"
1553
+
1554
+ # @ pmpro
1555
+ #: adminpages/orders.php:617
1556
+ msgid "Notes"
1557
+ msgstr "Notater"
1558
+
1559
+ # @ pmpro
1560
+ #: adminpages/orders.php:632
1561
+ msgid "Save Order"
1562
+ msgstr "Lagre Bestillingen"
1563
+
1564
+ #: adminpages/orders.php:667
1565
+ msgid "Email Invoice"
1566
+ msgstr "Send faktura med e-post"
1567
+
1568
+ #: adminpages/orders.php:670
1569
+ msgid "Send an invoice for this order to: "
1570
+ msgstr "Send en faktura for denne bestillingen til:"
1571
+
1572
+ #: adminpages/orders.php:672
1573
+ msgid "Send Email"
1574
+ msgstr "Send e-post"
1575
+
1576
+ # @ pmpro
1577
+ #: adminpages/orders.php:677 includes/adminpages.php:55
1578
+ #: includes/adminpages.php:167
1579
+ msgid "Orders"
1580
+ msgstr "Bestillinger"
1581
+
1582
+ # @ pmpro
1583
+ #: adminpages/orders.php:678
1584
+ msgid "Add New Order"
1585
+ msgstr "Ny bestilling"
1586
+
1587
+ #: adminpages/orders.php:710
1588
+ msgctxt "Dropdown label, e.g. Show Daily Orders for January"
1589
+ msgid "Show"
1590
+ msgstr "Vis"
1591
+
1592
+ #: adminpages/orders.php:713
1593
+ msgid "Within a Date Range"
1594
+ msgstr "Forhåndsdefinert datointervall"
1595
+
1596
+ #: adminpages/orders.php:714
1597
+ msgid "Predefined Date Range"
1598
+ msgstr "Forhåndsdefinert datointervall"
1599
+
1600
+ #: adminpages/orders.php:715
1601
+ msgid "Within a Level"
1602
+ msgstr "Med nivå"
1603
+
1604
+ #: adminpages/orders.php:716
1605
+ msgid "Within a Status"
1606
+ msgstr "Med status"
1607
+
1608
+ #: adminpages/orders.php:719
1609
+ msgctxt "Dropdown label"
1610
+ msgid "From"
1611
+ msgstr "Fra"
1612
+
1613
+ #: adminpages/orders.php:731
1614
+ msgctxt "Dropdown label"
1615
+ msgid "To"
1616
+ msgstr "Til"
1617
+
1618
+ #: adminpages/orders.php:743
1619
+ msgctxt "Dropdown label"
1620
+ msgid "filter by "
1621
+ msgstr "filtrer basert på"
1622
+
1623
+ #: adminpages/orders.php:780
1624
+ msgctxt "Submit button value."
1625
+ msgid "Filter"
1626
+ msgstr "Filtrer"
1627
+
1628
+ # @ pmpro
1629
+ #: adminpages/orders.php:883 adminpages/orders.php:886
1630
+ msgid "Search Orders"
1631
+ msgstr "Søk i Bestillinger"
1632
+
1633
+ # @ pmpro
1634
+ #: adminpages/orders.php:930
1635
+ #, php-format
1636
+ msgid "%d orders found."
1637
+ msgstr "%d bestillinger funnet."
1638
+
1639
+ # @ pmpro
1640
+ #: adminpages/orders.php:939 adminpages/reports/login.php:159
1641
+ #: classes/gateways/class.pmprogateway_payflowpro.php:116
1642
+ msgid "User"
1643
+ msgstr "Bruker"
1644
+
1645
+ # @ pmpro
1646
+ #: adminpages/orders.php:941 includes/init.php:238 includes/profile.php:27
1647
+ #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
1648
+ #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1649
+ msgid "Membership Level"
1650
+ msgstr "Type medlemskap"
1651
+
1652
+ # @ pmpro
1653
+ #: adminpages/orders.php:943 adminpages/orders.php:1011
1654
+ msgid "Payment"
1655
+ msgstr "Betaling"
1656
+
1657
+ # @ pmpro
1658
+ #: adminpages/orders.php:945
1659
+ msgid "Transaction IDs"
1660
+ msgstr "Transaksjons ID"
1661
+
1662
+ # @ pmpro
1663
+ #: adminpages/orders.php:972
1664
+ msgid "deleted"
1665
+ msgstr "slettet"
1666
+
1667
+ # @ pmpro
1668
+ #: adminpages/orders.php:1013
1669
+ msgid "Subscription"
1670
+ msgstr "Abonnement"
1671
+
1672
+ # @ pmpro
1673
+ #: adminpages/orders.php:1027
1674
+ #, php-format
1675
+ msgid ""
1676
+ "Deleting orders is permanent and can affect active users. Are you sure you "
1677
+ "want to delete order %s?"
1678
+ msgstr ""
1679
+ "Dersom du sletter en bestilling er det permanent og kan påvirke aktive "
1680
+ "brukere. Er du sikker på at du ønsker å slette bestilling %s?"
1681
+
1682
+ #: adminpages/orders.php:1030
1683
+ msgid "print"
1684
+ msgstr "skriv ut"
1685
+
1686
+ #: adminpages/orders.php:1033
1687
+ msgid "email"
1688
+ msgstr "e-post"
1689
+
1690
+ # @ pmpro
1691
+ #: adminpages/orders.php:1043
1692
+ msgid "No orders found."
1693
+ msgstr "Fant ikke noen bestillinger"
1694
+
1695
+ #: adminpages/pagesettings.php:54
1696
+ msgid "Your page settings have been updated."
1697
+ msgstr "Vi har oppdatert innstillingene for medlemssidene"
1698
+
1699
+ #: adminpages/pagesettings.php:64
1700
+ msgid "Membership Account"
1701
+ msgstr "Kontoinformasjon"
1702
+
1703
+ #: adminpages/pagesettings.php:65
1704
+ msgid "Membership Billing"
1705
+ msgstr "Innbetalinger"
1706
+
1707
+ #: adminpages/pagesettings.php:66
1708
+ msgid "Membership Cancel"
1709
+ msgstr "Kansellering"
1710
+
1711
+ #: adminpages/pagesettings.php:67
1712
+ msgid "Membership Checkout"
1713
+ msgstr "Betalingsside"
1714
+
1715
+ #: adminpages/pagesettings.php:68
1716
+ msgid "Membership Confirmation"
1717
+ msgstr "Bekreftelse"
1718
+
1719
+ #: adminpages/pagesettings.php:69
1720
+ msgid "Membership Invoice"
1721
+ msgstr "Kvitteringer"
1722
+
1723
+ # @ pmpro
1724
+ #: adminpages/pagesettings.php:83
1725
+ msgid "The following pages have been created for you"
1726
+ msgstr "Vi har opprettet de følgende sidene for deg"
1727
+
1728
+ # @ pmpro
1729
+ #: adminpages/pagesettings.php:97
1730
+ msgid ""
1731
+ "Manage the WordPress pages assigned to each required Paid Memberships Pro "
1732
+ "page."
1733
+ msgstr ""
1734
+ "Administrasjon av WordPress sidene som har blitt tildelt hver av de "
1735
+ "påkrevede Paid Memberships Pro sidene."
1736
+
1737
+ # @ pmpro
1738
+ #: adminpages/pagesettings.php:101
1739
+ msgid ""
1740
+ "Assign the WordPress pages for each required Paid Memberships Pro page or"
1741
+ msgstr ""
1742
+ "Tildel Wordpress sider for hver av de påkrevde Paid Memberships Pro sidene, "
1743
+ "eller"
1744
+
1745
+ # @ pmpro
1746
+ #: adminpages/pagesettings.php:102
1747
+ msgid "click here to let us generate them for you"
1748
+ msgstr "klikk for å la oss opprette sidene for deg"
1749
+
1750
+ # @ pmpro
1751
+ #: adminpages/pagesettings.php:111
1752
+ msgid "Account Page"
1753
+ msgstr "Side for kontoinformasjon"
1754
+
1755
+ #: adminpages/pagesettings.php:115 adminpages/pagesettings.php:133
1756
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:170
1757
+ #: adminpages/pagesettings.php:189 adminpages/pagesettings.php:209
1758
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:268
1759
+ msgid "Choose One"
1760
+ msgstr "Velg en"
1761
+
1762
+ # @ pmpro
1763
+ #: adminpages/pagesettings.php:119 adminpages/pagesettings.php:137
1764
+ #: adminpages/pagesettings.php:155 adminpages/pagesettings.php:174
1765
+ #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:213
1766
+ #: adminpages/pagesettings.php:232 adminpages/pagesettings.php:274
1767
+ msgid "edit page"
1768
+ msgstr "rediger siden"
1769
+
1770
+ # @ pmpro
1771
+ #: adminpages/pagesettings.php:122 adminpages/pagesettings.php:140
1772
+ #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:177
1773
+ #: adminpages/pagesettings.php:196 adminpages/pagesettings.php:216
1774
+ #: adminpages/pagesettings.php:235 adminpages/pagesettings.php:277
1775
+ msgid "view page"
1776
+ msgstr "vis siden"
1777
+
1778
+ # @ pmpro
1779
+ #: adminpages/pagesettings.php:125 adminpages/pagesettings.php:143
1780
+ #: adminpages/pagesettings.php:161 adminpages/pagesettings.php:180
1781
+ #: adminpages/pagesettings.php:199 adminpages/pagesettings.php:219
1782
+ #: adminpages/pagesettings.php:238
1783
+ msgid "Include the shortcode"
1784
+ msgstr "Legg til kortkoden (shortcode)"
1785
+
1786
+ # @ pmpro
1787
+ #: adminpages/pagesettings.php:129
1788
+ msgid "Billing Information Page"
1789
+ msgstr "Side for fakturaadresse og kredittkort informasjon"
1790
+
1791
+ # @ pmpro
1792
+ #: adminpages/pagesettings.php:147
1793
+ msgid "Cancel Page"
1794
+ msgstr "Side for å avslutte medlemsskapet"
1795
+
1796
+ # @ pmpro
1797
+ #: adminpages/pagesettings.php:166
1798
+ msgid "Checkout Page"
1799
+ msgstr "Side for betalinger"
1800
+
1801
+ # @ pmpro
1802
+ #: adminpages/pagesettings.php:185
1803
+ msgid "Confirmation Page"
1804
+ msgstr "Side for betalingsbekreftelse"
1805
+
1806
+ # @ pmpro
1807
+ #: adminpages/pagesettings.php:205
1808
+ msgid "Invoice Page"
1809
+ msgstr "Side for fakturaer"
1810
+
1811
+ # @ pmpro
1812
+ #: adminpages/pagesettings.php:224
1813
+ msgid "Levels Page"
1814
+ msgstr "Side for medlemsnivåer"
1815
+
1816
+ #: adminpages/pagesettings.php:245
1817
+ msgid "Additional Page Settings"
1818
+ msgstr "Ekstra sideinnstillinger"
1819
+
1820
+ #: adminpages/pagesettings.php:280
1821
+ msgid "Generate Page"
1822
+ msgstr "Automatisk oppretting av siden"
1823
+
1824
+ # @ pmpro
1825
+ #: adminpages/paymentsettings.php:49
1826
+ msgid "Your payment settings have been updated."
1827
+ msgstr "Dine innstillinger for innbetalinger er herved oppdatert"
1828
+
1829
+ # @ pmpro
1830
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:106
1831
+ msgid "Payment Gateway"
1832
+ msgstr "Betalingsbehandlingsportal"
1833
+
1834
+ # @ pmpro
1835
+ #: adminpages/paymentsettings.php:93
1836
+ msgid "SSL Settings"
1837
+ msgstr "Innstillinger for SSL"
1838
+
1839
+ #: adminpages/paymentsettings.php:95
1840
+ msgid ""
1841
+ "Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target="
1842
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-"
1843
+ "setup/ssl/\">SSL</a> or <a title=\"Paid Memberships Pro - Payment Gateway "
1844
+ "Settings\" target=\"_blank\" href=\"http://www.paidmembershipspro.com/"
1845
+ "support/initial-plugin-setup/payment-gateway/\">Payment Gateway Settings</a>."
1846
+ msgstr ""
1847
+ "Lær mer om <a title=\"Paid Memberships Pro - SSL Settings\" target=\"_blank"
1848
+ "\" href=\"http://www.paidmembershipspro.com/support/initial-plugin-setup/ssl/"
1849
+ "\">SSL (Engelsk)</a>, eller <a title=\"Paid Memberships Pro - Payment "
1850
+ "Gateway Settings\" target=\"_blank\" href=\"http://www.paidmembershipspro."
1851
+ "com/support/initial-plugin-setup/payment-gateway/\">Innstillinger for "
1852
+ "betalingsbehandlingsportalene (Engelsk)</a>."
1853
+
1854
+ # @ pmpro
1855
+ #: adminpages/paymentsettings.php:153
1856
+ msgid "Currency"
1857
+ msgstr "Valuta"
1858
+
1859
+ #: adminpages/paymentsettings.php:169
1860
+ msgid ""
1861
+ "Not all currencies will be supported by every gateway. Please check with "
1862
+ "your gateway."
1863
+ msgstr ""
1864
+ "Ikke alle valuttaer støttes av alle betalingsbehandlingsportalene. Vennligst "
1865
+ "bekreft valuttaen med din portal."
1866
+
1867
+ # @ pmpro
1868
+ #: adminpages/paymentsettings.php:174
1869
+ msgid "Accepted Credit Card Types"
1870
+ msgstr "Aksepterte kredittkort"
1871
+
1872
+ # @ pmpro
1873
+ #: adminpages/paymentsettings.php:188
1874
+ msgid "Sales Tax"
1875
+ msgstr "Salgsskatt (US)"
1876
+
1877
+ # @ pmpro
1878
+ #: adminpages/paymentsettings.php:188 pages/billing.php:91
1879
+ msgid "optional"
1880
+ msgstr "valgfritt"
1881
+
1882
+ # @ pmpro
1883
+ #: adminpages/paymentsettings.php:191
1884
+ msgid "Tax State"
1885
+ msgstr "Stat å betale skatt i"
1886
+
1887
+ # @ pmpro
1888
+ #: adminpages/paymentsettings.php:192
1889
+ msgid "abbreviation, e.g. \"PA\""
1890
+ msgstr "Statsforkortelse, f.eks “NY”"
1891
+
1892
+ # @ pmpro
1893
+ #: adminpages/paymentsettings.php:194
1894
+ msgid "decimal, e.g. \"0.06\""
1895
+ msgstr "desimaltall, f.eks “0.06”"
1896
+
1897
+ # @ pmpro
1898
+ #: adminpages/paymentsettings.php:195
1899
+ msgid ""
1900
+ "US only. If values are given, tax will be applied for any members ordering "
1901
+ "from the selected state.<br />For non-US or more complex tax rules, use the "
1902
+ "<a target=\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-"
1903
+ "taxes-paid-memberships-pro/\">pmpro_tax filter</a>."
1904
+ msgstr ""
1905
+ "Kun for USA. Dersom du oppgir verdier her vil statlige skatterrater bli "
1906
+ "brukt for medlemmer som bestiller fra den valgte staten.<br />For områder "
1907
+ "utenfor USA, eller områder med mer komplekse skatteregler, bruk a target="
1908
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-taxes-"
1909
+ "paid-memberships-pro/\">pmpro_tax filteret (Engelsk)</a>."
1910
+
1911
+ # @ pmpro
1912
+ #: adminpages/paymentsettings.php:206
1913
+ msgid "Force SSL"
1914
+ msgstr "Fremtving bruk av SSL"
1915
+
1916
+ # @ pmpro
1917
+ #: adminpages/paymentsettings.php:212
1918
+ msgid "Yes (with JavaScript redirects)"
1919
+ msgstr "Ja (bruker JavaScript for omdirigeringer)"
1920
+
1921
+ # @ pmpro
1922
+ #: adminpages/paymentsettings.php:219
1923
+ msgid "SSL Seal Code"
1924
+ msgstr "Sikkerhetsbekreftelse (SSL Seal Code)"
1925
+
1926
+ #: adminpages/paymentsettings.php:228
1927
+ msgid "Extra HTTPS URL Filter"
1928
+ msgstr "Ekstrafilter for HTTPS URLer"
1929
+
1930
+ #: adminpages/paymentsettings.php:231
1931
+ msgid ""
1932
+ "Pass all generated HTML through a URL filter to add HTTPS to URLs used on "
1933
+ "secure pages. Check this if you are using SSL and have warnings on your "
1934
+ "checkout pages."
1935
+ msgstr ""
1936
+ "Send all HTML via ett URL filter for å endre protokollen til HTTPS for "
1937
+ "lenker som brukes på sikrede sider. Kryss av dersom du has SSL installert og "
1938
+ "mottar advarsler på betalingssidene. "
1939
+
1940
+ # @ pmpro
1941
+ #: adminpages/reports.php:40
1942
+ msgid "Details"
1943
+ msgstr "Detaljer"
1944
+
1945
+ #: adminpages/reports.php:61
1946
+ msgid "Back to Reports Dashboard"
1947
+ msgstr "Tilbake til kontrollpanel for rapporter"
1948
+
1949
+ # @ pmpro
1950
+ #: adminpages/reports/login.php:16
1951
+ msgid "Visits, Views, and Logins"
1952
+ msgstr "Besøkende, visninger og innlogginger"
1953
+
1954
+ #: adminpages/reports/login.php:31
1955
+ msgid "Visits"
1956
+ msgstr "Besøkende"
1957
+
1958
+ #: adminpages/reports/login.php:32
1959
+ msgid "Views"
1960
+ msgstr "Visninger"
1961
+
1962
+ #: adminpages/reports/login.php:33
1963
+ msgid "Logins"
1964
+ msgstr "Innlogginger"
1965
+
1966
+ #: adminpages/reports/login.php:38 adminpages/reports/memberships.php:43
1967
+ #: adminpages/reports/sales.php:51
1968
+ msgid "Today"
1969
+ msgstr "I dag"
1970
+
1971
+ #: adminpages/reports/login.php:44 adminpages/reports/memberships.php:48
1972
+ #: adminpages/reports/sales.php:56
1973
+ msgid "This Month"
1974
+ msgstr "Denne måneden"
1975
+
1976
+ #: adminpages/reports/login.php:50 adminpages/reports/memberships.php:58
1977
+ #: adminpages/reports/sales.php:66
1978
+ msgid "All Time"
1979
+ msgstr "Siden starten"
1980
+
1981
+ # @ pmpro
1982
+ #: adminpages/reports/login.php:79
1983
+ msgid "Visits, Views, and Logins Report"
1984
+ msgstr "Besøk, Visninger og Innloggingsrapport"
1985
+
1986
+ #: adminpages/reports/login.php:83
1987
+ msgctxt "Dropdown label, e.g. Show All Users"
1988
+ msgid "Show"
1989
+ msgstr "Vis"
1990
+
1991
+ # @ pmpro
1992
+ #: adminpages/reports/login.php:84
1993
+ msgid "All Users"
1994
+ msgstr "Alle brukere"
1995
+
1996
+ #: adminpages/reports/login.php:99
1997
+ msgctxt "Search form label"
1998
+ msgid "Search"
1999
+ msgstr "Søk"
2000
+
2001
+ # @ pmpro
2002
+ #: adminpages/reports/login.php:164
2003
+ msgid "Last Visit"
2004
+ msgstr "Siste besøk"
2005
+
2006
+ # @ pmpro
2007
+ #: adminpages/reports/login.php:165
2008
+ msgid "Visits This Month"
2009
+ msgstr "Besøk denne måneden"
2010
+
2011
+ # @ pmpro
2012
+ #: adminpages/reports/login.php:166
2013
+ msgid "Total Visits"
2014
+ msgstr "Totalt antall besøk"
2015
+
2016
+ # @ pmpro
2017
+ #: adminpages/reports/login.php:167
2018
+ msgid "Views This Month"
2019
+ msgstr "Visninger denne måneden"
2020
+
2021
+ # @ pmpro
2022
+ #: adminpages/reports/login.php:168
2023
+ msgid "Total Views"
2024
+ msgstr "Totalt antall visninger"
2025
+
2026
+ # @ pmpro
2027
+ #: adminpages/reports/login.php:169
2028
+ msgid "Last Login"
2029
+ msgstr "Sist logget inn"
2030
+
2031
+ # @ pmpro
2032
+ #: adminpages/reports/login.php:170
2033
+ msgid "Logins This Month"
2034
+ msgstr "Innlogginger denne måneden"
2035
+
2036
+ # @ pmpro
2037
+ #: adminpages/reports/login.php:171
2038
+ msgid "Total Logins"
2039
+ msgstr "Totalt antall innlogginger"
2040
+
2041
+ # @ pmpro
2042
+ #: adminpages/reports/memberships.php:18 adminpages/reports/memberships.php:259
2043
+ msgid "Membership Stats"
2044
+ msgstr "Medlemsstatistikker"
2045
+
2046
+ #: adminpages/reports/memberships.php:37
2047
+ msgid "Signups"
2048
+ msgstr "Registreringer"
2049
+
2050
+ #: adminpages/reports/memberships.php:38
2051
+ msgid "All Cancellations"
2052
+ msgstr "Alle avbestillinger"
2053
+
2054
+ #: adminpages/reports/memberships.php:53 adminpages/reports/sales.php:61
2055
+ msgid "This Year"
2056
+ msgstr "Inneværende år"
2057
+
2058
+ #: adminpages/reports/memberships.php:263 adminpages/reports/sales.php:202
2059
+ msgctxt "Dropdown label, e.g. Show Daily Revenue for January"
2060
+ msgid "Show"
2061
+ msgstr "Vis"
2062
+
2063
+ # @ pmpro
2064
+ #: adminpages/reports/memberships.php:265 adminpages/reports/sales.php:204
2065
+ msgid "Daily"
2066
+ msgstr "Daglig"
2067
+
2068
+ # @ pmpro
2069
+ #: adminpages/reports/memberships.php:266 adminpages/reports/sales.php:205
2070
+ msgid "Monthly"
2071
+ msgstr "Månedlig"
2072
+
2073
+ # @ pmpro
2074
+ #: adminpages/reports/memberships.php:267 adminpages/reports/sales.php:206
2075
+ msgid "Annual"
2076
+ msgstr "Årsrapport"
2077
+
2078
+ #: adminpages/reports/memberships.php:270
2079
+ msgid "Signups vs. All Cancellations"
2080
+ msgstr "Registreringer vs alle avbestillinger"
2081
+
2082
+ # @ pmpro
2083
+ #: adminpages/reports/memberships.php:271
2084
+ msgid "Signups vs. Cancellations"
2085
+ msgstr "Registreringer kontra avbestillinger"
2086
+
2087
+ #: adminpages/reports/memberships.php:272
2088
+ msgid "Signups vs. Expirations"
2089
+ msgstr "Registreringer kontra utløpte medlemsskap"
2090
+
2091
+ #: adminpages/reports/memberships.php:277
2092
+ #: adminpages/reports/memberships.php:288 adminpages/reports/sales.php:212
2093
+ #: adminpages/reports/sales.php:223
2094
+ msgctxt "Dropdown label, e.g. Show Daily Revenue for January"
2095
+ msgid "for"
2096
+ msgstr "for"
2097
+
2098
+ #: adminpages/reports/memberships.php:304 adminpages/reports/sales.php:239
2099
+ msgctxt "Submit button value."
2100
+ msgid "Generate Report"
2101
+ msgstr "Rapport"
2102
+
2103
+ # @ pmpro
2104
+ #: adminpages/reports/sales.php:18
2105
+ msgid "Sales and Revenue (Testing/Sandbox)"
2106
+ msgstr "Salg og inntekter (Testmiljø)"
2107
+
2108
+ # @ pmpro
2109
+ #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:198
2110
+ msgid "Sales and Revenue"
2111
+ msgstr "Salg og inntekter"
2112
+
2113
+ # @ pmpro
2114
+ #: adminpages/reports/sales.php:45 adminpages/reports/sales.php:210
2115
+ msgid "Sales"
2116
+ msgstr "Salg"
2117
+
2118
+ # @ pmpro
2119
+ #: adminpages/reports/sales.php:46 adminpages/reports/sales.php:209
2120
+ msgid "Revenue"
2121
+ msgstr "Inntekt"
2122
+
2123
+ #: adminpages/templates/orders-email.php:14
2124
+ #: adminpages/templates/orders-print.php:50
2125
+ msgid "Invoice #: "
2126
+ msgstr "Faktura no.:"
2127
+
2128
+ #: adminpages/templates/orders-email.php:18
2129
+ #: adminpages/templates/orders-print.php:54
2130
+ msgid "Date:"
2131
+ msgstr "Dato:"
2132
+
2133
+ #: adminpages/templates/orders-email.php:24
2134
+ msgid "Bill to:"
2135
+ msgstr "Faktura til:"
2136
+
2137
+ #: adminpages/templates/orders-email.php:47
2138
+ #: adminpages/templates/orders-print.php:76
2139
+ msgid "Item"
2140
+ msgstr "Vare"
2141
+
2142
+ #: adminpages/templates/orders-email.php:48
2143
+ #: adminpages/templates/orders-print.php:77 pages/levels.php:36
2144
+ msgid "Price"
2145
+ msgstr "Pris"
2146
+
2147
+ # @ pmpro
2148
+ #: adminpages/templates/orders-email.php:56
2149
+ #: adminpages/templates/orders-print.php:85 pages/invoice.php:79
2150
+ msgid "Subtotal"
2151
+ msgstr "Delsum"
2152
+
2153
+ # @ pmpro
2154
+ #: classes/class.memberorder.php:697
2155
+ #, php-format
2156
+ msgid ""
2157
+ "There was an error canceling the subscription for user with ID=%s. You will "
2158
+ "want to check your payment gateway to see if their subscription is still "
2159
+ "active."
2160
+ msgstr ""
2161
+ "Feil oppstod mens vi forsøkte å avslutte abonnementet for brukeren med ID="
2162
+ "%s. Du bør sjekke betalingssystemportalen for å sjekke om abonnementet til "
2163
+ "brukeren fortsatt er aktivt."
2164
+
2165
+ # @ pmpro
2166
+ #: classes/class.pmproemail.php:37
2167
+ #, php-format
2168
+ msgid "An Email From %s"
2169
+ msgstr "En e-post fra %s"
2170
+
2171
+ # @ pmpro
2172
+ #: classes/class.pmproemail.php:134
2173
+ #, php-format
2174
+ msgid "Your membership at %s has been CANCELLED"
2175
+ msgstr "Ditt medlemsskap på %s har blitt AVSLUTTET"
2176
+
2177
+ # @ pmpro
2178
+ #: classes/class.pmproemail.php:156
2179
+ #, php-format
2180
+ msgid "Membership for %s at %s has been CANCELLED"
2181
+ msgstr "Medlemsskapet for %s på %s har blitt AVSLUTTET"
2182
+
2183
+ # @ pmpro
2184
+ #: classes/class.pmproemail.php:187
2185
+ #, php-format
2186
+ msgid "Your membership confirmation for %s"
2187
+ msgstr "Bekreftelse på medlemskap i %s"
2188
+
2189
+ # @ pmpro
2190
+ #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2191
+ #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2192
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2193
+ #: classes/gateways/class.pmprogateway_braintree.php:364
2194
+ #: classes/gateways/class.pmprogateway_stripe.php:536 pages/checkout.php:76
2195
+ #: pages/checkout.php:86 pages/checkout.php:616 pages/confirmation.php:52
2196
+ #: pages/invoice.php:33
2197
+ msgid "Discount Code"
2198
+ msgstr "Rabattkode"
2199
+
2200
+ # @ pmpro
2201
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
2202
+ #: classes/class.pmproemail.php:663
2203
+ #, php-format
2204
+ msgid "This membership will expire on %s."
2205
+ msgstr "Dette medlemsskapet kommer til å utløpe den %s"
2206
+
2207
+ # @ pmpro
2208
+ #: classes/class.pmproemail.php:287
2209
+ #, php-format
2210
+ msgid "Member Checkout for %s at %s"
2211
+ msgstr "Nytt medlem for %s via %s"
2212
+
2213
+ # @ pmpro
2214
+ #: classes/class.pmproemail.php:375
2215
+ #, php-format
2216
+ msgid "Your billing information has been udpated at %s"
2217
+ msgstr "Faktureringsinformasjonen har blitt oppdatert på %s"
2218
+
2219
+ # @ pmpro
2220
+ #: classes/class.pmproemail.php:428
2221
+ #, php-format
2222
+ msgid "Billing information has been udpated for %s at %s"
2223
+ msgstr "Faktureringsinformasjonen har blitt oppdatert for %s den %s"
2224
+
2225
+ # @ pmpro
2226
+ #: classes/class.pmproemail.php:476
2227
+ #, php-format
2228
+ msgid "Membership Payment Failed at %s"
2229
+ msgstr "Betaling for medlemsnivået feilet den %s"
2230
+
2231
+ # @ pmpro
2232
+ #: classes/class.pmproemail.php:522
2233
+ #, php-format
2234
+ msgid "Membership Payment Failed For %s at %s"
2235
+ msgstr "Betaling for medlemsnivå feilet for %s på %s"
2236
+
2237
+ # @ pmpro
2238
+ #: classes/class.pmproemail.php:569
2239
+ #, php-format
2240
+ msgid "Credit Card on File Expiring Soon at %s"
2241
+ msgstr "Kredittkortet vi har lagret for deg utløper straks (den %s)"
2242
+
2243
+ # @ pmpro
2244
+ #: classes/class.pmproemail.php:617
2245
+ #, php-format
2246
+ msgid "INVOICE for %s membership"
2247
+ msgstr "Faktura for medlemsnivå %s"
2248
+
2249
+ # @ pmpro
2250
+ #: classes/class.pmproemail.php:688
2251
+ #, php-format
2252
+ msgid "Your trial at %s is ending soon"
2253
+ msgstr "Din prøveperiode på %s er like ved å bli avsluttet."
2254
+
2255
+ # @ pmpro
2256
+ #: classes/class.pmproemail.php:722
2257
+ #, php-format
2258
+ msgid "Your membership at %s has ended"
2259
+ msgstr "Ditt medlemsskap på %s har blitt avsluttet"
2260
+
2261
+ # @ pmpro
2262
+ #: classes/class.pmproemail.php:747
2263
+ #, php-format
2264
+ msgid "Your membership at %s will end soon"
2265
+ msgstr "Medlemsskapet på %s kommer til å ende snart"
2266
+
2267
+ # @ pmpro
2268
+ #: classes/class.pmproemail.php:767
2269
+ #, php-format
2270
+ msgid "Your membership at %s has been changed"
2271
+ msgstr "Medlemsnivået ditt på %s har blitt endret"
2272
+
2273
+ #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:809
2274
+ #, php-format
2275
+ msgid "The new level is %s"
2276
+ msgstr "Det nye medlemsnivået er %s"
2277
+
2278
+ # @ pmpro
2279
+ #: classes/class.pmproemail.php:773
2280
+ msgid "Your membership has been cancelled"
2281
+ msgstr "Medlemsskapet ditt er herved avsluttet."
2282
+
2283
+ # @ pmpro
2284
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:815
2285
+ #, php-format
2286
+ msgid "This membership will expire on %s"
2287
+ msgstr "Dette medlemsnivået kommer til å utløpe den %s"
2288
+
2289
+ # @ pmpro
2290
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:819
2291
+ msgid "This membership does not expire"
2292
+ msgstr "Dette medlemsnivået utløper aldri."
2293
+
2294
+ # @ pmpro
2295
+ #: classes/class.pmproemail.php:805
2296
+ #, php-format
2297
+ msgid "Membership for %s at %s has been changed"
2298
+ msgstr "Medlemskapet for %s ved %s er endret"
2299
+
2300
+ #: classes/class.pmproemail.php:811
2301
+ msgid "Membership has been cancelled"
2302
+ msgstr "Medlemsskapet/abonnementet er avsluttet"
2303
+
2304
+ #: classes/class.pmproemail.php:848
2305
+ msgid "Invoice for Order #: "
2306
+ msgstr "Faktura for bestillingsnummer:"
2307
+
2308
+ # @ pmpro
2309
+ #: classes/gateways/class.pmprogateway.php:55
2310
+ #: classes/gateways/class.pmprogateway_authorizenet.php:171
2311
+ #: classes/gateways/class.pmprogateway_check.php:193
2312
+ #: classes/gateways/class.pmprogateway_cybersource.php:171
2313
+ #: classes/gateways/class.pmprogateway_payflowpro.php:164
2314
+ #: classes/gateways/class.pmprogateway_paypal.php:249
2315
+ msgid "Unknown error: Authorization failed."
2316
+ msgstr "Autorisasjon for betalingen feilet av ukjent årsak."
2317
+
2318
+ # @ pmpro
2319
+ #: classes/gateways/class.pmprogateway.php:106
2320
+ #: classes/gateways/class.pmprogateway.php:111
2321
+ #: classes/gateways/class.pmprogateway.php:129
2322
+ #: classes/gateways/class.pmprogateway_authorizenet.php:222
2323
+ #: classes/gateways/class.pmprogateway_authorizenet.php:227
2324
+ #: classes/gateways/class.pmprogateway_authorizenet.php:244
2325
+ #: classes/gateways/class.pmprogateway_check.php:245
2326
+ #: classes/gateways/class.pmprogateway_check.php:250
2327
+ #: classes/gateways/class.pmprogateway_check.php:268
2328
+ #: classes/gateways/class.pmprogateway_cybersource.php:222
2329
+ #: classes/gateways/class.pmprogateway_cybersource.php:227
2330
+ #: classes/gateways/class.pmprogateway_cybersource.php:245
2331
+ #: classes/gateways/class.pmprogateway_payflowpro.php:187
2332
+ #: classes/gateways/class.pmprogateway_payflowpro.php:192
2333
+ #: classes/gateways/class.pmprogateway_paypal.php:272
2334
+ msgid "Unknown error: Payment failed."
2335
+ msgstr "Betalingen feilet av ukjent årsak."
2336
+
2337
+ # @ pmpro
2338
+ #: classes/gateways/class.pmprogateway.php:113
2339
+ #: classes/gateways/class.pmprogateway_authorizenet.php:228
2340
+ #: classes/gateways/class.pmprogateway_check.php:252
2341
+ #: classes/gateways/class.pmprogateway_cybersource.php:229
2342
+ msgid ""
2343
+ "A partial payment was made that we could not void. Please contact the site "
2344
+ "owner immediately to correct this."
2345
+ msgstr ""
2346
+ "En delbetaling hadde blitt fullført som vi ikke klarte å slette. Vennligst "
2347
+ "ta øyeblikkelig kontakt med eieren av denne websiden for å få rettet på "
2348
+ "problemet."
2349
+
2350
+ #: classes/gateways/class.pmprogateway_authorizenet.php:39
2351
+ #: paid-memberships-pro.php:131
2352
+ msgid "Authorize.net"
2353
+ msgstr "Authorize.net"
2354
+
2355
+ #: classes/gateways/class.pmprogateway_authorizenet.php:93
2356
+ msgid "Authorize.net Settings"
2357
+ msgstr "Innstillinger for Authorize.net"
2358
+
2359
+ # @ pmpro
2360
+ #: classes/gateways/class.pmprogateway_authorizenet.php:98
2361
+ msgid "Login Name"
2362
+ msgstr "Påloggingsnavn"
2363
+
2364
+ # @ pmpro
2365
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2366
+ msgid "Transaction Key"
2367
+ msgstr "Transaksjonsnøkkel"
2368
+
2369
+ # @ pmpro
2370
+ #: classes/gateways/class.pmprogateway_authorizenet.php:114
2371
+ msgid "Silent Post URL"
2372
+ msgstr "Silent Post URL"
2373
+
2374
+ # @ pmpro
2375
+ #: classes/gateways/class.pmprogateway_authorizenet.php:117
2376
+ msgid ""
2377
+ "To fully integrate with Authorize.net, be sure to set your Silent Post URL to"
2378
+ msgstr ""
2379
+ "For å integrere med Authorize.net, må du konfigurere Silent Post URL’en til "
2380
+ "en verdi av"
2381
+
2382
+ # @ pmpro
2383
+ #: classes/gateways/class.pmprogateway_authorizenet.php:909
2384
+ #: classes/gateways/class.pmprogateway_authorizenet.php:910
2385
+ msgid "Could not connect to Authorize.net"
2386
+ msgstr "Feil: Kunne ikke koble oss til Authorize.net"
2387
+
2388
+ #: classes/gateways/class.pmprogateway_braintree.php:76
2389
+ #: paid-memberships-pro.php:132
2390
+ msgid "Braintree Payments"
2391
+ msgstr "Braintree Payments"
2392
+
2393
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2394
+ msgid "Braintree Settings"
2395
+ msgstr "Innstillinger for Braintree"
2396
+
2397
+ # @ pmpro
2398
+ #: classes/gateways/class.pmprogateway_braintree.php:137
2399
+ #: classes/gateways/class.pmprogateway_cybersource.php:106
2400
+ msgid "Merchant ID"
2401
+ msgstr "Selger-ID"
2402
+
2403
+ # @ pmpro
2404
+ #: classes/gateways/class.pmprogateway_braintree.php:145
2405
+ msgid "Public Key"
2406
+ msgstr "Fellesnøkkel"
2407
+
2408
+ # @ pmpro
2409
+ #: classes/gateways/class.pmprogateway_braintree.php:153
2410
+ msgid "Private Key"
2411
+ msgstr "Privatnøkkel"
2412
+
2413
+ # @ pmpro
2414
+ #: classes/gateways/class.pmprogateway_braintree.php:161
2415
+ msgid "Client-Side Encryption Key"
2416
+ msgstr "Krypteringsnøkkel for klienten"
2417
+
2418
+ # @ pmpro
2419
+ #: classes/gateways/class.pmprogateway_braintree.php:169
2420
+ #: classes/gateways/class.pmprogateway_stripe.php:214
2421
+ msgid "Web Hook URL"
2422
+ msgstr "Web Hook lenke"
2423
+
2424
+ # @ pmpro
2425
+ #: classes/gateways/class.pmprogateway_braintree.php:173
2426
+ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
2427
+ msgstr ""
2428
+ "For å fullføre integreringen av Braintree sine betalingstjenester, pass på å "
2429
+ "konfigurere “Web Hook URL” innstillingen til"
2430
+
2431
+ # @ pmpro
2432
+ #: classes/gateways/class.pmprogateway_braintree.php:285
2433
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:504
2434
+ #, php-format
2435
+ msgid "We Accept %s"
2436
+ msgstr "Vi aksepterer følgende %s"
2437
+
2438
+ # @ pmpro
2439
+ #: classes/gateways/class.pmprogateway_braintree.php:285
2440
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:503
2441
+ msgid "Payment Information"
2442
+ msgstr "Betalingsinformasjon"
2443
+
2444
+ # @ pmpro
2445
+ #: classes/gateways/class.pmprogateway_braintree.php:318
2446
+ #: classes/gateways/class.pmprogateway_stripe.php:490 pages/billing.php:260
2447
+ #: pages/checkout.php:570
2448
+ msgid "Card Number"
2449
+ msgstr "Kortnummer"
2450
+
2451
+ #: classes/gateways/class.pmprogateway_braintree.php:355
2452
+ #: classes/gateways/class.pmprogateway_stripe.php:527 pages/billing.php:297
2453
+ msgctxt "Credit card security code, CVV/CCV/CVV2"
2454
+ msgid "CVV"
2455
+ msgstr "CVV"
2456
+
2457
+ #: classes/gateways/class.pmprogateway_braintree.php:356
2458
+ #: classes/gateways/class.pmprogateway_stripe.php:528 pages/billing.php:298
2459
+ msgctxt "link to CVV help"
2460
+ msgid "what's this?"
2461
+ msgstr "hva er dette?"
2462
+
2463
+ # @ pmpro
2464
+ #: classes/gateways/class.pmprogateway_braintree.php:366
2465
+ #: classes/gateways/class.pmprogateway_stripe.php:538 pages/checkout.php:88
2466
+ #: pages/checkout.php:618
2467
+ msgid "Apply"
2468
+ msgstr "Godta"
2469
+
2470
+ # @ pmpro
2471
+ #: classes/gateways/class.pmprogateway_braintree.php:421
2472
+ #: classes/gateways/class.pmprogateway_stripe.php:1068
2473
+ msgid "Unknown error: Initial payment failed."
2474
+ msgstr "Ukjent feil: Første delbetaling feilet."
2475
+
2476
+ # @ pmpro
2477
+ #: classes/gateways/class.pmprogateway_braintree.php:480
2478
+ msgid "Error during settlement:"
2479
+ msgstr "Feil oppstod under betalingsbehandlingen:"
2480
+
2481
+ # @ pmpro
2482
+ #: classes/gateways/class.pmprogateway_braintree.php:489
2483
+ msgid "Error during charge:"
2484
+ msgstr "Feil oppstod under betalingsbehandlingen:"
2485
+
2486
+ # @ pmpro
2487
+ #: classes/gateways/class.pmprogateway_braintree.php:581
2488
+ msgid "Failed to update customer."
2489
+ msgstr "Feil: Klarte ikke å oppdatere kundeinformasjonen."
2490
+
2491
+ # @ pmpro
2492
+ #: classes/gateways/class.pmprogateway_braintree.php:629
2493
+ msgid "Failed to create customer."
2494
+ msgstr "Feil: Kunne ikke opprette kunden."
2495
+
2496
+ # @ pmpro
2497
+ #: classes/gateways/class.pmprogateway_braintree.php:636
2498
+ msgid "Error creating customer record with Braintree:"
2499
+ msgstr "Feil: Kunne ikke lenke kunden til abonnementet hos Braintree"
2500
+
2501
+ # @ pmpro
2502
+ #: classes/gateways/class.pmprogateway_braintree.php:736
2503
+ msgid "Error subscribing customer to plan with Braintree:"
2504
+ msgstr "Feil: Kunne ikke lenke kunden til abonnementet hos Braintree:"
2505
+
2506
+ # @ pmpro
2507
+ #: classes/gateways/class.pmprogateway_braintree.php:751
2508
+ msgid "Failed to subscribe with Braintree:"
2509
+ msgstr "Feil: Kunne ikke opprette abonnement med Braintree:"
2510
+
2511
+ # @ pmpro
2512
+ #: classes/gateways/class.pmprogateway_braintree.php:789
2513
+ #: classes/gateways/class.pmprogateway_braintree.php:802
2514
+ #: classes/gateways/class.pmprogateway_braintree.php:809
2515
+ msgid "Could not find the subscription."
2516
+ msgstr "Fant ikke abonnementet."
2517
+
2518
+ # @ pmpro
2519
+ #: classes/gateways/class.pmprogateway_check.php:48
2520
+ #: paid-memberships-pro.php:125
2521
+ msgid "Pay by Check"
2522
+ msgstr "Betal med sjekk"
2523
+
2524
+ #: classes/gateways/class.pmprogateway_check.php:100
2525
+ msgid "Pay by Check Settings"
2526
+ msgstr "Innstillinger for “Betaling med Sjekk”"
2527
+
2528
+ # @ pmpro
2529
+ #: classes/gateways/class.pmprogateway_check.php:105
2530
+ msgid "Instructions"
2531
+ msgstr "Veiledning"
2532
+
2533
+ # @ pmpro
2534
+ #: classes/gateways/class.pmprogateway_check.php:109
2535
+ msgid ""
2536
+ "Who to write the check out to. Where to mail it. Shown on checkout, "
2537
+ "confirmation, and invoice pages."
2538
+ msgstr ""
2539
+ "Hvem sjekken skal skrives ut til, og hvor du skal sende den. Dette vises "
2540
+ "betalings-, bekreftelses- og kvitteringssidene."
2541
+
2542
+ #: classes/gateways/class.pmprogateway_cybersource.php:42
2543
+ msgid "CyberSource"
2544
+ msgstr "CyberSource"
2545
+
2546
+ #: classes/gateways/class.pmprogateway_cybersource.php:96
2547
+ msgid "CyberSource Settings"
2548
+ msgstr "Innstillinger for CyberSource"
2549
+
2550
+ # @ pmpro
2551
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
2552
+ msgid ""
2553
+ "This gateway option is in beta. Some functionality may not be available. "
2554
+ "Please contact Paid Memberships Pro with any issues you run into. "
2555
+ "<strong>Please be sure to upgrade Paid Memberships Pro to the latest "
2556
+ "versions when available.</strong>"
2557
+ msgstr ""
2558
+ "Denne betalingsbehandlingstjenestens portal er av BETA kvalitet. Det er "
2559
+ "mulig at deler av funksjonaliteten mangler. Vennligst ta kontakt med Paid "
2560
+ "Memberships Pro dersom du støter på problemer.<strong>Pass også på å være "
2561
+ "oppdatert til den nyeste versjon av Paid Memberships Pro når du prøver denne "
2562
+ "portalen.</strong>"
2563
+
2564
+ # @ pmpro
2565
+ #: classes/gateways/class.pmprogateway_cybersource.php:114
2566
+ msgid "Transaction Security Key"
2567
+ msgstr "Sikkerhetsnøkkel for transaksjonen"
2568
+
2569
+ #: classes/gateways/class.pmprogateway_payflowpro.php:39
2570
+ msgid "Payflow Pro/PayPal Pro"
2571
+ msgstr "Payflow Pro/PayPal Pro"
2572
+
2573
+ #: classes/gateways/class.pmprogateway_payflowpro.php:95
2574
+ msgid "Payflow Pro Settings"
2575
+ msgstr "Innstillinger for Payflow Pro"
2576
+
2577
+ # @ pmpro
2578
+ #: classes/gateways/class.pmprogateway_payflowpro.php:100
2579
+ msgid "Partner"
2580
+ msgstr "Sammarbeidspartner"
2581
+
2582
+ # @ pmpro
2583
+ #: classes/gateways/class.pmprogateway_payflowpro.php:108
2584
+ msgid "Vendor"
2585
+ msgstr "Selger"
2586
+
2587
+ # @ pmpro
2588
+ #: classes/gateways/class.pmprogateway_payflowpro.php:124
2589
+ #: pages/checkout.php:193
2590
+ msgid "Password"
2591
+ msgstr "Passord"
2592
+
2593
+ #: classes/gateways/class.pmprogateway_payflowpro.php:132
2594
+ msgid "IPN Handler"
2595
+ msgstr "IPN Handler"
2596
+
2597
+ #: classes/gateways/class.pmprogateway_payflowpro.php:137
2598
+ #, php-format
2599
+ msgid ""
2600
+ "Payflow does not use IPN. To sync recurring subscriptions, please see <a "
2601
+ "target=\"_blank\" href=\"%s\">this addon</a>."
2602
+ msgstr ""
2603
+ "Payflow bruker ikke IPN. For å synkronisere abonnement, vurder å installere "
2604
+ "<a target=“_blank” href=“%s”>denne PMPro utvidelsen</a>."
2605
+
2606
+ # @ pmpro
2607
+ #: classes/gateways/class.pmprogateway_payflowpro.php:194
2608
+ #: classes/gateways/class.pmprogateway_paypal.php:279
2609
+ msgid ""
2610
+ "A partial payment was made that we could not refund. Please contact the site "
2611
+ "owner immediately to correct this."
2612
+ msgstr ""
2613
+ "Vi kunne ikke refundere en delinnbetaling som ble opprettet. Vennligst ta "
2614
+ "kontakt med eieren av denne websiden for å fikse problemet."
2615
+
2616
+ #: classes/gateways/class.pmprogateway_paypal.php:57
2617
+ #: paid-memberships-pro.php:128
2618
+ msgid "PayPal Website Payments Pro"
2619
+ msgstr "PayPal Website Payments Pro"
2620
+
2621
+ #: classes/gateways/class.pmprogateway_paypal.php:113
2622
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
2623
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:112
2624
+ msgid "PayPal Settings"
2625
+ msgstr "Innstillinger for PayPal"
2626
+
2627
+ # @ pmpro
2628
+ #: classes/gateways/class.pmprogateway_paypal.php:118
2629
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
2630
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
2631
+ msgid ""
2632
+ "We do not recommend using PayPal Standard. We suggest using PayPal Express, "
2633
+ "Website Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target="
2634
+ "\"_blank\" href=\"http://www.paidmembershipspro.com/2013/09/read-using-"
2635
+ "paypal-standard-paid-memberships-pro/\">More information on why can be found "
2636
+ "here.</a>"
2637
+ msgstr ""
2638
+ "Vi anbefaler deg å LA VÆRE å bruke PayPal Standard. I stedet foreslår vi at "
2639
+ "du bruker ente PayPal Express, Website Payments Pro (Legacy), eller PayPal "
2640
+ "Pro (Payflow Pro). <a target=\"_blank\" href=\"http://www.paidmembershipspro."
2641
+ "com/2013/09/read-using-paypal-standard-paid-memberships-pro/\">Vi har mer "
2642
+ "informasjon om hvorfor her (Engelsk).</a>"
2643
+
2644
+ # @ pmpro
2645
+ #: classes/gateways/class.pmprogateway_paypal.php:123
2646
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:138
2647
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:122
2648
+ msgid "Gateway Account Email"
2649
+ msgstr "E-Post adresse for kontoen til betalingsformidlingsportalen"
2650
+
2651
+ # @ pmpro
2652
+ #: classes/gateways/class.pmprogateway_paypal.php:131
2653
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:146
2654
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:130
2655
+ #: classes/gateways/class.pmprogateway_twocheckout.php:119
2656
+ msgid "API Username"
2657
+ msgstr "Brukernavn for API"
2658
+
2659
+ # @ pmpro
2660
+ #: classes/gateways/class.pmprogateway_paypal.php:139
2661
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:154
2662
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:138
2663
+ #: classes/gateways/class.pmprogateway_twocheckout.php:128
2664
+ msgid "API Password"
2665
+ msgstr "Passord for API brukeren"
2666
+
2667
+ # @ pmpro
2668
+ #: classes/gateways/class.pmprogateway_paypal.php:147
2669
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2670
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:146
2671
+ msgid "API Signature"
2672
+ msgstr "Signatur for APIen"
2673
+
2674
+ # @ pmpro
2675
+ #: classes/gateways/class.pmprogateway_paypal.php:155
2676
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2677
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2678
+ msgid "IPN Handler URL"
2679
+ msgstr "IPN prosesseringslenke"
2680
+
2681
+ #: classes/gateways/class.pmprogateway_paypal.php:158
2682
+ msgid ""
2683
+ "This URL is passed to PayPal for all new charges and subscriptions. You "
2684
+ "SHOULD NOT set this in your PayPal account settings."
2685
+ msgstr ""
2686
+ "Denne URL’en blir sendt til PayPal hver gang det skjer en betaling eller ett "
2687
+ "abonnement opprettes. Det skulle IKKE være nødvendig for deg å legge inn "
2688
+ "denne i innstillingene din på PayPal sine sider."
2689
+
2690
+ # @ pmpro
2691
+ #: classes/gateways/class.pmprogateway_paypal.php:178
2692
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:412
2693
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:202
2694
+ #: pages/checkout.php:302
2695
+ msgid "Check Out with PayPal"
2696
+ msgstr "Betal med Paypal"
2697
+
2698
+ # @ pmpro
2699
+ #: classes/gateways/class.pmprogateway_paypal.php:184
2700
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
2701
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2702
+ #: pages/checkout.php:728
2703
+ msgid "Submit and Check Out"
2704
+ msgstr "Lagre og betal"
2705
+
2706
+ # @ pmpro
2707
+ #: classes/gateways/class.pmprogateway_paypal.php:184
2708
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
2709
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2710
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
2711
+ #: pages/checkout.php:728
2712
+ msgid "Submit and Confirm"
2713
+ msgstr "Lagre og bekreft"
2714
+
2715
+ #: classes/gateways/class.pmprogateway_paypal.php:607
2716
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:752
2717
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:466
2718
+ msgid ""
2719
+ "Please contact the site owner or cancel your subscription from within PayPal "
2720
+ "to make sure you are not charged going forward."
2721
+ msgstr ""
2722
+ "Vennligst ta kontakt med eieren av denne webtjenesten, eller avbryt "
2723
+ "abonnementet ditt på PayPal sine websider for å forsikre deg om at du ikke "
2724
+ "blir belastet for dette videre."
2725
+
2726
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:73
2727
+ #: paid-memberships-pro.php:127
2728
+ msgid "PayPal Express"
2729
+ msgstr "PayPal Express"
2730
+
2731
+ # @ pmpro
2732
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:173
2733
+ msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2734
+ msgstr ""
2735
+ "For å fullføre integreringen med PayPal’s betalingstjeneste, pass på å sette "
2736
+ "IPN hånderingslenken din til"
2737
+
2738
+ # @ pmpro
2739
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:278
2740
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:330
2741
+ msgid "The PayPal Token was lost."
2742
+ msgstr "PayPal tokenet var tapt."
2743
+
2744
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:60
2745
+ #: paid-memberships-pro.php:130
2746
+ msgid "PayPal Standard"
2747
+ msgstr "PayPal Standard"
2748
+
2749
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:157
2750
+ msgid ""
2751
+ "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal "
2752
+ "settings."
2753
+ msgstr ""
2754
+ "Vi viser kun PayPal IPN lenken som en referance. Du TRENGER IKKE konfigurere "
2755
+ "denne i innstillingene din på PayPal sine websider."
2756
+
2757
+ #: classes/gateways/class.pmprogateway_stripe.php:51
2758
+ #, php-format
2759
+ msgid ""
2760
+ "The %s gateway depends on the %s PHP extension. Please enable it, or ask "
2761
+ "your hosting provider to enable it"
2762
+ msgstr ""
2763
+ "Betalingstjenesteportalen for %s avhenger av PHP-utvidelsen %s. Vennligst "
2764
+ "aktiver den, eller be webhotell leverandøren din om å aktivere den."
2765
+
2766
+ #: classes/gateways/class.pmprogateway_stripe.php:126
2767
+ #: paid-memberships-pro.php:126
2768
+ msgid "Stripe"
2769
+ msgstr "Stripe"
2770
+
2771
+ #: classes/gateways/class.pmprogateway_stripe.php:181
2772
+ msgid "Stripe Settings"
2773
+ msgstr "Innstillinger for Stripe"
2774
+
2775
+ # @ pmpro
2776
+ #: classes/gateways/class.pmprogateway_stripe.php:186
2777
+ msgid "Secret Key"
2778
+ msgstr "Hemmelig nøkkel"
2779
+
2780
+ # @ pmpro
2781
+ #: classes/gateways/class.pmprogateway_stripe.php:194
2782
+ msgid "Publishable Key"
2783
+ msgstr "Publiserbar nøkkel"
2784
+
2785
+ # @ pmpro
2786
+ #: classes/gateways/class.pmprogateway_stripe.php:202
2787
+ msgid "Show Billing Address Fields"
2788
+ msgstr "Vis felt for fakturaadresse"
2789
+
2790
+ # @ pmpro
2791
+ #: classes/gateways/class.pmprogateway_stripe.php:209
2792
+ msgid ""
2793
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
2794
+ "the checkout page.<br /><strong>If No, make sure you disable address "
2795
+ "verification in the Stripe dashboard settings.</strong>"
2796
+ msgstr ""
2797
+ "Stripe krever ikke at man oppgir en fakturaadresse. Velg “Nei” for å ikke "
2798
+ "vise disse feltene på bestillingssiden. <br/><strong>Dersom du velger "
2799
+ "“nei”, pass på at du ikke har addresseverifisering slått på i "
2800
+ "kontoinnstillingene dine på Stripe sine websider."
2801
+
2802
+ # @ pmpro
2803
+ #: classes/gateways/class.pmprogateway_stripe.php:217
2804
+ msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
2805
+ msgstr ""
2806
+ "For å fullføre integreringen av Stripe sine betalingstjenester, pass på å "
2807
+ "konfigurere “Web Hook URL” innstillingen til"
2808
+
2809
+ #: classes/gateways/class.pmprogateway_stripe.php:608
2810
+ msgid "Subscription Updates"
2811
+ msgstr "Abonnementsoppdateringer"
2812
+
2813
+ #: classes/gateways/class.pmprogateway_stripe.php:612
2814
+ msgid ""
2815
+ "Subscription updates, allow you to change the member's subscription values "
2816
+ "at predefined times. Be sure to click Update Profile after making changes."
2817
+ msgstr ""
2818
+ "Abonnementsoppdateringer, lar deg endre abonnementsverdiene for brukeren til "
2819
+ "bestemte tider. Pass på å klikke på “Oppdater profilen” etter at du har "
2820
+ "ferdigstilt endringene."
2821
+
2822
+ #: classes/gateways/class.pmprogateway_stripe.php:614
2823
+ msgid ""
2824
+ "Subscription updates, allow you to change the member's subscription values "
2825
+ "at predefined times. Be sure to click Update User after making changes."
2826
+ msgstr ""
2827
+ "Abonnementsoppdateringer, lar deg endre abonnementsverdiene for brukeren til "
2828
+ "bestemte tider. Pass på å klikke på “Oppdater profilen” etter at du har "
2829
+ "ferdigstilt endringene."
2830
+
2831
+ # @ pmpro
2832
+ #: classes/gateways/class.pmprogateway_stripe.php:619 pages/billing.php:343
2833
+ msgid "Update"
2834
+ msgstr "Oppdater"
2835
+
2836
+ #: classes/gateways/class.pmprogateway_stripe.php:812
2837
+ msgid "Could not cancel the old subscription. Updates have not been processed."
2838
+ msgstr ""
2839
+ "Klarte ikke å avslutte det gamle abonnementet. Nye oppdateringer ble ikke "
2840
+ "behandlet."
2841
+
2842
+ # @ pmpro
2843
+ #: classes/gateways/class.pmprogateway_stripe.php:1246
2844
+ msgid "Error creating customer record with Stripe:"
2845
+ msgstr "Feil: Kunne ikke opprette en kundekonto hos Stripe:"
2846
+
2847
+ #: classes/gateways/class.pmprogateway_stripe.php:1303
2848
+ msgid "Error getting subscription with Stripe:"
2849
+ msgstr "Feil: Fant ikke abonnementet hos Stripe"
2850
+
2851
+ # @ pmpro
2852
+ #: classes/gateways/class.pmprogateway_stripe.php:1453
2853
+ msgid "Error creating plan with Stripe:"
2854
+ msgstr "Feil: Kunne ikke opprette en betalingsplan med Stripe"
2855
+
2856
+ # @ pmpro
2857
+ #: classes/gateways/class.pmprogateway_stripe.php:1484
2858
+ msgid "Error subscribing customer to plan with Stripe:"
2859
+ msgstr "Feil: Kunne ikke lenke kunden til abonnementet hos Stripe"
2860
+
2861
+ #: classes/gateways/class.pmprogateway_stripe.php:1580
2862
+ msgid "Could not cancel old subscription."
2863
+ msgstr "Kunne ikke avslutte det gamle abonnementet."
2864
+
2865
+ #: classes/gateways/class.pmprogateway_stripe.php:1597
2866
+ msgid "Could not find the customer."
2867
+ msgstr "Fant ikke kunden"
2868
+
2869
+ #: classes/gateways/class.pmprogateway_twocheckout.php:59
2870
+ #: paid-memberships-pro.php:133
2871
+ msgid "2Checkout"
2872
+ msgstr "2Checkout"
2873
+
2874
+ #: classes/gateways/class.pmprogateway_twocheckout.php:114
2875
+ msgid "2Checkout Settings"
2876
+ msgstr "Innstillinger for 2Checkout"
2877
+
2878
+ #: classes/gateways/class.pmprogateway_twocheckout.php:123
2879
+ msgid ""
2880
+ "Go to Account &raquo; User Management in 2Checkout and create a user with "
2881
+ "API Access and API Updating."
2882
+ msgstr ""
2883
+ "Gå til kontoen din, så “User Management” i 2Checkout for å opprette en "
2884
+ "bruker med API-tilgang og API baserte oppdateringer."
2885
+
2886
+ #: classes/gateways/class.pmprogateway_twocheckout.php:132
2887
+ msgid "Password for the API user created."
2888
+ msgstr "Opprettet passord for API brukeren"
2889
+
2890
+ #: classes/gateways/class.pmprogateway_twocheckout.php:141
2891
+ msgid "Click on the profile icon in 2Checkout to find your Account Number."
2892
+ msgstr "Klikk på profilikonet til 2Checkout for å finne ditt kontonummer."
2893
+
2894
+ # @ pmpro
2895
+ #: classes/gateways/class.pmprogateway_twocheckout.php:146
2896
+ msgid "Secret Word"
2897
+ msgstr "“Secret Word”"
2898
+
2899
+ #: classes/gateways/class.pmprogateway_twocheckout.php:150
2900
+ msgid ""
2901
+ "Go to Account &raquo; Site Management. Look under Checkout Options to find "
2902
+ "the Secret Word."
2903
+ msgstr ""
2904
+ "Gå til kontoen din, så “Site Management”. Finn “Checkout Options” for så å "
2905
+ "lokalisere ditt “Secret Word”"
2906
+
2907
+ # @ pmpro
2908
+ #: classes/gateways/class.pmprogateway_twocheckout.php:155
2909
+ msgid "TwoCheckout INS URL"
2910
+ msgstr "2Checkout INS URL"
2911
+
2912
+ #: classes/gateways/class.pmprogateway_twocheckout.php:158
2913
+ msgid ""
2914
+ "To fully integrate with 2Checkout, be sure to use the following for your INS "
2915
+ "URL and Approved URL"
2916
+ msgstr ""
2917
+ "For å fullføre integrasjonen med betalingstjenesten til 2Checkout, pass på å "
2918
+ "bruke følgende som din INS URL og “Approved URL”"
2919
+
2920
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
2921
+ msgid "Check Out with 2Checkout"
2922
+ msgstr "Betal med 2Checkout"
2923
+
2924
+ # @ pmpro
2925
+ #: includes/adminpages.php:47
2926
+ msgid "Memberships"
2927
+ msgstr "Medlemskap"
2928
+
2929
+ # @ pmpro
2930
+ #: includes/adminpages.php:48 includes/adminpages.php:118
2931
+ msgid "Page Settings"
2932
+ msgstr "Sideinnstillinger"
2933
+
2934
+ # @ pmpro
2935
+ #: includes/adminpages.php:49 includes/adminpages.php:125
2936
+ msgid "Payment Settings"
2937
+ msgstr "Betalingsinnstillinger"
2938
+
2939
+ # @ pmpro
2940
+ #: includes/adminpages.php:54 includes/adminpages.php:160
2941
+ msgid "Reports"
2942
+ msgstr "Rapporter"
2943
+
2944
+ # @ pmpro
2945
+ #: includes/adminpages.php:56 includes/adminpages.php:174
2946
+ msgid "Discount Codes"
2947
+ msgstr "Rabattkoder"
2948
+
2949
+ #: includes/adminpages.php:104
2950
+ msgid "<span class=\"ab-icon\"></span>Memberships"
2951
+ msgstr "<span class=\"ab-icon\"></span>Medlemsskap"
2952
+
2953
+ #: includes/adminpages.php:265
2954
+ msgid "View PMPro Documentation"
2955
+ msgstr "Til PMPro dokumentasjonen"
2956
+
2957
+ #: includes/adminpages.php:265
2958
+ msgid "Docs"
2959
+ msgstr "Documentasjon"
2960
+
2961
+ #: includes/adminpages.php:266
2962
+ msgid "Visit Customer Support Forum"
2963
+ msgstr "Besøk brukerstøtte forumet"
2964
+
2965
+ #: includes/adminpages.php:266
2966
+ msgid "Support"
2967
+ msgstr "Brukerstøtte"
2968
+
2969
+ # @ pmpro
2970
+ #: includes/currencies.php:17 includes/currencies.php:86
2971
+ msgid "US Dollars (&#36;)"
2972
+ msgstr "Amerikanske dollar (&#36;)"
2973
+
2974
+ # @ pmpro
2975
+ #: includes/currencies.php:19 includes/currencies.php:89
2976
+ msgid "Euros (&euro;)"
2977
+ msgstr "Euro (&euro;)"
2978
+
2979
+ # @ pmpro
2980
+ #: includes/currencies.php:24 includes/currencies.php:88
2981
+ msgid "Pounds Sterling (&pound;)"
2982
+ msgstr "Britiske pund (&pound;)"
2983
+
2984
+ #: includes/currencies.php:28
2985
+ msgid "Argentine Peso (&#36;)"
2986
+ msgstr "Argentinske Peso (&#36;)"
2987
+
2988
+ # @ pmpro
2989
+ #: includes/currencies.php:29
2990
+ msgid "Australian Dollars (&#36;)"
2991
+ msgstr "Australske dollar (&#36;)"
2992
+
2993
+ #: includes/currencies.php:31
2994
+ msgid "Brazilian Real (R&#36;)"
2995
+ msgstr "Brasilianske Real (R&#36;)"
2996
+
2997
+ # @ pmpro
2998
+ #: includes/currencies.php:35 includes/currencies.php:87
2999
+ msgid "Canadian Dollars (&#36;)"
3000
+ msgstr "Kanadiske dollar (&#36;)"
3001
+
3002
+ # @ pmpro
3003
+ #: includes/currencies.php:36
3004
+ msgid "Chinese Yuan"
3005
+ msgstr "Kinesisk yuan"
3006
+
3007
+ # @ pmpro
3008
+ #: includes/currencies.php:38
3009
+ msgid "Czech Koruna"
3010
+ msgstr "Czech koruna"
3011
+
3012
+ # @ pmpro
3013
+ #: includes/currencies.php:45
3014
+ msgid "Danish Krone"
3015
+ msgstr "Dansk krone"
3016
+
3017
+ # @ pmpro
3018
+ #: includes/currencies.php:46
3019
+ msgid "Hong Kong Dollar (&#36;)"
3020
+ msgstr "Hong Kong Dollar ($#36;)"
3021
+
3022
+ # @ pmpro
3023
+ #: includes/currencies.php:47
3024
+ msgid "Hungarian Forint"
3025
+ msgstr "Hungarske Forint"
3026
+
3027
+ # @ pmpro
3028
+ #: includes/currencies.php:48
3029
+ msgid "Indian Rupee"
3030
+ msgstr "Indiske Rupee"
3031
+
3032
+ # @ pmpro
3033
+ #: includes/currencies.php:49
3034
+ msgid "Indonesia Rupiah"
3035
+ msgstr "Indonesiske Rupiah"
3036
+
3037
+ # @ pmpro
3038
+ #: includes/currencies.php:50
3039
+ msgid "Israeli Shekel"
3040
+ msgstr "Israelske Shekel"
3041
+
3042
+ # @ pmpro
3043
+ #: includes/currencies.php:52
3044
+ msgid "Japanese Yen (&yen;)"
3045
+ msgstr "Japanske Yen (&yen;)"
3046
+
3047
+ # @ pmpro
3048
+ #: includes/currencies.php:56
3049
+ msgid "Malaysian Ringgits"
3050
+ msgstr "Malaysiske Ringgits"
3051
+
3052
+ # @ pmpro
3053
+ #: includes/currencies.php:57
3054
+ msgid "Mexican Peso (&#36;)"
3055
+ msgstr "Meksikanske Peso ($#36;)"
3056
+
3057
+ # @ pmpro
3058
+ #: includes/currencies.php:58
3059
+ msgid "New Zealand Dollar (&#36;)"
3060
+ msgstr "New Zealandske Dollar ($#36;)"
3061
+
3062
+ # @ pmpro
3063
+ #: includes/currencies.php:59
3064
+ msgid "Norwegian Krone"
3065
+ msgstr "Norske kroner (NOK)"
3066
+
3067
+ # @ pmpro
3068
+ #: includes/currencies.php:60
3069
+ msgid "Philippine Pesos"
3070
+ msgstr "Filippinske Pesos"
3071
+
3072
+ # @ pmpro
3073
+ #: includes/currencies.php:61
3074
+ msgid "Polish Zloty"
3075
+ msgstr "Polske Zloty"
3076
+
3077
+ # @ pmpro
3078
+ #: includes/currencies.php:63
3079
+ msgid "Singapore Dollar (&#36;)"
3080
+ msgstr "Singaporske Dollar ($#36;)"
3081
+
3082
+ #: includes/currencies.php:68
3083
+ msgid "South African Rand (R)"
3084
+ msgstr "Sørafrikanske Rand(R)"
3085
+
3086
+ # @ pmpro
3087
+ #: includes/currencies.php:72
3088
+ msgid "South Korean Won"
3089
+ msgstr "Sør-Koreanske Won"
3090
+
3091
+ # @ pmpro
3092
+ #: includes/currencies.php:73
3093
+ msgid "Swedish Krona"
3094
+ msgstr "Svenske kroner (SEK)"
3095
+
3096
+ # @ pmpro
3097
+ #: includes/currencies.php:74
3098
+ msgid "Swiss Franc"
3099
+ msgstr "Sveitsiske Franc"
3100
+
3101
+ # @ pmpro
3102
+ #: includes/currencies.php:75
3103
+ msgid "Taiwan New Dollars"
3104
+ msgstr "Taiwanesiske New Dollars"
3105
+
3106
+ # @ pmpro
3107
+ #: includes/currencies.php:76
3108
+ msgid "Thai Baht"
3109
+ msgstr "Thai Baht"
3110
+
3111
+ # @ pmpro
3112
+ #: includes/currencies.php:77
3113
+ msgid "Turkish Lira"
3114
+ msgstr "Trykiske Lire"
3115
+
3116
+ # @ pmpro
3117
+ #: includes/currencies.php:78
3118
+ msgid "Vietnamese Dong"
3119
+ msgstr "Vietnamesiske Dong"
3120
+
3121
+ # @ pmpro
3122
+ #: includes/functions.php:243
3123
+ #, php-format
3124
+ msgid "The price for membership is <strong>%s</strong> now"
3125
+ msgstr "Medlemskapet koster <strong>%s</strong> nå"
3126
+
3127
+ #: includes/functions.php:245
3128
+ #, php-format
3129
+ msgid "<strong>%s</strong> now"
3130
+ msgstr "<strong>%s</strong>"
3131
+
3132
+ # @ Recurring payment in cost text generation. E.g. $5 every month for 2 more payments.
3133
+ #: includes/functions.php:254
3134
+ #, php-format
3135
+ msgid " and then <strong>%s per %s for %d more %s</strong>."
3136
+ msgstr "og så koster det <strong>%s hver %s i %d flere %s</strong>."
3137
+
3138
+ #: includes/functions.php:258
3139
+ #, php-format
3140
+ msgid " and then <strong>%s every %d %s for %d more payments</strong>."
3141
+ msgstr "og koster det <strong>%s hver %d %s over %d innbetalinger</strong>."
3142
+
3143
+ # @ Recurring payment in cost text generation. E.g. $5 after 2 months.
3144
+ #: includes/functions.php:263
3145
+ #, php-format
3146
+ msgid " and then <strong>%s after %d %s</strong>."
3147
+ msgstr "og så koster det <strong>%s etter %d %s</strong>."
3148
+
3149
+ #: includes/functions.php:271
3150
+ #, php-format
3151
+ msgid "The price for membership is <strong>%s per %s</strong>."
3152
+ msgstr "Medlemskapet koster <strong>%s per %s</strong>."
3153
+
3154
+ #: includes/functions.php:273
3155
+ #, php-format
3156
+ msgid "<strong>%s per %s</strong>."
3157
+ msgstr "<strong>%s per %s</strong>."
3158
+
3159
+ #: includes/functions.php:278
3160
+ #, php-format
3161
+ msgid "The price for membership is <strong>%s every %d %s</strong>."
3162
+ msgstr "Prisen for medlemsskap er <strong>%s hver %d %s</strong>."
3163
+
3164
+ #: includes/functions.php:280
3165
+ #, php-format
3166
+ msgid "<strong>%s every %d %s</strong>."
3167
+ msgstr "<strong>%s hver %d %s</strong>."
3168
+
3169
+ # @ Recurring payment in cost text generation. E.g. $5 every month.
3170
+ #: includes/functions.php:285
3171
+ #, php-format
3172
+ msgid " and then <strong>%s per %s</strong>."
3173
+ msgstr "og så koster det <strong>%s hver %s</strong>."
3174
+
3175
+ # @ Recurring payment in cost text generation. E.g., $5 every 2 months.
3176
+ #: includes/functions.php:289
3177
+ #, php-format
3178
+ msgid " and then <strong>%s every %d %s</strong>."
3179
+ msgstr "og så koster det <strong>%s hever %d. %s</strong>."
3180
+
3181
+ # @ pmpro
3182
+ #: includes/functions.php:307
3183
+ msgid "After your initial payment, your first payment is Free."
3184
+ msgstr ""
3185
+ "Etter vi har mottatt din initielle innbetaling, er den første periodiske "
3186
+ "innbetalingen gratis."
3187
+
3188
+ # @ pmpro
3189
+ #: includes/functions.php:311
3190
+ #, php-format
3191
+ msgid "After your initial payment, your first %d payments are Free."
3192
+ msgstr ""
3193
+ "Etter vi har mottatt din initielle innbetaling, er de neste %d "
3194
+ "innbetalingsperiodene gratis."
3195
+
3196
+ # @ pmpro
3197
+ #: includes/functions.php:318
3198
+ #, php-format
3199
+ msgid "After your initial payment, your first payment will cost %s."
3200
+ msgstr ""
3201
+ "Etter vi har mottatt din initielle innbetaling, vil de neste "
3202
+ "innbetalingsperiodene koste %s."
3203
+
3204
+ # @ pmpro
3205
+ #: includes/functions.php:322
3206
+ #, php-format
3207
+ msgid "After your initial payment, your first %d payments will cost %s."
3208
+ msgstr ""
3209
+ "Etter vi har mottatt din initielle innbetaling vil de første %d "
3210
+ "innbetalingsperiodene koste %s."
3211
+
3212
+ # @ pmpro
3213
+ #: includes/functions.php:333
3214
+ #, php-format
3215
+ msgid "Customers in %s will be charged %s%% tax."
3216
+ msgstr ""
3217
+ "Kunder som befinner seg i %s vil bli belastet %s%% i skatter og avgifter."
3218
+
3219
+ # @ pmpro
3220
+ #: includes/functions.php:347
3221
+ #, php-format
3222
+ msgid "Membership expires after %d %s."
3223
+ msgstr "Medlemsskapet utløper etter %d %s"
3224
+
3225
+ # @ pmpro
3226
+ #: includes/functions.php:694
3227
+ msgid "User ID not found."
3228
+ msgstr "Fant ikke brukerens ID."
3229
+
3230
+ # @ pmpro
3231
+ #: includes/functions.php:714
3232
+ msgid "Invalid level."
3233
+ msgstr "Ugyldig medlemsnivå"
3234
+
3235
+ # @ pmpro
3236
+ #: includes/functions.php:725
3237
+ msgid "not changing?"
3238
+ msgstr "ingen endring?"
3239
+
3240
+ # @ pmpro
3241
+ #: includes/functions.php:742 includes/functions.php:815
3242
+ #: includes/functions.php:839
3243
+ msgid "Error interacting with database"
3244
+ msgstr "Feil i samspill med databasen"
3245
+
3246
+ # @ pmpro
3247
+ #: includes/functions.php:881 includes/functions.php:920
3248
+ msgid "Membership level not found."
3249
+ msgstr "Fant ikke medlemsnivået"
3250
+
3251
+ #: includes/functions.php:1290
3252
+ msgid "No code was given to check."
3253
+ msgstr "Ingen rabattkode oppgitt som vi kan sjekke mot."
3254
+
3255
+ # @ pmpro
3256
+ #: includes/functions.php:1299
3257
+ msgid "The discount code could not be found."
3258
+ msgstr "Finner ikke denne rabattkoden"
3259
+
3260
+ # @ pmpro
3261
+ #: includes/functions.php:1314
3262
+ #, php-format
3263
+ msgid "This discount code goes into effect on %s."
3264
+ msgstr "Denne rabattkoden er gyldig fra %s"
3265
+
3266
+ # @ pmpro
3267
+ #: includes/functions.php:1321
3268
+ #, php-format
3269
+ msgid "This discount code expired on %s."
3270
+ msgstr "Denne rabattkoden ble ugyldig den %s"
3271
+
3272
+ # @ pmpro
3273
+ #: includes/functions.php:1331
3274
+ msgid "This discount code is no longer valid."
3275
+ msgstr "Denne rabattkoden er ikke gyldig."
3276
+
3277
+ # @ pmpro
3278
+ #: includes/functions.php:1344
3279
+ msgid "This discount code does not apply to this membership level."
3280
+ msgstr "Denne rabattkoden gjelder ikke for dette medlemskapsnivået."
3281
+
3282
+ # @ pmpro
3283
+ #: includes/functions.php:1370
3284
+ msgid "This discount code is okay."
3285
+ msgstr "Denne rabattkoden er korrekt."
3286
+
3287
+ # @ pmpro
3288
+ #: includes/functions.php:1395
3289
+ msgid "and"
3290
+ msgstr "og"
3291
+
3292
+ # @ pmpro
3293
+ #: includes/functions.php:1620
3294
+ msgid "Sign Up for !!name!! Now"
3295
+ msgstr "Registrer deg for !!name!! i dag"
3296
+
3297
+ # @ pmpro
3298
+ #: includes/functions.php:1626
3299
+ msgid "Please specify a level id."
3300
+ msgstr "Oppgi id for nivået"
3301
+
3302
+ # @ pmpro
3303
+ #: includes/init.php:253 includes/profile.php:39
3304
+ msgid "None"
3305
+ msgstr "Ingen"
3306
+
3307
+ #: includes/license.php:51
3308
+ msgid "Your license key has been validated."
3309
+ msgstr "Lisenskoden din har blitt godkjent."
3310
+
3311
+ #: includes/license.php:81
3312
+ msgid "Paid Memberships Pro Support License"
3313
+ msgstr "Paid Membership Pro brukerstøttelisens"
3314
+
3315
+ #: includes/license.php:86
3316
+ msgid "License Key"
3317
+ msgstr "Lisensnøkkel"
3318
+
3319
+ #: includes/license.php:89
3320
+ msgid ""
3321
+ "Enter your support license key.</strong> Your license key can be found in "
3322
+ "your membership email receipt or in your <a href=\"http://www."
3323
+ "paidmembershipspro.com/login/?redirect_to=/membership-account/\" target="
3324
+ "\"_blank\">Membership Account</a>."
3325
+ msgstr "Legg inn lisensnøkkelen for brukerstøtte. "
3326
+
3327
+ #: includes/license.php:91
3328
+ msgid "Your license is invalid or expired."
3329
+ msgstr "Brukerstøttelisense er ugyldig, eller så har den utgått."
3330
+
3331
+ #: includes/license.php:91
3332
+ msgid ""
3333
+ "Visit the PMPro <a href=\"http://www.paidmembershipspro.com/login/?"
3334
+ "redirect_to=/membership-account/\" target=\"_blank\">Membership Account</a> "
3335
+ "page to confirm that your account is active and to find your license key."
3336
+ msgstr ""
3337
+ "Besøk din PMPro <a href=\"http://www.paidmembershipspro.com/login/?"
3338
+ "redirect_to=/membership-account/\" target=\"_blank\">medlemskontoside</a> "
3339
+ "for å bekrefte at din medlemsstøttekonto fortsatt er aktiv og for å finne "
3340
+ "lisensnøkkelen din."
3341
+
3342
+ #: includes/license.php:93
3343
+ #, php-format
3344
+ msgid ""
3345
+ "<p><strong>Thank you!</strong> A valid <strong>%s</strong> license key has "
3346
+ "been used to activate your support license on this site.</p>"
3347
+ msgstr ""
3348
+ "<p><strong>Tusen takk!</strong> En gyldig <strong>%s</strong> lisensnøkkel "
3349
+ "ble brukt for å aktivisere din brukerstøttelisens for denne webtjeneren.</p>"
3350
+
3351
+ #: includes/license.php:100
3352
+ msgid "Enter license key here..."
3353
+ msgstr "Legg inn lisensnøkkelen din her…"
3354
+
3355
+ #: includes/license.php:102
3356
+ msgid "Verify Key"
3357
+ msgstr "Bekreft lisensnøkkelen"
3358
+
3359
+ #: includes/license.php:288
3360
+ msgid "Invalid PMPro License Key."
3361
+ msgstr "Ugyldig PMPro lisensnøkkel."
3362
+
3363
+ #: includes/license.php:288
3364
+ msgid ""
3365
+ "If you're running Paid Memberships Pro on a production website, we recommend "
3366
+ "an annual support license."
3367
+ msgstr ""
3368
+ "Dersom du bruker Paid Memberships Pro på en webtjeneste som er i produksjon "
3369
+ "anbefaler vi at du anskaffer en brukerstøtte lisens med årlig fornyelse."
3370
+
3371
+ #: includes/license.php:289
3372
+ msgid "More Info"
3373
+ msgstr "Mer informasjon"
3374
+
3375
+ #: includes/license.php:289
3376
+ msgid "Dismiss"
3377
+ msgstr "Lukk"
3378
+
3379
+ # @ pmpro
3380
+ #: includes/localization.php:26
3381
+ msgid "Day"
3382
+ msgstr "Dag\t"
3383
+
3384
+ # @ pmpro
3385
+ #: includes/localization.php:28
3386
+ msgid "Week"
3387
+ msgstr "Uke"
3388
+
3389
+ # @ pmpro
3390
+ #: includes/localization.php:30
3391
+ msgid "Month"
3392
+ msgstr "Måned"
3393
+
3394
+ # @ pmpro
3395
+ #: includes/localization.php:32
3396
+ msgid "Year"
3397
+ msgstr "År"
3398
+
3399
+ #: includes/localization.php:37
3400
+ msgid "Days"
3401
+ msgstr "Dager"
3402
+
3403
+ #: includes/localization.php:39
3404
+ msgid "Weeks"
3405
+ msgstr "Uker"
3406
+
3407
+ #: includes/localization.php:41
3408
+ msgid "Months"
3409
+ msgstr "Måneder"
3410
+
3411
+ #: includes/localization.php:43
3412
+ msgid "Years"
3413
+ msgstr "År"
3414
+
3415
+ # @ pmpro
3416
+ #: includes/metaboxes.php:39
3417
+ msgid ""
3418
+ "This post is already protected for this level because it is within a "
3419
+ "category that requires membership."
3420
+ msgstr ""
3421
+ "Dette innlegget er allerede beskyttet fordi det er tillagt en kategori som "
3422
+ "krever at du er medlem."
3423
+
3424
+ # @ pmpro
3425
+ #: includes/metaboxes.php:104 includes/metaboxes.php:105
3426
+ msgid "Require Membership"
3427
+ msgstr "Krever at du er medlem"
3428
+
3429
+ #: includes/metaboxes.php:135
3430
+ msgid ""
3431
+ "Only members of these levels will be able to view posts in this category."
3432
+ msgstr ""
3433
+ "Vi tillater kun brukere med følgende medlemsnivåer å se innlegg som tilhører "
3434
+ "denne kategorien."
3435
+
3436
+ # @ pmpro
3437
+ #: includes/profile.php:36
3438
+ msgid "Current Level"
3439
+ msgstr "Gjeldende medlemsnivå"
3440
+
3441
+ #: includes/profile.php:65
3442
+ msgid "Not paying."
3443
+ msgstr "Ikkebetalende"
3444
+
3445
+ #: includes/profile.php:73
3446
+ msgid ""
3447
+ "This will not change the subscription at the gateway unless the 'Cancel' "
3448
+ "checkbox is selected below."
3449
+ msgstr ""
3450
+ "Denne operasjonen kommer ikke til å endre abonnementet på "
3451
+ "betalingsformidlings"
3452
+
3453
+ #: includes/upgradecheck.php:442
3454
+ #, php-format
3455
+ msgid ""
3456
+ "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
3457
+ msgstr ""
3458
+ "Dette innholdet er reservert for særskilte medlemmer (!!level!!)<br /><a "
3459
+ "href=\"%s\">Registrer deg!</a>"
3460
+
3461
+ #: includes/upgradecheck.php:445
3462
+ #, php-format
3463
+ msgid ""
3464
+ "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
3465
+ "<a href=\"%s\">Register</a>"
3466
+ msgstr ""
3467
+ "Dette innholdet er reservert for særskilte medlemmer (!!level!!)<br /><a "
3468
+ "href=\"%s\">Logg deg på</a> eller <a href=\"%s\">Register deg</a>"
3469
+
3470
+ #: includes/upgradecheck.php:449
3471
+ msgid ""
3472
+ "This content is for !!levels!! members only. Visit the site and log in/"
3473
+ "register to read."
3474
+ msgstr ""
3475
+ "Dette innholdet er reservert for særskilte medlemmer (!!level!!), men det er "
3476
+ "bare å komme innom og eventuelt registrere deg/logge deg på for å få lest "
3477
+ "det!"
3478
+
3479
+ # @ pmpro
3480
+ #: pages/billing.php:23
3481
+ #, php-format
3482
+ msgid "Logged in as <strong>%s</strong>."
3483
+ msgstr "Logget inn som <strong>%s</strong>."
3484
+
3485
+ # @ pmpro
3486
+ #: pages/billing.php:23
3487
+ msgid "logout"
3488
+ msgstr "Logg ut"
3489
+
3490
+ # @ pmpro
3491
+ #: pages/billing.php:25 pages/cancel.php:52 pages/invoice.php:109
3492
+ #: pages/levels.php:35 shortcodes/pmpro_account.php:44
3493
+ #: shortcodes/pmpro_account.php:126
3494
+ msgid "Level"
3495
+ msgstr "Kurs"
3496
+
3497
+ # @ pmpro
3498
+ #: pages/billing.php:27
3499
+ msgid "Membership Fee"
3500
+ msgstr "Pris på medlemskap"
3501
+
3502
+ # @ Recurring payment in cost text generation. E.g., $5 every 2 months.
3503
+ #: pages/billing.php:31
3504
+ #, php-format
3505
+ msgid "%s every %d %s."
3506
+ msgstr "%s hver %d %s."
3507
+
3508
+ # @ Recurring payment in cost text generation. E.g. $5 every month.
3509
+ #: pages/billing.php:33
3510
+ #, php-format
3511
+ msgid "%s per %s."
3512
+ msgstr "%s per %s."
3513
+
3514
+ # @ pmpro
3515
+ #: pages/billing.php:42
3516
+ msgid "Duration"
3517
+ msgstr "Varighet"
3518
+
3519
+ # @ pmpro
3520
+ #: pages/billing.php:52
3521
+ msgid ""
3522
+ "Your payment subscription is managed by PayPal. Please <a href=\"http://www."
3523
+ "paypal.com\">login to PayPal here</a> to update your billing information."
3524
+ msgstr ""
3525
+ "Din innbetaling blir håndtert av PayPal. <a href=«http://www.paypal."
3526
+ "com»>Bruk PayPal</a> for å oppdatere betalingsinformasjonen din."
3527
+
3528
+ # @ pmpro
3529
+ #: pages/billing.php:78 pages/checkout.php:326
3530
+ msgid "First Name"
3531
+ msgstr "Fornavn"
3532
+
3533
+ # @ pmpro
3534
+ #: pages/billing.php:82 pages/checkout.php:330
3535
+ msgid "Last Name"
3536
+ msgstr "Etternavn"
3537
+
3538
+ # @ pmpro
3539
+ #: pages/billing.php:86 pages/checkout.php:334
3540
+ msgid "Address 1"
3541
+ msgstr "Adresse 1"
3542
+
3543
+ # @ pmpro
3544
+ #: pages/billing.php:90 pages/checkout.php:338
3545
+ msgid "Address 2"
3546
+ msgstr "Adresse 2"
3547
+
3548
+ # @ pmpro
3549
+ #: pages/billing.php:100 pages/checkout.php:348
3550
+ msgid "City"
3551
+ msgstr "By"
3552
+
3553
+ # @ pmpro
3554
+ #: pages/billing.php:104 pages/checkout.php:352
3555
+ msgid "State"
3556
+ msgstr "Fylke"
3557
+
3558
+ # @ pmpro
3559
+ #: pages/billing.php:108 pages/checkout.php:356
3560
+ msgid "Postal Code"
3561
+ msgstr "Postnummer"
3562
+
3563
+ # @ pmpro
3564
+ #: pages/billing.php:117 pages/checkout.php:365
3565
+ msgid "City, State Zip"
3566
+ msgstr "By, Postnummer"
3567
+
3568
+ # @ pmpro
3569
+ #: pages/billing.php:170 pages/checkout.php:418
3570
+ msgid "Country"
3571
+ msgstr "Land"
3572
+
3573
+ # @ pmpro
3574
+ #: pages/billing.php:195 pages/checkout.php:443
3575
+ msgid "Phone"
3576
+ msgstr "Telefon"
3577
+
3578
+ # @ pmpro
3579
+ #: pages/billing.php:206 pages/checkout.php:220 pages/checkout.php:457
3580
+ msgid "E-mail Address"
3581
+ msgstr "E-post-adresse"
3582
+
3583
+ # @ pmpro
3584
+ #: pages/billing.php:210 pages/checkout.php:466
3585
+ msgid "Confirm E-mail"
3586
+ msgstr "Bekreft e-post-adresse"
3587
+
3588
+ # @ pmpro
3589
+ #: pages/billing.php:231
3590
+ msgid "Credit Card Information"
3591
+ msgstr "Kredittkortinformasjon"
3592
+
3593
+ # @ pmpro
3594
+ #: pages/billing.php:232
3595
+ #, php-format
3596
+ msgid "We accept %s"
3597
+ msgstr "Vi aksepterer følgende korttyper %s"
3598
+
3599
+ # @ pmpro
3600
+ #: pages/billing.php:360
3601
+ msgid ""
3602
+ "This subscription is not recurring. So you don't need to update your billing "
3603
+ "information."
3604
+ msgstr ""
3605
+ "Dette abonnementet har ikke periodiske betalinger, derfor trenger du ikke "
3606
+ "oppdatere betalingsinformasjonen din."
3607
+
3608
+ # @ pmpro
3609
+ #: pages/cancel.php:26
3610
+ msgid "Are you sure you want to cancel your membership?"
3611
+ msgstr "Er du sikker på at du vil kansellere medlemskapet ditt?"
3612
+
3613
+ #: pages/cancel.php:32
3614
+ #, php-format
3615
+ msgid "Are you sure you want to cancel your %s membership?"
3616
+ msgstr "Er du sikker på at du ønsker å avslutte medlemsnivået ditt (%s)?"
3617
+
3618
+ # @ pmpro
3619
+ #: pages/cancel.php:37
3620
+ msgid "Yes, cancel my account"
3621
+ msgstr "Ja, kanseller kontoen min"
3622
+
3623
+ # @ pmpro
3624
+ #: pages/cancel.php:38
3625
+ msgid "No, keep my account"
3626
+ msgstr "Nei, behold kontoen min"
3627
+
3628
+ #: pages/cancel.php:48 shortcodes/pmpro_account.php:40
3629
+ msgid "My Memberships"
3630
+ msgstr "Mine abonnement"
3631
+
3632
+ #: pages/cancel.php:77
3633
+ msgid "Cancel All Memberships"
3634
+ msgstr "Avbryt alle medlemsskap."
3635
+
3636
+ # @ pmpro
3637
+ #: pages/cancel.php:86
3638
+ msgid "Click here to go to the home page."
3639
+ msgstr "Klikk her for å gå til hjemmesiden."
3640
+
3641
+ # @ pmpro
3642
+ #: pages/checkout.php:35
3643
+ msgid ""
3644
+ "Almost done. Review the membership information and pricing below then "
3645
+ "<strong>click the \"Complete Payment\" button</strong> to finish your order."
3646
+ msgstr ""
3647
+ "Nå er alt nesten klart. Les igjennom informasjonen under om medlemskapet "
3648
+ "ditt, og <strong>klikk så på \"Fullfør betaling\" knappen</strong> for å "
3649
+ "fullføre bestillingen."
3650
+
3651
+ # @ pmpro
3652
+ #: pages/checkout.php:43
3653
+ msgid "change"
3654
+ msgstr "endre"
3655
+
3656
+ # @ pmpro
3657
+ #: pages/checkout.php:51
3658
+ #, php-format
3659
+ msgid "You have selected the <strong>%s</strong> membership level."
3660
+ msgstr "Du har valgt <strong>%s</strong>."
3661
+
3662
+ # @ pmpro
3663
+ #: pages/checkout.php:61
3664
+ #, php-format
3665
+ msgid ""
3666
+ "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
3667
+ "been applied to your order.</p>"
3668
+ msgstr ""
3669
+ "<p class=«pmpro_level_discount_applied»><strong>%s</strong>Rabattkoden er "
3670
+ "tilført din bestilling.</p>"
3671
+
3672
+ # @ pmpro
3673
+ #: pages/checkout.php:72 services/applydiscountcode.php:89
3674
+ msgid "Click here to change your discount code"
3675
+ msgstr "Klikk her for å endre din rabattkode"
3676
+
3677
+ # @ pmpro
3678
+ #: pages/checkout.php:74
3679
+ msgid "Do you have a discount code?"
3680
+ msgstr "Har du en rabattkode?"
3681
+
3682
+ # @ pmpro
3683
+ #: pages/checkout.php:74
3684
+ msgid "Click here to enter your discount code"
3685
+ msgstr "Klikk her for å legge til din rabattkode"
3686
+
3687
+ # @ pmpro
3688
+ #: pages/checkout.php:175
3689
+ msgid "Account Information"
3690
+ msgstr "Kontoinformasjon"
3691
+
3692
+ # @ pmpro
3693
+ #: pages/checkout.php:176
3694
+ msgid "Already have an account?"
3695
+ msgstr "Har du allerede en konto?"
3696
+
3697
+ # @ pmpro
3698
+ #: pages/checkout.php:176
3699
+ msgid "Log in here"
3700
+ msgstr "Logg inn her"
3701
+
3702
+ # @ pmpro
3703
+ #: pages/checkout.php:202
3704
+ msgid "Confirm Password"
3705
+ msgstr "Bekreft passord"
3706
+
3707
+ # @ pmpro
3708
+ #: pages/checkout.php:229
3709
+ msgid "Confirm E-mail Address"
3710
+ msgstr "Bekreft e-post-adresse"
3711
+
3712
+ # @ pmpro
3713
+ #: pages/checkout.php:248
3714
+ msgid "Full Name"
3715
+ msgstr "Fullt navn"
3716
+
3717
+ # @ pmpro
3718
+ #: pages/checkout.php:249
3719
+ msgid "LEAVE THIS BLANK"
3720
+ msgstr "LA FELTET VÆRE TOMT"
3721
+
3722
+ # @ pmpro
3723
+ #: pages/checkout.php:273
3724
+ #, php-format
3725
+ msgid ""
3726
+ "You are logged in as <strong>%s</strong>. If you would like to use a "
3727
+ "different account for this membership, <a href=\"%s\">log out now</a>."
3728
+ msgstr ""
3729
+ "Du er nå logget på som <strong>%s</strong>. Hvis du ønsker å logge deg på "
3730
+ "med en annen konto, <a href=\"%s\">logg ut nå</a>."
3731
+
3732
+ # @ pmpro
3733
+ #: pages/checkout.php:289
3734
+ msgid "Choose your Payment Method"
3735
+ msgstr "Velg betalingsmetode"
3736
+
3737
+ # @ pmpro
3738
+ #: pages/checkout.php:298
3739
+ msgid "Check Out with a Credit Card Here"
3740
+ msgstr "Betal med et kredittkort"
3741
+
3742
+ # @ pmpro
3743
+ #: pages/checkout.php:607
3744
+ msgid "CVV"
3745
+ msgstr "CCV"
3746
+
3747
+ # @ pmpro
3748
+ #: pages/checkout.php:608
3749
+ msgid "what's this?"
3750
+ msgstr "hva er dette?"
3751
+
3752
+ # @ pmpro
3753
+ #: pages/checkout.php:696
3754
+ #, php-format
3755
+ msgid "I agree to the %s"
3756
+ msgstr "Jeg har lest og godtar %s"
3757
+
3758
+ # @ pmpro
3759
+ #: pages/checkout.php:716
3760
+ msgid "Complete Payment"
3761
+ msgstr "Fullfør betaling"
3762
+
3763
+ # @ pmpro
3764
+ #: pages/checkout.php:738
3765
+ msgid "Processing..."
3766
+ msgstr "Prosesserer.."
3767
+
3768
+ # @ pmpro
3769
+ #: pages/confirmation.php:12
3770
+ msgid ""
3771
+ "Your payment has been submitted. Your membership will be activated shortly."
3772
+ msgstr ""
3773
+ "Betalingen din er gjennomført. Medlemskapet ditt vil snart bli aktivert."
3774
+
3775
+ # @ pmpro
3776
+ #: pages/confirmation.php:14
3777
+ #, php-format
3778
+ msgid "Thank you for your membership to %s. Your %s membership is now active."
3779
+ msgstr ""
3780
+ "Tusen takk for påmeldingen din til %s. Ditt medlemskap ved %s er nå aktivt."
3781
+
3782
+ # @ pmpro
3783
+ #: pages/confirmation.php:28
3784
+ #, php-format
3785
+ msgid ""
3786
+ "Below are details about your membership account and a receipt for your "
3787
+ "initial membership invoice. A welcome email with a copy of your initial "
3788
+ "membership invoice has been sent to %s."
3789
+ msgstr ""
3790
+ "Under finner du detaljer om medlemskontoen din og en kvittering for "
3791
+ "betaling. Det er også sendt en e-post med en kopi av fakturaen til %s."
3792
+
3793
+ # @ pmpro
3794
+ #: pages/confirmation.php:41 pages/invoice.php:22
3795
+ #, php-format
3796
+ msgid "Invoice #%s on %s"
3797
+ msgstr "Faktura #%s for %s"
3798
+
3799
+ # @ pmpro
3800
+ #: pages/confirmation.php:43 pages/invoice.php:24
3801
+ msgid "Print"
3802
+ msgstr "Skriv ut"
3803
+
3804
+ # @ pmpro
3805
+ #: pages/confirmation.php:46 pages/confirmation.php:104 pages/invoice.php:27
3806
+ msgid "Account"
3807
+ msgstr "Konto"
3808
+
3809
+ # @ pmpro
3810
+ #: pages/confirmation.php:49 pages/invoice.php:30
3811
+ msgid "Membership Expires"
3812
+ msgstr "Medlemskapet utløper"
3813
+
3814
+ # @ pmpro
3815
+ #: pages/confirmation.php:63 pages/invoice.php:50
3816
+ msgid "Payment Method"
3817
+ msgstr "Betalingsinformasjon"
3818
+
3819
+ # @ pmpro
3820
+ #: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
3821
+ msgid "Total Billed"
3822
+ msgstr "Totalsum belastet"
3823
+
3824
+ # @ credit card type {ending in} xxxx
3825
+ #: pages/confirmation.php:82 pages/invoice.php:69
3826
+ msgid "ending in"
3827
+ msgstr "kort som slutter på"
3828
+
3829
+ #: pages/confirmation.php:97
3830
+ #, php-format
3831
+ msgid ""
3832
+ "Below are details about your membership account. A welcome email has been "
3833
+ "sent to %s."
3834
+ msgstr ""
3835
+ "Under finner du detaljer om medlemsskapet ditt. En e-post med en kort "
3836
+ "velkomment har allerede blitt sendt til %s."
3837
+
3838
+ #: pages/confirmation.php:105
3839
+ msgctxt "User without membership is in {pending} status."
3840
+ msgid "Pending"
3841
+ msgstr "Avventer"
3842
+
3843
+ # @ pmpro
3844
+ #: pages/confirmation.php:113 pages/invoice.php:141
3845
+ msgid "View Your Membership Account &rarr;"
3846
+ msgstr "Se kontoen for medlemskapet ditt &rarr;"
3847
+
3848
+ # @ pmpro
3849
+ #: pages/confirmation.php:115
3850
+ msgid ""
3851
+ "If your account is not activated within a few minutes, please contact the "
3852
+ "site owner."
3853
+ msgstr ""
3854
+ "Hvis medlomskontoen din ikke aktiveres i løpet av et par minutter, så ta "
3855
+ "kontakt med eieren av disse sidene."
3856
+
3857
+ # @ pmpro
3858
+ #: pages/invoice.php:82
3859
+ msgid "Coupon"
3860
+ msgstr "Rabattkode"
3861
+
3862
+ # @ pmpro
3863
+ #: pages/invoice.php:108
3864
+ msgid "Invoice #"
3865
+ msgstr "Faktura #"
3866
+
3867
+ # @ pmpro
3868
+ #: pages/invoice.php:134
3869
+ msgid "No invoices found."
3870
+ msgstr "Ingen fakturaer funnet"
3871
+
3872
+ # @ pmpro
3873
+ #: pages/invoice.php:145
3874
+ msgid "&larr; View All Invoices"
3875
+ msgstr "&larr; Se alle fakturaer"
3876
+
3877
+ # @ pmpro
3878
+ #: pages/levels.php:55
3879
+ msgid "Free"
3880
+ msgstr "Gratis"
3881
+
3882
+ # @ Choose a level from levels page
3883
+ #: pages/levels.php:69 pages/levels.php:71
3884
+ msgid "Select"
3885
+ msgstr "Velg"
3886
+
3887
+ # @ Clickign to renew from levels page
3888
+ #: pages/levels.php:78 shortcodes/pmpro_account.php:61
3889
+ msgid "Renew"
3890
+ msgstr "Forny"
3891
+
3892
+ # @ pmpro
3893
+ #: pages/levels.php:82
3894
+ msgid "Your&nbsp;Level"
3895
+ msgstr "Ditt&nbsp;Medlemsnivå"
3896
+
3897
+ # @ pmpro
3898
+ #: pages/levels.php:98
3899
+ msgid "&larr; Return to Your Account"
3900
+ msgstr "&larr; Tilbake til kontoen din"
3901
+
3902
+ # @ pmpro
3903
+ #: pages/levels.php:100
3904
+ msgid "&larr; Return to Home"
3905
+ msgstr "&larr; Til hjemmesiden"
3906
+
3907
+ # @ pmpro
3908
+ #: paid-memberships-pro.php:124
3909
+ msgid "Testing Only"
3910
+ msgstr "Kun for test"
3911
+
3912
+ #: paid-memberships-pro.php:129
3913
+ msgid "PayPal Payflow Pro/PayPal Pro"
3914
+ msgstr "PayPal Payflow Pro/PayPal Pro"
3915
+
3916
+ #: paid-memberships-pro.php:134
3917
+ msgid "Cybersource"
3918
+ msgstr "Cybersource"
3919
+
3920
+ # @ pmpro
3921
+ #: preheaders/account.php:10 preheaders/levels.php:22
3922
+ msgid "Your membership status has been updated - Thank you!"
3923
+ msgstr "Status for medlemskapet ditt er oppdatert - Takk!"
3924
+
3925
+ # @ pmpro
3926
+ #: preheaders/account.php:12 preheaders/levels.php:24
3927
+ msgid ""
3928
+ "Sorry, your request could not be completed - please try again in a few "
3929
+ "moments."
3930
+ msgstr ""
3931
+ "Beklager, din forespørsel kunne ikke fullføres - vennligst prøv igjen om en "
3932
+ "liten stund."
3933
+
3934
+ # @ pmpro
3935
+ #: preheaders/billing.php:270 preheaders/checkout.php:336
3936
+ msgid "Please complete all required fields."
3937
+ msgstr "Fyll ut alle påkrevde felt."
3938
+
3939
+ # @ pmpro
3940
+ #: preheaders/billing.php:273 preheaders/checkout.php:344
3941
+ msgid "Your email addresses do not match. Please try again."
3942
+ msgstr "E-post-adressene dine stemmer ikke overens. Prøv igjen."
3943
+
3944
+ # @ pmpro
3945
+ #: preheaders/billing.php:276 preheaders/checkout.php:349
3946
+ msgid "The email address entered is in an invalid format. Please try again."
3947
+ msgstr "E-post-adressen er i et ugyldig format. Prøv igjen."
3948
+
3949
+ # @ pmpro
3950
+ #: preheaders/billing.php:280
3951
+ msgid "All good!"
3952
+ msgstr "Alt er korrekt!"
3953
+
3954
+ # @ pmpro
3955
+ #: preheaders/billing.php:350
3956
+ #, php-format
3957
+ msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
3958
+ msgstr ""
3959
+ "Informasjonen er oppdatert. <a href=\"%s\">&laquo; gå tilbake til kontoen</a>"
3960
+
3961
+ # @ pmpro
3962
+ #: preheaders/billing.php:356
3963
+ msgid "Error updating billing information."
3964
+ msgstr "Feil ved oppdatering av faktureringsinformasjon."
3965
+
3966
+ # @ pmpro
3967
+ #: preheaders/cancel.php:28
3968
+ msgid "Your membership has been cancelled."
3969
+ msgstr "Medlemskapet ditt er blitt kansellert."
3970
+
3971
+ # @ pmpro
3972
+ #: preheaders/checkout.php:32 preheaders/checkout.php:358
3973
+ msgid "Invalid gateway."
3974
+ msgstr "Ugyldig portal for betalingsformidleren."
3975
+
3976
+ # @ pmpro
3977
+ #: preheaders/checkout.php:95
3978
+ msgid "Checkout: Payment Information"
3979
+ msgstr "Betaling: Betalingsinformasjon"
3980
+
3981
+ #: preheaders/checkout.php:100
3982
+ msgid "Set Up Your Account"
3983
+ msgstr "Konfigurer medlemskontoen din."
3984
+
3985
+ #: preheaders/checkout.php:304
3986
+ msgid "There are JavaScript errors on the page. Please contact the webmaster."
3987
+ msgstr ""
3988
+ "Det har oppstått JavaScript feil på denne siden. Vennligst ta kontakt med "
3989
+ "webmasteren for denne siden."
3990
+
3991
+ # @ pmpro
3992
+ #: preheaders/checkout.php:339
3993
+ msgid "Your passwords do not match. Please try again."
3994
+ msgstr "Passordene stemmer ikke overens. Prøv igjen."
3995
+
3996
+ # @ pmpro
3997
+ #: preheaders/checkout.php:354
3998
+ #, php-format
3999
+ msgid "Please check the box to agree to the %s."
4000
+ msgstr "Huk av i boksen for å godta %s."
4001
+
4002
+ # @ pmpro
4003
+ #: preheaders/checkout.php:361
4004
+ msgid "Are you a spammer?"
4005
+ msgstr "Er du en spammer?"
4006
+
4007
+ # @ pmpro
4008
+ #: preheaders/checkout.php:381
4009
+ msgid "That username is already taken. Please try another."
4010
+ msgstr "Brukernavnet er opptatt. Prøv et annet."
4011
+
4012
+ # @ pmpro
4013
+ #: preheaders/checkout.php:386
4014
+ msgid "That email address is already taken. Please try another."
4015
+ msgstr "Denne e-post-adressen er allerede registrert. Bruk en annen adresse."
4016
+
4017
+ # @ pmpro
4018
+ #: preheaders/checkout.php:420
4019
+ #, php-format
4020
+ msgid "reCAPTCHA failed. (%s) Please try again."
4021
+ msgstr "Feil reCAPTCHA verdi. (%s) Vennligst prøv på nytt."
4022
+
4023
+ # @ pmpro
4024
+ #: preheaders/checkout.php:505
4025
+ msgid "Payment accepted."
4026
+ msgstr "Betaling er mottatt."
4027
+
4028
+ # @ pmpro
4029
+ #: preheaders/checkout.php:513
4030
+ msgid ""
4031
+ "Unknown error generating account. Please contact us to set up your "
4032
+ "membership."
4033
+ msgstr ""
4034
+ "Det oppstod en ukjent feil når medlemskontoen din skulle opprettes. Ta "
4035
+ "kontakt med oss for å blir registrert som medlem."
4036
+
4037
+ # @ pmpro
4038
+ #: preheaders/checkout.php:575
4039
+ msgid ""
4040
+ "Your payment was accepted, but there was an error setting up your account. "
4041
+ "Please contact us."
4042
+ msgstr ""
4043
+ "Betalingen din er mottatt, men det skjedde en feil ved oppretting av "
4044
+ "medlemskontoen din. Ta kontakt med oss."
4045
+
4046
+ # @ pmpro
4047
+ #: preheaders/checkout.php:722
4048
+ msgid ""
4049
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
4050
+ "authorized, but we cancelled the order immediately. You should not try to "
4051
+ "submit this form again. Please contact the site owner to fix this issue."
4052
+ msgstr ""
4053
+ "VIKITG MELDING: Det oppstod en feil under konfigurasjon av medlemsnivået "
4054
+ "ditt. Kredittkorttransaksjonen ble autorisert, men vi kansellerte "
4055
+ "bestillingen med en gang. <em>Vennligst <strong>ikke</strong> forsøk å sende "
4056
+ "transaksjonen på nytt</em> og kontakt med eieren av disse websidene for å "
4057
+ "fikse problemet."
4058
+
4059
+ # @ pmpro
4060
+ #: preheaders/checkout.php:725
4061
+ msgid ""
4062
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
4063
+ "was charged, but we couldn't assign your membership. You should not submit "
4064
+ "this form again. Please contact the site owner to fix this issue."
4065
+ msgstr ""
4066
+ "VIKITG MELDING: Det oppstod en feil under konfigurasjon av medlemsnivået "
4067
+ "ditt. Som en følge har kredittkortet ditt blitt belastet, men vi var ikke i "
4068
+ "stand til å gi deg det korrekte medlemsnivået. Vennligst ta kontakt med "
4069
+ "eieren av disse websidene for å fikse problemet."
4070
+
4071
+ # @ pmpro
4072
+ #: preheaders/checkout.php:736
4073
+ #, php-format
4074
+ msgid ""
4075
+ "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
4076
+ "will be processed."
4077
+ msgstr ""
4078
+ "Du må <a href=\"%s\">sette opp en betalingsformidlerportal</a> før "
4079
+ "innbetalinger kan mottas og behandles."
4080
+
4081
+ # @ pmpro
4082
+ #: preheaders/checkout.php:738
4083
+ msgid "A Payment Gateway must be set up before any payments will be processed."
4084
+ msgstr ""
4085
+ "En betalingsformidlerportal må settes opp før vi kan behandle innbetalinger."
4086
+
4087
+ # @ pmpro
4088
+ #: scheduled/crons.php:39
4089
+ #, php-format
4090
+ msgid "Membership expired email sent to %s. "
4091
+ msgstr "Vi har sendt melding til %s om at medlemsperioden er avsluttet."
4092
+
4093
+ # @ pmpro
4094
+ #: scheduled/crons.php:88
4095
+ #, php-format
4096
+ msgid "Membership expiring email sent to %s. "
4097
+ msgstr "Vi har sendt melding til %s om at medlemsperioden er i ferd med å utgå"
4098
+
4099
+ # @ pmpro
4100
+ #: scheduled/crons.php:164
4101
+ #, php-format
4102
+ msgid "Credit card expiring email sent to %s. "
4103
+ msgstr "Vi har sendt melding om ugyldig kredittkort til %s"
4104
+
4105
+ # @ pmpro
4106
+ #: scheduled/crons.php:220
4107
+ #, php-format
4108
+ msgid "Trial ending email sent to %s. "
4109
+ msgstr "E-post om avsluttet prøveperiode ble sendt til %s"
4110
+
4111
+ # @ pmpro
4112
+ #: services/applydiscountcode.php:67
4113
+ #, php-format
4114
+ msgid "The %s code has been applied to your order. "
4115
+ msgstr "Bestillingen din har blitt påført rabattkode %s"
4116
+
4117
+ # @ pmpro
4118
+ #: services/applydiscountcode.php:97
4119
+ #, php-format
4120
+ msgid "The <strong>%s</strong> code has been applied to your order."
4121
+ msgstr "Rabattkode <strong>%s</strong> har blitt tilført bestillingen din."
4122
+
4123
+ # @ pmpro
4124
+ #: services/authnet-silent-post.php:144
4125
+ msgid ""
4126
+ "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
4127
+ "Information From Authorize.net"
4128
+ msgstr ""
4129
+ "Authorize.net har valgt å holde betalingen for ettersyn.</p><p>Informasjon "
4130
+ "om betalingen fra Authorize.net"
4131
+
4132
+ # @ pmpro
4133
+ #: services/stripe-webhook.php:272
4134
+ #, php-format
4135
+ msgid ""
4136
+ "%s has had their payment subscription cancelled by Stripe. Please check that "
4137
+ "this user's membership is cancelled on your site if it should be."
4138
+ msgstr ""
4139
+ "Stripe har kansellert abonnementsinnbetalinger for %s. Vennligst bekreft at "
4140
+ "brukeren nå har korrekte tilganger til dine websider/tjenester."
4141
+
4142
+ #: shortcodes/pmpro_account.php:45
4143
+ msgid "Billing"
4144
+ msgstr "Innbetalinger"
4145
+
4146
+ #: shortcodes/pmpro_account.php:65
4147
+ msgid "Update Billing Info"
4148
+ msgstr "Oppdaterer kredittkortinformasjon og fakturadresse."
4149
+
4150
+ #: shortcodes/pmpro_account.php:71
4151
+ msgid "Change"
4152
+ msgstr "Endre"
4153
+
4154
+ #: shortcodes/pmpro_account.php:93
4155
+ msgid "View all Membership Options"
4156
+ msgstr "Vis alle medlemskapsalternativer"
4157
+
4158
+ # @ pmpro
4159
+ #: shortcodes/pmpro_account.php:102
4160
+ msgid "My Account"
4161
+ msgstr "Min konto"
4162
+
4163
+ # @ pmpro
4164
+ #: shortcodes/pmpro_account.php:113
4165
+ msgid "Edit Profile"
4166
+ msgstr "Rediger profil"
4167
+
4168
+ # @ pmpro
4169
+ #: shortcodes/pmpro_account.php:114
4170
+ msgid "Change Password"
4171
+ msgstr "Endre passord"
4172
+
4173
+ # @ pmpro
4174
+ #: shortcodes/pmpro_account.php:121
4175
+ msgid "Past Invoices"
4176
+ msgstr "Siste faktura"
4177
+
4178
+ #: shortcodes/pmpro_account.php:127
4179
+ msgid "Amount"
4180
+ msgstr "Beløp"
4181
+
4182
+ # @ pmpro
4183
+ #: shortcodes/pmpro_account.php:155
4184
+ msgid "View All Invoices"
4185
+ msgstr "Se alle fakturaer"
4186
+
4187
+ # @ pmpro
4188
+ #: shortcodes/pmpro_account.php:162
4189
+ msgid "Member Links"
4190
+ msgstr "Lenker for medlemmer"
4191
+
4192
+ # @ pmpro
4193
+ #~ msgid "Enabled"
4194
+ #~ msgstr "Aktiv"
4195
+
4196
+ # @ pmpro
4197
+ #~ msgid "Disabled"
4198
+ #~ msgstr "Ikke aktiv"
4199
+
4200
+ # @ pmpro
4201
+ #~ msgid "Billing Cycle"
4202
+ #~ msgstr "Faktureringssyklus"
4203
+
4204
+ # @ pmpro
4205
+ #~ msgid "Trial Cycle"
4206
+ #~ msgstr "Prøveperiode"
4207
+
4208
+ # @ pmpro
4209
+ #~ msgid "every"
4210
+ #~ msgstr "hver"
4211
+
4212
+ # @ pmpro
4213
+ #~ msgid "for"
4214
+ #~ msgstr "i"
4215
+
4216
+ # @ pmpro
4217
+ #~ msgid "Never"
4218
+ #~ msgstr "Aldri"
4219
+
4220
+ # @ pmpro
4221
+ #~ msgid "The new level is %s."
4222
+ #~ msgstr "Det nye medlemsnivået er %s"
4223
+
4224
+ # @ pmpro
4225
+ #~ msgid "The new level is %s. This membership is free"
4226
+ #~ msgstr "Det nye medlemsnivået er %s. Dette medlemsnivået er gratis."
4227
+
4228
+ # @ pmpro
4229
+ #~ msgid "membership has been cancelled"
4230
+ #~ msgstr "medlemsskapet/abonnementet er avsluttet"
4231
+
4232
+ # @ pmpro
4233
+ #~ msgid "Brazilian Real (&#36;)"
4234
+ #~ msgstr "Brasilianske real"
4235
+
4236
+ # @ pmpro
4237
+ #~ msgid "South African Rand"
4238
+ #~ msgstr "Sør-Afrikanske Rand"
4239
+
4240
+ # @ Recurring payment in cost text generation. E.g., $5 every 2 months for 2 more payments.
4241
+ #~ msgid " and then <strong>%s every %d %s for %d more %s</strong>."
4242
+ #~ msgstr "og så koster det <strong>%s hver %d. %s i %d flere %s</strong>."
4243
+
4244
+ # @ pmpro
4245
+ #~ msgid "User is not paying."
4246
+ #~ msgstr "Brukeren betaler ikke."
4247
+
4248
+ # @ pmpro
4249
+ #~ msgid "Your membership is <strong>active</strong>."
4250
+ #~ msgstr "Medlemskapet ditt er <strong>aktivt</strong>."
4251
+
4252
+ # @ pmpro
4253
+ #~ msgid "Your first payment will cost %s."
4254
+ #~ msgstr "Din første innbetaling vil koste %s."
4255
+
4256
+ # @ pmpro
4257
+ #~ msgid "Your first %d payments will cost %s."
4258
+ #~ msgstr "Dine første %d innbetalinger vil koste %s."
4259
+
4260
+ # @ pmpro
4261
+ #~ msgid "Billing Information"
4262
+ #~ msgstr "Fakturainformasjon"
4263
+
4264
+ # @ pmpro
4265
+ #~ msgid "Edit Billing Information"
4266
+ #~ msgstr "Oppdater fakturaadresse og kredittkort informasjon"
4267
+
4268
+ # @ pmpro
4269
+ #~ msgid "Update Billing Information"
4270
+ #~ msgstr "Oppdaterer kredittkortinformasjon og fakturadresse."
4271
+
4272
+ # @ pmpro
4273
+ #~ msgid "Change Membership Level"
4274
+ #~ msgstr "Endre medlemsnivå"
4275
+
4276
+ # @ pmpro
4277
+ #~ msgid "Cancel Membership"
4278
+ #~ msgstr "Kanseller medlemskap"
4279
+
4280
+ # @ pmpro
4281
+ #~ msgid "Submit and Pay with 2CheckOut"
4282
+ #~ msgstr "Lagre og betal med 2CheckOut"
4283
+
4284
+ # @ pmpro
4285
+ #~ msgid ""
4286
+ #~ "Below are details about your membership account. A welcome email with has "
4287
+ #~ "been sent to %s."
4288
+ #~ msgstr ""
4289
+ #~ "Under finner du detaljer om medlemskontoen din. En e-post med har blitt "
4290
+ #~ "sendt til %s."
4291
+
4292
+ # @ pmpro
4293
+ #~ msgid "Pending"
4294
+ #~ msgstr "Ventende"
4295
+
4296
+ # @ pmpro
4297
+ #~ msgid "View Invoice"
4298
+ #~ msgstr "Se på faktura"
4299
+
4300
+ # @ pmpro
4301
+ #~ msgid "Subscription Information"
4302
+ #~ msgstr "Kursinformasjon"
4303
+
4304
+ # @ pmpro
4305
+ #~ msgid "--"
4306
+ #~ msgstr "—"
4307
+
4308
+ # @ Recurring payment in cost text generation. E.g. $5 every month for 2 more payments.
4309
+ #~ msgid "%s per %s for %d more %s."
4310
+ #~ msgstr "%s per %s i %d flere %s."
4311
+
4312
+ # @ Recurring payment in cost text generation. E.g., $5 every 2 months for 2 more payments.
4313
+ #~ msgid "%s every %d %s for %d more %s."
4314
+ #~ msgstr "%s hver %d %s i %d flere %s."
4315
+
4316
+ # @ Recurring payment in cost text generation. E.g. $5 after 2 months.
4317
+ #~ msgid "%s after %d %s."
4318
+ #~ msgstr "%s etter %d %s."
4319
+
4320
+ # @ pmpro
4321
+ #~ msgid "Set up Your Account"
4322
+ #~ msgstr "Oppsett av medlemskonto"
languages/pmpro.po CHANGED
@@ -1,17 +1,14 @@
1
- # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
  #
6
- #, fuzzy
 
 
7
  msgid ""
8
  msgstr ""
9
- "Project-Id-Version: PACKAGE VERSION\n"
10
- "Report-Msgid-Bugs-To: jason@strangerstudios.com\n"
11
- "POT-Creation-Date: 2015-11-07 16:42-0500\n"
12
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
@@ -22,24 +19,27 @@ msgstr ""
22
  #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
23
  #: adminpages/orders-print.php:12 adminpages/orders.php:5
24
  #: adminpages/pagesettings.php:4 adminpages/paymentsettings.php:5
25
- #: includes/license.php:36 adminpages/addons.php:5 adminpages/addons.php:21
26
- #: adminpages/advancedsettings.php:5 adminpages/discountcodes.php:5
27
- #: adminpages/emailsettings.php:5 adminpages/membershiplevels.php:5
28
- #: adminpages/memberslist-csv.php:5 adminpages/memberslist.php:5
29
- #: adminpages/orders-csv.php:5 adminpages/orders.php:5
 
30
  #: adminpages/pagesettings.php:4 adminpages/pagesettings.php:5
31
- #: adminpages/paymentsettings.php:5 includes/license.php:36
 
32
  msgid "You do not have permissions to perform this action."
33
  msgstr ""
34
 
35
  #: adminpages/addons.php:64 adminpages/admin_header.php:170
36
- #: includes/adminpages.php:52 includes/adminpages.php:146
37
  #: adminpages/addons.php:64 adminpages/addons.php:80
38
  #: adminpages/admin_header.php:133 adminpages/admin_header.php:154
39
  #: adminpages/admin_header.php:170 includes/adminpages.php:14
40
- #: includes/adminpages.php:52 includes/adminpages.php:69
41
- #: includes/adminpages.php:135 includes/adminpages.php:142
42
- #: includes/adminpages.php:146
 
43
  msgid "Add Ons"
44
  msgstr ""
45
 
@@ -52,8 +52,9 @@ msgstr ""
52
  msgid "Check Again"
53
  msgstr ""
54
 
55
- #: adminpages/addons.php:76 adminpages/orders.php:741 adminpages/addons.php:76
56
  #: adminpages/addons.php:92 adminpages/orders.php:605
 
57
  msgid "All"
58
  msgstr ""
59
 
@@ -287,9 +288,9 @@ msgid "User Forum"
287
  msgstr ""
288
 
289
  #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:618
290
- #: adminpages/pagesettings.php:70 includes/adminpages.php:64
291
- #: includes/adminpages.php:65 includes/adminpages.php:111
292
- #: includes/metaboxes.php:126 adminpages/admin_header.php:128
293
  #: adminpages/admin_header.php:149 adminpages/admin_header.php:150
294
  #: adminpages/membershiplevels.php:490 adminpages/membershiplevels.php:496
295
  #: adminpages/membershiplevels.php:498 adminpages/membershiplevels.php:525
@@ -297,9 +298,11 @@ msgstr ""
297
  #: adminpages/membershiplevels.php:618 adminpages/membershiplevels.php:619
298
  #: adminpages/pagesettings.php:69 adminpages/pagesettings.php:70
299
  #: includes/adminpages.php:44 includes/adminpages.php:64
300
- #: includes/adminpages.php:65 includes/adminpages.php:100
 
301
  #: includes/adminpages.php:107 includes/adminpages.php:111
302
- #: includes/metaboxes.php:126
 
303
  msgid "Membership Levels"
304
  msgstr ""
305
 
@@ -321,7 +324,7 @@ msgstr ""
321
  #: adminpages/memberslist.php:115 adminpages/memberslist.php:148
322
  #: adminpages/memberslist.php:158 adminpages/memberslist.php:168
323
  #: pages/account.php:52 pages/account.php:56 pages/account.php:77
324
- #: shortcodes/pmpro_account.php:106
325
  msgid "Email"
326
  msgstr ""
327
 
@@ -357,12 +360,13 @@ msgid ""
357
  "This content is for members only. Visit the site and log in/register to read."
358
  msgstr ""
359
 
360
- #: adminpages/advancedsettings.php:88 includes/adminpages.php:51
361
- #: includes/adminpages.php:139 adminpages/advancedsettings.php:79
362
  #: adminpages/advancedsettings.php:86 adminpages/advancedsettings.php:88
363
  #: includes/adminpages.php:13 includes/adminpages.php:51
364
- #: includes/adminpages.php:64 includes/adminpages.php:128
365
- #: includes/adminpages.php:135 includes/adminpages.php:139
 
366
  msgid "Advanced Settings"
367
  msgstr ""
368
 
@@ -433,7 +437,7 @@ msgstr ""
433
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
434
  #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:667
435
  #: adminpages/paymentsettings.php:210
436
- #: classes/gateways/class.pmprogateway_stripe.php:184 includes/profile.php:110
437
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
438
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:187
439
  #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
@@ -449,7 +453,8 @@ msgstr ""
449
  #: adminpages/paymentsettings.php:461
450
  #: classes/gateways/class.pmprogateway_stripe.php:173
451
  #: classes/gateways/class.pmprogateway_stripe.php:174
452
- #: classes/gateways/class.pmprogateway_stripe.php:184 includes/profile.php:101
 
453
  #: includes/profile.php:105 includes/profile.php:110 includes/profile.php:121
454
  #: includes/profile.php:123
455
  msgid "No"
@@ -492,7 +497,7 @@ msgstr ""
492
 
493
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:667
494
  #: adminpages/paymentsettings.php:211
495
- #: classes/gateways/class.pmprogateway_stripe.php:185 includes/profile.php:111
496
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
497
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:563
498
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
@@ -505,7 +510,8 @@ msgstr ""
505
  #: adminpages/paymentsettings.php:460 adminpages/paymentsettings.php:462
506
  #: classes/gateways/class.pmprogateway_stripe.php:174
507
  #: classes/gateways/class.pmprogateway_stripe.php:175
508
- #: classes/gateways/class.pmprogateway_stripe.php:185 includes/profile.php:102
 
509
  #: includes/profile.php:106 includes/profile.php:111 includes/profile.php:122
510
  #: includes/profile.php:124
511
  msgid "Yes"
@@ -640,7 +646,7 @@ msgstr ""
640
 
641
  #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
642
  #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:636
643
- #: adminpages/memberslist.php:164 adminpages/orders.php:966
644
  #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
645
  #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
646
  #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
@@ -655,25 +661,31 @@ msgstr ""
655
  #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
656
  #: adminpages/memberslist.php:164 adminpages/orders.php:597
657
  #: adminpages/orders.php:900 adminpages/orders.php:910
 
658
  #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
 
 
659
  msgid "ID"
660
  msgstr ""
661
 
662
- #: adminpages/discountcodes.php:311 adminpages/orders.php:362
663
  #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
664
  #: adminpages/discountcodes.php:311 adminpages/orders.php:211
665
- #: adminpages/orders.php:261
 
666
  msgid "This will be generated when you save."
667
  msgstr ""
668
 
669
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
670
- #: adminpages/orders.php:366 adminpages/orders.php:967
671
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
672
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:548
673
  #: adminpages/discountcodes.php:558 adminpages/discountcodes.php:586
674
  #: adminpages/discountcodes.php:587 adminpages/orders.php:215
675
- #: adminpages/orders.php:265 adminpages/orders.php:598
 
676
  #: adminpages/orders.php:901 adminpages/orders.php:911
 
677
  msgid "Code"
678
  msgstr ""
679
 
@@ -683,18 +695,22 @@ msgid "Start Date"
683
  msgstr ""
684
 
685
  #: adminpages/discountcodes.php:371
686
- #: classes/gateways/class.pmprogateway_braintree.php:321
687
- #: classes/gateways/class.pmprogateway_stripe.php:469 pages/billing.php:265
688
- #: pages/checkout.php:571 adminpages/discountcodes.php:367
689
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
690
  #: classes/gateways/class.pmprogateway_braintree.php:308
691
  #: classes/gateways/class.pmprogateway_braintree.php:321
 
692
  #: classes/gateways/class.pmprogateway_stripe.php:454
693
  #: classes/gateways/class.pmprogateway_stripe.php:455
694
- #: classes/gateways/class.pmprogateway_stripe.php:465 pages/billing.php:249
695
- #: pages/billing.php:253 pages/billing.php:262 pages/checkout.php:508
696
- #: pages/checkout.php:524 pages/checkout.php:525 pages/checkout.php:532
697
- #: pages/checkout.php:553 pages/checkout.php:562
 
 
 
698
  msgid "Expiration Date"
699
  msgstr ""
700
 
@@ -763,7 +779,7 @@ msgstr ""
763
 
764
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
765
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
766
- #: classes/gateways/class.pmprogateway_stripe.php:536
767
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
768
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
769
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
@@ -775,12 +791,14 @@ msgstr ""
775
  #: classes/gateways/class.pmprogateway_stripe.php:521
776
  #: classes/gateways/class.pmprogateway_stripe.php:522
777
  #: classes/gateways/class.pmprogateway_stripe.php:532
 
 
778
  msgid "Day(s)"
779
  msgstr ""
780
 
781
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
782
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
783
- #: classes/gateways/class.pmprogateway_stripe.php:536
784
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
785
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
786
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
@@ -792,12 +810,14 @@ msgstr ""
792
  #: classes/gateways/class.pmprogateway_stripe.php:521
793
  #: classes/gateways/class.pmprogateway_stripe.php:522
794
  #: classes/gateways/class.pmprogateway_stripe.php:532
 
 
795
  msgid "Month(s)"
796
  msgstr ""
797
 
798
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
799
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
800
- #: classes/gateways/class.pmprogateway_stripe.php:536
801
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
802
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
803
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
@@ -809,12 +829,14 @@ msgstr ""
809
  #: classes/gateways/class.pmprogateway_stripe.php:521
810
  #: classes/gateways/class.pmprogateway_stripe.php:522
811
  #: classes/gateways/class.pmprogateway_stripe.php:532
 
 
812
  msgid "Week(s)"
813
  msgstr ""
814
 
815
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
816
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
817
- #: classes/gateways/class.pmprogateway_stripe.php:536
818
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
819
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
820
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
@@ -826,6 +848,8 @@ msgstr ""
826
  #: classes/gateways/class.pmprogateway_stripe.php:521
827
  #: classes/gateways/class.pmprogateway_stripe.php:522
828
  #: classes/gateways/class.pmprogateway_stripe.php:532
 
 
829
  msgid "Year(s)"
830
  msgstr ""
831
 
@@ -961,6 +985,7 @@ msgstr ""
961
  #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
962
  #: adminpages/discountcodes.php:569 adminpages/discountcodes.php:570
963
  #: adminpages/reports/login.php:81 adminpages/reports/login.php:83
 
964
  msgid "Search"
965
  msgstr ""
966
 
@@ -977,8 +1002,9 @@ msgstr ""
977
  #: adminpages/memberslist.php:121 adminpages/memberslist.php:159
978
  #: adminpages/memberslist.php:169 adminpages/memberslist.php:179
979
  #: adminpages/reports/login.php:145 adminpages/reports/login.php:147
980
- #: includes/profile.php:98 includes/profile.php:102 includes/profile.php:107
981
- #: includes/profile.php:118 includes/profile.php:120
 
982
  msgid "Expires"
983
  msgstr ""
984
 
@@ -1003,7 +1029,7 @@ msgid ""
1003
  msgstr ""
1004
 
1005
  #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:669
1006
- #: adminpages/orders.php:1050 adminpages/discountcodes.php:614
1007
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
1008
  #: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
1009
  #: adminpages/membershiplevels.php:564 adminpages/membershiplevels.php:570
@@ -1012,7 +1038,8 @@ msgstr ""
1012
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1013
  #: adminpages/orders.php:658 adminpages/orders.php:961
1014
  #: adminpages/orders.php:979 adminpages/orders.php:989
1015
- #: adminpages/orders.php:992
 
1016
  msgid "edit"
1017
  msgstr ""
1018
 
@@ -1027,7 +1054,7 @@ msgid ""
1027
  msgstr ""
1028
 
1029
  #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:669
1030
- #: adminpages/orders.php:1056 adminpages/discountcodes.php:617
1031
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
1032
  #: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
1033
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:572
@@ -1036,16 +1063,18 @@ msgstr ""
1036
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1037
  #: adminpages/orders.php:664 adminpages/orders.php:967
1038
  #: adminpages/orders.php:985 adminpages/orders.php:995
1039
- #: adminpages/orders.php:998
 
1040
  msgid "delete"
1041
  msgstr ""
1042
 
1043
- #: adminpages/emailsettings.php:69 includes/adminpages.php:50
1044
- #: includes/adminpages.php:132 adminpages/emailsettings.php:60
1045
  #: adminpages/emailsettings.php:69 includes/adminpages.php:12
1046
- #: includes/adminpages.php:50 includes/adminpages.php:59
1047
- #: includes/adminpages.php:121 includes/adminpages.php:128
1048
- #: includes/adminpages.php:132
 
1049
  msgid "Email Settings"
1050
  msgstr ""
1051
 
@@ -1213,6 +1242,7 @@ msgstr ""
1213
  #: adminpages/membershiplevels.php:542 adminpages/membershiplevels.php:584
1214
  #: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:638
1215
  #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
 
1216
  msgid "Name"
1217
  msgstr ""
1218
 
@@ -1230,13 +1260,15 @@ msgid "Billing Details"
1230
  msgstr ""
1231
 
1232
  #: adminpages/membershiplevels.php:372
1233
- #: classes/gateways/class.pmprogateway_stripe.php:634
1234
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1235
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1236
  #: adminpages/membershiplevels.php:373
1237
  #: classes/gateways/class.pmprogateway_stripe.php:619
1238
  #: classes/gateways/class.pmprogateway_stripe.php:620
1239
  #: classes/gateways/class.pmprogateway_stripe.php:630
 
 
1240
  msgid "per"
1241
  msgstr ""
1242
 
@@ -1383,12 +1415,15 @@ msgstr ""
1383
  msgid "Save Level"
1384
  msgstr ""
1385
 
1386
- #: adminpages/membershiplevels.php:517 adminpages/orders.php:662
1387
- #: pages/billing.php:342 pages/cancel.php:71 shortcodes/pmpro_account.php:73
1388
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1389
- #: adminpages/orders.php:511 adminpages/orders.php:561 pages/account.php:44
 
1390
  #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1391
- #: pages/billing.php:339 pages/cancel.php:71 shortcodes/pmpro_account.php:70
 
 
1392
  msgid "Cancel"
1393
  msgstr ""
1394
 
@@ -1463,47 +1498,57 @@ msgid ""
1463
  "be cancelled."
1464
  msgstr ""
1465
 
1466
- #: adminpages/membershiplevels.php:669 adminpages/orders.php:1053
1467
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1468
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1469
  #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1470
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1471
  #: adminpages/orders.php:661 adminpages/orders.php:964
1472
  #: adminpages/orders.php:982 adminpages/orders.php:992
1473
- #: adminpages/orders.php:995
 
1474
  msgid "copy"
1475
  msgstr ""
1476
 
1477
- #: adminpages/memberslist.php:25 includes/adminpages.php:53
1478
- #: includes/adminpages.php:153 adminpages/memberslist.php:25
1479
  #: includes/adminpages.php:15 includes/adminpages.php:53
1480
- #: includes/adminpages.php:74 includes/adminpages.php:142
1481
- #: includes/adminpages.php:149 includes/adminpages.php:153
 
1482
  msgid "Members List"
1483
  msgstr ""
1484
 
1485
- #: adminpages/memberslist.php:26 adminpages/orders.php:727
1486
  #: adminpages/memberslist.php:26 adminpages/orders.php:522
1487
- #: adminpages/orders.php:591
 
1488
  msgid "Export to CSV"
1489
  msgstr ""
1490
 
1491
- #: adminpages/memberslist.php:30 adminpages/orders.php:739
1492
- #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:256
1493
  #: adminpages/reports/sales.php:202 adminpages/memberslist.php:30
1494
- #: adminpages/orders.php:603 adminpages/reports/login.php:65
1495
- #: adminpages/reports/login.php:67 adminpages/reports/memberships.php:292
1496
- #: adminpages/reports/sales.php:185 adminpages/reports/sales.php:193
1497
- #: adminpages/reports/sales.php:194
 
 
 
 
1498
  msgid "Show"
1499
  msgstr ""
1500
 
1501
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1502
- #: adminpages/reports/memberships.php:281 adminpages/reports/sales.php:225
1503
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:67
1504
- #: adminpages/reports/login.php:69 adminpages/reports/memberships.php:317
1505
- #: adminpages/reports/sales.php:208 adminpages/reports/sales.php:216
1506
- #: adminpages/reports/sales.php:217
 
 
 
1507
  msgid "All Levels"
1508
  msgstr ""
1509
 
@@ -1534,13 +1579,14 @@ msgstr ""
1534
  msgid "%d members found."
1535
  msgstr ""
1536
 
1537
- #: adminpages/memberslist.php:165 pages/checkout.php:182
1538
  #: shortcodes/pmpro_account.php:108 adminpages/memberslist.php:112
1539
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1540
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1541
  #: pages/account.php:76 pages/checkout.php:168 pages/checkout.php:171
1542
- #: pages/checkout.php:173 pages/checkout.php:180
1543
- #: shortcodes/pmpro_account.php:105
 
1544
  msgid "Username"
1545
  msgstr ""
1546
 
@@ -1556,15 +1602,16 @@ msgstr ""
1556
  msgid "Last&nbsp;Name"
1557
  msgstr ""
1558
 
1559
- #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:317
1560
  #: pages/confirmation.php:61 pages/invoice.php:48
1561
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1562
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
1563
  #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
1564
  #: pages/billing.php:62 pages/billing.php:71 pages/checkout.php:298
1565
  #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
1566
- #: pages/checkout.php:314 pages/checkout.php:321 pages/confirmation.php:59
1567
- #: pages/confirmation.php:61 pages/invoice.php:46 pages/invoice.php:48
 
1568
  msgid "Billing Address"
1569
  msgstr ""
1570
 
@@ -1573,7 +1620,7 @@ msgstr ""
1573
  #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1574
  #: adminpages/memberslist.php:161 adminpages/memberslist.php:171
1575
  #: adminpages/pagesettings.php:51 adminpages/reports/login.php:143
1576
- #: adminpages/reports/login.php:145
1577
  #: classes/gateways/class.pmprogateway_authorizenet.php:187
1578
  #: classes/gateways/class.pmprogateway_authorizenet.php:303
1579
  msgid "Membership"
@@ -1589,6 +1636,7 @@ msgstr ""
1589
  #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1590
  #: adminpages/memberslist.php:163 adminpages/memberslist.php:173
1591
  #: adminpages/reports/login.php:144 adminpages/reports/login.php:146
 
1592
  msgid "Joined"
1593
  msgstr ""
1594
 
@@ -1601,6 +1649,7 @@ msgstr ""
1601
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1602
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1603
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
 
1604
  msgid "No members found."
1605
  msgstr ""
1606
 
@@ -1608,411 +1657,496 @@ msgstr ""
1608
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1609
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1610
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
 
1611
  msgid "Search all levels"
1612
  msgstr ""
1613
 
1614
- #: adminpages/orders.php:155
1615
  msgid "Invoice emailed successfully."
1616
  msgstr ""
1617
 
1618
- #: adminpages/orders.php:160
1619
  msgid "Error emailing invoice."
1620
  msgstr ""
1621
 
1622
  #: adminpages/orders.php:175 adminpages/orders.php:26 adminpages/orders.php:67
 
1623
  msgid "Order deleted successfully."
1624
  msgstr ""
1625
 
1626
  #: adminpages/orders.php:180 adminpages/orders.php:31 adminpages/orders.php:72
 
1627
  msgid "Error deleting order."
1628
  msgstr ""
1629
 
1630
  #: adminpages/orders.php:270 adminpages/orders.php:119
1631
- #: adminpages/orders.php:169
1632
  msgid "Order saved successfully."
1633
  msgstr ""
1634
 
1635
  #: adminpages/orders.php:275 adminpages/orders.php:124
1636
- #: adminpages/orders.php:174
1637
  msgid "Error updating order timestamp."
1638
  msgstr ""
1639
 
1640
  #: adminpages/orders.php:281 adminpages/orders.php:130
1641
- #: adminpages/orders.php:180
1642
  msgid "Error saving order."
1643
  msgstr ""
1644
 
1645
- #: adminpages/orders.php:346 adminpages/orders.php:195
1646
- #: adminpages/orders.php:245
 
1647
  msgid "Order"
1648
  msgstr ""
1649
 
1650
- #: adminpages/orders.php:348 adminpages/orders.php:197
1651
- #: adminpages/orders.php:247
 
1652
  msgid "New Order"
1653
  msgstr ""
1654
 
1655
- #: adminpages/orders.php:371 adminpages/orders.php:220
1656
- #: adminpages/orders.php:270
 
1657
  msgid "Randomly generated for you."
1658
  msgstr ""
1659
 
1660
- #: adminpages/orders.php:376 adminpages/orders.php:225
1661
- #: adminpages/orders.php:275
 
1662
  msgid "User ID"
1663
  msgstr ""
1664
 
1665
- #: adminpages/orders.php:385 adminpages/orders.php:234
1666
- #: adminpages/orders.php:284
 
1667
  msgid "Membership Level ID"
1668
  msgstr ""
1669
 
1670
- #: adminpages/orders.php:394 adminpages/orders.php:243
1671
- #: adminpages/orders.php:293
 
1672
  msgid "Billing Name"
1673
  msgstr ""
1674
 
1675
- #: adminpages/orders.php:402 adminpages/orders.php:251
1676
- #: adminpages/orders.php:301
 
1677
  msgid "Billing Street"
1678
  msgstr ""
1679
 
1680
- #: adminpages/orders.php:409 adminpages/orders.php:258
1681
- #: adminpages/orders.php:308
 
1682
  msgid "Billing City"
1683
  msgstr ""
1684
 
1685
- #: adminpages/orders.php:416 adminpages/orders.php:265
1686
- #: adminpages/orders.php:315
 
1687
  msgid "Billing State"
1688
  msgstr ""
1689
 
1690
- #: adminpages/orders.php:423 adminpages/orders.php:272
1691
- #: adminpages/orders.php:322
 
1692
  msgid "Billing Postal Code"
1693
  msgstr ""
1694
 
1695
- #: adminpages/orders.php:430 adminpages/orders.php:279
1696
- #: adminpages/orders.php:329
 
1697
  msgid "Billing Country"
1698
  msgstr ""
1699
 
1700
- #: adminpages/orders.php:438 adminpages/orders.php:287
1701
- #: adminpages/orders.php:337
 
1702
  msgid "Billing Phone"
1703
  msgstr ""
1704
 
1705
- #: adminpages/orders.php:447 adminpages/orders.php:296
1706
- #: adminpages/orders.php:346
 
1707
  msgid "Sub Total"
1708
  msgstr ""
1709
 
1710
- #: adminpages/orders.php:455 adminpages/templates/orders-email.php:60
1711
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1712
- #: adminpages/orders.php:304 adminpages/orders.php:354 pages/invoice.php:78
 
 
 
1713
  #: pages/invoice.php:80
1714
  msgid "Tax"
1715
  msgstr ""
1716
 
1717
- #: adminpages/orders.php:463 adminpages/orders.php:312
1718
- #: adminpages/orders.php:362
 
1719
  msgid "Coupon Amount"
1720
  msgstr ""
1721
 
1722
- #: adminpages/orders.php:471 adminpages/orders.php:971
1723
  #: adminpages/templates/orders-email.php:64
1724
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1725
  #: adminpages/orders.php:320 adminpages/orders.php:370
 
1726
  #: adminpages/orders.php:602 adminpages/orders.php:905
1727
- #: adminpages/orders.php:915 pages/invoice.php:82 pages/invoice.php:84
 
 
 
1728
  msgid "Total"
1729
  msgstr ""
1730
 
1731
- #: adminpages/orders.php:476 adminpages/orders.php:325
1732
- #: adminpages/orders.php:375
 
1733
  msgid "Should be subtotal + tax - couponamount."
1734
  msgstr ""
1735
 
1736
- #: adminpages/orders.php:481 adminpages/orders.php:330
1737
- #: adminpages/orders.php:380
 
1738
  msgid "Payment Type"
1739
  msgstr ""
1740
 
1741
- #: adminpages/orders.php:486 adminpages/orders.php:335
1742
- #: adminpages/orders.php:385
 
1743
  msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1744
  msgstr ""
1745
 
1746
- #: adminpages/orders.php:490
1747
- #: classes/gateways/class.pmprogateway_braintree.php:304
1748
- #: classes/gateways/class.pmprogateway_stripe.php:423 pages/billing.php:250
1749
- #: pages/checkout.php:525 adminpages/orders.php:339 adminpages/orders.php:389
 
1750
  #: classes/gateways/class.pmprogateway_braintree.php:291
1751
  #: classes/gateways/class.pmprogateway_braintree.php:304
 
1752
  #: classes/gateways/class.pmprogateway_stripe.php:408
1753
  #: classes/gateways/class.pmprogateway_stripe.php:409
1754
- #: classes/gateways/class.pmprogateway_stripe.php:419 pages/billing.php:234
1755
- #: pages/billing.php:238 pages/billing.php:247 pages/checkout.php:493
1756
- #: pages/checkout.php:507 pages/checkout.php:510 pages/checkout.php:516
1757
- #: pages/checkout.php:517
 
 
 
1758
  msgid "Card Type"
1759
  msgstr ""
1760
 
1761
- #: adminpages/orders.php:495 adminpages/orders.php:344
1762
- #: adminpages/orders.php:394
 
1763
  msgid "e.g. Visa, MasterCard, AMEX, etc"
1764
  msgstr ""
1765
 
1766
- #: adminpages/orders.php:499
1767
- #: classes/gateways/class.pmprogateway_twocheckout.php:148
1768
  #: adminpages/orders.php:348 adminpages/orders.php:398
 
1769
  #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
1770
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
1771
  #: classes/gateways/class.pmprogateway_twocheckout.php:148
1772
  msgid "Account Number"
1773
  msgstr ""
1774
 
1775
- #: adminpages/orders.php:504 adminpages/orders.php:353
1776
- #: adminpages/orders.php:403
 
1777
  msgid "Obscure all but last 4 digits."
1778
  msgstr ""
1779
 
1780
- #: adminpages/orders.php:509 adminpages/orders.php:358
1781
- #: adminpages/orders.php:408
 
1782
  msgid "Expiration Month"
1783
  msgstr ""
1784
 
1785
- #: adminpages/orders.php:516 adminpages/orders.php:365
1786
- #: adminpages/orders.php:415
 
1787
  msgid "Expiration Year"
1788
  msgstr ""
1789
 
1790
- #: adminpages/orders.php:524 adminpages/orders.php:975
1791
  #: adminpages/orders.php:373 adminpages/orders.php:423
 
1792
  #: adminpages/orders.php:606 adminpages/orders.php:909
1793
- #: adminpages/orders.php:919
 
1794
  msgid "Status"
1795
  msgstr ""
1796
 
1797
- #: adminpages/orders.php:545 adminpages/orders.php:973
1798
  #: adminpages/orders.php:394 adminpages/orders.php:444
 
1799
  #: adminpages/orders.php:604 adminpages/orders.php:907
1800
- #: adminpages/orders.php:917
 
1801
  msgid "Gateway"
1802
  msgstr ""
1803
 
1804
- #: adminpages/orders.php:563 adminpages/paymentsettings.php:124
1805
  #: adminpages/orders.php:411 adminpages/orders.php:461
1806
- #: adminpages/orders.php:462 adminpages/paymentsettings.php:124
 
1807
  #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
1808
  #: adminpages/paymentsettings.php:184
1809
  msgid "Gateway Environment"
1810
  msgstr ""
1811
 
1812
- #: adminpages/orders.php:567 adminpages/paymentsettings.php:128
1813
  #: adminpages/orders.php:415 adminpages/orders.php:465
1814
- #: adminpages/orders.php:466 adminpages/paymentsettings.php:128
 
1815
  #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
1816
  #: adminpages/paymentsettings.php:188
1817
  msgid "Sandbox/Testing"
1818
  msgstr ""
1819
 
1820
- #: adminpages/orders.php:568 adminpages/paymentsettings.php:129
1821
  #: adminpages/orders.php:416 adminpages/orders.php:466
1822
- #: adminpages/orders.php:467 adminpages/paymentsettings.php:129
 
1823
  #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
1824
  #: adminpages/paymentsettings.php:189
1825
  msgid "Live/Production"
1826
  msgstr ""
1827
 
1828
- #: adminpages/orders.php:575 adminpages/orders.php:423
1829
  #: adminpages/orders.php:473 adminpages/orders.php:474
 
1830
  msgid "Payment Transaction ID"
1831
  msgstr ""
1832
 
1833
- #: adminpages/orders.php:580 adminpages/orders.php:428
1834
  #: adminpages/orders.php:478 adminpages/orders.php:479
 
1835
  msgid "Generated by the gateway. Useful to cross reference orders."
1836
  msgstr ""
1837
 
1838
- #: adminpages/orders.php:584 adminpages/orders.php:432
1839
  #: adminpages/orders.php:482 adminpages/orders.php:483
 
1840
  msgid "Subscription Transaction ID"
1841
  msgstr ""
1842
 
1843
- #: adminpages/orders.php:589 adminpages/orders.php:437
1844
  #: adminpages/orders.php:487 adminpages/orders.php:488
 
1845
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
1846
  msgstr ""
1847
 
1848
- #: adminpages/orders.php:594 adminpages/orders.php:976 pages/invoice.php:107
1849
  #: shortcodes/pmpro_account.php:125 adminpages/orders.php:442
1850
  #: adminpages/orders.php:492 adminpages/orders.php:493
 
1851
  #: adminpages/orders.php:607 adminpages/orders.php:910
1852
- #: adminpages/orders.php:920 pages/account.php:91 pages/invoice.php:105
 
1853
  #: pages/invoice.php:107 shortcodes/pmpro_account.php:122
 
1854
  msgid "Date"
1855
  msgstr ""
1856
 
1857
- #: adminpages/orders.php:628 adminpages/orders.php:477
1858
- #: adminpages/orders.php:527
 
1859
  msgid "Affiliate ID"
1860
  msgstr ""
1861
 
1862
- #: adminpages/orders.php:636 adminpages/orders.php:485
1863
- #: adminpages/orders.php:535
 
1864
  msgid "Affiliate SubID"
1865
  msgstr ""
1866
 
1867
- #: adminpages/orders.php:646 adminpages/orders.php:495
1868
- #: adminpages/orders.php:545
 
1869
  msgid "Notes"
1870
  msgstr ""
1871
 
1872
- #: adminpages/orders.php:661 adminpages/orders.php:510
1873
- #: adminpages/orders.php:560
 
1874
  msgid "Save Order"
1875
  msgstr ""
1876
 
 
1877
  #: adminpages/orders.php:696
1878
  msgid "Email Invoice"
1879
  msgstr ""
1880
 
 
1881
  #: adminpages/orders.php:699
1882
  msgid "Send an invoice for this order to: "
1883
  msgstr ""
1884
 
 
1885
  #: adminpages/orders.php:701
1886
  msgid "Send Email"
1887
  msgstr ""
1888
 
1889
- #: adminpages/orders.php:706 includes/adminpages.php:55
1890
- #: includes/adminpages.php:167 adminpages/orders.php:520
1891
- #: adminpages/orders.php:570 includes/adminpages.php:17
1892
- #: includes/adminpages.php:55 includes/adminpages.php:84
1893
- #: includes/adminpages.php:156 includes/adminpages.php:163
1894
- #: includes/adminpages.php:167
 
 
1895
  msgid "Orders"
1896
  msgstr ""
1897
 
1898
- #: adminpages/orders.php:707 adminpages/orders.php:521
1899
- #: adminpages/orders.php:571
 
1900
  msgid "Add New Order"
1901
  msgstr ""
1902
 
1903
- #: adminpages/orders.php:742 adminpages/orders.php:606
 
1904
  msgid "Within a Date Range"
1905
  msgstr ""
1906
 
1907
- #: adminpages/orders.php:743 adminpages/orders.php:607
 
1908
  msgid "Predefined Date Range"
1909
  msgstr ""
1910
 
1911
- #: adminpages/orders.php:744 adminpages/orders.php:608
 
1912
  msgid "Within a Level"
1913
  msgstr ""
1914
 
1915
- #: adminpages/orders.php:745 adminpages/orders.php:609
 
1916
  msgid "Within a Status"
1917
  msgstr ""
1918
 
1919
- #: adminpages/orders.php:748 adminpages/orders.php:612
 
1920
  msgid "From"
1921
  msgstr ""
1922
 
1923
- #: adminpages/orders.php:760 adminpages/orders.php:624
 
1924
  msgid "To"
1925
  msgstr ""
1926
 
1927
- #: adminpages/orders.php:772 adminpages/orders.php:636
 
1928
  msgid "filter by "
1929
  msgstr ""
1930
 
1931
- #: adminpages/orders.php:809 adminpages/orders.php:674
 
1932
  msgid "Filter"
1933
  msgstr ""
1934
 
1935
- #: adminpages/orders.php:912 adminpages/orders.php:915
1936
  #: adminpages/orders.php:535 adminpages/orders.php:538
1937
  #: adminpages/orders.php:777 adminpages/orders.php:780
 
 
1938
  msgid "Search Orders"
1939
  msgstr ""
1940
 
1941
- #: adminpages/orders.php:959 adminpages/orders.php:590
1942
  #: adminpages/orders.php:893 adminpages/orders.php:903
 
1943
  #, php-format
1944
  msgid "%d orders found."
1945
  msgstr ""
1946
 
1947
- #: adminpages/orders.php:968 adminpages/reports/login.php:159
1948
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
1949
  #: adminpages/orders.php:599 adminpages/orders.php:902
1950
- #: adminpages/orders.php:912 adminpages/paymentsettings.php:211
 
1951
  #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
1952
  #: adminpages/reports/login.php:141 adminpages/reports/login.php:143
 
1953
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
1954
  msgid "User"
1955
  msgstr ""
1956
 
1957
- #: adminpages/orders.php:970 includes/init.php:238 includes/profile.php:27
1958
  #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
1959
  #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1960
  #: adminpages/orders.php:601 adminpages/orders.php:904
1961
- #: adminpages/orders.php:914 includes/init.php:214 includes/init.php:217
 
1962
  #: includes/init.php:218 includes/init.php:220 includes/init.php:222
1963
- #: includes/init.php:230 includes/profile.php:25 includes/profile.php:27
1964
- #: pages/checkout.php:33 pages/checkout.php:34 pages/checkout.php:35
1965
- #: pages/checkout.php:42 pages/confirmation.php:46 pages/confirmation.php:47
1966
- #: pages/confirmation.php:62 pages/confirmation.php:64
1967
- #: pages/confirmation.php:103 pages/confirmation.php:105 pages/invoice.php:27
1968
- #: pages/invoice.php:28 pages/invoice.php:49 pages/invoice.php:51
 
1969
  msgid "Membership Level"
1970
  msgstr ""
1971
 
1972
- #: adminpages/orders.php:972 adminpages/orders.php:1040
1973
  #: adminpages/orders.php:603 adminpages/orders.php:651
1974
  #: adminpages/orders.php:906 adminpages/orders.php:916
1975
- #: adminpages/orders.php:954 adminpages/orders.php:972
1976
- #: adminpages/orders.php:982
 
1977
  msgid "Payment"
1978
  msgstr ""
1979
 
1980
- #: adminpages/orders.php:974 adminpages/orders.php:605
1981
  #: adminpages/orders.php:908 adminpages/orders.php:918
 
1982
  msgid "Transaction IDs"
1983
  msgstr ""
1984
 
1985
- #: adminpages/orders.php:1001 adminpages/orders.php:630
1986
  #: adminpages/orders.php:933 adminpages/orders.php:943
 
1987
  msgid "deleted"
1988
  msgstr ""
1989
 
1990
- #: adminpages/orders.php:1042 adminpages/orders.php:653
1991
  #: adminpages/orders.php:956 adminpages/orders.php:974
1992
- #: adminpages/orders.php:984
 
1993
  msgid "Subscription"
1994
  msgstr ""
1995
 
1996
- #: adminpages/orders.php:1056 adminpages/orders.php:664
1997
  #: adminpages/orders.php:967 adminpages/orders.php:985
1998
  #: adminpages/orders.php:995 adminpages/orders.php:998
 
1999
  #, php-format
2000
  msgid ""
2001
  "Deleting orders is permanent and can affect active users. Are you sure you "
2002
  "want to delete order %s?"
2003
  msgstr ""
2004
 
 
2005
  #: adminpages/orders.php:1059
2006
  msgid "print"
2007
  msgstr ""
2008
 
 
2009
  #: adminpages/orders.php:1062
2010
  msgid "email"
2011
  msgstr ""
2012
 
2013
- #: adminpages/orders.php:1072 adminpages/orders.php:674
2014
  #: adminpages/orders.php:977 adminpages/orders.php:995
2015
  #: adminpages/orders.php:1005 adminpages/orders.php:1008
 
2016
  msgid "No orders found."
2017
  msgstr ""
2018
 
@@ -2329,7 +2463,7 @@ msgstr ""
2329
  msgid "Details"
2330
  msgstr ""
2331
 
2332
- #: adminpages/reports.php:61
2333
  msgid "Back to Reports Dashboard"
2334
  msgstr ""
2335
 
@@ -2337,149 +2471,185 @@ msgstr ""
2337
  msgid "Visits, Views, and Logins"
2338
  msgstr ""
2339
 
2340
- #: adminpages/reports/login.php:31
2341
  msgid "Visits"
2342
  msgstr ""
2343
 
2344
- #: adminpages/reports/login.php:32
2345
  msgid "Views"
2346
  msgstr ""
2347
 
2348
- #: adminpages/reports/login.php:33
2349
  msgid "Logins"
2350
  msgstr ""
2351
 
2352
  #: adminpages/reports/login.php:38 adminpages/reports/memberships.php:43
2353
- #: adminpages/reports/sales.php:51 adminpages/reports/memberships.php:62
2354
- #: adminpages/reports/memberships.php:81
 
2355
  msgid "Today"
2356
  msgstr ""
2357
 
2358
  #: adminpages/reports/login.php:44 adminpages/reports/memberships.php:48
2359
- #: adminpages/reports/sales.php:56 adminpages/reports/memberships.php:58
2360
- #: adminpages/reports/memberships.php:77
 
2361
  msgid "This Month"
2362
  msgstr ""
2363
 
2364
  #: adminpages/reports/login.php:50 adminpages/reports/memberships.php:58
2365
- #: adminpages/reports/sales.php:66 adminpages/reports/memberships.php:50
2366
- #: adminpages/reports/memberships.php:69
 
2367
  msgid "All Time"
2368
  msgstr ""
2369
 
2370
  #: adminpages/reports/login.php:79 adminpages/reports/login.php:61
2371
- #: adminpages/reports/login.php:63
2372
  msgid "Visits, Views, and Logins Report"
2373
  msgstr ""
2374
 
2375
  #: adminpages/reports/login.php:84 adminpages/reports/login.php:66
2376
- #: adminpages/reports/login.php:68
2377
  msgid "All Users"
2378
  msgstr ""
2379
 
2380
  #: adminpages/reports/login.php:164 adminpages/reports/login.php:146
2381
- #: adminpages/reports/login.php:148
2382
  msgid "Last Visit"
2383
  msgstr ""
2384
 
2385
  #: adminpages/reports/login.php:165 adminpages/reports/login.php:27
2386
  #: adminpages/reports/login.php:28 adminpages/reports/login.php:147
2387
- #: adminpages/reports/login.php:149
2388
  msgid "Visits This Month"
2389
  msgstr ""
2390
 
2391
  #: adminpages/reports/login.php:166 adminpages/reports/login.php:148
2392
- #: adminpages/reports/login.php:150
2393
  msgid "Total Visits"
2394
  msgstr ""
2395
 
2396
  #: adminpages/reports/login.php:167 adminpages/reports/login.php:32
2397
  #: adminpages/reports/login.php:33 adminpages/reports/login.php:149
2398
- #: adminpages/reports/login.php:151
2399
  msgid "Views This Month"
2400
  msgstr ""
2401
 
2402
  #: adminpages/reports/login.php:168 adminpages/reports/login.php:150
2403
- #: adminpages/reports/login.php:152
2404
  msgid "Total Views"
2405
  msgstr ""
2406
 
2407
  #: adminpages/reports/login.php:169 adminpages/reports/login.php:151
2408
- #: adminpages/reports/login.php:153
2409
  msgid "Last Login"
2410
  msgstr ""
2411
 
2412
  #: adminpages/reports/login.php:170 adminpages/reports/login.php:37
2413
  #: adminpages/reports/login.php:38 adminpages/reports/login.php:152
2414
- #: adminpages/reports/login.php:154
2415
  msgid "Logins This Month"
2416
  msgstr ""
2417
 
2418
  #: adminpages/reports/login.php:171 adminpages/reports/login.php:153
2419
- #: adminpages/reports/login.php:155
2420
  msgid "Total Logins"
2421
  msgstr ""
2422
 
2423
  #: adminpages/reports/memberships.php:18
2424
- #: adminpages/reports/memberships.php:252
2425
  #: adminpages/reports/memberships.php:18
 
 
2426
  #: adminpages/reports/memberships.php:288
2427
  msgid "Membership Stats"
2428
  msgstr ""
2429
 
2430
- #: adminpages/reports/memberships.php:37 adminpages/reports/memberships.php:48
 
2431
  msgid "Signups"
2432
  msgstr ""
2433
 
2434
- #: adminpages/reports/memberships.php:38 adminpages/reports/memberships.php:67
2435
- msgid "Cancellations"
2436
  msgstr ""
2437
 
2438
  #: adminpages/reports/memberships.php:53 adminpages/reports/sales.php:61
2439
- #: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
 
2440
  msgid "This Year"
2441
  msgstr ""
2442
 
2443
- #: adminpages/reports/memberships.php:258 adminpages/reports/sales.php:204
 
 
2444
  #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:187
2445
  #: adminpages/reports/sales.php:195 adminpages/reports/sales.php:196
 
2446
  msgid "Daily"
2447
  msgstr ""
2448
 
2449
- #: adminpages/reports/memberships.php:259 adminpages/reports/sales.php:205
 
 
2450
  #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:188
2451
  #: adminpages/reports/sales.php:196 adminpages/reports/sales.php:197
 
2452
  msgid "Monthly"
2453
  msgstr ""
2454
 
2455
- #: adminpages/reports/memberships.php:260 adminpages/reports/sales.php:206
 
 
2456
  #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:189
2457
  #: adminpages/reports/sales.php:197 adminpages/reports/sales.php:198
 
2458
  msgid "Annual"
2459
  msgstr ""
2460
 
 
 
 
 
 
 
2461
  #: adminpages/reports/memberships.php:263
 
2462
  #: adminpages/reports/memberships.php:299
2463
  msgid "Signups vs. Cancellations"
2464
  msgstr ""
2465
 
2466
- #: adminpages/reports/memberships.php:268
2467
- #: adminpages/reports/memberships.php:279 adminpages/reports/sales.php:212
 
 
 
 
 
2468
  #: adminpages/reports/sales.php:223 adminpages/membershiplevels.php:545
2469
  #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
2470
  #: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
2471
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
 
 
 
 
2472
  #: adminpages/reports/memberships.php:304
2473
  #: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:195
2474
  #: adminpages/reports/sales.php:203 adminpages/reports/sales.php:204
2475
- #: adminpages/reports/sales.php:206 adminpages/reports/sales.php:214
2476
- #: adminpages/reports/sales.php:215
 
2477
  msgid "for"
2478
  msgstr ""
2479
 
2480
- #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:239
 
 
2481
  #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:222
2482
  #: adminpages/reports/sales.php:230 adminpages/reports/sales.php:231
 
2483
  msgid "Generate Report"
2484
  msgstr ""
2485
 
@@ -2489,36 +2659,45 @@ msgstr ""
2489
 
2490
  #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:198
2491
  #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:180
2492
- #: adminpages/reports/sales.php:189
2493
  msgid "Sales and Revenue"
2494
  msgstr ""
2495
 
2496
  #: adminpages/reports/sales.php:45 adminpages/reports/sales.php:210
2497
- #: adminpages/reports/sales.php:193 adminpages/reports/sales.php:201
2498
- #: adminpages/reports/sales.php:202
 
2499
  msgid "Sales"
2500
  msgstr ""
2501
 
2502
  #: adminpages/reports/sales.php:46 adminpages/reports/sales.php:209
2503
- #: adminpages/reports/sales.php:192 adminpages/reports/sales.php:200
2504
- #: adminpages/reports/sales.php:201
 
2505
  msgid "Revenue"
2506
  msgstr ""
2507
 
 
 
2508
  #: adminpages/templates/orders-email.php:14
2509
  #: adminpages/templates/orders-print.php:50
2510
  msgid "Invoice #: "
2511
  msgstr ""
2512
 
 
 
2513
  #: adminpages/templates/orders-email.php:18
2514
  #: adminpages/templates/orders-print.php:54
2515
  msgid "Date:"
2516
  msgstr ""
2517
 
 
2518
  #: adminpages/templates/orders-email.php:24
2519
  msgid "Bill to:"
2520
  msgstr ""
2521
 
 
 
2522
  #: adminpages/templates/orders-email.php:47
2523
  #: adminpages/templates/orders-print.php:76
2524
  msgid "Item"
@@ -2526,20 +2705,36 @@ msgstr ""
2526
 
2527
  #: adminpages/templates/orders-email.php:48
2528
  #: adminpages/templates/orders-print.php:77 pages/levels.php:36
2529
- #: pages/levels.php:14
 
 
2530
  msgid "Price"
2531
  msgstr ""
2532
 
2533
  #: adminpages/templates/orders-email.php:56
2534
  #: adminpages/templates/orders-print.php:85 pages/invoice.php:79
2535
- #: pages/invoice.php:77 pages/invoice.php:79
 
 
2536
  msgid "Subtotal"
2537
  msgstr ""
2538
 
2539
- #: classes/class.memberorder.php:644 classes/class.memberorder.php:553
 
 
 
 
 
 
 
 
 
 
 
 
2540
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2541
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2542
- #: includes/cleanup.php:24
2543
  #, php-format
2544
  msgid ""
2545
  "There was an error canceling the subscription for user with ID=%s. You will "
@@ -2576,9 +2771,9 @@ msgstr ""
2576
  #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2577
  #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2578
  #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2579
- #: classes/gateways/class.pmprogateway_braintree.php:362
2580
- #: classes/gateways/class.pmprogateway_stripe.php:510 pages/checkout.php:76
2581
- #: pages/checkout.php:86 pages/checkout.php:612 pages/confirmation.php:52
2582
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2583
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2584
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
@@ -2595,14 +2790,18 @@ msgstr ""
2595
  #: classes/class.pmproemail.php:648 classes/class.pmproemail.php:657
2596
  #: classes/gateways/class.pmprogateway_braintree.php:349
2597
  #: classes/gateways/class.pmprogateway_braintree.php:362
 
2598
  #: classes/gateways/class.pmprogateway_stripe.php:495
2599
  #: classes/gateways/class.pmprogateway_stripe.php:496
2600
- #: classes/gateways/class.pmprogateway_stripe.php:506 pages/checkout.php:66
 
 
2601
  #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2602
  #: pages/checkout.php:76 pages/checkout.php:77 pages/checkout.php:78
2603
- #: pages/checkout.php:85 pages/checkout.php:549 pages/checkout.php:565
2604
- #: pages/checkout.php:566 pages/checkout.php:573 pages/checkout.php:594
2605
- #: pages/checkout.php:603 pages/confirmation.php:51 pages/confirmation.php:52
 
2606
  #: pages/invoice.php:32 pages/invoice.php:33
2607
  msgid "Discount Code"
2608
  msgstr ""
@@ -2627,18 +2826,14 @@ msgstr ""
2627
  msgid "Member Checkout for %s at %s"
2628
  msgstr ""
2629
 
2630
- #: classes/class.pmproemail.php:375 classes/class.pmproemail.php:342
2631
- #: classes/class.pmproemail.php:345 classes/class.pmproemail.php:363
2632
- #: classes/class.pmproemail.php:366 classes/class.pmproemail.php:375
2633
  #, php-format
2634
- msgid "Your billing information has been udpated at %s"
2635
  msgstr ""
2636
 
2637
- #: classes/class.pmproemail.php:428 classes/class.pmproemail.php:386
2638
- #: classes/class.pmproemail.php:390 classes/class.pmproemail.php:416
2639
- #: classes/class.pmproemail.php:419 classes/class.pmproemail.php:428
2640
  #, php-format
2641
- msgid "Billing information has been udpated for %s at %s"
2642
  msgstr ""
2643
 
2644
  #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
@@ -2742,7 +2937,7 @@ msgstr ""
2742
  msgid "Membership has been cancelled"
2743
  msgstr ""
2744
 
2745
- #: classes/class.pmproemail.php:848
2746
  msgid "Invoice for Order #: "
2747
  msgstr ""
2748
 
@@ -2751,7 +2946,7 @@ msgstr ""
2751
  #: classes/gateways/class.pmprogateway_check.php:193
2752
  #: classes/gateways/class.pmprogateway_cybersource.php:171
2753
  #: classes/gateways/class.pmprogateway_payflowpro.php:164
2754
- #: classes/gateways/class.pmprogateway_paypal.php:247
2755
  #: classes/gateways/class.pmprogateway.php:55
2756
  #: classes/gateways/class.pmprogateway_authorizenet.php:55
2757
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
@@ -2763,6 +2958,7 @@ msgstr ""
2763
  #: classes/gateways/class.pmprogateway_payflowpro.php:164
2764
  #: classes/gateways/class.pmprogateway_paypal.php:27
2765
  #: classes/gateways/class.pmprogateway_paypal.php:247
 
2766
  msgid "Unknown error: Authorization failed."
2767
  msgstr ""
2768
 
@@ -2772,15 +2968,15 @@ msgstr ""
2772
  #: classes/gateways/class.pmprogateway_authorizenet.php:222
2773
  #: classes/gateways/class.pmprogateway_authorizenet.php:227
2774
  #: classes/gateways/class.pmprogateway_authorizenet.php:244
2775
- #: classes/gateways/class.pmprogateway_check.php:244
2776
- #: classes/gateways/class.pmprogateway_check.php:249
2777
- #: classes/gateways/class.pmprogateway_check.php:267
2778
  #: classes/gateways/class.pmprogateway_cybersource.php:222
2779
  #: classes/gateways/class.pmprogateway_cybersource.php:227
2780
  #: classes/gateways/class.pmprogateway_cybersource.php:245
2781
  #: classes/gateways/class.pmprogateway_payflowpro.php:187
2782
  #: classes/gateways/class.pmprogateway_payflowpro.php:192
2783
- #: classes/gateways/class.pmprogateway_paypal.php:270
2784
  #: classes/gateways/class.pmprogateway.php:106
2785
  #: classes/gateways/class.pmprogateway.php:111
2786
  #: classes/gateways/class.pmprogateway.php:129
@@ -2794,8 +2990,11 @@ msgstr ""
2794
  #: classes/gateways/class.pmprogateway_check.php:116
2795
  #: classes/gateways/class.pmprogateway_check.php:134
2796
  #: classes/gateways/class.pmprogateway_check.php:244
 
2797
  #: classes/gateways/class.pmprogateway_check.php:249
 
2798
  #: classes/gateways/class.pmprogateway_check.php:267
 
2799
  #: classes/gateways/class.pmprogateway_cybersource.php:108
2800
  #: classes/gateways/class.pmprogateway_cybersource.php:113
2801
  #: classes/gateways/class.pmprogateway_cybersource.php:131
@@ -2808,18 +3007,20 @@ msgstr ""
2808
  #: classes/gateways/class.pmprogateway_payflowpro.php:192
2809
  #: classes/gateways/class.pmprogateway_paypal.php:50
2810
  #: classes/gateways/class.pmprogateway_paypal.php:270
 
2811
  msgid "Unknown error: Payment failed."
2812
  msgstr ""
2813
 
2814
  #: classes/gateways/class.pmprogateway.php:113
2815
  #: classes/gateways/class.pmprogateway_authorizenet.php:228
2816
- #: classes/gateways/class.pmprogateway_check.php:251
2817
  #: classes/gateways/class.pmprogateway_cybersource.php:229
2818
  #: classes/gateways/class.pmprogateway.php:113
2819
  #: classes/gateways/class.pmprogateway_authorizenet.php:112
2820
  #: classes/gateways/class.pmprogateway_authorizenet.php:228
2821
  #: classes/gateways/class.pmprogateway_check.php:118
2822
  #: classes/gateways/class.pmprogateway_check.php:251
 
2823
  #: classes/gateways/class.pmprogateway_cybersource.php:115
2824
  #: classes/gateways/class.pmprogateway_cybersource.php:229
2825
  msgid ""
@@ -2828,10 +3029,11 @@ msgid ""
2828
  msgstr ""
2829
 
2830
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
2831
- #: paid-memberships-pro.php:131
2832
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
2833
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
2834
- #: paid-memberships-pro.php:130
 
2835
  msgid "Authorize.net"
2836
  msgstr ""
2837
 
@@ -2878,15 +3080,17 @@ msgstr ""
2878
  #: classes/gateways/class.pmprogateway_authorizenet.php:793
2879
  #: classes/gateways/class.pmprogateway_authorizenet.php:908
2880
  #: classes/gateways/class.pmprogateway_authorizenet.php:909
 
2881
  msgid "Could not connect to Authorize.net"
2882
  msgstr ""
2883
 
2884
  #: classes/gateways/class.pmprogateway_braintree.php:76
2885
- #: paid-memberships-pro.php:132
2886
  #: classes/gateways/class.pmprogateway_braintree.php:63
2887
  #: classes/gateways/class.pmprogateway_braintree.php:76
2888
  #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
2889
- #: paid-memberships-pro.php:131
 
2890
  msgid "Braintree Payments"
2891
  msgstr ""
2892
 
@@ -2932,7 +3136,7 @@ msgid "Client-Side Encryption Key"
2932
  msgstr ""
2933
 
2934
  #: classes/gateways/class.pmprogateway_braintree.php:169
2935
- #: classes/gateways/class.pmprogateway_stripe.php:192
2936
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
2937
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
2938
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
@@ -2942,6 +3146,7 @@ msgstr ""
2942
  #: classes/gateways/class.pmprogateway_stripe.php:181
2943
  #: classes/gateways/class.pmprogateway_stripe.php:182
2944
  #: classes/gateways/class.pmprogateway_stripe.php:192
 
2945
  msgid "Web Hook URL"
2946
  msgstr ""
2947
 
@@ -2953,159 +3158,193 @@ msgstr ""
2953
  msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
2954
  msgstr ""
2955
 
2956
- #: classes/gateways/class.pmprogateway_braintree.php:283
2957
- #: classes/gateways/class.pmprogateway_stripe.php:402 pages/checkout.php:501
2958
  #: classes/gateways/class.pmprogateway_braintree.php:270
2959
  #: classes/gateways/class.pmprogateway_braintree.php:283
 
2960
  #: classes/gateways/class.pmprogateway_stripe.php:387
2961
  #: classes/gateways/class.pmprogateway_stripe.php:388
2962
- #: classes/gateways/class.pmprogateway_stripe.php:398 pages/checkout.php:476
 
 
2963
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2964
- #: pages/checkout.php:494 pages/checkout.php:500
 
2965
  msgid "Payment Information"
2966
  msgstr ""
2967
 
2968
- #: classes/gateways/class.pmprogateway_braintree.php:283
2969
- #: classes/gateways/class.pmprogateway_stripe.php:402 pages/checkout.php:502
2970
  #: classes/gateways/class.pmprogateway_braintree.php:270
2971
  #: classes/gateways/class.pmprogateway_braintree.php:283
 
2972
  #: classes/gateways/class.pmprogateway_stripe.php:387
2973
  #: classes/gateways/class.pmprogateway_stripe.php:388
2974
- #: classes/gateways/class.pmprogateway_stripe.php:398 pages/checkout.php:476
 
 
2975
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2976
- #: pages/checkout.php:494 pages/checkout.php:500
 
2977
  #, php-format
2978
  msgid "We Accept %s"
2979
  msgstr ""
2980
 
2981
- #: classes/gateways/class.pmprogateway_braintree.php:316
2982
- #: classes/gateways/class.pmprogateway_stripe.php:464 pages/billing.php:260
2983
- #: pages/checkout.php:566
2984
  #: classes/gateways/class.pmprogateway_braintree.php:303
2985
  #: classes/gateways/class.pmprogateway_braintree.php:316
 
2986
  #: classes/gateways/class.pmprogateway_stripe.php:449
2987
  #: classes/gateways/class.pmprogateway_stripe.php:450
2988
- #: classes/gateways/class.pmprogateway_stripe.php:460 pages/billing.php:244
2989
- #: pages/billing.php:248 pages/billing.php:257 pages/checkout.php:503
2990
- #: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
2991
- #: pages/checkout.php:548 pages/checkout.php:557
 
 
 
2992
  msgid "Card Number"
2993
  msgstr ""
2994
 
2995
- #: classes/gateways/class.pmprogateway_braintree.php:353
2996
- #: classes/gateways/class.pmprogateway_stripe.php:501 pages/billing.php:297
2997
- #: pages/checkout.php:603
2998
  #: classes/gateways/class.pmprogateway_braintree.php:340
2999
  #: classes/gateways/class.pmprogateway_braintree.php:353
 
3000
  #: classes/gateways/class.pmprogateway_stripe.php:486
3001
  #: classes/gateways/class.pmprogateway_stripe.php:487
3002
- #: classes/gateways/class.pmprogateway_stripe.php:497 pages/billing.php:281
3003
- #: pages/billing.php:285 pages/billing.php:294 pages/checkout.php:540
3004
- #: pages/checkout.php:556 pages/checkout.php:557 pages/checkout.php:564
3005
- #: pages/checkout.php:585 pages/checkout.php:594
 
 
 
3006
  msgid "CVV"
3007
  msgstr ""
3008
 
3009
- #: classes/gateways/class.pmprogateway_braintree.php:354
3010
- #: classes/gateways/class.pmprogateway_stripe.php:502 pages/billing.php:298
3011
- #: pages/checkout.php:604
3012
  #: classes/gateways/class.pmprogateway_braintree.php:341
3013
  #: classes/gateways/class.pmprogateway_braintree.php:354
 
3014
  #: classes/gateways/class.pmprogateway_stripe.php:487
3015
  #: classes/gateways/class.pmprogateway_stripe.php:488
3016
- #: classes/gateways/class.pmprogateway_stripe.php:498 pages/billing.php:282
3017
- #: pages/billing.php:286 pages/billing.php:295 pages/checkout.php:541
3018
- #: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
3019
- #: pages/checkout.php:586 pages/checkout.php:595
 
 
 
3020
  msgid "what's this?"
3021
  msgstr ""
3022
 
3023
- #: classes/gateways/class.pmprogateway_braintree.php:364
3024
- #: classes/gateways/class.pmprogateway_stripe.php:512 pages/checkout.php:88
3025
- #: pages/checkout.php:614
3026
  #: classes/gateways/class.pmprogateway_braintree.php:351
3027
  #: classes/gateways/class.pmprogateway_braintree.php:364
 
3028
  #: classes/gateways/class.pmprogateway_stripe.php:497
3029
  #: classes/gateways/class.pmprogateway_stripe.php:498
3030
- #: classes/gateways/class.pmprogateway_stripe.php:508 pages/checkout.php:78
 
 
3031
  #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3032
- #: pages/checkout.php:551 pages/checkout.php:567 pages/checkout.php:568
3033
- #: pages/checkout.php:575 pages/checkout.php:596 pages/checkout.php:605
 
3034
  msgid "Apply"
3035
  msgstr ""
3036
 
3037
- #: classes/gateways/class.pmprogateway_braintree.php:419
3038
- #: classes/gateways/class.pmprogateway_stripe.php:1040
3039
  #: classes/gateways/class.pmprogateway_braintree.php:61
3040
  #: classes/gateways/class.pmprogateway_braintree.php:406
3041
  #: classes/gateways/class.pmprogateway_braintree.php:419
 
3042
  #: classes/gateways/class.pmprogateway_stripe.php:53
3043
  #: classes/gateways/class.pmprogateway_stripe.php:1011
3044
  #: classes/gateways/class.pmprogateway_stripe.php:1025
3045
  #: classes/gateways/class.pmprogateway_stripe.php:1026
3046
  #: classes/gateways/class.pmprogateway_stripe.php:1036
 
 
3047
  msgid "Unknown error: Initial payment failed."
3048
  msgstr ""
3049
 
3050
- #: classes/gateways/class.pmprogateway_braintree.php:478
3051
  #: classes/gateways/class.pmprogateway_braintree.php:120
3052
  #: classes/gateways/class.pmprogateway_braintree.php:465
3053
  #: classes/gateways/class.pmprogateway_braintree.php:478
 
3054
  msgid "Error during settlement:"
3055
  msgstr ""
3056
 
3057
- #: classes/gateways/class.pmprogateway_braintree.php:487
3058
  #: classes/gateways/class.pmprogateway_braintree.php:129
3059
  #: classes/gateways/class.pmprogateway_braintree.php:474
3060
  #: classes/gateways/class.pmprogateway_braintree.php:487
 
3061
  msgid "Error during charge:"
3062
  msgstr ""
3063
 
3064
- #: classes/gateways/class.pmprogateway_braintree.php:579
3065
  #: classes/gateways/class.pmprogateway_braintree.php:198
3066
  #: classes/gateways/class.pmprogateway_braintree.php:221
3067
  #: classes/gateways/class.pmprogateway_braintree.php:566
3068
  #: classes/gateways/class.pmprogateway_braintree.php:579
 
3069
  msgid "Failed to update customer."
3070
  msgstr ""
3071
 
3072
- #: classes/gateways/class.pmprogateway_braintree.php:627
3073
  #: classes/gateways/class.pmprogateway_braintree.php:246
3074
  #: classes/gateways/class.pmprogateway_braintree.php:269
3075
  #: classes/gateways/class.pmprogateway_braintree.php:614
3076
  #: classes/gateways/class.pmprogateway_braintree.php:627
 
3077
  msgid "Failed to create customer."
3078
  msgstr ""
3079
 
3080
- #: classes/gateways/class.pmprogateway_braintree.php:634
3081
  #: classes/gateways/class.pmprogateway_braintree.php:253
3082
  #: classes/gateways/class.pmprogateway_braintree.php:276
3083
  #: classes/gateways/class.pmprogateway_braintree.php:621
3084
  #: classes/gateways/class.pmprogateway_braintree.php:634
 
3085
  msgid "Error creating customer record with Braintree:"
3086
  msgstr ""
3087
 
3088
- #: classes/gateways/class.pmprogateway_braintree.php:734
3089
  #: classes/gateways/class.pmprogateway_braintree.php:344
3090
  #: classes/gateways/class.pmprogateway_braintree.php:345
3091
  #: classes/gateways/class.pmprogateway_braintree.php:376
3092
  #: classes/gateways/class.pmprogateway_braintree.php:721
3093
  #: classes/gateways/class.pmprogateway_braintree.php:734
 
3094
  msgid "Error subscribing customer to plan with Braintree:"
3095
  msgstr ""
3096
 
3097
- #: classes/gateways/class.pmprogateway_braintree.php:749
3098
  #: classes/gateways/class.pmprogateway_braintree.php:359
3099
  #: classes/gateways/class.pmprogateway_braintree.php:360
3100
  #: classes/gateways/class.pmprogateway_braintree.php:391
3101
  #: classes/gateways/class.pmprogateway_braintree.php:736
3102
  #: classes/gateways/class.pmprogateway_braintree.php:749
 
3103
  msgid "Failed to subscribe with Braintree:"
3104
  msgstr ""
3105
 
3106
- #: classes/gateways/class.pmprogateway_braintree.php:787
3107
- #: classes/gateways/class.pmprogateway_braintree.php:800
3108
- #: classes/gateways/class.pmprogateway_braintree.php:807
3109
  #: classes/gateways/class.pmprogateway_braintree.php:397
3110
  #: classes/gateways/class.pmprogateway_braintree.php:398
3111
  #: classes/gateways/class.pmprogateway_braintree.php:410
@@ -3117,9 +3356,12 @@ msgstr ""
3117
  #: classes/gateways/class.pmprogateway_braintree.php:449
3118
  #: classes/gateways/class.pmprogateway_braintree.php:774
3119
  #: classes/gateways/class.pmprogateway_braintree.php:787
 
3120
  #: classes/gateways/class.pmprogateway_braintree.php:794
3121
  #: classes/gateways/class.pmprogateway_braintree.php:800
 
3122
  #: classes/gateways/class.pmprogateway_braintree.php:807
 
3123
  #: classes/gateways/class.pmprogateway_stripe.php:343
3124
  #: classes/gateways/class.pmprogateway_stripe.php:344
3125
  #: classes/gateways/class.pmprogateway_stripe.php:351
@@ -3133,12 +3375,13 @@ msgid "Could not find the subscription."
3133
  msgstr ""
3134
 
3135
  #: classes/gateways/class.pmprogateway_check.php:48
3136
- #: paid-memberships-pro.php:125 adminpages/orders.php:399
3137
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3138
  #: adminpages/paymentsettings.php:159
3139
  #: classes/gateways/class.pmprogateway_check.php:48
3140
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:117
3141
- #: paid-memberships-pro.php:124
 
3142
  msgid "Pay by Check"
3143
  msgstr ""
3144
 
@@ -3214,11 +3457,11 @@ msgid "Vendor"
3214
  msgstr ""
3215
 
3216
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3217
- #: pages/checkout.php:191 adminpages/paymentsettings.php:219
3218
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3219
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3220
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
3221
- #: pages/checkout.php:189
3222
  msgid "Password"
3223
  msgstr ""
3224
 
@@ -3236,21 +3479,23 @@ msgid ""
3236
  msgstr ""
3237
 
3238
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3239
- #: classes/gateways/class.pmprogateway_paypal.php:277
3240
  #: classes/gateways/class.pmprogateway_payflowpro.php:57
3241
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3242
  #: classes/gateways/class.pmprogateway_paypal.php:57
3243
  #: classes/gateways/class.pmprogateway_paypal.php:277
 
3244
  msgid ""
3245
  "A partial payment was made that we could not refund. Please contact the site "
3246
  "owner immediately to correct this."
3247
  msgstr ""
3248
 
3249
  #: classes/gateways/class.pmprogateway_paypal.php:57
3250
- #: paid-memberships-pro.php:128
3251
  #: classes/gateways/class.pmprogateway_paypal.php:57
3252
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
3253
- #: paid-memberships-pro.php:127
 
3254
  msgid "PayPal Website Payments Pro"
3255
  msgstr ""
3256
 
@@ -3295,7 +3540,7 @@ msgstr ""
3295
  #: classes/gateways/class.pmprogateway_paypal.php:131
3296
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3297
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3298
- #: classes/gateways/class.pmprogateway_twocheckout.php:121
3299
  #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
3300
  #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
3301
  #: adminpages/paymentsettings.php:336
@@ -3304,6 +3549,7 @@ msgstr ""
3304
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3305
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3306
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
 
3307
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3308
  msgid "API Username"
3309
  msgstr ""
@@ -3311,7 +3557,7 @@ msgstr ""
3311
  #: classes/gateways/class.pmprogateway_paypal.php:139
3312
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3313
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3314
- #: classes/gateways/class.pmprogateway_twocheckout.php:130
3315
  #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
3316
  #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
3317
  #: adminpages/paymentsettings.php:344
@@ -3320,6 +3566,7 @@ msgstr ""
3320
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3321
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3322
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
 
3323
  #: classes/gateways/class.pmprogateway_twocheckout.php:130
3324
  msgid "API Password"
3325
  msgstr ""
@@ -3358,54 +3605,60 @@ msgstr ""
3358
  #: classes/gateways/class.pmprogateway_paypal.php:178
3359
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3360
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3361
- #: pages/checkout.php:300 classes/gateways/class.pmprogateway_paypal.php:178
3362
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3363
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3364
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3365
  #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3366
- #: pages/checkout.php:302 pages/checkout.php:309 pages/checkout.php:675
3367
- #: pages/checkout.php:682 pages/checkout.php:685 pages/checkout.php:701
 
3368
  msgid "Check Out with PayPal"
3369
  msgstr ""
3370
 
3371
  #: classes/gateways/class.pmprogateway_paypal.php:184
3372
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3373
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3374
- #: pages/checkout.php:722 classes/gateways/class.pmprogateway_paypal.php:184
3375
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3376
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3377
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3378
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3379
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
 
3380
  msgid "Submit and Check Out"
3381
  msgstr ""
3382
 
3383
  #: classes/gateways/class.pmprogateway_paypal.php:184
3384
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3385
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3386
- #: classes/gateways/class.pmprogateway_twocheckout.php:214
3387
- #: pages/checkout.php:722 classes/gateways/class.pmprogateway_paypal.php:184
3388
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3389
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3390
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3391
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
 
3392
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3393
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3394
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
 
3395
  msgid "Submit and Confirm"
3396
  msgstr ""
3397
 
3398
- #: classes/gateways/class.pmprogateway_paypal.php:605
3399
- #: classes/gateways/class.pmprogateway_paypalexpress.php:750
3400
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3401
  #: classes/gateways/class.pmprogateway_paypal.php:385
3402
  #: classes/gateways/class.pmprogateway_paypal.php:605
 
3403
  #: classes/gateways/class.pmprogateway_paypalexpress.php:301
3404
  #: classes/gateways/class.pmprogateway_paypalexpress.php:303
3405
  #: classes/gateways/class.pmprogateway_paypalexpress.php:305
3406
  #: classes/gateways/class.pmprogateway_paypalexpress.php:731
3407
  #: classes/gateways/class.pmprogateway_paypalexpress.php:740
3408
  #: classes/gateways/class.pmprogateway_paypalexpress.php:750
 
3409
  #: classes/gateways/class.pmprogateway_paypalstandard.php:216
3410
  #: classes/gateways/class.pmprogateway_paypalstandard.php:220
3411
  #: classes/gateways/class.pmprogateway_paypalstandard.php:230
@@ -3417,11 +3670,12 @@ msgid ""
3417
  msgstr ""
3418
 
3419
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3420
- #: paid-memberships-pro.php:127
3421
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3422
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3423
  #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3424
- #: paid-memberships-pro.php:126
 
3425
  msgid "PayPal Express"
3426
  msgstr ""
3427
 
@@ -3449,10 +3703,11 @@ msgid "The PayPal Token was lost."
3449
  msgstr ""
3450
 
3451
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3452
- #: paid-memberships-pro.php:130
3453
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3454
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
3455
- #: paid-memberships-pro.php:129
 
3456
  msgid "PayPal Standard"
3457
  msgstr ""
3458
 
@@ -3463,111 +3718,138 @@ msgid ""
3463
  "settings."
3464
  msgstr ""
3465
 
3466
- #: classes/gateways/class.pmprogateway_stripe.php:104
3467
- #: paid-memberships-pro.php:126
 
 
 
 
 
 
 
 
3468
  #: classes/gateways/class.pmprogateway_stripe.php:93
3469
  #: classes/gateways/class.pmprogateway_stripe.php:94
3470
  #: classes/gateways/class.pmprogateway_stripe.php:104
 
3471
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3472
- #: paid-memberships-pro.php:125
 
3473
  msgid "Stripe"
3474
  msgstr ""
3475
 
3476
- #: classes/gateways/class.pmprogateway_stripe.php:159
3477
  #: classes/gateways/class.pmprogateway_stripe.php:148
3478
  #: classes/gateways/class.pmprogateway_stripe.php:149
3479
  #: classes/gateways/class.pmprogateway_stripe.php:159
 
3480
  msgid "Stripe Settings"
3481
  msgstr ""
3482
 
3483
- #: classes/gateways/class.pmprogateway_stripe.php:164
3484
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3485
  #: adminpages/paymentsettings.php:286
3486
  #: classes/gateways/class.pmprogateway_stripe.php:153
3487
  #: classes/gateways/class.pmprogateway_stripe.php:154
3488
  #: classes/gateways/class.pmprogateway_stripe.php:164
 
3489
  msgid "Secret Key"
3490
  msgstr ""
3491
 
3492
- #: classes/gateways/class.pmprogateway_stripe.php:172
3493
  #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3494
  #: adminpages/paymentsettings.php:294
3495
  #: classes/gateways/class.pmprogateway_stripe.php:161
3496
  #: classes/gateways/class.pmprogateway_stripe.php:162
3497
  #: classes/gateways/class.pmprogateway_stripe.php:172
 
3498
  msgid "Publishable Key"
3499
  msgstr ""
3500
 
3501
- #: classes/gateways/class.pmprogateway_stripe.php:180
3502
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3503
  #: adminpages/paymentsettings.php:432
3504
  #: classes/gateways/class.pmprogateway_stripe.php:169
3505
  #: classes/gateways/class.pmprogateway_stripe.php:170
3506
  #: classes/gateways/class.pmprogateway_stripe.php:180
 
3507
  msgid "Show Billing Address Fields"
3508
  msgstr ""
3509
 
3510
- #: classes/gateways/class.pmprogateway_stripe.php:187
3511
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3512
  #: classes/gateways/class.pmprogateway_stripe.php:176
3513
  #: classes/gateways/class.pmprogateway_stripe.php:177
3514
  #: classes/gateways/class.pmprogateway_stripe.php:187
 
3515
  msgid ""
3516
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3517
  "the checkout page.<br /><strong>If No, make sure you disable address "
3518
  "verification in the Stripe dashboard settings.</strong>"
3519
  msgstr ""
3520
 
3521
- #: classes/gateways/class.pmprogateway_stripe.php:195
3522
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3523
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3524
  #: classes/gateways/class.pmprogateway_stripe.php:184
3525
  #: classes/gateways/class.pmprogateway_stripe.php:185
3526
  #: classes/gateways/class.pmprogateway_stripe.php:195
 
3527
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3528
  msgstr ""
3529
 
3530
- #: classes/gateways/class.pmprogateway_stripe.php:582
3531
  #: classes/gateways/class.pmprogateway_stripe.php:567
3532
  #: classes/gateways/class.pmprogateway_stripe.php:568
3533
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
3534
  msgid "Subscription Updates"
3535
  msgstr ""
3536
 
3537
- #: classes/gateways/class.pmprogateway_stripe.php:586
3538
  #: classes/gateways/class.pmprogateway_stripe.php:571
3539
  #: classes/gateways/class.pmprogateway_stripe.php:572
3540
  #: classes/gateways/class.pmprogateway_stripe.php:582
 
 
3541
  msgid ""
3542
  "Subscription updates, allow you to change the member's subscription values "
3543
  "at predefined times. Be sure to click Update Profile after making changes."
3544
  msgstr ""
3545
 
3546
- #: classes/gateways/class.pmprogateway_stripe.php:588
3547
  #: classes/gateways/class.pmprogateway_stripe.php:573
3548
  #: classes/gateways/class.pmprogateway_stripe.php:574
3549
  #: classes/gateways/class.pmprogateway_stripe.php:584
 
 
3550
  msgid ""
3551
  "Subscription updates, allow you to change the member's subscription values "
3552
  "at predefined times. Be sure to click Update User after making changes."
3553
  msgstr ""
3554
 
3555
- #: classes/gateways/class.pmprogateway_stripe.php:593 pages/billing.php:341
3556
  #: classes/gateways/class.pmprogateway_stripe.php:578
3557
  #: classes/gateways/class.pmprogateway_stripe.php:579
3558
- #: classes/gateways/class.pmprogateway_stripe.php:589 pages/billing.php:294
 
 
3559
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
 
3560
  msgid "Update"
3561
  msgstr ""
3562
 
3563
- #: classes/gateways/class.pmprogateway_stripe.php:784
3564
  #: classes/gateways/class.pmprogateway_stripe.php:769
3565
  #: classes/gateways/class.pmprogateway_stripe.php:770
3566
  #: classes/gateways/class.pmprogateway_stripe.php:780
 
 
3567
  msgid "Could not cancel the old subscription. Updates have not been processed."
3568
  msgstr ""
3569
 
3570
- #: classes/gateways/class.pmprogateway_stripe.php:1218
3571
  #: classes/gateways/class.pmprogateway_stripe.php:190
3572
  #: classes/gateways/class.pmprogateway_stripe.php:192
3573
  #: classes/gateways/class.pmprogateway_stripe.php:199
@@ -3578,14 +3860,18 @@ msgstr ""
3578
  #: classes/gateways/class.pmprogateway_stripe.php:1203
3579
  #: classes/gateways/class.pmprogateway_stripe.php:1204
3580
  #: classes/gateways/class.pmprogateway_stripe.php:1214
 
 
3581
  msgid "Error creating customer record with Stripe:"
3582
  msgstr ""
3583
 
 
3584
  #: classes/gateways/class.pmprogateway_stripe.php:1275
 
3585
  msgid "Error getting subscription with Stripe:"
3586
  msgstr ""
3587
 
3588
- #: classes/gateways/class.pmprogateway_stripe.php:1425
3589
  #: classes/gateways/class.pmprogateway_stripe.php:278
3590
  #: classes/gateways/class.pmprogateway_stripe.php:279
3591
  #: classes/gateways/class.pmprogateway_stripe.php:286
@@ -3604,10 +3890,12 @@ msgstr ""
3604
  #: classes/gateways/class.pmprogateway_stripe.php:1410
3605
  #: classes/gateways/class.pmprogateway_stripe.php:1411
3606
  #: classes/gateways/class.pmprogateway_stripe.php:1421
 
 
3607
  msgid "Error creating plan with Stripe:"
3608
  msgstr ""
3609
 
3610
- #: classes/gateways/class.pmprogateway_stripe.php:1456
3611
  #: classes/gateways/class.pmprogateway_stripe.php:294
3612
  #: classes/gateways/class.pmprogateway_stripe.php:295
3613
  #: classes/gateways/class.pmprogateway_stripe.php:302
@@ -3621,10 +3909,12 @@ msgstr ""
3621
  #: classes/gateways/class.pmprogateway_stripe.php:1441
3622
  #: classes/gateways/class.pmprogateway_stripe.php:1442
3623
  #: classes/gateways/class.pmprogateway_stripe.php:1452
 
 
3624
  msgid "Error subscribing customer to plan with Stripe:"
3625
  msgstr ""
3626
 
3627
- #: classes/gateways/class.pmprogateway_stripe.php:1552
3628
  #: classes/gateways/class.pmprogateway_stripe.php:383
3629
  #: classes/gateways/class.pmprogateway_stripe.php:389
3630
  #: classes/gateways/class.pmprogateway_stripe.php:410
@@ -3635,10 +3925,12 @@ msgstr ""
3635
  #: classes/gateways/class.pmprogateway_stripe.php:1537
3636
  #: classes/gateways/class.pmprogateway_stripe.php:1538
3637
  #: classes/gateways/class.pmprogateway_stripe.php:1548
 
 
3638
  msgid "Could not cancel old subscription."
3639
  msgstr ""
3640
 
3641
- #: classes/gateways/class.pmprogateway_stripe.php:1569
3642
  #: classes/gateways/class.pmprogateway_stripe.php:1533
3643
  #: classes/gateways/class.pmprogateway_stripe.php:1534
3644
  #: classes/gateways/class.pmprogateway_stripe.php:1535
@@ -3646,324 +3938,374 @@ msgstr ""
3646
  #: classes/gateways/class.pmprogateway_stripe.php:1554
3647
  #: classes/gateways/class.pmprogateway_stripe.php:1555
3648
  #: classes/gateways/class.pmprogateway_stripe.php:1565
 
 
3649
  msgid "Could not find the customer."
3650
  msgstr ""
3651
 
3652
- #: classes/gateways/class.pmprogateway_twocheckout.php:60
3653
- #: paid-memberships-pro.php:133
3654
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
 
3655
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
3656
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3657
- #: paid-memberships-pro.php:132
 
3658
  msgid "2Checkout"
3659
  msgstr ""
3660
 
3661
- #: classes/gateways/class.pmprogateway_twocheckout.php:116
3662
  #: classes/gateways/class.pmprogateway_twocheckout.php:108
 
3663
  #: classes/gateways/class.pmprogateway_twocheckout.php:116
3664
  msgid "2Checkout Settings"
3665
  msgstr ""
3666
 
3667
- #: classes/gateways/class.pmprogateway_twocheckout.php:125
 
3668
  #: classes/gateways/class.pmprogateway_twocheckout.php:125
3669
  msgid ""
3670
  "Go to Account &raquo; User Management in 2Checkout and create a user with "
3671
  "API Access and API Updating."
3672
  msgstr ""
3673
 
3674
- #: classes/gateways/class.pmprogateway_twocheckout.php:134
 
3675
  #: classes/gateways/class.pmprogateway_twocheckout.php:134
3676
  msgid "Password for the API user created."
3677
  msgstr ""
3678
 
3679
- #: classes/gateways/class.pmprogateway_twocheckout.php:139
3680
- #: classes/gateways/class.pmprogateway_twocheckout.php:139
3681
- msgid "API Private Key"
3682
- msgstr ""
3683
-
3684
- #: classes/gateways/class.pmprogateway_twocheckout.php:143
3685
- #: classes/gateways/class.pmprogateway_twocheckout.php:143
3686
- msgid ""
3687
- "Go to API in 2Checkout and generate a new key pair. Paste the Private Key "
3688
- "here."
3689
- msgstr ""
3690
-
3691
- #: classes/gateways/class.pmprogateway_twocheckout.php:152
3692
  #: classes/gateways/class.pmprogateway_twocheckout.php:152
3693
  msgid "Click on the profile icon in 2Checkout to find your Account Number."
3694
  msgstr ""
3695
 
3696
- #: classes/gateways/class.pmprogateway_twocheckout.php:157
3697
  #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3698
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
 
3699
  #: classes/gateways/class.pmprogateway_twocheckout.php:157
3700
  msgid "Secret Word"
3701
  msgstr ""
3702
 
3703
- #: classes/gateways/class.pmprogateway_twocheckout.php:161
 
3704
  #: classes/gateways/class.pmprogateway_twocheckout.php:161
3705
  msgid ""
3706
  "Go to Account &raquo; Site Management. Look under Checkout Options to find "
3707
  "the Secret Word."
3708
  msgstr ""
3709
 
3710
- #: classes/gateways/class.pmprogateway_twocheckout.php:166
3711
  #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
3712
  #: adminpages/paymentsettings.php:495
3713
  #: classes/gateways/class.pmprogateway_twocheckout.php:145
 
3714
  #: classes/gateways/class.pmprogateway_twocheckout.php:166
3715
  msgid "TwoCheckout INS URL"
3716
  msgstr ""
3717
 
3718
- #: classes/gateways/class.pmprogateway_twocheckout.php:169
 
3719
  #: classes/gateways/class.pmprogateway_twocheckout.php:169
3720
  msgid ""
3721
  "To fully integrate with 2Checkout, be sure to use the following for your INS "
3722
  "URL and Approved URL"
3723
  msgstr ""
3724
 
3725
- #: classes/gateways/class.pmprogateway_twocheckout.php:214
3726
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
 
3727
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3728
  msgid "Check Out with 2Checkout"
3729
  msgstr ""
3730
 
3731
- #: includes/adminpages.php:47 includes/adminpages.php:9
3732
  #: includes/adminpages.php:39 includes/adminpages.php:47
3733
- #: includes/adminpages.php:93 includes/adminpages.php:100
 
3734
  msgid "Memberships"
3735
  msgstr ""
3736
 
3737
- #: includes/adminpages.php:48 includes/adminpages.php:118
3738
  #: includes/adminpages.php:10 includes/adminpages.php:48
3739
  #: includes/adminpages.php:49 includes/adminpages.php:107
3740
  #: includes/adminpages.php:114 includes/adminpages.php:118
 
3741
  msgid "Page Settings"
3742
  msgstr ""
3743
 
3744
- #: includes/adminpages.php:49 includes/adminpages.php:125
3745
  #: includes/adminpages.php:11 includes/adminpages.php:49
3746
- #: includes/adminpages.php:54 includes/adminpages.php:114
3747
- #: includes/adminpages.php:121 includes/adminpages.php:125
 
3748
  msgid "Payment Settings"
3749
  msgstr ""
3750
 
3751
- #: includes/adminpages.php:54 includes/adminpages.php:160
3752
  #: includes/adminpages.php:16 includes/adminpages.php:54
3753
- #: includes/adminpages.php:79 includes/adminpages.php:149
3754
- #: includes/adminpages.php:156 includes/adminpages.php:160
 
3755
  msgid "Reports"
3756
  msgstr ""
3757
 
3758
- #: includes/adminpages.php:56 includes/adminpages.php:174
3759
  #: includes/adminpages.php:18 includes/adminpages.php:56
3760
- #: includes/adminpages.php:89 includes/adminpages.php:163
3761
- #: includes/adminpages.php:170 includes/adminpages.php:174
 
3762
  msgid "Discount Codes"
3763
  msgstr ""
3764
 
3765
- #: includes/adminpages.php:104 includes/adminpages.php:100
3766
- #: includes/adminpages.php:104
 
 
 
 
3767
  msgid "<span class=\"ab-icon\"></span>Memberships"
3768
  msgstr ""
3769
 
3770
- #: includes/adminpages.php:265 includes/adminpages.php:261
3771
- #: includes/adminpages.php:265
3772
  msgid "Docs"
3773
  msgstr ""
3774
 
3775
- #: includes/adminpages.php:265 includes/adminpages.php:261
3776
- #: includes/adminpages.php:265
3777
  msgid "View PMPro Documentation"
3778
  msgstr ""
3779
 
3780
- #: includes/adminpages.php:266 includes/adminpages.php:262
3781
- #: includes/adminpages.php:266
3782
  msgid "Support"
3783
  msgstr ""
3784
 
3785
- #: includes/adminpages.php:266 includes/adminpages.php:262
3786
- #: includes/adminpages.php:266
3787
  msgid "Visit Customer Support Forum"
3788
  msgstr ""
3789
 
3790
- #: includes/currencies.php:17 includes/currencies.php:85
3791
- #: includes/currencies.php:7 includes/currencies.php:37
3792
- #: includes/currencies.php:44 includes/currencies.php:64
3793
- #: includes/currencies.php:68 includes/currencies.php:75
 
 
3794
  msgid "US Dollars (&#36;)"
3795
  msgstr ""
3796
 
3797
- #: includes/currencies.php:19 includes/currencies.php:88
3798
  #: includes/currencies.php:8 includes/currencies.php:9
3799
- #: includes/currencies.php:40 includes/currencies.php:47
3800
- #: includes/currencies.php:67 includes/currencies.php:71
3801
- #: includes/currencies.php:78
 
3802
  msgid "Euros (&euro;)"
3803
  msgstr ""
3804
 
3805
- #: includes/currencies.php:24 includes/currencies.php:87
3806
  #: includes/currencies.php:9 includes/currencies.php:14
3807
- #: includes/currencies.php:39 includes/currencies.php:46
3808
- #: includes/currencies.php:66 includes/currencies.php:70
3809
- #: includes/currencies.php:77
 
3810
  msgid "Pounds Sterling (&pound;)"
3811
  msgstr ""
3812
 
3813
- #: includes/currencies.php:28 includes/currencies.php:10
3814
- #: includes/currencies.php:18
 
 
 
 
 
3815
  msgid "Australian Dollars (&#36;)"
3816
  msgstr ""
3817
 
3818
- #: includes/currencies.php:30 includes/currencies.php:20
 
3819
  msgid "Brazilian Real (R&#36;)"
3820
  msgstr ""
3821
 
3822
- #: includes/currencies.php:34 includes/currencies.php:86
3823
  #: includes/currencies.php:12 includes/currencies.php:24
 
3824
  #: includes/currencies.php:38 includes/currencies.php:45
3825
  #: includes/currencies.php:65 includes/currencies.php:69
3826
- #: includes/currencies.php:76
 
3827
  msgid "Canadian Dollars (&#36;)"
3828
  msgstr ""
3829
 
3830
- #: includes/currencies.php:35 includes/currencies.php:13
3831
- #: includes/currencies.php:25
 
3832
  msgid "Chinese Yuan"
3833
  msgstr ""
3834
 
3835
- #: includes/currencies.php:37 includes/currencies.php:13
3836
  #: includes/currencies.php:14 includes/currencies.php:26
3837
- #: includes/currencies.php:27
 
3838
  msgid "Czech Koruna"
3839
  msgstr ""
3840
 
3841
- #: includes/currencies.php:44 includes/currencies.php:14
3842
  #: includes/currencies.php:15 includes/currencies.php:27
3843
- #: includes/currencies.php:34
 
3844
  msgid "Danish Krone"
3845
  msgstr ""
3846
 
3847
- #: includes/currencies.php:45 includes/currencies.php:15
3848
  #: includes/currencies.php:16 includes/currencies.php:28
3849
- #: includes/currencies.php:35
 
3850
  msgid "Hong Kong Dollar (&#36;)"
3851
  msgstr ""
3852
 
3853
- #: includes/currencies.php:46 includes/currencies.php:16
3854
  #: includes/currencies.php:17 includes/currencies.php:29
3855
- #: includes/currencies.php:36
 
3856
  msgid "Hungarian Forint"
3857
  msgstr ""
3858
 
3859
- #: includes/currencies.php:47 includes/currencies.php:18
3860
  #: includes/currencies.php:30 includes/currencies.php:37
 
3861
  msgid "Indian Rupee"
3862
  msgstr ""
3863
 
3864
- #: includes/currencies.php:48 includes/currencies.php:19
3865
  #: includes/currencies.php:31 includes/currencies.php:38
 
3866
  msgid "Indonesia Rupiah"
3867
  msgstr ""
3868
 
3869
- #: includes/currencies.php:49 includes/currencies.php:17
3870
  #: includes/currencies.php:20 includes/currencies.php:32
3871
- #: includes/currencies.php:39
 
3872
  msgid "Israeli Shekel"
3873
  msgstr ""
3874
 
3875
- #: includes/currencies.php:51 includes/currencies.php:18
3876
  #: includes/currencies.php:21 includes/currencies.php:34
3877
- #: includes/currencies.php:41
 
3878
  msgid "Japanese Yen (&yen;)"
3879
  msgstr ""
3880
 
3881
- #: includes/currencies.php:55 includes/currencies.php:19
3882
  #: includes/currencies.php:22 includes/currencies.php:38
3883
- #: includes/currencies.php:45
 
3884
  msgid "Malaysian Ringgits"
3885
  msgstr ""
3886
 
3887
- #: includes/currencies.php:56 includes/currencies.php:20
3888
  #: includes/currencies.php:23 includes/currencies.php:39
3889
- #: includes/currencies.php:46
 
3890
  msgid "Mexican Peso (&#36;)"
3891
  msgstr ""
3892
 
3893
- #: includes/currencies.php:57 includes/currencies.php:21
 
 
 
 
3894
  #: includes/currencies.php:24 includes/currencies.php:40
3895
- #: includes/currencies.php:47
 
3896
  msgid "New Zealand Dollar (&#36;)"
3897
  msgstr ""
3898
 
3899
- #: includes/currencies.php:58 includes/currencies.php:22
3900
  #: includes/currencies.php:25 includes/currencies.php:41
3901
- #: includes/currencies.php:48
 
3902
  msgid "Norwegian Krone"
3903
  msgstr ""
3904
 
3905
- #: includes/currencies.php:59 includes/currencies.php:23
3906
  #: includes/currencies.php:26 includes/currencies.php:42
3907
- #: includes/currencies.php:49
 
3908
  msgid "Philippine Pesos"
3909
  msgstr ""
3910
 
3911
- #: includes/currencies.php:60 includes/currencies.php:24
3912
  #: includes/currencies.php:27 includes/currencies.php:43
3913
- #: includes/currencies.php:50
 
3914
  msgid "Polish Zloty"
3915
  msgstr ""
3916
 
3917
- #: includes/currencies.php:62 includes/currencies.php:25
3918
  #: includes/currencies.php:28 includes/currencies.php:45
3919
- #: includes/currencies.php:52
 
3920
  msgid "Singapore Dollar (&#36;)"
3921
  msgstr ""
3922
 
3923
- #: includes/currencies.php:67 includes/currencies.php:50
3924
- #: includes/currencies.php:57
 
3925
  msgid "South African Rand (R)"
3926
  msgstr ""
3927
 
3928
- #: includes/currencies.php:71 includes/currencies.php:30
3929
  #: includes/currencies.php:50 includes/currencies.php:54
3930
- #: includes/currencies.php:61
 
3931
  msgid "South Korean Won"
3932
  msgstr ""
3933
 
3934
- #: includes/currencies.php:72 includes/currencies.php:26
3935
  #: includes/currencies.php:31 includes/currencies.php:51
3936
  #: includes/currencies.php:55 includes/currencies.php:62
 
3937
  msgid "Swedish Krona"
3938
  msgstr ""
3939
 
3940
- #: includes/currencies.php:73 includes/currencies.php:27
3941
  #: includes/currencies.php:32 includes/currencies.php:52
3942
  #: includes/currencies.php:56 includes/currencies.php:63
 
3943
  msgid "Swiss Franc"
3944
  msgstr ""
3945
 
3946
- #: includes/currencies.php:74 includes/currencies.php:28
3947
  #: includes/currencies.php:33 includes/currencies.php:53
3948
  #: includes/currencies.php:57 includes/currencies.php:64
 
3949
  msgid "Taiwan New Dollars"
3950
  msgstr ""
3951
 
3952
- #: includes/currencies.php:75 includes/currencies.php:29
3953
  #: includes/currencies.php:34 includes/currencies.php:54
3954
  #: includes/currencies.php:58 includes/currencies.php:65
 
3955
  msgid "Thai Baht"
3956
  msgstr ""
3957
 
3958
- #: includes/currencies.php:76 includes/currencies.php:35
3959
  #: includes/currencies.php:55 includes/currencies.php:59
3960
- #: includes/currencies.php:66
 
3961
  msgid "Turkish Lira"
3962
  msgstr ""
3963
 
3964
- #: includes/currencies.php:77 includes/currencies.php:36
3965
  #: includes/currencies.php:56 includes/currencies.php:60
3966
- #: includes/currencies.php:67
 
3967
  msgid "Vietnamese Dong"
3968
  msgstr ""
3969
 
@@ -3971,6 +4313,7 @@ msgstr ""
3971
  #: includes/functions.php:196 includes/functions.php:200
3972
  #: includes/functions.php:202 includes/functions.php:203
3973
  #: includes/functions.php:204 includes/functions.php:207
 
3974
  #, php-format
3975
  msgid "The price for membership is <strong>%s</strong> now"
3976
  msgstr ""
@@ -3978,6 +4321,7 @@ msgstr ""
3978
  #: includes/functions.php:245 includes/functions.php:202
3979
  #: includes/functions.php:204 includes/functions.php:205
3980
  #: includes/functions.php:206 includes/functions.php:209
 
3981
  #, php-format
3982
  msgid "<strong>%s</strong> now"
3983
  msgstr ""
@@ -3986,11 +4330,12 @@ msgstr ""
3986
  #: includes/functions.php:205 includes/functions.php:211
3987
  #: includes/functions.php:213 includes/functions.php:214
3988
  #: includes/functions.php:215 includes/functions.php:218
 
3989
  #, php-format
3990
  msgid " and then <strong>%s per %s for %d more %s</strong>."
3991
  msgstr ""
3992
 
3993
- #: includes/functions.php:258
3994
  #, php-format
3995
  msgid " and then <strong>%s every %d %s for %d more payments</strong>."
3996
  msgstr ""
@@ -3999,6 +4344,7 @@ msgstr ""
3999
  #: includes/functions.php:214 includes/functions.php:220
4000
  #: includes/functions.php:222 includes/functions.php:223
4001
  #: includes/functions.php:224 includes/functions.php:227
 
4002
  #, php-format
4003
  msgid " and then <strong>%s after %d %s</strong>."
4004
  msgstr ""
@@ -4006,12 +4352,14 @@ msgstr ""
4006
  #: includes/functions.php:271 includes/functions.php:228
4007
  #: includes/functions.php:229 includes/functions.php:230
4008
  #: includes/functions.php:231 includes/functions.php:235
 
4009
  #, php-format
4010
  msgid "The price for membership is <strong>%s per %s</strong>."
4011
  msgstr ""
4012
 
4013
  #: includes/functions.php:273 includes/functions.php:230
4014
  #: includes/functions.php:233 includes/functions.php:237
 
4015
  #, php-format
4016
  msgid "<strong>%s per %s</strong>."
4017
  msgstr ""
@@ -4019,12 +4367,14 @@ msgstr ""
4019
  #: includes/functions.php:278 includes/functions.php:233
4020
  #: includes/functions.php:234 includes/functions.php:235
4021
  #: includes/functions.php:238 includes/functions.php:242
 
4022
  #, php-format
4023
  msgid "The price for membership is <strong>%s every %d %s</strong>."
4024
  msgstr ""
4025
 
4026
  #: includes/functions.php:280 includes/functions.php:237
4027
  #: includes/functions.php:240 includes/functions.php:244
 
4028
  #, php-format
4029
  msgid "<strong>%s every %d %s</strong>."
4030
  msgstr ""
@@ -4034,6 +4384,7 @@ msgstr ""
4034
  #: includes/functions.php:238 includes/functions.php:239
4035
  #: includes/functions.php:240 includes/functions.php:242
4036
  #: includes/functions.php:245 includes/functions.php:249
 
4037
  #, php-format
4038
  msgid " and then <strong>%s per %s</strong>."
4039
  msgstr ""
@@ -4043,6 +4394,7 @@ msgstr ""
4043
  #: includes/functions.php:242 includes/functions.php:243
4044
  #: includes/functions.php:244 includes/functions.php:246
4045
  #: includes/functions.php:249 includes/functions.php:253
 
4046
  #, php-format
4047
  msgid " and then <strong>%s every %d %s</strong>."
4048
  msgstr ""
@@ -4051,7 +4403,8 @@ msgstr ""
4051
  #: includes/functions.php:238 includes/functions.php:249
4052
  #: includes/functions.php:260 includes/functions.php:261
4053
  #: includes/functions.php:262 includes/functions.php:264
4054
- #: includes/functions.php:267 includes/functions.php:271 pages/levels.php:82
 
4055
  msgid "After your initial payment, your first payment is Free."
4056
  msgstr ""
4057
 
@@ -4059,7 +4412,8 @@ msgstr ""
4059
  #: includes/functions.php:242 includes/functions.php:253
4060
  #: includes/functions.php:264 includes/functions.php:265
4061
  #: includes/functions.php:266 includes/functions.php:268
4062
- #: includes/functions.php:271 includes/functions.php:275 pages/levels.php:86
 
4063
  #, php-format
4064
  msgid "After your initial payment, your first %d payments are Free."
4065
  msgstr ""
@@ -4068,7 +4422,8 @@ msgstr ""
4068
  #: includes/functions.php:249 includes/functions.php:260
4069
  #: includes/functions.php:271 includes/functions.php:272
4070
  #: includes/functions.php:273 includes/functions.php:275
4071
- #: includes/functions.php:278 includes/functions.php:282 pages/levels.php:93
 
4072
  #, php-format
4073
  msgid "After your initial payment, your first payment will cost %s."
4074
  msgstr ""
@@ -4077,7 +4432,8 @@ msgstr ""
4077
  #: includes/functions.php:253 includes/functions.php:264
4078
  #: includes/functions.php:275 includes/functions.php:276
4079
  #: includes/functions.php:277 includes/functions.php:279
4080
- #: includes/functions.php:282 includes/functions.php:286 pages/levels.php:97
 
4081
  #, php-format
4082
  msgid "After your initial payment, your first %d payments will cost %s."
4083
  msgstr ""
@@ -4087,6 +4443,7 @@ msgstr ""
4087
  #: includes/functions.php:286 includes/functions.php:287
4088
  #: includes/functions.php:288 includes/functions.php:290
4089
  #: includes/functions.php:293 includes/functions.php:297
 
4090
  #, php-format
4091
  msgid "Customers in %s will be charged %s%% tax."
4092
  msgstr ""
@@ -4096,6 +4453,7 @@ msgstr ""
4096
  #: includes/functions.php:300 includes/functions.php:301
4097
  #: includes/functions.php:302 includes/functions.php:304
4098
  #: includes/functions.php:307 includes/functions.php:311
 
4099
  #, php-format
4100
  msgid "Membership expires after %d %s."
4101
  msgstr ""
@@ -4106,7 +4464,7 @@ msgstr ""
4106
  #: includes/functions.php:538 includes/functions.php:545
4107
  #: includes/functions.php:569 includes/functions.php:570
4108
  #: includes/functions.php:576 includes/functions.php:592
4109
- #: includes/functions.php:615
4110
  msgid "User ID not found."
4111
  msgstr ""
4112
 
@@ -4117,6 +4475,7 @@ msgstr ""
4117
  #: includes/functions.php:586 includes/functions.php:587
4118
  #: includes/functions.php:589 includes/functions.php:596
4119
  #: includes/functions.php:612 includes/functions.php:635
 
4120
  msgid "Invalid level."
4121
  msgstr ""
4122
 
@@ -4127,6 +4486,7 @@ msgstr ""
4127
  #: includes/functions.php:597 includes/functions.php:598
4128
  #: includes/functions.php:600 includes/functions.php:607
4129
  #: includes/functions.php:623 includes/functions.php:646
 
4130
  msgid "not changing?"
4131
  msgstr ""
4132
 
@@ -4149,7 +4509,8 @@ msgstr ""
4149
  #: includes/functions.php:698 includes/functions.php:699
4150
  #: includes/functions.php:700 includes/functions.php:707
4151
  #: includes/functions.php:722 includes/functions.php:723
4152
- #: includes/functions.php:746
 
4153
  msgid "Error interacting with database"
4154
  msgstr ""
4155
 
@@ -4167,7 +4528,8 @@ msgstr ""
4167
  #: includes/functions.php:764 includes/functions.php:777
4168
  #: includes/functions.php:778 includes/functions.php:780
4169
  #: includes/functions.php:787 includes/functions.php:803
4170
- #: includes/functions.php:826
 
4171
  msgid "Membership level not found."
4172
  msgstr ""
4173
 
@@ -4176,6 +4538,7 @@ msgstr ""
4176
  #: includes/functions.php:1142 includes/functions.php:1143
4177
  #: includes/functions.php:1150 includes/functions.php:1157
4178
  #: includes/functions.php:1173 includes/functions.php:1196
 
4179
  msgid "No code was given to check."
4180
  msgstr ""
4181
 
@@ -4187,7 +4550,7 @@ msgstr ""
4187
  #: includes/functions.php:1127 includes/functions.php:1151
4188
  #: includes/functions.php:1152 includes/functions.php:1159
4189
  #: includes/functions.php:1166 includes/functions.php:1182
4190
- #: includes/functions.php:1205
4191
  msgid "The discount code could not be found."
4192
  msgstr ""
4193
 
@@ -4199,7 +4562,7 @@ msgstr ""
4199
  #: includes/functions.php:1142 includes/functions.php:1166
4200
  #: includes/functions.php:1167 includes/functions.php:1174
4201
  #: includes/functions.php:1181 includes/functions.php:1197
4202
- #: includes/functions.php:1220
4203
  #, php-format
4204
  msgid "This discount code goes into effect on %s."
4205
  msgstr ""
@@ -4212,7 +4575,7 @@ msgstr ""
4212
  #: includes/functions.php:1149 includes/functions.php:1173
4213
  #: includes/functions.php:1174 includes/functions.php:1181
4214
  #: includes/functions.php:1188 includes/functions.php:1204
4215
- #: includes/functions.php:1227
4216
  #, php-format
4217
  msgid "This discount code expired on %s."
4218
  msgstr ""
@@ -4225,7 +4588,7 @@ msgstr ""
4225
  #: includes/functions.php:1159 includes/functions.php:1183
4226
  #: includes/functions.php:1184 includes/functions.php:1191
4227
  #: includes/functions.php:1198 includes/functions.php:1214
4228
- #: includes/functions.php:1237
4229
  msgid "This discount code is no longer valid."
4230
  msgstr ""
4231
 
@@ -4237,6 +4600,7 @@ msgstr ""
4237
  #: includes/functions.php:1196 includes/functions.php:1197
4238
  #: includes/functions.php:1204 includes/functions.php:1211
4239
  #: includes/functions.php:1227 includes/functions.php:1250
 
4240
  msgid "This discount code does not apply to this membership level."
4241
  msgstr ""
4242
 
@@ -4248,11 +4612,11 @@ msgstr ""
4248
  #: includes/functions.php:1198 includes/functions.php:1222
4249
  #: includes/functions.php:1223 includes/functions.php:1230
4250
  #: includes/functions.php:1237 includes/functions.php:1253
4251
- #: includes/functions.php:1276
4252
  msgid "This discount code is okay."
4253
  msgstr ""
4254
 
4255
- #: includes/functions.php:1395 includes/functions.php:1134
4256
  #: includes/functions.php:1156 includes/functions.php:1172
4257
  #: includes/functions.php:1183 includes/functions.php:1186
4258
  #: includes/functions.php:1196 includes/functions.php:1205
@@ -4260,10 +4624,11 @@ msgstr ""
4260
  #: includes/functions.php:1247 includes/functions.php:1248
4261
  #: includes/functions.php:1255 includes/functions.php:1262
4262
  #: includes/functions.php:1278 includes/functions.php:1301
 
4263
  msgid "and"
4264
  msgstr ""
4265
 
4266
- #: includes/functions.php:1620 includes/functions.php:1319
4267
  #: includes/functions.php:1341 includes/functions.php:1361
4268
  #: includes/functions.php:1372 includes/functions.php:1375
4269
  #: includes/functions.php:1385 includes/functions.php:1394
@@ -4271,11 +4636,12 @@ msgstr ""
4271
  #: includes/functions.php:1436 includes/functions.php:1437
4272
  #: includes/functions.php:1450 includes/functions.php:1457
4273
  #: includes/functions.php:1473 includes/functions.php:1496
4274
- #: includes/functions.php:1501
 
4275
  msgid "Sign Up for !!name!! Now"
4276
  msgstr ""
4277
 
4278
- #: includes/functions.php:1626 includes/functions.php:1325
4279
  #: includes/functions.php:1347 includes/functions.php:1367
4280
  #: includes/functions.php:1378 includes/functions.php:1381
4281
  #: includes/functions.php:1391 includes/functions.php:1400
@@ -4283,14 +4649,15 @@ msgstr ""
4283
  #: includes/functions.php:1442 includes/functions.php:1443
4284
  #: includes/functions.php:1456 includes/functions.php:1463
4285
  #: includes/functions.php:1479 includes/functions.php:1502
4286
- #: includes/functions.php:1507
 
4287
  msgid "Please specify a level id."
4288
  msgstr ""
4289
 
4290
  #: includes/init.php:253 includes/profile.php:39 includes/init.php:229
4291
  #: includes/init.php:232 includes/init.php:233 includes/init.php:235
4292
- #: includes/init.php:237 includes/init.php:245 includes/profile.php:37
4293
- #: includes/profile.php:39
4294
  msgid "None"
4295
  msgstr ""
4296
 
@@ -4394,18 +4761,21 @@ msgstr ""
4394
  msgid "Years"
4395
  msgstr ""
4396
 
4397
- #: includes/metaboxes.php:38 includes/metaboxes.php:38
 
4398
  msgid ""
4399
  "This post is already protected for this level because it is within a "
4400
  "category that requires membership."
4401
  msgstr ""
4402
 
 
4403
  #: includes/metaboxes.php:99 includes/metaboxes.php:100
4404
- #: includes/metaboxes.php:99 includes/metaboxes.php:100
4405
  msgid "Require Membership"
4406
  msgstr ""
4407
 
4408
- #: includes/metaboxes.php:130 includes/metaboxes.php:130
 
4409
  msgid ""
4410
  "Only members of these levels will be able to view posts in this category."
4411
  msgstr ""
@@ -4426,23 +4796,38 @@ msgid ""
4426
  "checkbox is selected below."
4427
  msgstr ""
4428
 
4429
- #: includes/upgradecheck.php:442 includes/upgradecheck.php:401
 
 
 
 
 
 
 
 
 
 
 
 
4430
  #: includes/upgradecheck.php:410 includes/upgradecheck.php:422
 
4431
  #, php-format
4432
  msgid ""
4433
  "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
4434
  msgstr ""
4435
 
4436
- #: includes/upgradecheck.php:445 includes/upgradecheck.php:404
4437
  #: includes/upgradecheck.php:413 includes/upgradecheck.php:425
 
4438
  #, php-format
4439
  msgid ""
4440
  "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
4441
  "<a href=\"%s\">Register</a>"
4442
  msgstr ""
4443
 
4444
- #: includes/upgradecheck.php:449 includes/upgradecheck.php:408
4445
  #: includes/upgradecheck.php:417 includes/upgradecheck.php:429
 
4446
  msgid ""
4447
  "This content is for !!levels!! members only. Visit the site and log in/"
4448
  "register to read."
@@ -4462,7 +4847,8 @@ msgstr ""
4462
  #: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
4463
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
4464
  #: pages/cancel.php:52 pages/invoice.php:109 pages/levels.php:13
4465
- #: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
 
4466
  msgid "Level"
4467
  msgstr ""
4468
 
@@ -4495,105 +4881,118 @@ msgid ""
4495
  "paypal.com\">login to PayPal here</a> to update your billing information."
4496
  msgstr ""
4497
 
4498
- #: pages/billing.php:78 pages/checkout.php:324 pages/billing.php:65
4499
  #: pages/billing.php:69 pages/billing.php:78 pages/checkout.php:305
4500
  #: pages/checkout.php:307 pages/checkout.php:309 pages/checkout.php:318
4501
- #: pages/checkout.php:321 pages/checkout.php:328
 
4502
  msgid "First Name"
4503
  msgstr ""
4504
 
4505
- #: pages/billing.php:82 pages/checkout.php:328 pages/billing.php:69
4506
  #: pages/billing.php:73 pages/billing.php:82 pages/checkout.php:309
4507
  #: pages/checkout.php:311 pages/checkout.php:313 pages/checkout.php:322
4508
- #: pages/checkout.php:325 pages/checkout.php:332
 
4509
  msgid "Last Name"
4510
  msgstr ""
4511
 
4512
- #: pages/billing.php:86 pages/checkout.php:332 pages/billing.php:73
4513
  #: pages/billing.php:77 pages/billing.php:86 pages/checkout.php:313
4514
  #: pages/checkout.php:315 pages/checkout.php:317 pages/checkout.php:326
4515
- #: pages/checkout.php:329 pages/checkout.php:336
 
4516
  msgid "Address 1"
4517
  msgstr ""
4518
 
4519
- #: pages/billing.php:90 pages/checkout.php:336 pages/billing.php:77
4520
  #: pages/billing.php:81 pages/billing.php:90 pages/checkout.php:317
4521
  #: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:330
4522
- #: pages/checkout.php:333 pages/checkout.php:340
 
4523
  msgid "Address 2"
4524
  msgstr ""
4525
 
4526
- #: pages/billing.php:100 pages/checkout.php:346 pages/billing.php:87
4527
  #: pages/billing.php:91 pages/billing.php:100 pages/checkout.php:327
4528
  #: pages/checkout.php:329 pages/checkout.php:331 pages/checkout.php:340
4529
- #: pages/checkout.php:343 pages/checkout.php:350
 
4530
  msgid "City"
4531
  msgstr ""
4532
 
4533
- #: pages/billing.php:104 pages/checkout.php:350 pages/billing.php:91
4534
  #: pages/billing.php:95 pages/billing.php:104 pages/checkout.php:331
4535
  #: pages/checkout.php:333 pages/checkout.php:335 pages/checkout.php:344
4536
- #: pages/checkout.php:347 pages/checkout.php:354
 
4537
  msgid "State"
4538
  msgstr ""
4539
 
4540
- #: pages/billing.php:108 pages/checkout.php:354 pages/billing.php:95
4541
  #: pages/billing.php:99 pages/billing.php:108 pages/checkout.php:335
4542
  #: pages/checkout.php:337 pages/checkout.php:339 pages/checkout.php:348
4543
- #: pages/checkout.php:351 pages/checkout.php:358
 
4544
  msgid "Postal Code"
4545
  msgstr ""
4546
 
4547
- #: pages/billing.php:117 pages/checkout.php:363 pages/billing.php:104
4548
  #: pages/billing.php:108 pages/billing.php:117 pages/checkout.php:344
4549
  #: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:357
4550
- #: pages/checkout.php:360 pages/checkout.php:367
 
4551
  msgid "City, State Zip"
4552
  msgstr ""
4553
 
4554
- #: pages/billing.php:170 pages/checkout.php:416 pages/billing.php:157
4555
  #: pages/billing.php:161 pages/billing.php:170 pages/checkout.php:397
4556
  #: pages/checkout.php:399 pages/checkout.php:401 pages/checkout.php:410
4557
- #: pages/checkout.php:413 pages/checkout.php:420
 
4558
  msgid "Country"
4559
  msgstr ""
4560
 
4561
- #: pages/billing.php:195 pages/checkout.php:441 pages/billing.php:182
4562
  #: pages/billing.php:186 pages/billing.php:195 pages/checkout.php:422
4563
  #: pages/checkout.php:424 pages/checkout.php:426 pages/checkout.php:435
4564
- #: pages/checkout.php:438 pages/checkout.php:445
 
4565
  msgid "Phone"
4566
  msgstr ""
4567
 
4568
- #: pages/billing.php:206 pages/checkout.php:218 pages/checkout.php:455
4569
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
4570
  #: pages/checkout.php:204 pages/checkout.php:207 pages/checkout.php:209
4571
- #: pages/checkout.php:216 pages/checkout.php:436 pages/checkout.php:438
4572
- #: pages/checkout.php:440 pages/checkout.php:449 pages/checkout.php:453
4573
- #: pages/checkout.php:460
 
4574
  msgid "E-mail Address"
4575
  msgstr ""
4576
 
4577
- #: pages/billing.php:210 pages/checkout.php:464 pages/billing.php:197
4578
  #: pages/billing.php:201 pages/billing.php:210 pages/checkout.php:445
4579
  #: pages/checkout.php:447 pages/checkout.php:449 pages/checkout.php:458
4580
- #: pages/checkout.php:462 pages/checkout.php:469
 
4581
  msgid "Confirm E-mail"
4582
  msgstr ""
4583
 
4584
  #: pages/billing.php:231 pages/billing.php:217 pages/billing.php:221
4585
- #: pages/billing.php:230
4586
  msgid "Credit Card Information"
4587
  msgstr ""
4588
 
4589
  #: pages/billing.php:232 pages/billing.php:217 pages/billing.php:221
4590
- #: pages/billing.php:230
4591
  #, php-format
4592
  msgid "We accept %s"
4593
  msgstr ""
4594
 
4595
- #: pages/billing.php:356 pages/billing.php:309 pages/billing.php:313
4596
- #: pages/billing.php:344 pages/billing.php:353
 
4597
  msgid ""
4598
  "This subscription is not recurring. So you don't need to update your billing "
4599
  "information."
@@ -4637,18 +5036,18 @@ msgid ""
4637
  msgstr ""
4638
 
4639
  #: pages/checkout.php:43 pages/checkout.php:33 pages/checkout.php:34
4640
- #: pages/checkout.php:35 pages/checkout.php:42
4641
  msgid "change"
4642
  msgstr ""
4643
 
4644
  #: pages/checkout.php:51 pages/checkout.php:41 pages/checkout.php:42
4645
- #: pages/checkout.php:43 pages/checkout.php:50
4646
  #, php-format
4647
  msgid "You have selected the <strong>%s</strong> membership level."
4648
  msgstr ""
4649
 
4650
  #: pages/checkout.php:61 pages/checkout.php:51 pages/checkout.php:53
4651
- #: pages/checkout.php:60
4652
  #, php-format
4653
  msgid ""
4654
  "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
@@ -4657,91 +5056,101 @@ msgstr ""
4657
 
4658
  #: pages/checkout.php:72 services/applydiscountcode.php:89
4659
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
4660
- #: pages/checkout.php:71 services/applydiscountcode.php:74
4661
- #: services/applydiscountcode.php:75 services/applydiscountcode.php:78
4662
- #: services/applydiscountcode.php:89
4663
  msgid "Click here to change your discount code"
4664
  msgstr ""
4665
 
4666
  #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
4667
- #: pages/checkout.php:66 pages/checkout.php:73
4668
  msgid "Click here to enter your discount code"
4669
  msgstr ""
4670
 
4671
  #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
4672
- #: pages/checkout.php:66 pages/checkout.php:73
4673
  msgid "Do you have a discount code?"
4674
  msgstr ""
4675
 
4676
- #: pages/checkout.php:173 pages/checkout.php:160 pages/checkout.php:163
4677
- #: pages/checkout.php:165 pages/checkout.php:172
 
4678
  msgid "Account Information"
4679
  msgstr ""
4680
 
4681
- #: pages/checkout.php:174 pages/checkout.php:160 pages/checkout.php:163
4682
- #: pages/checkout.php:165 pages/checkout.php:172
 
4683
  msgid "Already have an account?"
4684
  msgstr ""
4685
 
4686
- #: pages/checkout.php:174 pages/checkout.php:160 pages/checkout.php:163
4687
- #: pages/checkout.php:165 pages/checkout.php:172
 
4688
  msgid "Log in here"
4689
  msgstr ""
4690
 
4691
- #: pages/checkout.php:200 pages/checkout.php:186 pages/checkout.php:189
4692
- #: pages/checkout.php:191 pages/checkout.php:198
 
4693
  msgid "Confirm Password"
4694
  msgstr ""
4695
 
4696
- #: pages/checkout.php:227 pages/checkout.php:213 pages/checkout.php:216
4697
- #: pages/checkout.php:218 pages/checkout.php:225
 
4698
  msgid "Confirm E-mail Address"
4699
  msgstr ""
4700
 
4701
- #: pages/checkout.php:246 pages/checkout.php:232 pages/checkout.php:235
4702
- #: pages/checkout.php:237 pages/checkout.php:244
 
4703
  msgid "Full Name"
4704
  msgstr ""
4705
 
4706
- #: pages/checkout.php:247 pages/checkout.php:233 pages/checkout.php:236
4707
- #: pages/checkout.php:238 pages/checkout.php:245
 
4708
  msgid "LEAVE THIS BLANK"
4709
  msgstr ""
4710
 
4711
- #: pages/checkout.php:271 pages/checkout.php:257 pages/checkout.php:260
4712
- #: pages/checkout.php:262 pages/checkout.php:269
 
4713
  #, php-format
4714
  msgid ""
4715
  "You are logged in as <strong>%s</strong>. If you would like to use a "
4716
  "different account for this membership, <a href=\"%s\">log out now</a>."
4717
  msgstr ""
4718
 
4719
- #: pages/checkout.php:287 pages/checkout.php:276 pages/checkout.php:278
4720
- #: pages/checkout.php:285 pages/checkout.php:292 pages/checkout.php:299
 
4721
  msgid "Choose your Payment Method"
4722
  msgstr ""
4723
 
4724
- #: pages/checkout.php:296 pages/checkout.php:284 pages/checkout.php:286
4725
- #: pages/checkout.php:293 pages/checkout.php:300 pages/checkout.php:307
 
4726
  msgid "Check Out with a Credit Card Here"
4727
  msgstr ""
4728
 
4729
- #: pages/checkout.php:690 pages/checkout.php:277 pages/checkout.php:284
4730
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
4731
- #: pages/checkout.php:681
4732
  #, php-format
4733
  msgid "I agree to the %s"
4734
  msgstr ""
4735
 
4736
- #: pages/checkout.php:710 pages/checkout.php:667 pages/checkout.php:674
4737
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
4738
- #: pages/checkout.php:701
4739
  msgid "Complete Payment"
4740
  msgstr ""
4741
 
4742
- #: pages/checkout.php:732 pages/checkout.php:687 pages/checkout.php:694
4743
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
4744
- #: pages/checkout.php:723
4745
  msgid "Processing..."
4746
  msgstr ""
4747
 
@@ -4846,47 +5255,53 @@ msgid "&larr; View All Invoices"
4846
  msgstr ""
4847
 
4848
  #: pages/levels.php:55 pages/levels.php:33 pages/levels.php:43
 
4849
  msgid "Free"
4850
  msgstr ""
4851
 
4852
  #: pages/levels.php:69 pages/levels.php:71 pages/levels.php:47
4853
- #: pages/levels.php:49 pages/levels.php:113 pages/levels.php:115
 
4854
  msgid "Select"
4855
  msgstr ""
4856
 
4857
  #: pages/levels.php:78 shortcodes/pmpro_account.php:61 pages/account.php:33
4858
- #: pages/levels.php:57 pages/levels.php:123 shortcodes/pmpro_account.php:59
 
4859
  msgid "Renew"
4860
  msgstr ""
4861
 
4862
- #: pages/levels.php:82 pages/levels.php:63 pages/levels.php:117
4863
- #: pages/levels.php:129
4864
  msgid "Your&nbsp;Level"
4865
  msgstr ""
4866
 
4867
- #: pages/levels.php:98 pages/levels.php:79 pages/levels.php:129
4868
- #: pages/levels.php:145
4869
  msgid "&larr; Return to Your Account"
4870
  msgstr ""
4871
 
4872
- #: pages/levels.php:100 pages/levels.php:81 pages/levels.php:131
4873
- #: pages/levels.php:147
4874
  msgid "&larr; Return to Home"
4875
  msgstr ""
4876
 
4877
- #: paid-memberships-pro.php:124 adminpages/orders.php:398
4878
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
4879
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
 
4880
  msgid "Testing Only"
4881
  msgstr ""
4882
 
4883
- #: paid-memberships-pro.php:129 paid-memberships-pro.php:120
4884
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
 
4885
  msgid "PayPal Payflow Pro/PayPal Pro"
4886
  msgstr ""
4887
 
4888
- #: paid-memberships-pro.php:134 paid-memberships-pro.php:125
4889
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
 
4890
  msgid "Cybersource"
4891
  msgstr ""
4892
 
@@ -4908,9 +5323,10 @@ msgstr ""
4908
  #: preheaders/billing.php:258 preheaders/billing.php:265
4909
  #: preheaders/billing.php:266 preheaders/billing.php:270
4910
  #: preheaders/billing.php:279 preheaders/checkout.php:332
4911
- #: preheaders/checkout.php:458 preheaders/checkout.php:464
4912
- #: preheaders/checkout.php:465 preheaders/checkout.php:470
4913
- #: preheaders/checkout.php:481 preheaders/checkout.php:482
 
4914
  msgid "Please complete all required fields."
4915
  msgstr ""
4916
 
@@ -4918,9 +5334,10 @@ msgstr ""
4918
  #: preheaders/billing.php:263 preheaders/billing.php:268
4919
  #: preheaders/billing.php:269 preheaders/billing.php:273
4920
  #: preheaders/billing.php:284 preheaders/checkout.php:340
4921
- #: preheaders/checkout.php:466 preheaders/checkout.php:473
4922
- #: preheaders/checkout.php:474 preheaders/checkout.php:478
4923
- #: preheaders/checkout.php:491 preheaders/checkout.php:492
 
4924
  msgid "Your email addresses do not match. Please try again."
4925
  msgstr ""
4926
 
@@ -4928,9 +5345,10 @@ msgstr ""
4928
  #: preheaders/billing.php:268 preheaders/billing.php:271
4929
  #: preheaders/billing.php:272 preheaders/billing.php:276
4930
  #: preheaders/billing.php:289 preheaders/checkout.php:345
4931
- #: preheaders/checkout.php:471 preheaders/checkout.php:478
4932
- #: preheaders/checkout.php:480 preheaders/checkout.php:483
4933
- #: preheaders/checkout.php:497 preheaders/checkout.php:498
 
4934
  msgid "The email address entered is in an invalid format. Please try again."
4935
  msgstr ""
4936
 
@@ -4962,10 +5380,10 @@ msgstr ""
4962
  #: preheaders/checkout.php:32 preheaders/checkout.php:358
4963
  #: preheaders/checkout.php:28 preheaders/checkout.php:30
4964
  #: preheaders/checkout.php:31 preheaders/checkout.php:32
4965
- #: preheaders/checkout.php:354 preheaders/checkout.php:480
4966
- #: preheaders/checkout.php:487 preheaders/checkout.php:491
4967
- #: preheaders/checkout.php:492 preheaders/checkout.php:508
4968
- #: preheaders/checkout.php:509
4969
  msgid "Invalid gateway."
4970
  msgstr ""
4971
 
@@ -4980,68 +5398,75 @@ msgid "Set Up Your Account"
4980
  msgstr ""
4981
 
4982
  #: preheaders/checkout.php:304 preheaders/checkout.php:300
4983
- #: preheaders/checkout.php:416 preheaders/checkout.php:421
 
4984
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
4985
  msgstr ""
4986
 
4987
  #: preheaders/checkout.php:339 preheaders/checkout.php:335
4988
- #: preheaders/checkout.php:461 preheaders/checkout.php:468
4989
- #: preheaders/checkout.php:473 preheaders/checkout.php:485
4990
- #: preheaders/checkout.php:486
4991
  msgid "Your passwords do not match. Please try again."
4992
  msgstr ""
4993
 
4994
  #: preheaders/checkout.php:354 preheaders/checkout.php:350
4995
- #: preheaders/checkout.php:476 preheaders/checkout.php:483
4996
- #: preheaders/checkout.php:486 preheaders/checkout.php:488
4997
- #: preheaders/checkout.php:503 preheaders/checkout.php:504
 
4998
  #, php-format
4999
  msgid "Please check the box to agree to the %s."
5000
  msgstr ""
5001
 
5002
  #: preheaders/checkout.php:361 preheaders/checkout.php:357
5003
- #: preheaders/checkout.php:483 preheaders/checkout.php:490
5004
- #: preheaders/checkout.php:495 preheaders/checkout.php:512
5005
- #: preheaders/checkout.php:513
5006
  msgid "Are you a spammer?"
5007
  msgstr ""
5008
 
5009
  #: preheaders/checkout.php:381 preheaders/checkout.php:377
5010
- #: preheaders/checkout.php:503 preheaders/checkout.php:510
5011
- #: preheaders/checkout.php:515 preheaders/checkout.php:518
5012
- #: preheaders/checkout.php:535 preheaders/checkout.php:536
 
5013
  msgid "That username is already taken. Please try another."
5014
  msgstr ""
5015
 
5016
  #: preheaders/checkout.php:386 preheaders/checkout.php:382
5017
- #: preheaders/checkout.php:508 preheaders/checkout.php:515
5018
- #: preheaders/checkout.php:520 preheaders/checkout.php:524
5019
- #: preheaders/checkout.php:541 preheaders/checkout.php:542
 
5020
  msgid "That email address is already taken. Please try another."
5021
  msgstr ""
5022
 
5023
  #: preheaders/checkout.php:420 preheaders/checkout.php:397
5024
  #: preheaders/checkout.php:399 preheaders/checkout.php:416
5025
- #: preheaders/checkout.php:525 preheaders/checkout.php:532
5026
- #: preheaders/checkout.php:537 preheaders/checkout.php:544
5027
- #: preheaders/checkout.php:561 preheaders/checkout.php:562
 
5028
  #, php-format
5029
  msgid "reCAPTCHA failed. (%s) Please try again."
5030
  msgstr ""
5031
 
5032
  #: preheaders/checkout.php:505 preheaders/checkout.php:482
5033
  #: preheaders/checkout.php:484 preheaders/checkout.php:501
5034
- #: preheaders/checkout.php:647 preheaders/checkout.php:654
5035
- #: preheaders/checkout.php:659 preheaders/checkout.php:683
5036
- #: preheaders/checkout.php:701 preheaders/checkout.php:702
 
5037
  msgid "Payment accepted."
5038
  msgstr ""
5039
 
5040
  #: preheaders/checkout.php:513 preheaders/checkout.php:490
5041
  #: preheaders/checkout.php:492 preheaders/checkout.php:509
5042
- #: preheaders/checkout.php:653 preheaders/checkout.php:660
5043
- #: preheaders/checkout.php:665 preheaders/checkout.php:691
5044
- #: preheaders/checkout.php:709 preheaders/checkout.php:710
 
5045
  msgid ""
5046
  "Unknown error generating account. Please contact us to set up your "
5047
  "membership."
@@ -5049,10 +5474,11 @@ msgstr ""
5049
 
5050
  #: preheaders/checkout.php:575 preheaders/checkout.php:550
5051
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
5052
- #: preheaders/checkout.php:571 preheaders/checkout.php:785
5053
- #: preheaders/checkout.php:792 preheaders/checkout.php:797
5054
- #: preheaders/checkout.php:825 preheaders/checkout.php:844
5055
- #: preheaders/checkout.php:859 preheaders/checkout.php:860
 
5056
  msgid ""
5057
  "Your payment was accepted, but there was an error setting up your account. "
5058
  "Please contact us."
@@ -5060,10 +5486,11 @@ msgstr ""
5060
 
5061
  #: preheaders/checkout.php:722 preheaders/checkout.php:691
5062
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
5063
- #: preheaders/checkout.php:712 preheaders/checkout.php:953
5064
- #: preheaders/checkout.php:960 preheaders/checkout.php:970
5065
- #: preheaders/checkout.php:983 preheaders/checkout.php:1030
5066
- #: preheaders/checkout.php:1045 preheaders/checkout.php:1046
 
5067
  msgid ""
5068
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5069
  "authorized, but we cancelled the order immediately. You should not try to "
@@ -5072,10 +5499,11 @@ msgstr ""
5072
 
5073
  #: preheaders/checkout.php:725 preheaders/checkout.php:694
5074
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
5075
- #: preheaders/checkout.php:715 preheaders/checkout.php:956
5076
- #: preheaders/checkout.php:963 preheaders/checkout.php:973
5077
- #: preheaders/checkout.php:988 preheaders/checkout.php:1035
5078
- #: preheaders/checkout.php:1050 preheaders/checkout.php:1051
 
5079
  msgid ""
5080
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5081
  "was charged, but we couldn't assign your membership. You should not submit "
@@ -5084,10 +5512,11 @@ msgstr ""
5084
 
5085
  #: preheaders/checkout.php:736 preheaders/checkout.php:705
5086
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
5087
- #: preheaders/checkout.php:726 preheaders/checkout.php:967
5088
- #: preheaders/checkout.php:974 preheaders/checkout.php:984
5089
- #: preheaders/checkout.php:1001 preheaders/checkout.php:1048
5090
- #: preheaders/checkout.php:1063 preheaders/checkout.php:1064
 
5091
  #, php-format
5092
  msgid ""
5093
  "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
@@ -5096,33 +5525,34 @@ msgstr ""
5096
 
5097
  #: preheaders/checkout.php:738 preheaders/checkout.php:707
5098
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
5099
- #: preheaders/checkout.php:728 preheaders/checkout.php:969
5100
- #: preheaders/checkout.php:976 preheaders/checkout.php:986
5101
- #: preheaders/checkout.php:1003 preheaders/checkout.php:1050
5102
- #: preheaders/checkout.php:1065 preheaders/checkout.php:1066
 
5103
  msgid "A Payment Gateway must be set up before any payments will be processed."
5104
  msgstr ""
5105
 
5106
  #: scheduled/crons.php:39 scheduled/crons.php:31 scheduled/crons.php:34
5107
- #: scheduled/crons.php:38 scheduled/crons.php:61
5108
  #, php-format
5109
  msgid "Membership expired email sent to %s. "
5110
  msgstr ""
5111
 
5112
  #: scheduled/crons.php:88 scheduled/crons.php:27 scheduled/crons.php:74
5113
- #: scheduled/crons.php:80 scheduled/crons.php:84
5114
  #, php-format
5115
  msgid "Membership expiring email sent to %s. "
5116
  msgstr ""
5117
 
5118
  #: scheduled/crons.php:164 scheduled/crons.php:143 scheduled/crons.php:152
5119
- #: scheduled/crons.php:157
5120
  #, php-format
5121
  msgid "Credit card expiring email sent to %s. "
5122
  msgstr ""
5123
 
5124
  #: scheduled/crons.php:220 scheduled/crons.php:104 scheduled/crons.php:196
5125
- #: scheduled/crons.php:208 scheduled/crons.php:210
5126
  #, php-format
5127
  msgid "Trial ending email sent to %s. "
5128
  msgstr ""
@@ -5140,15 +5570,17 @@ msgstr ""
5140
  msgid "The <strong>%s</strong> code has been applied to your order."
5141
  msgstr ""
5142
 
5143
- #: services/authnet-silent-post.php:141 services/authnet-silent-post.php:133
5144
  #: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
 
5145
  msgid ""
5146
  "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
5147
  "Information From Authorize.net"
5148
  msgstr ""
5149
 
5150
- #: services/stripe-webhook.php:271 services/stripe-webhook.php:176
5151
  #: services/stripe-webhook.php:194 services/stripe-webhook.php:270
 
5152
  #, php-format
5153
  msgid ""
5154
  "%s has had their payment subscription cancelled by Stripe. Please check that "
@@ -5161,54 +5593,58 @@ msgid "Billing"
5161
  msgstr ""
5162
 
5163
  #: shortcodes/pmpro_account.php:65 pages/account.php:36
5164
- #: shortcodes/pmpro_account.php:62
5165
  msgid "Update Billing Info"
5166
  msgstr ""
5167
 
5168
  #: shortcodes/pmpro_account.php:71 pages/account.php:42
5169
- #: shortcodes/pmpro_account.php:68
5170
  msgid "Change"
5171
  msgstr ""
5172
 
5173
  #: shortcodes/pmpro_account.php:93 pages/account.php:64
5174
- #: shortcodes/pmpro_account.php:90
5175
  msgid "View all Membership Options"
5176
  msgstr ""
5177
 
5178
  #: shortcodes/pmpro_account.php:102 pages/account.php:46 pages/account.php:50
5179
  #: pages/account.php:71 shortcodes/pmpro_account.php:99
 
5180
  msgid "My Account"
5181
  msgstr ""
5182
 
5183
  #: shortcodes/pmpro_account.php:113 pages/account.php:55 pages/account.php:59
5184
  #: pages/account.php:80 shortcodes/pmpro_account.php:110
 
5185
  msgid "Edit Profile"
5186
  msgstr ""
5187
 
5188
  #: shortcodes/pmpro_account.php:114 pages/account.php:56 pages/account.php:60
5189
  #: pages/account.php:81 shortcodes/pmpro_account.php:111
 
5190
  msgid "Change Password"
5191
  msgstr ""
5192
 
5193
  #: shortcodes/pmpro_account.php:121 pages/account.php:87 pages/account.php:125
5194
  #: pages/account.php:129 shortcodes/pmpro_account.php:118
 
5195
  msgid "Past Invoices"
5196
  msgstr ""
5197
 
5198
  #: shortcodes/pmpro_account.php:127 pages/account.php:93
5199
- #: shortcodes/pmpro_account.php:124
5200
  msgid "Amount"
5201
  msgstr ""
5202
 
5203
  #: shortcodes/pmpro_account.php:155 pages/account.php:121
5204
  #: pages/account.php:140 pages/account.php:144
5205
- #: shortcodes/pmpro_account.php:152
5206
  msgid "View All Invoices"
5207
  msgstr ""
5208
 
5209
  #: shortcodes/pmpro_account.php:162 pages/account.php:128
5210
  #: pages/account.php:146 pages/account.php:150
5211
- #: shortcodes/pmpro_account.php:159
5212
  msgid "Member Links"
5213
  msgstr ""
5214
 
@@ -5340,6 +5776,10 @@ msgstr ""
5340
  msgid "Logins All Time"
5341
  msgstr ""
5342
 
 
 
 
 
5343
  #: adminpages/reports/memberships.php:86
5344
  msgid "Other Stats"
5345
  msgstr ""
@@ -5356,11 +5796,35 @@ msgstr ""
5356
  msgid "Lifetime Value (LTV)"
5357
  msgstr ""
5358
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5359
  #: classes/class.pmproemail.php:685 classes/class.pmproemail.php:734
5360
  #: classes/class.pmproemail.php:799
5361
  msgid "membership has been cancelled"
5362
  msgstr ""
5363
 
 
 
 
 
 
 
 
 
 
 
5364
  #: includes/currencies.php:11
5365
  msgid "Brazilian Real (&#36;)"
5366
  msgstr ""
 
 
 
 
1
  #
2
+ # Hi there! Details on how to help out translating Paid Memberships Pro can be found at:
3
+ # http://www.paidmembershipspro.com/documentation/languages/
4
+ #
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: pmpro\n"
8
+ "POT-Creation-Date: 2016-01-20 11:58-0500\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"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
19
  #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
20
  #: adminpages/orders-print.php:12 adminpages/orders.php:5
21
  #: adminpages/pagesettings.php:4 adminpages/paymentsettings.php:5
22
+ #: adminpages/updates.php:5 includes/license.php:36 adminpages/addons.php:5
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
38
  #: adminpages/admin_header.php:170 includes/adminpages.php:14
39
+ #: includes/adminpages.php:52 includes/adminpages.php:53
40
+ #: includes/adminpages.php:69 includes/adminpages.php:135
41
+ #: includes/adminpages.php:142 includes/adminpages.php:146
42
+ #: includes/adminpages.php:151
43
  msgid "Add Ons"
44
  msgstr ""
45
 
52
  msgid "Check Again"
53
  msgstr ""
54
 
55
+ #: adminpages/addons.php:76 adminpages/orders.php:712 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
 
288
  msgstr ""
289
 
290
  #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:618
291
+ #: adminpages/pagesettings.php:70 includes/adminpages.php:69
292
+ #: includes/adminpages.php:70 includes/adminpages.php:116
293
+ #: includes/metaboxes.php:131 adminpages/admin_header.php:128
294
  #: adminpages/admin_header.php:149 adminpages/admin_header.php:150
295
  #: adminpages/membershiplevels.php:490 adminpages/membershiplevels.php:496
296
  #: adminpages/membershiplevels.php:498 adminpages/membershiplevels.php:525
298
  #: adminpages/membershiplevels.php:618 adminpages/membershiplevels.php:619
299
  #: adminpages/pagesettings.php:69 adminpages/pagesettings.php:70
300
  #: includes/adminpages.php:44 includes/adminpages.php:64
301
+ #: includes/adminpages.php:65 includes/adminpages.php:69
302
+ #: includes/adminpages.php:70 includes/adminpages.php:100
303
  #: includes/adminpages.php:107 includes/adminpages.php:111
304
+ #: includes/adminpages.php:116 includes/metaboxes.php:126
305
+ #: includes/metaboxes.php:131
306
  msgid "Membership Levels"
307
  msgstr ""
308
 
324
  #: adminpages/memberslist.php:115 adminpages/memberslist.php:148
325
  #: adminpages/memberslist.php:158 adminpages/memberslist.php:168
326
  #: pages/account.php:52 pages/account.php:56 pages/account.php:77
327
+ #: shortcodes/pmpro_account.php:106 shortcodes/pmpro_account.php:109
328
  msgid "Email"
329
  msgstr ""
330
 
360
  "This content is for members only. Visit the site and log in/register to read."
361
  msgstr ""
362
 
363
+ #: adminpages/advancedsettings.php:88 includes/adminpages.php:52
364
+ #: includes/adminpages.php:144 adminpages/advancedsettings.php:79
365
  #: adminpages/advancedsettings.php:86 adminpages/advancedsettings.php:88
366
  #: includes/adminpages.php:13 includes/adminpages.php:51
367
+ #: includes/adminpages.php:52 includes/adminpages.php:64
368
+ #: includes/adminpages.php:128 includes/adminpages.php:135
369
+ #: includes/adminpages.php:139 includes/adminpages.php:144
370
  msgid "Advanced Settings"
371
  msgstr ""
372
 
437
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
438
  #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:667
439
  #: adminpages/paymentsettings.php:210
440
+ #: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:110
441
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
442
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:187
443
  #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
453
  #: adminpages/paymentsettings.php:461
454
  #: classes/gateways/class.pmprogateway_stripe.php:173
455
  #: classes/gateways/class.pmprogateway_stripe.php:174
456
+ #: classes/gateways/class.pmprogateway_stripe.php:184
457
+ #: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:101
458
  #: includes/profile.php:105 includes/profile.php:110 includes/profile.php:121
459
  #: includes/profile.php:123
460
  msgid "No"
497
 
498
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:667
499
  #: adminpages/paymentsettings.php:211
500
+ #: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:111
501
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
502
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:563
503
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
510
  #: adminpages/paymentsettings.php:460 adminpages/paymentsettings.php:462
511
  #: classes/gateways/class.pmprogateway_stripe.php:174
512
  #: classes/gateways/class.pmprogateway_stripe.php:175
513
+ #: classes/gateways/class.pmprogateway_stripe.php:185
514
+ #: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:102
515
  #: includes/profile.php:106 includes/profile.php:111 includes/profile.php:122
516
  #: includes/profile.php:124
517
  msgid "Yes"
646
 
647
  #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
648
  #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:636
649
+ #: adminpages/memberslist.php:164 adminpages/orders.php:937
650
  #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
651
  #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
652
  #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
661
  #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
662
  #: adminpages/memberslist.php:164 adminpages/orders.php:597
663
  #: adminpages/orders.php:900 adminpages/orders.php:910
664
+ #: adminpages/orders.php:937 adminpages/orders.php:966
665
  #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
666
+ #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
667
+ #: adminpages/templates/orders-print.php:75
668
  msgid "ID"
669
  msgstr ""
670
 
671
+ #: adminpages/discountcodes.php:311 adminpages/orders.php:333
672
  #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
673
  #: adminpages/discountcodes.php:311 adminpages/orders.php:211
674
+ #: adminpages/orders.php:261 adminpages/orders.php:333
675
+ #: adminpages/orders.php:362
676
  msgid "This will be generated when you save."
677
  msgstr ""
678
 
679
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
680
+ #: adminpages/orders.php:337 adminpages/orders.php:938
681
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
682
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:548
683
  #: adminpages/discountcodes.php:558 adminpages/discountcodes.php:586
684
  #: adminpages/discountcodes.php:587 adminpages/orders.php:215
685
+ #: adminpages/orders.php:265 adminpages/orders.php:337
686
+ #: adminpages/orders.php:366 adminpages/orders.php:598
687
  #: adminpages/orders.php:901 adminpages/orders.php:911
688
+ #: adminpages/orders.php:938 adminpages/orders.php:967
689
  msgid "Code"
690
  msgstr ""
691
 
695
  msgstr ""
696
 
697
  #: adminpages/discountcodes.php:371
698
+ #: classes/gateways/class.pmprogateway_braintree.php:323
699
+ #: classes/gateways/class.pmprogateway_stripe.php:495 pages/billing.php:265
700
+ #: pages/checkout.php:575 adminpages/discountcodes.php:367
701
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
702
  #: classes/gateways/class.pmprogateway_braintree.php:308
703
  #: classes/gateways/class.pmprogateway_braintree.php:321
704
+ #: classes/gateways/class.pmprogateway_braintree.php:323
705
  #: classes/gateways/class.pmprogateway_stripe.php:454
706
  #: classes/gateways/class.pmprogateway_stripe.php:455
707
+ #: classes/gateways/class.pmprogateway_stripe.php:465
708
+ #: classes/gateways/class.pmprogateway_stripe.php:469
709
+ #: classes/gateways/class.pmprogateway_stripe.php:495 pages/billing.php:249
710
+ #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
711
+ #: pages/checkout.php:508 pages/checkout.php:524 pages/checkout.php:525
712
+ #: pages/checkout.php:532 pages/checkout.php:553 pages/checkout.php:562
713
+ #: pages/checkout.php:571 pages/checkout.php:575
714
  msgid "Expiration Date"
715
  msgstr ""
716
 
779
 
780
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
781
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
782
+ #: classes/gateways/class.pmprogateway_stripe.php:562
783
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
784
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
785
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
791
  #: classes/gateways/class.pmprogateway_stripe.php:521
792
  #: classes/gateways/class.pmprogateway_stripe.php:522
793
  #: classes/gateways/class.pmprogateway_stripe.php:532
794
+ #: classes/gateways/class.pmprogateway_stripe.php:536
795
+ #: classes/gateways/class.pmprogateway_stripe.php:562
796
  msgid "Day(s)"
797
  msgstr ""
798
 
799
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
800
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
801
+ #: classes/gateways/class.pmprogateway_stripe.php:562
802
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
803
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
804
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
810
  #: classes/gateways/class.pmprogateway_stripe.php:521
811
  #: classes/gateways/class.pmprogateway_stripe.php:522
812
  #: classes/gateways/class.pmprogateway_stripe.php:532
813
+ #: classes/gateways/class.pmprogateway_stripe.php:536
814
+ #: classes/gateways/class.pmprogateway_stripe.php:562
815
  msgid "Month(s)"
816
  msgstr ""
817
 
818
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
819
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
820
+ #: classes/gateways/class.pmprogateway_stripe.php:562
821
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
822
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
823
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
829
  #: classes/gateways/class.pmprogateway_stripe.php:521
830
  #: classes/gateways/class.pmprogateway_stripe.php:522
831
  #: classes/gateways/class.pmprogateway_stripe.php:532
832
+ #: classes/gateways/class.pmprogateway_stripe.php:536
833
+ #: classes/gateways/class.pmprogateway_stripe.php:562
834
  msgid "Week(s)"
835
  msgstr ""
836
 
837
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
838
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
839
+ #: classes/gateways/class.pmprogateway_stripe.php:562
840
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
841
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
842
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
848
  #: classes/gateways/class.pmprogateway_stripe.php:521
849
  #: classes/gateways/class.pmprogateway_stripe.php:522
850
  #: classes/gateways/class.pmprogateway_stripe.php:532
851
+ #: classes/gateways/class.pmprogateway_stripe.php:536
852
+ #: classes/gateways/class.pmprogateway_stripe.php:562
853
  msgid "Year(s)"
854
  msgstr ""
855
 
985
  #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
986
  #: adminpages/discountcodes.php:569 adminpages/discountcodes.php:570
987
  #: adminpages/reports/login.php:81 adminpages/reports/login.php:83
988
+ #: adminpages/reports/login.php:99
989
  msgid "Search"
990
  msgstr ""
991
 
1002
  #: adminpages/memberslist.php:121 adminpages/memberslist.php:159
1003
  #: adminpages/memberslist.php:169 adminpages/memberslist.php:179
1004
  #: adminpages/reports/login.php:145 adminpages/reports/login.php:147
1005
+ #: adminpages/reports/login.php:163 includes/profile.php:98
1006
+ #: includes/profile.php:102 includes/profile.php:107 includes/profile.php:118
1007
+ #: includes/profile.php:120
1008
  msgid "Expires"
1009
  msgstr ""
1010
 
1029
  msgstr ""
1030
 
1031
  #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:669
1032
+ #: adminpages/orders.php:1021 adminpages/discountcodes.php:614
1033
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
1034
  #: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
1035
  #: adminpages/membershiplevels.php:564 adminpages/membershiplevels.php:570
1038
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1039
  #: adminpages/orders.php:658 adminpages/orders.php:961
1040
  #: adminpages/orders.php:979 adminpages/orders.php:989
1041
+ #: adminpages/orders.php:992 adminpages/orders.php:1021
1042
+ #: adminpages/orders.php:1050
1043
  msgid "edit"
1044
  msgstr ""
1045
 
1054
  msgstr ""
1055
 
1056
  #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:669
1057
+ #: adminpages/orders.php:1027 adminpages/discountcodes.php:617
1058
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
1059
  #: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
1060
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:572
1063
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1064
  #: adminpages/orders.php:664 adminpages/orders.php:967
1065
  #: adminpages/orders.php:985 adminpages/orders.php:995
1066
+ #: adminpages/orders.php:998 adminpages/orders.php:1027
1067
+ #: adminpages/orders.php:1056
1068
  msgid "delete"
1069
  msgstr ""
1070
 
1071
+ #: adminpages/emailsettings.php:69 includes/adminpages.php:51
1072
+ #: includes/adminpages.php:137 adminpages/emailsettings.php:60
1073
  #: adminpages/emailsettings.php:69 includes/adminpages.php:12
1074
+ #: includes/adminpages.php:50 includes/adminpages.php:51
1075
+ #: includes/adminpages.php:59 includes/adminpages.php:121
1076
+ #: includes/adminpages.php:128 includes/adminpages.php:132
1077
+ #: includes/adminpages.php:137
1078
  msgid "Email Settings"
1079
  msgstr ""
1080
 
1242
  #: adminpages/membershiplevels.php:542 adminpages/membershiplevels.php:584
1243
  #: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:638
1244
  #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
1245
+ #: adminpages/reports/login.php:160
1246
  msgid "Name"
1247
  msgstr ""
1248
 
1260
  msgstr ""
1261
 
1262
  #: adminpages/membershiplevels.php:372
1263
+ #: classes/gateways/class.pmprogateway_stripe.php:660
1264
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1265
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1266
  #: adminpages/membershiplevels.php:373
1267
  #: classes/gateways/class.pmprogateway_stripe.php:619
1268
  #: classes/gateways/class.pmprogateway_stripe.php:620
1269
  #: classes/gateways/class.pmprogateway_stripe.php:630
1270
+ #: classes/gateways/class.pmprogateway_stripe.php:634
1271
+ #: classes/gateways/class.pmprogateway_stripe.php:660
1272
  msgid "per"
1273
  msgstr ""
1274
 
1415
  msgid "Save Level"
1416
  msgstr ""
1417
 
1418
+ #: adminpages/membershiplevels.php:517 adminpages/orders.php:633
1419
+ #: pages/billing.php:344 pages/cancel.php:71 shortcodes/pmpro_account.php:73
1420
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1421
+ #: adminpages/orders.php:511 adminpages/orders.php:561
1422
+ #: adminpages/orders.php:633 adminpages/orders.php:662 pages/account.php:44
1423
  #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1424
+ #: pages/billing.php:339 pages/billing.php:342 pages/billing.php:344
1425
+ #: pages/cancel.php:71 shortcodes/pmpro_account.php:70
1426
+ #: shortcodes/pmpro_account.php:73
1427
  msgid "Cancel"
1428
  msgstr ""
1429
 
1498
  "be cancelled."
1499
  msgstr ""
1500
 
1501
+ #: adminpages/membershiplevels.php:669 adminpages/orders.php:1024
1502
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1503
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1504
  #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1505
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1506
  #: adminpages/orders.php:661 adminpages/orders.php:964
1507
  #: adminpages/orders.php:982 adminpages/orders.php:992
1508
+ #: adminpages/orders.php:995 adminpages/orders.php:1024
1509
+ #: adminpages/orders.php:1053
1510
  msgid "copy"
1511
  msgstr ""
1512
 
1513
+ #: adminpages/memberslist.php:25 includes/adminpages.php:54
1514
+ #: includes/adminpages.php:158 adminpages/memberslist.php:25
1515
  #: includes/adminpages.php:15 includes/adminpages.php:53
1516
+ #: includes/adminpages.php:54 includes/adminpages.php:74
1517
+ #: includes/adminpages.php:142 includes/adminpages.php:149
1518
+ #: includes/adminpages.php:153 includes/adminpages.php:158
1519
  msgid "Members List"
1520
  msgstr ""
1521
 
1522
+ #: adminpages/memberslist.php:26 adminpages/orders.php:698
1523
  #: adminpages/memberslist.php:26 adminpages/orders.php:522
1524
+ #: adminpages/orders.php:591 adminpages/orders.php:698
1525
+ #: adminpages/orders.php:727
1526
  msgid "Export to CSV"
1527
  msgstr ""
1528
 
1529
+ #: adminpages/memberslist.php:30 adminpages/orders.php:710
1530
+ #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:263
1531
  #: adminpages/reports/sales.php:202 adminpages/memberslist.php:30
1532
+ #: adminpages/orders.php:603 adminpages/orders.php:710
1533
+ #: adminpages/orders.php:739 adminpages/reports/login.php:65
1534
+ #: adminpages/reports/login.php:67 adminpages/reports/login.php:83
1535
+ #: adminpages/reports/memberships.php:256
1536
+ #: adminpages/reports/memberships.php:263
1537
+ #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
1538
+ #: adminpages/reports/sales.php:193 adminpages/reports/sales.php:194
1539
+ #: adminpages/reports/sales.php:202
1540
  msgid "Show"
1541
  msgstr ""
1542
 
1543
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1544
+ #: adminpages/reports/memberships.php:290 adminpages/reports/sales.php:225
1545
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:67
1546
+ #: adminpages/reports/login.php:69 adminpages/reports/login.php:85
1547
+ #: adminpages/reports/memberships.php:281
1548
+ #: adminpages/reports/memberships.php:290
1549
+ #: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:208
1550
+ #: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
1551
+ #: adminpages/reports/sales.php:225
1552
  msgid "All Levels"
1553
  msgstr ""
1554
 
1579
  msgid "%d members found."
1580
  msgstr ""
1581
 
1582
+ #: adminpages/memberslist.php:165 pages/checkout.php:184
1583
  #: shortcodes/pmpro_account.php:108 adminpages/memberslist.php:112
1584
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1585
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1586
  #: pages/account.php:76 pages/checkout.php:168 pages/checkout.php:171
1587
+ #: pages/checkout.php:173 pages/checkout.php:180 pages/checkout.php:182
1588
+ #: pages/checkout.php:184 shortcodes/pmpro_account.php:105
1589
+ #: shortcodes/pmpro_account.php:108
1590
  msgid "Username"
1591
  msgstr ""
1592
 
1602
  msgid "Last&nbsp;Name"
1603
  msgstr ""
1604
 
1605
+ #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:319
1606
  #: pages/confirmation.php:61 pages/invoice.php:48
1607
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1608
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
1609
  #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
1610
  #: pages/billing.php:62 pages/billing.php:71 pages/checkout.php:298
1611
  #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
1612
+ #: pages/checkout.php:314 pages/checkout.php:317 pages/checkout.php:319
1613
+ #: pages/checkout.php:321 pages/confirmation.php:59 pages/confirmation.php:61
1614
+ #: pages/invoice.php:46 pages/invoice.php:48
1615
  msgid "Billing Address"
1616
  msgstr ""
1617
 
1620
  #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1621
  #: adminpages/memberslist.php:161 adminpages/memberslist.php:171
1622
  #: adminpages/pagesettings.php:51 adminpages/reports/login.php:143
1623
+ #: adminpages/reports/login.php:145 adminpages/reports/login.php:161
1624
  #: classes/gateways/class.pmprogateway_authorizenet.php:187
1625
  #: classes/gateways/class.pmprogateway_authorizenet.php:303
1626
  msgid "Membership"
1636
  #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1637
  #: adminpages/memberslist.php:163 adminpages/memberslist.php:173
1638
  #: adminpages/reports/login.php:144 adminpages/reports/login.php:146
1639
+ #: adminpages/reports/login.php:162
1640
  msgid "Joined"
1641
  msgstr ""
1642
 
1649
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1650
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1651
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
1652
+ #: adminpages/reports/login.php:228
1653
  msgid "No members found."
1654
  msgstr ""
1655
 
1657
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1658
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1659
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
1660
+ #: adminpages/reports/login.php:228
1661
  msgid "Search all levels"
1662
  msgstr ""
1663
 
1664
+ #: adminpages/orders.php:155 adminpages/orders.php:155
1665
  msgid "Invoice emailed successfully."
1666
  msgstr ""
1667
 
1668
+ #: adminpages/orders.php:160 adminpages/orders.php:160
1669
  msgid "Error emailing invoice."
1670
  msgstr ""
1671
 
1672
  #: adminpages/orders.php:175 adminpages/orders.php:26 adminpages/orders.php:67
1673
+ #: adminpages/orders.php:175
1674
  msgid "Order deleted successfully."
1675
  msgstr ""
1676
 
1677
  #: adminpages/orders.php:180 adminpages/orders.php:31 adminpages/orders.php:72
1678
+ #: adminpages/orders.php:180
1679
  msgid "Error deleting order."
1680
  msgstr ""
1681
 
1682
  #: adminpages/orders.php:270 adminpages/orders.php:119
1683
+ #: adminpages/orders.php:169 adminpages/orders.php:270
1684
  msgid "Order saved successfully."
1685
  msgstr ""
1686
 
1687
  #: adminpages/orders.php:275 adminpages/orders.php:124
1688
+ #: adminpages/orders.php:174 adminpages/orders.php:275
1689
  msgid "Error updating order timestamp."
1690
  msgstr ""
1691
 
1692
  #: adminpages/orders.php:281 adminpages/orders.php:130
1693
+ #: adminpages/orders.php:180 adminpages/orders.php:281
1694
  msgid "Error saving order."
1695
  msgstr ""
1696
 
1697
+ #: adminpages/orders.php:317 adminpages/orders.php:195
1698
+ #: adminpages/orders.php:245 adminpages/orders.php:317
1699
+ #: adminpages/orders.php:346
1700
  msgid "Order"
1701
  msgstr ""
1702
 
1703
+ #: adminpages/orders.php:319 adminpages/orders.php:197
1704
+ #: adminpages/orders.php:247 adminpages/orders.php:319
1705
+ #: adminpages/orders.php:348
1706
  msgid "New Order"
1707
  msgstr ""
1708
 
1709
+ #: adminpages/orders.php:342 adminpages/orders.php:220
1710
+ #: adminpages/orders.php:270 adminpages/orders.php:342
1711
+ #: adminpages/orders.php:371
1712
  msgid "Randomly generated for you."
1713
  msgstr ""
1714
 
1715
+ #: adminpages/orders.php:347 adminpages/orders.php:225
1716
+ #: adminpages/orders.php:275 adminpages/orders.php:347
1717
+ #: adminpages/orders.php:376
1718
  msgid "User ID"
1719
  msgstr ""
1720
 
1721
+ #: adminpages/orders.php:356 adminpages/orders.php:234
1722
+ #: adminpages/orders.php:284 adminpages/orders.php:356
1723
+ #: adminpages/orders.php:385
1724
  msgid "Membership Level ID"
1725
  msgstr ""
1726
 
1727
+ #: adminpages/orders.php:365 adminpages/orders.php:243
1728
+ #: adminpages/orders.php:293 adminpages/orders.php:365
1729
+ #: adminpages/orders.php:394
1730
  msgid "Billing Name"
1731
  msgstr ""
1732
 
1733
+ #: adminpages/orders.php:373 adminpages/orders.php:251
1734
+ #: adminpages/orders.php:301 adminpages/orders.php:373
1735
+ #: adminpages/orders.php:402
1736
  msgid "Billing Street"
1737
  msgstr ""
1738
 
1739
+ #: adminpages/orders.php:380 adminpages/orders.php:258
1740
+ #: adminpages/orders.php:308 adminpages/orders.php:380
1741
+ #: adminpages/orders.php:409
1742
  msgid "Billing City"
1743
  msgstr ""
1744
 
1745
+ #: adminpages/orders.php:387 adminpages/orders.php:265
1746
+ #: adminpages/orders.php:315 adminpages/orders.php:387
1747
+ #: adminpages/orders.php:416
1748
  msgid "Billing State"
1749
  msgstr ""
1750
 
1751
+ #: adminpages/orders.php:394 adminpages/orders.php:272
1752
+ #: adminpages/orders.php:322 adminpages/orders.php:394
1753
+ #: adminpages/orders.php:423
1754
  msgid "Billing Postal Code"
1755
  msgstr ""
1756
 
1757
+ #: adminpages/orders.php:401 adminpages/orders.php:279
1758
+ #: adminpages/orders.php:329 adminpages/orders.php:401
1759
+ #: adminpages/orders.php:430
1760
  msgid "Billing Country"
1761
  msgstr ""
1762
 
1763
+ #: adminpages/orders.php:409 adminpages/orders.php:287
1764
+ #: adminpages/orders.php:337 adminpages/orders.php:409
1765
+ #: adminpages/orders.php:438
1766
  msgid "Billing Phone"
1767
  msgstr ""
1768
 
1769
+ #: adminpages/orders.php:418 adminpages/orders.php:296
1770
+ #: adminpages/orders.php:346 adminpages/orders.php:418
1771
+ #: adminpages/orders.php:447
1772
  msgid "Sub Total"
1773
  msgstr ""
1774
 
1775
+ #: adminpages/orders.php:426 adminpages/templates/orders-email.php:60
1776
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1777
+ #: adminpages/orders.php:304 adminpages/orders.php:354
1778
+ #: adminpages/orders.php:426 adminpages/orders.php:455
1779
+ #: adminpages/templates/orders-email.php:60
1780
+ #: adminpages/templates/orders-print.php:89 pages/invoice.php:78
1781
  #: pages/invoice.php:80
1782
  msgid "Tax"
1783
  msgstr ""
1784
 
1785
+ #: adminpages/orders.php:434 adminpages/orders.php:312
1786
+ #: adminpages/orders.php:362 adminpages/orders.php:434
1787
+ #: adminpages/orders.php:463
1788
  msgid "Coupon Amount"
1789
  msgstr ""
1790
 
1791
+ #: adminpages/orders.php:442 adminpages/orders.php:942
1792
  #: adminpages/templates/orders-email.php:64
1793
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1794
  #: adminpages/orders.php:320 adminpages/orders.php:370
1795
+ #: adminpages/orders.php:442 adminpages/orders.php:471
1796
  #: adminpages/orders.php:602 adminpages/orders.php:905
1797
+ #: adminpages/orders.php:915 adminpages/orders.php:942
1798
+ #: adminpages/orders.php:971 adminpages/templates/orders-email.php:64
1799
+ #: adminpages/templates/orders-print.php:93 pages/invoice.php:82
1800
+ #: pages/invoice.php:84
1801
  msgid "Total"
1802
  msgstr ""
1803
 
1804
+ #: adminpages/orders.php:447 adminpages/orders.php:325
1805
+ #: adminpages/orders.php:375 adminpages/orders.php:447
1806
+ #: adminpages/orders.php:476
1807
  msgid "Should be subtotal + tax - couponamount."
1808
  msgstr ""
1809
 
1810
+ #: adminpages/orders.php:452 adminpages/orders.php:330
1811
+ #: adminpages/orders.php:380 adminpages/orders.php:452
1812
+ #: adminpages/orders.php:481
1813
  msgid "Payment Type"
1814
  msgstr ""
1815
 
1816
+ #: adminpages/orders.php:457 adminpages/orders.php:335
1817
+ #: adminpages/orders.php:385 adminpages/orders.php:457
1818
+ #: adminpages/orders.php:486
1819
  msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1820
  msgstr ""
1821
 
1822
+ #: adminpages/orders.php:461
1823
+ #: classes/gateways/class.pmprogateway_braintree.php:306
1824
+ #: classes/gateways/class.pmprogateway_stripe.php:447 pages/billing.php:250
1825
+ #: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
1826
+ #: adminpages/orders.php:461 adminpages/orders.php:490
1827
  #: classes/gateways/class.pmprogateway_braintree.php:291
1828
  #: classes/gateways/class.pmprogateway_braintree.php:304
1829
+ #: classes/gateways/class.pmprogateway_braintree.php:306
1830
  #: classes/gateways/class.pmprogateway_stripe.php:408
1831
  #: classes/gateways/class.pmprogateway_stripe.php:409
1832
+ #: classes/gateways/class.pmprogateway_stripe.php:419
1833
+ #: classes/gateways/class.pmprogateway_stripe.php:423
1834
+ #: classes/gateways/class.pmprogateway_stripe.php:447 pages/billing.php:234
1835
+ #: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
1836
+ #: pages/checkout.php:493 pages/checkout.php:507 pages/checkout.php:510
1837
+ #: pages/checkout.php:516 pages/checkout.php:517 pages/checkout.php:525
1838
+ #: pages/checkout.php:527
1839
  msgid "Card Type"
1840
  msgstr ""
1841
 
1842
+ #: adminpages/orders.php:466 adminpages/orders.php:344
1843
+ #: adminpages/orders.php:394 adminpages/orders.php:466
1844
+ #: adminpages/orders.php:495
1845
  msgid "e.g. Visa, MasterCard, AMEX, etc"
1846
  msgstr ""
1847
 
1848
+ #: adminpages/orders.php:470
1849
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
1850
  #: adminpages/orders.php:348 adminpages/orders.php:398
1851
+ #: adminpages/orders.php:470 adminpages/orders.php:499
1852
  #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
1853
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
1854
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
1855
  #: classes/gateways/class.pmprogateway_twocheckout.php:148
1856
  msgid "Account Number"
1857
  msgstr ""
1858
 
1859
+ #: adminpages/orders.php:475 adminpages/orders.php:353
1860
+ #: adminpages/orders.php:403 adminpages/orders.php:475
1861
+ #: adminpages/orders.php:504
1862
  msgid "Obscure all but last 4 digits."
1863
  msgstr ""
1864
 
1865
+ #: adminpages/orders.php:480 adminpages/orders.php:358
1866
+ #: adminpages/orders.php:408 adminpages/orders.php:480
1867
+ #: adminpages/orders.php:509
1868
  msgid "Expiration Month"
1869
  msgstr ""
1870
 
1871
+ #: adminpages/orders.php:487 adminpages/orders.php:365
1872
+ #: adminpages/orders.php:415 adminpages/orders.php:487
1873
+ #: adminpages/orders.php:516
1874
  msgid "Expiration Year"
1875
  msgstr ""
1876
 
1877
+ #: adminpages/orders.php:495 adminpages/orders.php:946
1878
  #: adminpages/orders.php:373 adminpages/orders.php:423
1879
+ #: adminpages/orders.php:495 adminpages/orders.php:524
1880
  #: adminpages/orders.php:606 adminpages/orders.php:909
1881
+ #: adminpages/orders.php:919 adminpages/orders.php:946
1882
+ #: adminpages/orders.php:975
1883
  msgid "Status"
1884
  msgstr ""
1885
 
1886
+ #: adminpages/orders.php:516 adminpages/orders.php:944
1887
  #: adminpages/orders.php:394 adminpages/orders.php:444
1888
+ #: adminpages/orders.php:516 adminpages/orders.php:545
1889
  #: adminpages/orders.php:604 adminpages/orders.php:907
1890
+ #: adminpages/orders.php:917 adminpages/orders.php:944
1891
+ #: adminpages/orders.php:973
1892
  msgid "Gateway"
1893
  msgstr ""
1894
 
1895
+ #: adminpages/orders.php:534 adminpages/paymentsettings.php:124
1896
  #: adminpages/orders.php:411 adminpages/orders.php:461
1897
+ #: adminpages/orders.php:462 adminpages/orders.php:534
1898
+ #: adminpages/orders.php:563 adminpages/paymentsettings.php:124
1899
  #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
1900
  #: adminpages/paymentsettings.php:184
1901
  msgid "Gateway Environment"
1902
  msgstr ""
1903
 
1904
+ #: adminpages/orders.php:538 adminpages/paymentsettings.php:128
1905
  #: adminpages/orders.php:415 adminpages/orders.php:465
1906
+ #: adminpages/orders.php:466 adminpages/orders.php:538
1907
+ #: adminpages/orders.php:567 adminpages/paymentsettings.php:128
1908
  #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
1909
  #: adminpages/paymentsettings.php:188
1910
  msgid "Sandbox/Testing"
1911
  msgstr ""
1912
 
1913
+ #: adminpages/orders.php:539 adminpages/paymentsettings.php:129
1914
  #: adminpages/orders.php:416 adminpages/orders.php:466
1915
+ #: adminpages/orders.php:467 adminpages/orders.php:539
1916
+ #: adminpages/orders.php:568 adminpages/paymentsettings.php:129
1917
  #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
1918
  #: adminpages/paymentsettings.php:189
1919
  msgid "Live/Production"
1920
  msgstr ""
1921
 
1922
+ #: adminpages/orders.php:546 adminpages/orders.php:423
1923
  #: adminpages/orders.php:473 adminpages/orders.php:474
1924
+ #: adminpages/orders.php:546 adminpages/orders.php:575
1925
  msgid "Payment Transaction ID"
1926
  msgstr ""
1927
 
1928
+ #: adminpages/orders.php:551 adminpages/orders.php:428
1929
  #: adminpages/orders.php:478 adminpages/orders.php:479
1930
+ #: adminpages/orders.php:551 adminpages/orders.php:580
1931
  msgid "Generated by the gateway. Useful to cross reference orders."
1932
  msgstr ""
1933
 
1934
+ #: adminpages/orders.php:555 adminpages/orders.php:432
1935
  #: adminpages/orders.php:482 adminpages/orders.php:483
1936
+ #: adminpages/orders.php:555 adminpages/orders.php:584
1937
  msgid "Subscription Transaction ID"
1938
  msgstr ""
1939
 
1940
+ #: adminpages/orders.php:560 adminpages/orders.php:437
1941
  #: adminpages/orders.php:487 adminpages/orders.php:488
1942
+ #: adminpages/orders.php:560 adminpages/orders.php:589
1943
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
1944
  msgstr ""
1945
 
1946
+ #: adminpages/orders.php:565 adminpages/orders.php:947 pages/invoice.php:107
1947
  #: shortcodes/pmpro_account.php:125 adminpages/orders.php:442
1948
  #: adminpages/orders.php:492 adminpages/orders.php:493
1949
+ #: adminpages/orders.php:565 adminpages/orders.php:594
1950
  #: adminpages/orders.php:607 adminpages/orders.php:910
1951
+ #: adminpages/orders.php:920 adminpages/orders.php:947
1952
+ #: adminpages/orders.php:976 pages/account.php:91 pages/invoice.php:105
1953
  #: pages/invoice.php:107 shortcodes/pmpro_account.php:122
1954
+ #: shortcodes/pmpro_account.php:125
1955
  msgid "Date"
1956
  msgstr ""
1957
 
1958
+ #: adminpages/orders.php:599 adminpages/orders.php:477
1959
+ #: adminpages/orders.php:527 adminpages/orders.php:599
1960
+ #: adminpages/orders.php:628
1961
  msgid "Affiliate ID"
1962
  msgstr ""
1963
 
1964
+ #: adminpages/orders.php:607 adminpages/orders.php:485
1965
+ #: adminpages/orders.php:535 adminpages/orders.php:607
1966
+ #: adminpages/orders.php:636
1967
  msgid "Affiliate SubID"
1968
  msgstr ""
1969
 
1970
+ #: adminpages/orders.php:617 adminpages/orders.php:495
1971
+ #: adminpages/orders.php:545 adminpages/orders.php:617
1972
+ #: adminpages/orders.php:646
1973
  msgid "Notes"
1974
  msgstr ""
1975
 
1976
+ #: adminpages/orders.php:632 adminpages/orders.php:510
1977
+ #: adminpages/orders.php:560 adminpages/orders.php:632
1978
+ #: adminpages/orders.php:661
1979
  msgid "Save Order"
1980
  msgstr ""
1981
 
1982
+ #: adminpages/orders.php:667 adminpages/orders.php:667
1983
  #: adminpages/orders.php:696
1984
  msgid "Email Invoice"
1985
  msgstr ""
1986
 
1987
+ #: adminpages/orders.php:670 adminpages/orders.php:670
1988
  #: adminpages/orders.php:699
1989
  msgid "Send an invoice for this order to: "
1990
  msgstr ""
1991
 
1992
+ #: adminpages/orders.php:672 adminpages/orders.php:672
1993
  #: adminpages/orders.php:701
1994
  msgid "Send Email"
1995
  msgstr ""
1996
 
1997
+ #: adminpages/orders.php:677 includes/adminpages.php:56
1998
+ #: includes/adminpages.php:172 adminpages/orders.php:520
1999
+ #: adminpages/orders.php:570 adminpages/orders.php:677
2000
+ #: adminpages/orders.php:706 includes/adminpages.php:17
2001
+ #: includes/adminpages.php:55 includes/adminpages.php:56
2002
+ #: includes/adminpages.php:84 includes/adminpages.php:156
2003
+ #: includes/adminpages.php:163 includes/adminpages.php:167
2004
+ #: includes/adminpages.php:172
2005
  msgid "Orders"
2006
  msgstr ""
2007
 
2008
+ #: adminpages/orders.php:678 adminpages/orders.php:521
2009
+ #: adminpages/orders.php:571 adminpages/orders.php:678
2010
+ #: adminpages/orders.php:707
2011
  msgid "Add New Order"
2012
  msgstr ""
2013
 
2014
+ #: adminpages/orders.php:713 adminpages/orders.php:606
2015
+ #: adminpages/orders.php:713 adminpages/orders.php:742
2016
  msgid "Within a Date Range"
2017
  msgstr ""
2018
 
2019
+ #: adminpages/orders.php:714 adminpages/orders.php:607
2020
+ #: adminpages/orders.php:714 adminpages/orders.php:743
2021
  msgid "Predefined Date Range"
2022
  msgstr ""
2023
 
2024
+ #: adminpages/orders.php:715 adminpages/orders.php:608
2025
+ #: adminpages/orders.php:715 adminpages/orders.php:744
2026
  msgid "Within a Level"
2027
  msgstr ""
2028
 
2029
+ #: adminpages/orders.php:716 adminpages/orders.php:609
2030
+ #: adminpages/orders.php:716 adminpages/orders.php:745
2031
  msgid "Within a Status"
2032
  msgstr ""
2033
 
2034
+ #: adminpages/orders.php:719 adminpages/orders.php:612
2035
+ #: adminpages/orders.php:719 adminpages/orders.php:748
2036
  msgid "From"
2037
  msgstr ""
2038
 
2039
+ #: adminpages/orders.php:731 adminpages/orders.php:624
2040
+ #: adminpages/orders.php:731 adminpages/orders.php:760
2041
  msgid "To"
2042
  msgstr ""
2043
 
2044
+ #: adminpages/orders.php:743 adminpages/orders.php:636
2045
+ #: adminpages/orders.php:743 adminpages/orders.php:772
2046
  msgid "filter by "
2047
  msgstr ""
2048
 
2049
+ #: adminpages/orders.php:780 adminpages/orders.php:674
2050
+ #: adminpages/orders.php:780 adminpages/orders.php:809
2051
  msgid "Filter"
2052
  msgstr ""
2053
 
2054
+ #: adminpages/orders.php:883 adminpages/orders.php:886
2055
  #: adminpages/orders.php:535 adminpages/orders.php:538
2056
  #: adminpages/orders.php:777 adminpages/orders.php:780
2057
+ #: adminpages/orders.php:883 adminpages/orders.php:886
2058
+ #: adminpages/orders.php:912 adminpages/orders.php:915
2059
  msgid "Search Orders"
2060
  msgstr ""
2061
 
2062
+ #: adminpages/orders.php:930 adminpages/orders.php:590
2063
  #: adminpages/orders.php:893 adminpages/orders.php:903
2064
+ #: adminpages/orders.php:930 adminpages/orders.php:959
2065
  #, php-format
2066
  msgid "%d orders found."
2067
  msgstr ""
2068
 
2069
+ #: adminpages/orders.php:939 adminpages/reports/login.php:159
2070
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
2071
  #: adminpages/orders.php:599 adminpages/orders.php:902
2072
+ #: adminpages/orders.php:912 adminpages/orders.php:939
2073
+ #: adminpages/orders.php:968 adminpages/paymentsettings.php:211
2074
  #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
2075
  #: adminpages/reports/login.php:141 adminpages/reports/login.php:143
2076
+ #: adminpages/reports/login.php:159
2077
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
2078
  msgid "User"
2079
  msgstr ""
2080
 
2081
+ #: adminpages/orders.php:941 includes/init.php:238 includes/profile.php:27
2082
  #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
2083
  #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
2084
  #: adminpages/orders.php:601 adminpages/orders.php:904
2085
+ #: adminpages/orders.php:914 adminpages/orders.php:941
2086
+ #: adminpages/orders.php:970 includes/init.php:214 includes/init.php:217
2087
  #: includes/init.php:218 includes/init.php:220 includes/init.php:222
2088
+ #: includes/init.php:230 includes/init.php:238 includes/profile.php:25
2089
+ #: includes/profile.php:27 pages/checkout.php:33 pages/checkout.php:34
2090
+ #: pages/checkout.php:35 pages/checkout.php:42 pages/confirmation.php:46
2091
+ #: pages/confirmation.php:47 pages/confirmation.php:62
2092
+ #: pages/confirmation.php:64 pages/confirmation.php:103
2093
+ #: pages/confirmation.php:105 pages/invoice.php:27 pages/invoice.php:28
2094
+ #: pages/invoice.php:49 pages/invoice.php:51
2095
  msgid "Membership Level"
2096
  msgstr ""
2097
 
2098
+ #: adminpages/orders.php:943 adminpages/orders.php:1011
2099
  #: adminpages/orders.php:603 adminpages/orders.php:651
2100
  #: adminpages/orders.php:906 adminpages/orders.php:916
2101
+ #: adminpages/orders.php:943 adminpages/orders.php:954
2102
+ #: adminpages/orders.php:972 adminpages/orders.php:982
2103
+ #: adminpages/orders.php:1011 adminpages/orders.php:1040
2104
  msgid "Payment"
2105
  msgstr ""
2106
 
2107
+ #: adminpages/orders.php:945 adminpages/orders.php:605
2108
  #: adminpages/orders.php:908 adminpages/orders.php:918
2109
+ #: adminpages/orders.php:945 adminpages/orders.php:974
2110
  msgid "Transaction IDs"
2111
  msgstr ""
2112
 
2113
+ #: adminpages/orders.php:972 adminpages/orders.php:630
2114
  #: adminpages/orders.php:933 adminpages/orders.php:943
2115
+ #: adminpages/orders.php:972 adminpages/orders.php:1001
2116
  msgid "deleted"
2117
  msgstr ""
2118
 
2119
+ #: adminpages/orders.php:1013 adminpages/orders.php:653
2120
  #: adminpages/orders.php:956 adminpages/orders.php:974
2121
+ #: adminpages/orders.php:984 adminpages/orders.php:1013
2122
+ #: adminpages/orders.php:1042
2123
  msgid "Subscription"
2124
  msgstr ""
2125
 
2126
+ #: adminpages/orders.php:1027 adminpages/orders.php:664
2127
  #: adminpages/orders.php:967 adminpages/orders.php:985
2128
  #: adminpages/orders.php:995 adminpages/orders.php:998
2129
+ #: adminpages/orders.php:1027 adminpages/orders.php:1056
2130
  #, php-format
2131
  msgid ""
2132
  "Deleting orders is permanent and can affect active users. Are you sure you "
2133
  "want to delete order %s?"
2134
  msgstr ""
2135
 
2136
+ #: adminpages/orders.php:1030 adminpages/orders.php:1030
2137
  #: adminpages/orders.php:1059
2138
  msgid "print"
2139
  msgstr ""
2140
 
2141
+ #: adminpages/orders.php:1033 adminpages/orders.php:1033
2142
  #: adminpages/orders.php:1062
2143
  msgid "email"
2144
  msgstr ""
2145
 
2146
+ #: adminpages/orders.php:1043 adminpages/orders.php:674
2147
  #: adminpages/orders.php:977 adminpages/orders.php:995
2148
  #: adminpages/orders.php:1005 adminpages/orders.php:1008
2149
+ #: adminpages/orders.php:1043 adminpages/orders.php:1072
2150
  msgid "No orders found."
2151
  msgstr ""
2152
 
2463
  msgid "Details"
2464
  msgstr ""
2465
 
2466
+ #: adminpages/reports.php:61 adminpages/reports.php:61
2467
  msgid "Back to Reports Dashboard"
2468
  msgstr ""
2469
 
2471
  msgid "Visits, Views, and Logins"
2472
  msgstr ""
2473
 
2474
+ #: adminpages/reports/login.php:31 adminpages/reports/login.php:31
2475
  msgid "Visits"
2476
  msgstr ""
2477
 
2478
+ #: adminpages/reports/login.php:32 adminpages/reports/login.php:32
2479
  msgid "Views"
2480
  msgstr ""
2481
 
2482
+ #: adminpages/reports/login.php:33 adminpages/reports/login.php:33
2483
  msgid "Logins"
2484
  msgstr ""
2485
 
2486
  #: adminpages/reports/login.php:38 adminpages/reports/memberships.php:43
2487
+ #: adminpages/reports/sales.php:51 adminpages/reports/login.php:38
2488
+ #: adminpages/reports/memberships.php:43 adminpages/reports/memberships.php:62
2489
+ #: adminpages/reports/memberships.php:81 adminpages/reports/sales.php:51
2490
  msgid "Today"
2491
  msgstr ""
2492
 
2493
  #: adminpages/reports/login.php:44 adminpages/reports/memberships.php:48
2494
+ #: adminpages/reports/sales.php:56 adminpages/reports/login.php:44
2495
+ #: adminpages/reports/memberships.php:48 adminpages/reports/memberships.php:58
2496
+ #: adminpages/reports/memberships.php:77 adminpages/reports/sales.php:56
2497
  msgid "This Month"
2498
  msgstr ""
2499
 
2500
  #: adminpages/reports/login.php:50 adminpages/reports/memberships.php:58
2501
+ #: adminpages/reports/sales.php:66 adminpages/reports/login.php:50
2502
+ #: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:58
2503
+ #: adminpages/reports/memberships.php:69 adminpages/reports/sales.php:66
2504
  msgid "All Time"
2505
  msgstr ""
2506
 
2507
  #: adminpages/reports/login.php:79 adminpages/reports/login.php:61
2508
+ #: adminpages/reports/login.php:63 adminpages/reports/login.php:79
2509
  msgid "Visits, Views, and Logins Report"
2510
  msgstr ""
2511
 
2512
  #: adminpages/reports/login.php:84 adminpages/reports/login.php:66
2513
+ #: adminpages/reports/login.php:68 adminpages/reports/login.php:84
2514
  msgid "All Users"
2515
  msgstr ""
2516
 
2517
  #: adminpages/reports/login.php:164 adminpages/reports/login.php:146
2518
+ #: adminpages/reports/login.php:148 adminpages/reports/login.php:164
2519
  msgid "Last Visit"
2520
  msgstr ""
2521
 
2522
  #: adminpages/reports/login.php:165 adminpages/reports/login.php:27
2523
  #: adminpages/reports/login.php:28 adminpages/reports/login.php:147
2524
+ #: adminpages/reports/login.php:149 adminpages/reports/login.php:165
2525
  msgid "Visits This Month"
2526
  msgstr ""
2527
 
2528
  #: adminpages/reports/login.php:166 adminpages/reports/login.php:148
2529
+ #: adminpages/reports/login.php:150 adminpages/reports/login.php:166
2530
  msgid "Total Visits"
2531
  msgstr ""
2532
 
2533
  #: adminpages/reports/login.php:167 adminpages/reports/login.php:32
2534
  #: adminpages/reports/login.php:33 adminpages/reports/login.php:149
2535
+ #: adminpages/reports/login.php:151 adminpages/reports/login.php:167
2536
  msgid "Views This Month"
2537
  msgstr ""
2538
 
2539
  #: adminpages/reports/login.php:168 adminpages/reports/login.php:150
2540
+ #: adminpages/reports/login.php:152 adminpages/reports/login.php:168
2541
  msgid "Total Views"
2542
  msgstr ""
2543
 
2544
  #: adminpages/reports/login.php:169 adminpages/reports/login.php:151
2545
+ #: adminpages/reports/login.php:153 adminpages/reports/login.php:169
2546
  msgid "Last Login"
2547
  msgstr ""
2548
 
2549
  #: adminpages/reports/login.php:170 adminpages/reports/login.php:37
2550
  #: adminpages/reports/login.php:38 adminpages/reports/login.php:152
2551
+ #: adminpages/reports/login.php:154 adminpages/reports/login.php:170
2552
  msgid "Logins This Month"
2553
  msgstr ""
2554
 
2555
  #: adminpages/reports/login.php:171 adminpages/reports/login.php:153
2556
+ #: adminpages/reports/login.php:155 adminpages/reports/login.php:171
2557
  msgid "Total Logins"
2558
  msgstr ""
2559
 
2560
  #: adminpages/reports/memberships.php:18
2561
+ #: adminpages/reports/memberships.php:259
2562
  #: adminpages/reports/memberships.php:18
2563
+ #: adminpages/reports/memberships.php:252
2564
+ #: adminpages/reports/memberships.php:259
2565
  #: adminpages/reports/memberships.php:288
2566
  msgid "Membership Stats"
2567
  msgstr ""
2568
 
2569
+ #: adminpages/reports/memberships.php:37 adminpages/reports/memberships.php:37
2570
+ #: adminpages/reports/memberships.php:48
2571
  msgid "Signups"
2572
  msgstr ""
2573
 
2574
+ #: adminpages/reports/memberships.php:38 adminpages/reports/memberships.php:38
2575
+ msgid "All Cancellations"
2576
  msgstr ""
2577
 
2578
  #: adminpages/reports/memberships.php:53 adminpages/reports/sales.php:61
2579
+ #: adminpages/reports/memberships.php:53 adminpages/reports/memberships.php:54
2580
+ #: adminpages/reports/memberships.php:73 adminpages/reports/sales.php:61
2581
  msgid "This Year"
2582
  msgstr ""
2583
 
2584
+ #: adminpages/reports/memberships.php:265 adminpages/reports/sales.php:204
2585
+ #: adminpages/reports/memberships.php:258
2586
+ #: adminpages/reports/memberships.php:265
2587
  #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:187
2588
  #: adminpages/reports/sales.php:195 adminpages/reports/sales.php:196
2589
+ #: adminpages/reports/sales.php:204
2590
  msgid "Daily"
2591
  msgstr ""
2592
 
2593
+ #: adminpages/reports/memberships.php:266 adminpages/reports/sales.php:205
2594
+ #: adminpages/reports/memberships.php:259
2595
+ #: adminpages/reports/memberships.php:266
2596
  #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:188
2597
  #: adminpages/reports/sales.php:196 adminpages/reports/sales.php:197
2598
+ #: adminpages/reports/sales.php:205
2599
  msgid "Monthly"
2600
  msgstr ""
2601
 
2602
+ #: adminpages/reports/memberships.php:267 adminpages/reports/sales.php:206
2603
+ #: adminpages/reports/memberships.php:260
2604
+ #: adminpages/reports/memberships.php:267
2605
  #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:189
2606
  #: adminpages/reports/sales.php:197 adminpages/reports/sales.php:198
2607
+ #: adminpages/reports/sales.php:206
2608
  msgid "Annual"
2609
  msgstr ""
2610
 
2611
+ #: adminpages/reports/memberships.php:270
2612
+ #: adminpages/reports/memberships.php:270
2613
+ msgid "Signups vs. All Cancellations"
2614
+ msgstr ""
2615
+
2616
+ #: adminpages/reports/memberships.php:271
2617
  #: adminpages/reports/memberships.php:263
2618
+ #: adminpages/reports/memberships.php:271
2619
  #: adminpages/reports/memberships.php:299
2620
  msgid "Signups vs. Cancellations"
2621
  msgstr ""
2622
 
2623
+ #: adminpages/reports/memberships.php:272
2624
+ #: adminpages/reports/memberships.php:272
2625
+ msgid "Signups vs. Expirations"
2626
+ msgstr ""
2627
+
2628
+ #: adminpages/reports/memberships.php:277
2629
+ #: adminpages/reports/memberships.php:288 adminpages/reports/sales.php:212
2630
  #: adminpages/reports/sales.php:223 adminpages/membershiplevels.php:545
2631
  #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
2632
  #: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
2633
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
2634
+ #: adminpages/reports/memberships.php:268
2635
+ #: adminpages/reports/memberships.php:277
2636
+ #: adminpages/reports/memberships.php:279
2637
+ #: adminpages/reports/memberships.php:288
2638
  #: adminpages/reports/memberships.php:304
2639
  #: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:195
2640
  #: adminpages/reports/sales.php:203 adminpages/reports/sales.php:204
2641
+ #: adminpages/reports/sales.php:206 adminpages/reports/sales.php:212
2642
+ #: adminpages/reports/sales.php:214 adminpages/reports/sales.php:215
2643
+ #: adminpages/reports/sales.php:223
2644
  msgid "for"
2645
  msgstr ""
2646
 
2647
+ #: adminpages/reports/memberships.php:304 adminpages/reports/sales.php:239
2648
+ #: adminpages/reports/memberships.php:295
2649
+ #: adminpages/reports/memberships.php:304
2650
  #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:222
2651
  #: adminpages/reports/sales.php:230 adminpages/reports/sales.php:231
2652
+ #: adminpages/reports/sales.php:239
2653
  msgid "Generate Report"
2654
  msgstr ""
2655
 
2659
 
2660
  #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:198
2661
  #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:180
2662
+ #: adminpages/reports/sales.php:189 adminpages/reports/sales.php:198
2663
  msgid "Sales and Revenue"
2664
  msgstr ""
2665
 
2666
  #: adminpages/reports/sales.php:45 adminpages/reports/sales.php:210
2667
+ #: adminpages/reports/sales.php:45 adminpages/reports/sales.php:193
2668
+ #: adminpages/reports/sales.php:201 adminpages/reports/sales.php:202
2669
+ #: adminpages/reports/sales.php:210
2670
  msgid "Sales"
2671
  msgstr ""
2672
 
2673
  #: adminpages/reports/sales.php:46 adminpages/reports/sales.php:209
2674
+ #: adminpages/reports/sales.php:46 adminpages/reports/sales.php:192
2675
+ #: adminpages/reports/sales.php:200 adminpages/reports/sales.php:201
2676
+ #: adminpages/reports/sales.php:209
2677
  msgid "Revenue"
2678
  msgstr ""
2679
 
2680
+ #: adminpages/templates/orders-email.php:14
2681
+ #: adminpages/templates/orders-print.php:50
2682
  #: adminpages/templates/orders-email.php:14
2683
  #: adminpages/templates/orders-print.php:50
2684
  msgid "Invoice #: "
2685
  msgstr ""
2686
 
2687
+ #: adminpages/templates/orders-email.php:18
2688
+ #: adminpages/templates/orders-print.php:54
2689
  #: adminpages/templates/orders-email.php:18
2690
  #: adminpages/templates/orders-print.php:54
2691
  msgid "Date:"
2692
  msgstr ""
2693
 
2694
+ #: adminpages/templates/orders-email.php:24
2695
  #: adminpages/templates/orders-email.php:24
2696
  msgid "Bill to:"
2697
  msgstr ""
2698
 
2699
+ #: adminpages/templates/orders-email.php:47
2700
+ #: adminpages/templates/orders-print.php:76
2701
  #: adminpages/templates/orders-email.php:47
2702
  #: adminpages/templates/orders-print.php:76
2703
  msgid "Item"
2705
 
2706
  #: adminpages/templates/orders-email.php:48
2707
  #: adminpages/templates/orders-print.php:77 pages/levels.php:36
2708
+ #: adminpages/templates/orders-email.php:48
2709
+ #: adminpages/templates/orders-print.php:77 pages/levels.php:14
2710
+ #: pages/levels.php:36
2711
  msgid "Price"
2712
  msgstr ""
2713
 
2714
  #: adminpages/templates/orders-email.php:56
2715
  #: adminpages/templates/orders-print.php:85 pages/invoice.php:79
2716
+ #: adminpages/templates/orders-email.php:56
2717
+ #: adminpages/templates/orders-print.php:85 pages/invoice.php:77
2718
+ #: pages/invoice.php:79
2719
  msgid "Subtotal"
2720
  msgstr ""
2721
 
2722
+ #: adminpages/updates.php:11 adminpages/updates.php:11
2723
+ msgid "Updating Paid Memberships Pro"
2724
+ msgstr ""
2725
+
2726
+ #: adminpages/updates.php:18 adminpages/updates.php:18
2727
+ msgid "Updates are processing. This may take a few minutes to complete."
2728
+ msgstr ""
2729
+
2730
+ #: adminpages/updates.php:23 adminpages/updates.php:23
2731
+ msgid "Update complete."
2732
+ msgstr ""
2733
+
2734
+ #: classes/class.memberorder.php:697 classes/class.memberorder.php:553
2735
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2736
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2737
+ #: classes/class.memberorder.php:697 includes/cleanup.php:24
2738
  #, php-format
2739
  msgid ""
2740
  "There was an error canceling the subscription for user with ID=%s. You will "
2771
  #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2772
  #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2773
  #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2774
+ #: classes/gateways/class.pmprogateway_braintree.php:364
2775
+ #: classes/gateways/class.pmprogateway_stripe.php:536 pages/checkout.php:76
2776
+ #: pages/checkout.php:86 pages/checkout.php:616 pages/confirmation.php:52
2777
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2778
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2779
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
2790
  #: classes/class.pmproemail.php:648 classes/class.pmproemail.php:657
2791
  #: classes/gateways/class.pmprogateway_braintree.php:349
2792
  #: classes/gateways/class.pmprogateway_braintree.php:362
2793
+ #: classes/gateways/class.pmprogateway_braintree.php:364
2794
  #: classes/gateways/class.pmprogateway_stripe.php:495
2795
  #: classes/gateways/class.pmprogateway_stripe.php:496
2796
+ #: classes/gateways/class.pmprogateway_stripe.php:506
2797
+ #: classes/gateways/class.pmprogateway_stripe.php:510
2798
+ #: classes/gateways/class.pmprogateway_stripe.php:536 pages/checkout.php:66
2799
  #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2800
  #: pages/checkout.php:76 pages/checkout.php:77 pages/checkout.php:78
2801
+ #: pages/checkout.php:85 pages/checkout.php:86 pages/checkout.php:549
2802
+ #: pages/checkout.php:565 pages/checkout.php:566 pages/checkout.php:573
2803
+ #: pages/checkout.php:594 pages/checkout.php:603 pages/checkout.php:612
2804
+ #: pages/checkout.php:616 pages/confirmation.php:51 pages/confirmation.php:52
2805
  #: pages/invoice.php:32 pages/invoice.php:33
2806
  msgid "Discount Code"
2807
  msgstr ""
2826
  msgid "Member Checkout for %s at %s"
2827
  msgstr ""
2828
 
2829
+ #: classes/class.pmproemail.php:375
 
 
2830
  #, php-format
2831
+ msgid "Your billing information has been updated at %s"
2832
  msgstr ""
2833
 
2834
+ #: classes/class.pmproemail.php:428
 
 
2835
  #, php-format
2836
+ msgid "Billing information has been updated for %s at %s"
2837
  msgstr ""
2838
 
2839
  #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
2937
  msgid "Membership has been cancelled"
2938
  msgstr ""
2939
 
2940
+ #: classes/class.pmproemail.php:848 classes/class.pmproemail.php:848
2941
  msgid "Invoice for Order #: "
2942
  msgstr ""
2943
 
2946
  #: classes/gateways/class.pmprogateway_check.php:193
2947
  #: classes/gateways/class.pmprogateway_cybersource.php:171
2948
  #: classes/gateways/class.pmprogateway_payflowpro.php:164
2949
+ #: classes/gateways/class.pmprogateway_paypal.php:249
2950
  #: classes/gateways/class.pmprogateway.php:55
2951
  #: classes/gateways/class.pmprogateway_authorizenet.php:55
2952
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
2958
  #: classes/gateways/class.pmprogateway_payflowpro.php:164
2959
  #: classes/gateways/class.pmprogateway_paypal.php:27
2960
  #: classes/gateways/class.pmprogateway_paypal.php:247
2961
+ #: classes/gateways/class.pmprogateway_paypal.php:249
2962
  msgid "Unknown error: Authorization failed."
2963
  msgstr ""
2964
 
2968
  #: classes/gateways/class.pmprogateway_authorizenet.php:222
2969
  #: classes/gateways/class.pmprogateway_authorizenet.php:227
2970
  #: classes/gateways/class.pmprogateway_authorizenet.php:244
2971
+ #: classes/gateways/class.pmprogateway_check.php:245
2972
+ #: classes/gateways/class.pmprogateway_check.php:250
2973
+ #: classes/gateways/class.pmprogateway_check.php:268
2974
  #: classes/gateways/class.pmprogateway_cybersource.php:222
2975
  #: classes/gateways/class.pmprogateway_cybersource.php:227
2976
  #: classes/gateways/class.pmprogateway_cybersource.php:245
2977
  #: classes/gateways/class.pmprogateway_payflowpro.php:187
2978
  #: classes/gateways/class.pmprogateway_payflowpro.php:192
2979
+ #: classes/gateways/class.pmprogateway_paypal.php:272
2980
  #: classes/gateways/class.pmprogateway.php:106
2981
  #: classes/gateways/class.pmprogateway.php:111
2982
  #: classes/gateways/class.pmprogateway.php:129
2990
  #: classes/gateways/class.pmprogateway_check.php:116
2991
  #: classes/gateways/class.pmprogateway_check.php:134
2992
  #: classes/gateways/class.pmprogateway_check.php:244
2993
+ #: classes/gateways/class.pmprogateway_check.php:245
2994
  #: classes/gateways/class.pmprogateway_check.php:249
2995
+ #: classes/gateways/class.pmprogateway_check.php:250
2996
  #: classes/gateways/class.pmprogateway_check.php:267
2997
+ #: classes/gateways/class.pmprogateway_check.php:268
2998
  #: classes/gateways/class.pmprogateway_cybersource.php:108
2999
  #: classes/gateways/class.pmprogateway_cybersource.php:113
3000
  #: classes/gateways/class.pmprogateway_cybersource.php:131
3007
  #: classes/gateways/class.pmprogateway_payflowpro.php:192
3008
  #: classes/gateways/class.pmprogateway_paypal.php:50
3009
  #: classes/gateways/class.pmprogateway_paypal.php:270
3010
+ #: classes/gateways/class.pmprogateway_paypal.php:272
3011
  msgid "Unknown error: Payment failed."
3012
  msgstr ""
3013
 
3014
  #: classes/gateways/class.pmprogateway.php:113
3015
  #: classes/gateways/class.pmprogateway_authorizenet.php:228
3016
+ #: classes/gateways/class.pmprogateway_check.php:252
3017
  #: classes/gateways/class.pmprogateway_cybersource.php:229
3018
  #: classes/gateways/class.pmprogateway.php:113
3019
  #: classes/gateways/class.pmprogateway_authorizenet.php:112
3020
  #: classes/gateways/class.pmprogateway_authorizenet.php:228
3021
  #: classes/gateways/class.pmprogateway_check.php:118
3022
  #: classes/gateways/class.pmprogateway_check.php:251
3023
+ #: classes/gateways/class.pmprogateway_check.php:252
3024
  #: classes/gateways/class.pmprogateway_cybersource.php:115
3025
  #: classes/gateways/class.pmprogateway_cybersource.php:229
3026
  msgid ""
3029
  msgstr ""
3030
 
3031
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3032
+ #: paid-memberships-pro.php:132
3033
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3034
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
3035
+ #: paid-memberships-pro.php:130 paid-memberships-pro.php:131
3036
+ #: paid-memberships-pro.php:132
3037
  msgid "Authorize.net"
3038
  msgstr ""
3039
 
3080
  #: classes/gateways/class.pmprogateway_authorizenet.php:793
3081
  #: classes/gateways/class.pmprogateway_authorizenet.php:908
3082
  #: classes/gateways/class.pmprogateway_authorizenet.php:909
3083
+ #: classes/gateways/class.pmprogateway_authorizenet.php:910
3084
  msgid "Could not connect to Authorize.net"
3085
  msgstr ""
3086
 
3087
  #: classes/gateways/class.pmprogateway_braintree.php:76
3088
+ #: paid-memberships-pro.php:133
3089
  #: classes/gateways/class.pmprogateway_braintree.php:63
3090
  #: classes/gateways/class.pmprogateway_braintree.php:76
3091
  #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
3092
+ #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
3093
+ #: paid-memberships-pro.php:133
3094
  msgid "Braintree Payments"
3095
  msgstr ""
3096
 
3136
  msgstr ""
3137
 
3138
  #: classes/gateways/class.pmprogateway_braintree.php:169
3139
+ #: classes/gateways/class.pmprogateway_stripe.php:214
3140
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
3141
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
3142
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
3146
  #: classes/gateways/class.pmprogateway_stripe.php:181
3147
  #: classes/gateways/class.pmprogateway_stripe.php:182
3148
  #: classes/gateways/class.pmprogateway_stripe.php:192
3149
+ #: classes/gateways/class.pmprogateway_stripe.php:214
3150
  msgid "Web Hook URL"
3151
  msgstr ""
3152
 
3158
  msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
3159
  msgstr ""
3160
 
3161
+ #: classes/gateways/class.pmprogateway_braintree.php:285
3162
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:503
3163
  #: classes/gateways/class.pmprogateway_braintree.php:270
3164
  #: classes/gateways/class.pmprogateway_braintree.php:283
3165
+ #: classes/gateways/class.pmprogateway_braintree.php:285
3166
  #: classes/gateways/class.pmprogateway_stripe.php:387
3167
  #: classes/gateways/class.pmprogateway_stripe.php:388
3168
+ #: classes/gateways/class.pmprogateway_stripe.php:398
3169
+ #: classes/gateways/class.pmprogateway_stripe.php:402
3170
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:476
3171
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3172
+ #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
3173
+ #: pages/checkout.php:503
3174
  msgid "Payment Information"
3175
  msgstr ""
3176
 
3177
+ #: classes/gateways/class.pmprogateway_braintree.php:285
3178
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:504
3179
  #: classes/gateways/class.pmprogateway_braintree.php:270
3180
  #: classes/gateways/class.pmprogateway_braintree.php:283
3181
+ #: classes/gateways/class.pmprogateway_braintree.php:285
3182
  #: classes/gateways/class.pmprogateway_stripe.php:387
3183
  #: classes/gateways/class.pmprogateway_stripe.php:388
3184
+ #: classes/gateways/class.pmprogateway_stripe.php:398
3185
+ #: classes/gateways/class.pmprogateway_stripe.php:402
3186
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:476
3187
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3188
+ #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
3189
+ #: pages/checkout.php:504
3190
  #, php-format
3191
  msgid "We Accept %s"
3192
  msgstr ""
3193
 
3194
+ #: classes/gateways/class.pmprogateway_braintree.php:318
3195
+ #: classes/gateways/class.pmprogateway_stripe.php:490 pages/billing.php:260
3196
+ #: pages/checkout.php:570
3197
  #: classes/gateways/class.pmprogateway_braintree.php:303
3198
  #: classes/gateways/class.pmprogateway_braintree.php:316
3199
+ #: classes/gateways/class.pmprogateway_braintree.php:318
3200
  #: classes/gateways/class.pmprogateway_stripe.php:449
3201
  #: classes/gateways/class.pmprogateway_stripe.php:450
3202
+ #: classes/gateways/class.pmprogateway_stripe.php:460
3203
+ #: classes/gateways/class.pmprogateway_stripe.php:464
3204
+ #: classes/gateways/class.pmprogateway_stripe.php:490 pages/billing.php:244
3205
+ #: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
3206
+ #: pages/checkout.php:503 pages/checkout.php:519 pages/checkout.php:520
3207
+ #: pages/checkout.php:527 pages/checkout.php:548 pages/checkout.php:557
3208
+ #: pages/checkout.php:566 pages/checkout.php:570
3209
  msgid "Card Number"
3210
  msgstr ""
3211
 
3212
+ #: classes/gateways/class.pmprogateway_braintree.php:355
3213
+ #: classes/gateways/class.pmprogateway_stripe.php:527 pages/billing.php:297
3214
+ #: pages/checkout.php:607
3215
  #: classes/gateways/class.pmprogateway_braintree.php:340
3216
  #: classes/gateways/class.pmprogateway_braintree.php:353
3217
+ #: classes/gateways/class.pmprogateway_braintree.php:355
3218
  #: classes/gateways/class.pmprogateway_stripe.php:486
3219
  #: classes/gateways/class.pmprogateway_stripe.php:487
3220
+ #: classes/gateways/class.pmprogateway_stripe.php:497
3221
+ #: classes/gateways/class.pmprogateway_stripe.php:501
3222
+ #: classes/gateways/class.pmprogateway_stripe.php:527 pages/billing.php:281
3223
+ #: pages/billing.php:285 pages/billing.php:294 pages/billing.php:297
3224
+ #: pages/checkout.php:540 pages/checkout.php:556 pages/checkout.php:557
3225
+ #: pages/checkout.php:564 pages/checkout.php:585 pages/checkout.php:594
3226
+ #: pages/checkout.php:603 pages/checkout.php:607
3227
  msgid "CVV"
3228
  msgstr ""
3229
 
3230
+ #: classes/gateways/class.pmprogateway_braintree.php:356
3231
+ #: classes/gateways/class.pmprogateway_stripe.php:528 pages/billing.php:298
3232
+ #: pages/checkout.php:608
3233
  #: classes/gateways/class.pmprogateway_braintree.php:341
3234
  #: classes/gateways/class.pmprogateway_braintree.php:354
3235
+ #: classes/gateways/class.pmprogateway_braintree.php:356
3236
  #: classes/gateways/class.pmprogateway_stripe.php:487
3237
  #: classes/gateways/class.pmprogateway_stripe.php:488
3238
+ #: classes/gateways/class.pmprogateway_stripe.php:498
3239
+ #: classes/gateways/class.pmprogateway_stripe.php:502
3240
+ #: classes/gateways/class.pmprogateway_stripe.php:528 pages/billing.php:282
3241
+ #: pages/billing.php:286 pages/billing.php:295 pages/billing.php:298
3242
+ #: pages/checkout.php:541 pages/checkout.php:557 pages/checkout.php:558
3243
+ #: pages/checkout.php:565 pages/checkout.php:586 pages/checkout.php:595
3244
+ #: pages/checkout.php:604 pages/checkout.php:608
3245
  msgid "what's this?"
3246
  msgstr ""
3247
 
3248
+ #: classes/gateways/class.pmprogateway_braintree.php:366
3249
+ #: classes/gateways/class.pmprogateway_stripe.php:538 pages/checkout.php:88
3250
+ #: pages/checkout.php:618
3251
  #: classes/gateways/class.pmprogateway_braintree.php:351
3252
  #: classes/gateways/class.pmprogateway_braintree.php:364
3253
+ #: classes/gateways/class.pmprogateway_braintree.php:366
3254
  #: classes/gateways/class.pmprogateway_stripe.php:497
3255
  #: classes/gateways/class.pmprogateway_stripe.php:498
3256
+ #: classes/gateways/class.pmprogateway_stripe.php:508
3257
+ #: classes/gateways/class.pmprogateway_stripe.php:512
3258
+ #: classes/gateways/class.pmprogateway_stripe.php:538 pages/checkout.php:78
3259
  #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3260
+ #: pages/checkout.php:88 pages/checkout.php:551 pages/checkout.php:567
3261
+ #: pages/checkout.php:568 pages/checkout.php:575 pages/checkout.php:596
3262
+ #: pages/checkout.php:605 pages/checkout.php:614 pages/checkout.php:618
3263
  msgid "Apply"
3264
  msgstr ""
3265
 
3266
+ #: classes/gateways/class.pmprogateway_braintree.php:421
3267
+ #: classes/gateways/class.pmprogateway_stripe.php:1068
3268
  #: classes/gateways/class.pmprogateway_braintree.php:61
3269
  #: classes/gateways/class.pmprogateway_braintree.php:406
3270
  #: classes/gateways/class.pmprogateway_braintree.php:419
3271
+ #: classes/gateways/class.pmprogateway_braintree.php:421
3272
  #: classes/gateways/class.pmprogateway_stripe.php:53
3273
  #: classes/gateways/class.pmprogateway_stripe.php:1011
3274
  #: classes/gateways/class.pmprogateway_stripe.php:1025
3275
  #: classes/gateways/class.pmprogateway_stripe.php:1026
3276
  #: classes/gateways/class.pmprogateway_stripe.php:1036
3277
+ #: classes/gateways/class.pmprogateway_stripe.php:1040
3278
+ #: classes/gateways/class.pmprogateway_stripe.php:1068
3279
  msgid "Unknown error: Initial payment failed."
3280
  msgstr ""
3281
 
3282
+ #: classes/gateways/class.pmprogateway_braintree.php:480
3283
  #: classes/gateways/class.pmprogateway_braintree.php:120
3284
  #: classes/gateways/class.pmprogateway_braintree.php:465
3285
  #: classes/gateways/class.pmprogateway_braintree.php:478
3286
+ #: classes/gateways/class.pmprogateway_braintree.php:480
3287
  msgid "Error during settlement:"
3288
  msgstr ""
3289
 
3290
+ #: classes/gateways/class.pmprogateway_braintree.php:489
3291
  #: classes/gateways/class.pmprogateway_braintree.php:129
3292
  #: classes/gateways/class.pmprogateway_braintree.php:474
3293
  #: classes/gateways/class.pmprogateway_braintree.php:487
3294
+ #: classes/gateways/class.pmprogateway_braintree.php:489
3295
  msgid "Error during charge:"
3296
  msgstr ""
3297
 
3298
+ #: classes/gateways/class.pmprogateway_braintree.php:581
3299
  #: classes/gateways/class.pmprogateway_braintree.php:198
3300
  #: classes/gateways/class.pmprogateway_braintree.php:221
3301
  #: classes/gateways/class.pmprogateway_braintree.php:566
3302
  #: classes/gateways/class.pmprogateway_braintree.php:579
3303
+ #: classes/gateways/class.pmprogateway_braintree.php:581
3304
  msgid "Failed to update customer."
3305
  msgstr ""
3306
 
3307
+ #: classes/gateways/class.pmprogateway_braintree.php:629
3308
  #: classes/gateways/class.pmprogateway_braintree.php:246
3309
  #: classes/gateways/class.pmprogateway_braintree.php:269
3310
  #: classes/gateways/class.pmprogateway_braintree.php:614
3311
  #: classes/gateways/class.pmprogateway_braintree.php:627
3312
+ #: classes/gateways/class.pmprogateway_braintree.php:629
3313
  msgid "Failed to create customer."
3314
  msgstr ""
3315
 
3316
+ #: classes/gateways/class.pmprogateway_braintree.php:636
3317
  #: classes/gateways/class.pmprogateway_braintree.php:253
3318
  #: classes/gateways/class.pmprogateway_braintree.php:276
3319
  #: classes/gateways/class.pmprogateway_braintree.php:621
3320
  #: classes/gateways/class.pmprogateway_braintree.php:634
3321
+ #: classes/gateways/class.pmprogateway_braintree.php:636
3322
  msgid "Error creating customer record with Braintree:"
3323
  msgstr ""
3324
 
3325
+ #: classes/gateways/class.pmprogateway_braintree.php:736
3326
  #: classes/gateways/class.pmprogateway_braintree.php:344
3327
  #: classes/gateways/class.pmprogateway_braintree.php:345
3328
  #: classes/gateways/class.pmprogateway_braintree.php:376
3329
  #: classes/gateways/class.pmprogateway_braintree.php:721
3330
  #: classes/gateways/class.pmprogateway_braintree.php:734
3331
+ #: classes/gateways/class.pmprogateway_braintree.php:736
3332
  msgid "Error subscribing customer to plan with Braintree:"
3333
  msgstr ""
3334
 
3335
+ #: classes/gateways/class.pmprogateway_braintree.php:751
3336
  #: classes/gateways/class.pmprogateway_braintree.php:359
3337
  #: classes/gateways/class.pmprogateway_braintree.php:360
3338
  #: classes/gateways/class.pmprogateway_braintree.php:391
3339
  #: classes/gateways/class.pmprogateway_braintree.php:736
3340
  #: classes/gateways/class.pmprogateway_braintree.php:749
3341
+ #: classes/gateways/class.pmprogateway_braintree.php:751
3342
  msgid "Failed to subscribe with Braintree:"
3343
  msgstr ""
3344
 
3345
+ #: classes/gateways/class.pmprogateway_braintree.php:789
3346
+ #: classes/gateways/class.pmprogateway_braintree.php:802
3347
+ #: classes/gateways/class.pmprogateway_braintree.php:809
3348
  #: classes/gateways/class.pmprogateway_braintree.php:397
3349
  #: classes/gateways/class.pmprogateway_braintree.php:398
3350
  #: classes/gateways/class.pmprogateway_braintree.php:410
3356
  #: classes/gateways/class.pmprogateway_braintree.php:449
3357
  #: classes/gateways/class.pmprogateway_braintree.php:774
3358
  #: classes/gateways/class.pmprogateway_braintree.php:787
3359
+ #: classes/gateways/class.pmprogateway_braintree.php:789
3360
  #: classes/gateways/class.pmprogateway_braintree.php:794
3361
  #: classes/gateways/class.pmprogateway_braintree.php:800
3362
+ #: classes/gateways/class.pmprogateway_braintree.php:802
3363
  #: classes/gateways/class.pmprogateway_braintree.php:807
3364
+ #: classes/gateways/class.pmprogateway_braintree.php:809
3365
  #: classes/gateways/class.pmprogateway_stripe.php:343
3366
  #: classes/gateways/class.pmprogateway_stripe.php:344
3367
  #: classes/gateways/class.pmprogateway_stripe.php:351
3375
  msgstr ""
3376
 
3377
  #: classes/gateways/class.pmprogateway_check.php:48
3378
+ #: paid-memberships-pro.php:126 adminpages/orders.php:399
3379
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3380
  #: adminpages/paymentsettings.php:159
3381
  #: classes/gateways/class.pmprogateway_check.php:48
3382
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:117
3383
+ #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3384
+ #: paid-memberships-pro.php:126
3385
  msgid "Pay by Check"
3386
  msgstr ""
3387
 
3457
  msgstr ""
3458
 
3459
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3460
+ #: pages/checkout.php:193 adminpages/paymentsettings.php:219
3461
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3462
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3463
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
3464
+ #: pages/checkout.php:189 pages/checkout.php:191 pages/checkout.php:193
3465
  msgid "Password"
3466
  msgstr ""
3467
 
3479
  msgstr ""
3480
 
3481
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3482
+ #: classes/gateways/class.pmprogateway_paypal.php:279
3483
  #: classes/gateways/class.pmprogateway_payflowpro.php:57
3484
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3485
  #: classes/gateways/class.pmprogateway_paypal.php:57
3486
  #: classes/gateways/class.pmprogateway_paypal.php:277
3487
+ #: classes/gateways/class.pmprogateway_paypal.php:279
3488
  msgid ""
3489
  "A partial payment was made that we could not refund. Please contact the site "
3490
  "owner immediately to correct this."
3491
  msgstr ""
3492
 
3493
  #: classes/gateways/class.pmprogateway_paypal.php:57
3494
+ #: paid-memberships-pro.php:129
3495
  #: classes/gateways/class.pmprogateway_paypal.php:57
3496
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
3497
+ #: paid-memberships-pro.php:127 paid-memberships-pro.php:128
3498
+ #: paid-memberships-pro.php:129
3499
  msgid "PayPal Website Payments Pro"
3500
  msgstr ""
3501
 
3540
  #: classes/gateways/class.pmprogateway_paypal.php:131
3541
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3542
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3543
+ #: classes/gateways/class.pmprogateway_twocheckout.php:119
3544
  #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
3545
  #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
3546
  #: adminpages/paymentsettings.php:336
3549
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3550
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3551
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
3552
+ #: classes/gateways/class.pmprogateway_twocheckout.php:119
3553
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3554
  msgid "API Username"
3555
  msgstr ""
3557
  #: classes/gateways/class.pmprogateway_paypal.php:139
3558
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3559
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3560
+ #: classes/gateways/class.pmprogateway_twocheckout.php:128
3561
  #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
3562
  #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
3563
  #: adminpages/paymentsettings.php:344
3566
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3567
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3568
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3569
+ #: classes/gateways/class.pmprogateway_twocheckout.php:128
3570
  #: classes/gateways/class.pmprogateway_twocheckout.php:130
3571
  msgid "API Password"
3572
  msgstr ""
3605
  #: classes/gateways/class.pmprogateway_paypal.php:178
3606
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3607
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3608
+ #: pages/checkout.php:302 classes/gateways/class.pmprogateway_paypal.php:178
3609
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3610
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3611
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3612
  #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3613
+ #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:309
3614
+ #: pages/checkout.php:675 pages/checkout.php:682 pages/checkout.php:685
3615
+ #: pages/checkout.php:701
3616
  msgid "Check Out with PayPal"
3617
  msgstr ""
3618
 
3619
  #: classes/gateways/class.pmprogateway_paypal.php:184
3620
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3621
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3622
+ #: pages/checkout.php:728 classes/gateways/class.pmprogateway_paypal.php:184
3623
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3624
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3625
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3626
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3627
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3628
+ #: pages/checkout.php:722 pages/checkout.php:728
3629
  msgid "Submit and Check Out"
3630
  msgstr ""
3631
 
3632
  #: classes/gateways/class.pmprogateway_paypal.php:184
3633
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3634
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3635
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
3636
+ #: pages/checkout.php:728 classes/gateways/class.pmprogateway_paypal.php:184
3637
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3638
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3639
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3640
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
3641
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
3642
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3643
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3644
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3645
+ #: pages/checkout.php:722 pages/checkout.php:728
3646
  msgid "Submit and Confirm"
3647
  msgstr ""
3648
 
3649
+ #: classes/gateways/class.pmprogateway_paypal.php:607
3650
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:752
3651
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3652
  #: classes/gateways/class.pmprogateway_paypal.php:385
3653
  #: classes/gateways/class.pmprogateway_paypal.php:605
3654
+ #: classes/gateways/class.pmprogateway_paypal.php:607
3655
  #: classes/gateways/class.pmprogateway_paypalexpress.php:301
3656
  #: classes/gateways/class.pmprogateway_paypalexpress.php:303
3657
  #: classes/gateways/class.pmprogateway_paypalexpress.php:305
3658
  #: classes/gateways/class.pmprogateway_paypalexpress.php:731
3659
  #: classes/gateways/class.pmprogateway_paypalexpress.php:740
3660
  #: classes/gateways/class.pmprogateway_paypalexpress.php:750
3661
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:752
3662
  #: classes/gateways/class.pmprogateway_paypalstandard.php:216
3663
  #: classes/gateways/class.pmprogateway_paypalstandard.php:220
3664
  #: classes/gateways/class.pmprogateway_paypalstandard.php:230
3670
  msgstr ""
3671
 
3672
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3673
+ #: paid-memberships-pro.php:128
3674
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3675
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3676
  #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3677
+ #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
3678
+ #: paid-memberships-pro.php:128
3679
  msgid "PayPal Express"
3680
  msgstr ""
3681
 
3703
  msgstr ""
3704
 
3705
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3706
+ #: paid-memberships-pro.php:131
3707
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3708
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
3709
+ #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
3710
+ #: paid-memberships-pro.php:131
3711
  msgid "PayPal Standard"
3712
  msgstr ""
3713
 
3718
  "settings."
3719
  msgstr ""
3720
 
3721
+ #: classes/gateways/class.pmprogateway_stripe.php:51
3722
+ #: classes/gateways/class.pmprogateway_stripe.php:51
3723
+ #, php-format
3724
+ msgid ""
3725
+ "The %s gateway depends on the %s PHP extension. Please enable it, or ask "
3726
+ "your hosting provider to enable it"
3727
+ msgstr ""
3728
+
3729
+ #: classes/gateways/class.pmprogateway_stripe.php:126
3730
+ #: paid-memberships-pro.php:127
3731
  #: classes/gateways/class.pmprogateway_stripe.php:93
3732
  #: classes/gateways/class.pmprogateway_stripe.php:94
3733
  #: classes/gateways/class.pmprogateway_stripe.php:104
3734
+ #: classes/gateways/class.pmprogateway_stripe.php:126
3735
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3736
+ #: paid-memberships-pro.php:125 paid-memberships-pro.php:126
3737
+ #: paid-memberships-pro.php:127
3738
  msgid "Stripe"
3739
  msgstr ""
3740
 
3741
+ #: classes/gateways/class.pmprogateway_stripe.php:181
3742
  #: classes/gateways/class.pmprogateway_stripe.php:148
3743
  #: classes/gateways/class.pmprogateway_stripe.php:149
3744
  #: classes/gateways/class.pmprogateway_stripe.php:159
3745
+ #: classes/gateways/class.pmprogateway_stripe.php:181
3746
  msgid "Stripe Settings"
3747
  msgstr ""
3748
 
3749
+ #: classes/gateways/class.pmprogateway_stripe.php:186
3750
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3751
  #: adminpages/paymentsettings.php:286
3752
  #: classes/gateways/class.pmprogateway_stripe.php:153
3753
  #: classes/gateways/class.pmprogateway_stripe.php:154
3754
  #: classes/gateways/class.pmprogateway_stripe.php:164
3755
+ #: classes/gateways/class.pmprogateway_stripe.php:186
3756
  msgid "Secret Key"
3757
  msgstr ""
3758
 
3759
+ #: classes/gateways/class.pmprogateway_stripe.php:194
3760
  #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3761
  #: adminpages/paymentsettings.php:294
3762
  #: classes/gateways/class.pmprogateway_stripe.php:161
3763
  #: classes/gateways/class.pmprogateway_stripe.php:162
3764
  #: classes/gateways/class.pmprogateway_stripe.php:172
3765
+ #: classes/gateways/class.pmprogateway_stripe.php:194
3766
  msgid "Publishable Key"
3767
  msgstr ""
3768
 
3769
+ #: classes/gateways/class.pmprogateway_stripe.php:202
3770
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3771
  #: adminpages/paymentsettings.php:432
3772
  #: classes/gateways/class.pmprogateway_stripe.php:169
3773
  #: classes/gateways/class.pmprogateway_stripe.php:170
3774
  #: classes/gateways/class.pmprogateway_stripe.php:180
3775
+ #: classes/gateways/class.pmprogateway_stripe.php:202
3776
  msgid "Show Billing Address Fields"
3777
  msgstr ""
3778
 
3779
+ #: classes/gateways/class.pmprogateway_stripe.php:209
3780
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3781
  #: classes/gateways/class.pmprogateway_stripe.php:176
3782
  #: classes/gateways/class.pmprogateway_stripe.php:177
3783
  #: classes/gateways/class.pmprogateway_stripe.php:187
3784
+ #: classes/gateways/class.pmprogateway_stripe.php:209
3785
  msgid ""
3786
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3787
  "the checkout page.<br /><strong>If No, make sure you disable address "
3788
  "verification in the Stripe dashboard settings.</strong>"
3789
  msgstr ""
3790
 
3791
+ #: classes/gateways/class.pmprogateway_stripe.php:217
3792
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3793
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3794
  #: classes/gateways/class.pmprogateway_stripe.php:184
3795
  #: classes/gateways/class.pmprogateway_stripe.php:185
3796
  #: classes/gateways/class.pmprogateway_stripe.php:195
3797
+ #: classes/gateways/class.pmprogateway_stripe.php:217
3798
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3799
  msgstr ""
3800
 
3801
+ #: classes/gateways/class.pmprogateway_stripe.php:608
3802
  #: classes/gateways/class.pmprogateway_stripe.php:567
3803
  #: classes/gateways/class.pmprogateway_stripe.php:568
3804
  #: classes/gateways/class.pmprogateway_stripe.php:578
3805
+ #: classes/gateways/class.pmprogateway_stripe.php:582
3806
+ #: classes/gateways/class.pmprogateway_stripe.php:608
3807
  msgid "Subscription Updates"
3808
  msgstr ""
3809
 
3810
+ #: classes/gateways/class.pmprogateway_stripe.php:612
3811
  #: classes/gateways/class.pmprogateway_stripe.php:571
3812
  #: classes/gateways/class.pmprogateway_stripe.php:572
3813
  #: classes/gateways/class.pmprogateway_stripe.php:582
3814
+ #: classes/gateways/class.pmprogateway_stripe.php:586
3815
+ #: classes/gateways/class.pmprogateway_stripe.php:612
3816
  msgid ""
3817
  "Subscription updates, allow you to change the member's subscription values "
3818
  "at predefined times. Be sure to click Update Profile after making changes."
3819
  msgstr ""
3820
 
3821
+ #: classes/gateways/class.pmprogateway_stripe.php:614
3822
  #: classes/gateways/class.pmprogateway_stripe.php:573
3823
  #: classes/gateways/class.pmprogateway_stripe.php:574
3824
  #: classes/gateways/class.pmprogateway_stripe.php:584
3825
+ #: classes/gateways/class.pmprogateway_stripe.php:588
3826
+ #: classes/gateways/class.pmprogateway_stripe.php:614
3827
  msgid ""
3828
  "Subscription updates, allow you to change the member's subscription values "
3829
  "at predefined times. Be sure to click Update User after making changes."
3830
  msgstr ""
3831
 
3832
+ #: classes/gateways/class.pmprogateway_stripe.php:619 pages/billing.php:343
3833
  #: classes/gateways/class.pmprogateway_stripe.php:578
3834
  #: classes/gateways/class.pmprogateway_stripe.php:579
3835
+ #: classes/gateways/class.pmprogateway_stripe.php:589
3836
+ #: classes/gateways/class.pmprogateway_stripe.php:593
3837
+ #: classes/gateways/class.pmprogateway_stripe.php:619 pages/billing.php:294
3838
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
3839
+ #: pages/billing.php:341 pages/billing.php:343
3840
  msgid "Update"
3841
  msgstr ""
3842
 
3843
+ #: classes/gateways/class.pmprogateway_stripe.php:812
3844
  #: classes/gateways/class.pmprogateway_stripe.php:769
3845
  #: classes/gateways/class.pmprogateway_stripe.php:770
3846
  #: classes/gateways/class.pmprogateway_stripe.php:780
3847
+ #: classes/gateways/class.pmprogateway_stripe.php:784
3848
+ #: classes/gateways/class.pmprogateway_stripe.php:812
3849
  msgid "Could not cancel the old subscription. Updates have not been processed."
3850
  msgstr ""
3851
 
3852
+ #: classes/gateways/class.pmprogateway_stripe.php:1246
3853
  #: classes/gateways/class.pmprogateway_stripe.php:190
3854
  #: classes/gateways/class.pmprogateway_stripe.php:192
3855
  #: classes/gateways/class.pmprogateway_stripe.php:199
3860
  #: classes/gateways/class.pmprogateway_stripe.php:1203
3861
  #: classes/gateways/class.pmprogateway_stripe.php:1204
3862
  #: classes/gateways/class.pmprogateway_stripe.php:1214
3863
+ #: classes/gateways/class.pmprogateway_stripe.php:1218
3864
+ #: classes/gateways/class.pmprogateway_stripe.php:1246
3865
  msgid "Error creating customer record with Stripe:"
3866
  msgstr ""
3867
 
3868
+ #: classes/gateways/class.pmprogateway_stripe.php:1303
3869
  #: classes/gateways/class.pmprogateway_stripe.php:1275
3870
+ #: classes/gateways/class.pmprogateway_stripe.php:1303
3871
  msgid "Error getting subscription with Stripe:"
3872
  msgstr ""
3873
 
3874
+ #: classes/gateways/class.pmprogateway_stripe.php:1453
3875
  #: classes/gateways/class.pmprogateway_stripe.php:278
3876
  #: classes/gateways/class.pmprogateway_stripe.php:279
3877
  #: classes/gateways/class.pmprogateway_stripe.php:286
3890
  #: classes/gateways/class.pmprogateway_stripe.php:1410
3891
  #: classes/gateways/class.pmprogateway_stripe.php:1411
3892
  #: classes/gateways/class.pmprogateway_stripe.php:1421
3893
+ #: classes/gateways/class.pmprogateway_stripe.php:1425
3894
+ #: classes/gateways/class.pmprogateway_stripe.php:1453
3895
  msgid "Error creating plan with Stripe:"
3896
  msgstr ""
3897
 
3898
+ #: classes/gateways/class.pmprogateway_stripe.php:1484
3899
  #: classes/gateways/class.pmprogateway_stripe.php:294
3900
  #: classes/gateways/class.pmprogateway_stripe.php:295
3901
  #: classes/gateways/class.pmprogateway_stripe.php:302
3909
  #: classes/gateways/class.pmprogateway_stripe.php:1441
3910
  #: classes/gateways/class.pmprogateway_stripe.php:1442
3911
  #: classes/gateways/class.pmprogateway_stripe.php:1452
3912
+ #: classes/gateways/class.pmprogateway_stripe.php:1456
3913
+ #: classes/gateways/class.pmprogateway_stripe.php:1484
3914
  msgid "Error subscribing customer to plan with Stripe:"
3915
  msgstr ""
3916
 
3917
+ #: classes/gateways/class.pmprogateway_stripe.php:1580
3918
  #: classes/gateways/class.pmprogateway_stripe.php:383
3919
  #: classes/gateways/class.pmprogateway_stripe.php:389
3920
  #: classes/gateways/class.pmprogateway_stripe.php:410
3925
  #: classes/gateways/class.pmprogateway_stripe.php:1537
3926
  #: classes/gateways/class.pmprogateway_stripe.php:1538
3927
  #: classes/gateways/class.pmprogateway_stripe.php:1548
3928
+ #: classes/gateways/class.pmprogateway_stripe.php:1552
3929
+ #: classes/gateways/class.pmprogateway_stripe.php:1580
3930
  msgid "Could not cancel old subscription."
3931
  msgstr ""
3932
 
3933
+ #: classes/gateways/class.pmprogateway_stripe.php:1597
3934
  #: classes/gateways/class.pmprogateway_stripe.php:1533
3935
  #: classes/gateways/class.pmprogateway_stripe.php:1534
3936
  #: classes/gateways/class.pmprogateway_stripe.php:1535
3938
  #: classes/gateways/class.pmprogateway_stripe.php:1554
3939
  #: classes/gateways/class.pmprogateway_stripe.php:1555
3940
  #: classes/gateways/class.pmprogateway_stripe.php:1565
3941
+ #: classes/gateways/class.pmprogateway_stripe.php:1569
3942
+ #: classes/gateways/class.pmprogateway_stripe.php:1597
3943
  msgid "Could not find the customer."
3944
  msgstr ""
3945
 
3946
+ #: classes/gateways/class.pmprogateway_twocheckout.php:59
3947
+ #: paid-memberships-pro.php:134
3948
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
3949
+ #: classes/gateways/class.pmprogateway_twocheckout.php:59
3950
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
3951
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3952
+ #: paid-memberships-pro.php:132 paid-memberships-pro.php:133
3953
+ #: paid-memberships-pro.php:134
3954
  msgid "2Checkout"
3955
  msgstr ""
3956
 
3957
+ #: classes/gateways/class.pmprogateway_twocheckout.php:114
3958
  #: classes/gateways/class.pmprogateway_twocheckout.php:108
3959
+ #: classes/gateways/class.pmprogateway_twocheckout.php:114
3960
  #: classes/gateways/class.pmprogateway_twocheckout.php:116
3961
  msgid "2Checkout Settings"
3962
  msgstr ""
3963
 
3964
+ #: classes/gateways/class.pmprogateway_twocheckout.php:123
3965
+ #: classes/gateways/class.pmprogateway_twocheckout.php:123
3966
  #: classes/gateways/class.pmprogateway_twocheckout.php:125
3967
  msgid ""
3968
  "Go to Account &raquo; User Management in 2Checkout and create a user with "
3969
  "API Access and API Updating."
3970
  msgstr ""
3971
 
3972
+ #: classes/gateways/class.pmprogateway_twocheckout.php:132
3973
+ #: classes/gateways/class.pmprogateway_twocheckout.php:132
3974
  #: classes/gateways/class.pmprogateway_twocheckout.php:134
3975
  msgid "Password for the API user created."
3976
  msgstr ""
3977
 
3978
+ #: classes/gateways/class.pmprogateway_twocheckout.php:141
3979
+ #: classes/gateways/class.pmprogateway_twocheckout.php:141
 
 
 
 
 
 
 
 
 
 
 
3980
  #: classes/gateways/class.pmprogateway_twocheckout.php:152
3981
  msgid "Click on the profile icon in 2Checkout to find your Account Number."
3982
  msgstr ""
3983
 
3984
+ #: classes/gateways/class.pmprogateway_twocheckout.php:146
3985
  #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3986
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
3987
+ #: classes/gateways/class.pmprogateway_twocheckout.php:146
3988
  #: classes/gateways/class.pmprogateway_twocheckout.php:157
3989
  msgid "Secret Word"
3990
  msgstr ""
3991
 
3992
+ #: classes/gateways/class.pmprogateway_twocheckout.php:150
3993
+ #: classes/gateways/class.pmprogateway_twocheckout.php:150
3994
  #: classes/gateways/class.pmprogateway_twocheckout.php:161
3995
  msgid ""
3996
  "Go to Account &raquo; Site Management. Look under Checkout Options to find "
3997
  "the Secret Word."
3998
  msgstr ""
3999
 
4000
+ #: classes/gateways/class.pmprogateway_twocheckout.php:155
4001
  #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
4002
  #: adminpages/paymentsettings.php:495
4003
  #: classes/gateways/class.pmprogateway_twocheckout.php:145
4004
+ #: classes/gateways/class.pmprogateway_twocheckout.php:155
4005
  #: classes/gateways/class.pmprogateway_twocheckout.php:166
4006
  msgid "TwoCheckout INS URL"
4007
  msgstr ""
4008
 
4009
+ #: classes/gateways/class.pmprogateway_twocheckout.php:158
4010
+ #: classes/gateways/class.pmprogateway_twocheckout.php:158
4011
  #: classes/gateways/class.pmprogateway_twocheckout.php:169
4012
  msgid ""
4013
  "To fully integrate with 2Checkout, be sure to use the following for your INS "
4014
  "URL and Approved URL"
4015
  msgstr ""
4016
 
4017
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
4018
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
4019
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
4020
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
4021
  msgid "Check Out with 2Checkout"
4022
  msgstr ""
4023
 
4024
+ #: includes/adminpages.php:48 includes/adminpages.php:9
4025
  #: includes/adminpages.php:39 includes/adminpages.php:47
4026
+ #: includes/adminpages.php:48 includes/adminpages.php:93
4027
+ #: includes/adminpages.php:100
4028
  msgid "Memberships"
4029
  msgstr ""
4030
 
4031
+ #: includes/adminpages.php:49 includes/adminpages.php:123
4032
  #: includes/adminpages.php:10 includes/adminpages.php:48
4033
  #: includes/adminpages.php:49 includes/adminpages.php:107
4034
  #: includes/adminpages.php:114 includes/adminpages.php:118
4035
+ #: includes/adminpages.php:123
4036
  msgid "Page Settings"
4037
  msgstr ""
4038
 
4039
+ #: includes/adminpages.php:50 includes/adminpages.php:130
4040
  #: includes/adminpages.php:11 includes/adminpages.php:49
4041
+ #: includes/adminpages.php:50 includes/adminpages.php:54
4042
+ #: includes/adminpages.php:114 includes/adminpages.php:121
4043
+ #: includes/adminpages.php:125 includes/adminpages.php:130
4044
  msgid "Payment Settings"
4045
  msgstr ""
4046
 
4047
+ #: includes/adminpages.php:55 includes/adminpages.php:165
4048
  #: includes/adminpages.php:16 includes/adminpages.php:54
4049
+ #: includes/adminpages.php:55 includes/adminpages.php:79
4050
+ #: includes/adminpages.php:149 includes/adminpages.php:156
4051
+ #: includes/adminpages.php:160 includes/adminpages.php:165
4052
  msgid "Reports"
4053
  msgstr ""
4054
 
4055
+ #: includes/adminpages.php:57 includes/adminpages.php:179
4056
  #: includes/adminpages.php:18 includes/adminpages.php:56
4057
+ #: includes/adminpages.php:57 includes/adminpages.php:89
4058
+ #: includes/adminpages.php:163 includes/adminpages.php:170
4059
+ #: includes/adminpages.php:174 includes/adminpages.php:179
4060
  msgid "Discount Codes"
4061
  msgstr ""
4062
 
4063
+ #: includes/adminpages.php:61 includes/adminpages.php:61
4064
+ msgid "Updates Required"
4065
+ msgstr ""
4066
+
4067
+ #: includes/adminpages.php:109 includes/adminpages.php:100
4068
+ #: includes/adminpages.php:104 includes/adminpages.php:109
4069
  msgid "<span class=\"ab-icon\"></span>Memberships"
4070
  msgstr ""
4071
 
4072
+ #: includes/adminpages.php:274 includes/adminpages.php:261
4073
+ #: includes/adminpages.php:265 includes/adminpages.php:274
4074
  msgid "Docs"
4075
  msgstr ""
4076
 
4077
+ #: includes/adminpages.php:274 includes/adminpages.php:261
4078
+ #: includes/adminpages.php:265 includes/adminpages.php:274
4079
  msgid "View PMPro Documentation"
4080
  msgstr ""
4081
 
4082
+ #: includes/adminpages.php:275 includes/adminpages.php:262
4083
+ #: includes/adminpages.php:266 includes/adminpages.php:275
4084
  msgid "Support"
4085
  msgstr ""
4086
 
4087
+ #: includes/adminpages.php:275 includes/adminpages.php:262
4088
+ #: includes/adminpages.php:266 includes/adminpages.php:275
4089
  msgid "Visit Customer Support Forum"
4090
  msgstr ""
4091
 
4092
+ #: includes/currencies.php:17 includes/currencies.php:87
4093
+ #: includes/currencies.php:7 includes/currencies.php:17
4094
+ #: includes/currencies.php:37 includes/currencies.php:44
4095
+ #: includes/currencies.php:64 includes/currencies.php:68
4096
+ #: includes/currencies.php:75 includes/currencies.php:85
4097
+ #: includes/currencies.php:87
4098
  msgid "US Dollars (&#36;)"
4099
  msgstr ""
4100
 
4101
+ #: includes/currencies.php:19 includes/currencies.php:90
4102
  #: includes/currencies.php:8 includes/currencies.php:9
4103
+ #: includes/currencies.php:19 includes/currencies.php:40
4104
+ #: includes/currencies.php:47 includes/currencies.php:67
4105
+ #: includes/currencies.php:71 includes/currencies.php:78
4106
+ #: includes/currencies.php:88 includes/currencies.php:90
4107
  msgid "Euros (&euro;)"
4108
  msgstr ""
4109
 
4110
+ #: includes/currencies.php:24 includes/currencies.php:89
4111
  #: includes/currencies.php:9 includes/currencies.php:14
4112
+ #: includes/currencies.php:24 includes/currencies.php:39
4113
+ #: includes/currencies.php:46 includes/currencies.php:66
4114
+ #: includes/currencies.php:70 includes/currencies.php:77
4115
+ #: includes/currencies.php:87 includes/currencies.php:89
4116
  msgid "Pounds Sterling (&pound;)"
4117
  msgstr ""
4118
 
4119
+ #: includes/currencies.php:28 includes/currencies.php:28
4120
+ msgid "Argentine Peso (&#36;)"
4121
+ msgstr ""
4122
+
4123
+ #: includes/currencies.php:29 includes/currencies.php:10
4124
+ #: includes/currencies.php:18 includes/currencies.php:28
4125
+ #: includes/currencies.php:29
4126
  msgid "Australian Dollars (&#36;)"
4127
  msgstr ""
4128
 
4129
+ #: includes/currencies.php:31 includes/currencies.php:20
4130
+ #: includes/currencies.php:30 includes/currencies.php:31
4131
  msgid "Brazilian Real (R&#36;)"
4132
  msgstr ""
4133
 
4134
+ #: includes/currencies.php:35 includes/currencies.php:88
4135
  #: includes/currencies.php:12 includes/currencies.php:24
4136
+ #: includes/currencies.php:34 includes/currencies.php:35
4137
  #: includes/currencies.php:38 includes/currencies.php:45
4138
  #: includes/currencies.php:65 includes/currencies.php:69
4139
+ #: includes/currencies.php:76 includes/currencies.php:86
4140
+ #: includes/currencies.php:88
4141
  msgid "Canadian Dollars (&#36;)"
4142
  msgstr ""
4143
 
4144
+ #: includes/currencies.php:36 includes/currencies.php:13
4145
+ #: includes/currencies.php:25 includes/currencies.php:35
4146
+ #: includes/currencies.php:36
4147
  msgid "Chinese Yuan"
4148
  msgstr ""
4149
 
4150
+ #: includes/currencies.php:38 includes/currencies.php:13
4151
  #: includes/currencies.php:14 includes/currencies.php:26
4152
+ #: includes/currencies.php:27 includes/currencies.php:37
4153
+ #: includes/currencies.php:38
4154
  msgid "Czech Koruna"
4155
  msgstr ""
4156
 
4157
+ #: includes/currencies.php:45 includes/currencies.php:14
4158
  #: includes/currencies.php:15 includes/currencies.php:27
4159
+ #: includes/currencies.php:34 includes/currencies.php:44
4160
+ #: includes/currencies.php:45
4161
  msgid "Danish Krone"
4162
  msgstr ""
4163
 
4164
+ #: includes/currencies.php:46 includes/currencies.php:15
4165
  #: includes/currencies.php:16 includes/currencies.php:28
4166
+ #: includes/currencies.php:35 includes/currencies.php:45
4167
+ #: includes/currencies.php:46
4168
  msgid "Hong Kong Dollar (&#36;)"
4169
  msgstr ""
4170
 
4171
+ #: includes/currencies.php:47 includes/currencies.php:16
4172
  #: includes/currencies.php:17 includes/currencies.php:29
4173
+ #: includes/currencies.php:36 includes/currencies.php:46
4174
+ #: includes/currencies.php:47
4175
  msgid "Hungarian Forint"
4176
  msgstr ""
4177
 
4178
+ #: includes/currencies.php:48 includes/currencies.php:18
4179
  #: includes/currencies.php:30 includes/currencies.php:37
4180
+ #: includes/currencies.php:47 includes/currencies.php:48
4181
  msgid "Indian Rupee"
4182
  msgstr ""
4183
 
4184
+ #: includes/currencies.php:49 includes/currencies.php:19
4185
  #: includes/currencies.php:31 includes/currencies.php:38
4186
+ #: includes/currencies.php:48 includes/currencies.php:49
4187
  msgid "Indonesia Rupiah"
4188
  msgstr ""
4189
 
4190
+ #: includes/currencies.php:50 includes/currencies.php:17
4191
  #: includes/currencies.php:20 includes/currencies.php:32
4192
+ #: includes/currencies.php:39 includes/currencies.php:49
4193
+ #: includes/currencies.php:50
4194
  msgid "Israeli Shekel"
4195
  msgstr ""
4196
 
4197
+ #: includes/currencies.php:52 includes/currencies.php:18
4198
  #: includes/currencies.php:21 includes/currencies.php:34
4199
+ #: includes/currencies.php:41 includes/currencies.php:51
4200
+ #: includes/currencies.php:52
4201
  msgid "Japanese Yen (&yen;)"
4202
  msgstr ""
4203
 
4204
+ #: includes/currencies.php:56 includes/currencies.php:19
4205
  #: includes/currencies.php:22 includes/currencies.php:38
4206
+ #: includes/currencies.php:45 includes/currencies.php:55
4207
+ #: includes/currencies.php:56
4208
  msgid "Malaysian Ringgits"
4209
  msgstr ""
4210
 
4211
+ #: includes/currencies.php:57 includes/currencies.php:20
4212
  #: includes/currencies.php:23 includes/currencies.php:39
4213
+ #: includes/currencies.php:46 includes/currencies.php:56
4214
+ #: includes/currencies.php:57
4215
  msgid "Mexican Peso (&#36;)"
4216
  msgstr ""
4217
 
4218
+ #: includes/currencies.php:58 includes/currencies.php:58
4219
+ msgid "Nigerian Naira (&#8358;)"
4220
+ msgstr ""
4221
+
4222
+ #: includes/currencies.php:59 includes/currencies.php:21
4223
  #: includes/currencies.php:24 includes/currencies.php:40
4224
+ #: includes/currencies.php:47 includes/currencies.php:57
4225
+ #: includes/currencies.php:59
4226
  msgid "New Zealand Dollar (&#36;)"
4227
  msgstr ""
4228
 
4229
+ #: includes/currencies.php:60 includes/currencies.php:22
4230
  #: includes/currencies.php:25 includes/currencies.php:41
4231
+ #: includes/currencies.php:48 includes/currencies.php:58
4232
+ #: includes/currencies.php:60
4233
  msgid "Norwegian Krone"
4234
  msgstr ""
4235
 
4236
+ #: includes/currencies.php:61 includes/currencies.php:23
4237
  #: includes/currencies.php:26 includes/currencies.php:42
4238
+ #: includes/currencies.php:49 includes/currencies.php:59
4239
+ #: includes/currencies.php:61
4240
  msgid "Philippine Pesos"
4241
  msgstr ""
4242
 
4243
+ #: includes/currencies.php:62 includes/currencies.php:24
4244
  #: includes/currencies.php:27 includes/currencies.php:43
4245
+ #: includes/currencies.php:50 includes/currencies.php:60
4246
+ #: includes/currencies.php:62
4247
  msgid "Polish Zloty"
4248
  msgstr ""
4249
 
4250
+ #: includes/currencies.php:64 includes/currencies.php:25
4251
  #: includes/currencies.php:28 includes/currencies.php:45
4252
+ #: includes/currencies.php:52 includes/currencies.php:62
4253
+ #: includes/currencies.php:64
4254
  msgid "Singapore Dollar (&#36;)"
4255
  msgstr ""
4256
 
4257
+ #: includes/currencies.php:69 includes/currencies.php:50
4258
+ #: includes/currencies.php:57 includes/currencies.php:67
4259
+ #: includes/currencies.php:69
4260
  msgid "South African Rand (R)"
4261
  msgstr ""
4262
 
4263
+ #: includes/currencies.php:73 includes/currencies.php:30
4264
  #: includes/currencies.php:50 includes/currencies.php:54
4265
+ #: includes/currencies.php:61 includes/currencies.php:71
4266
+ #: includes/currencies.php:73
4267
  msgid "South Korean Won"
4268
  msgstr ""
4269
 
4270
+ #: includes/currencies.php:74 includes/currencies.php:26
4271
  #: includes/currencies.php:31 includes/currencies.php:51
4272
  #: includes/currencies.php:55 includes/currencies.php:62
4273
+ #: includes/currencies.php:72 includes/currencies.php:74
4274
  msgid "Swedish Krona"
4275
  msgstr ""
4276
 
4277
+ #: includes/currencies.php:75 includes/currencies.php:27
4278
  #: includes/currencies.php:32 includes/currencies.php:52
4279
  #: includes/currencies.php:56 includes/currencies.php:63
4280
+ #: includes/currencies.php:73 includes/currencies.php:75
4281
  msgid "Swiss Franc"
4282
  msgstr ""
4283
 
4284
+ #: includes/currencies.php:76 includes/currencies.php:28
4285
  #: includes/currencies.php:33 includes/currencies.php:53
4286
  #: includes/currencies.php:57 includes/currencies.php:64
4287
+ #: includes/currencies.php:74 includes/currencies.php:76
4288
  msgid "Taiwan New Dollars"
4289
  msgstr ""
4290
 
4291
+ #: includes/currencies.php:77 includes/currencies.php:29
4292
  #: includes/currencies.php:34 includes/currencies.php:54
4293
  #: includes/currencies.php:58 includes/currencies.php:65
4294
+ #: includes/currencies.php:75 includes/currencies.php:77
4295
  msgid "Thai Baht"
4296
  msgstr ""
4297
 
4298
+ #: includes/currencies.php:78 includes/currencies.php:35
4299
  #: includes/currencies.php:55 includes/currencies.php:59
4300
+ #: includes/currencies.php:66 includes/currencies.php:76
4301
+ #: includes/currencies.php:78
4302
  msgid "Turkish Lira"
4303
  msgstr ""
4304
 
4305
+ #: includes/currencies.php:79 includes/currencies.php:36
4306
  #: includes/currencies.php:56 includes/currencies.php:60
4307
+ #: includes/currencies.php:67 includes/currencies.php:77
4308
+ #: includes/currencies.php:79
4309
  msgid "Vietnamese Dong"
4310
  msgstr ""
4311
 
4313
  #: includes/functions.php:196 includes/functions.php:200
4314
  #: includes/functions.php:202 includes/functions.php:203
4315
  #: includes/functions.php:204 includes/functions.php:207
4316
+ #: includes/functions.php:243
4317
  #, php-format
4318
  msgid "The price for membership is <strong>%s</strong> now"
4319
  msgstr ""
4321
  #: includes/functions.php:245 includes/functions.php:202
4322
  #: includes/functions.php:204 includes/functions.php:205
4323
  #: includes/functions.php:206 includes/functions.php:209
4324
+ #: includes/functions.php:245
4325
  #, php-format
4326
  msgid "<strong>%s</strong> now"
4327
  msgstr ""
4330
  #: includes/functions.php:205 includes/functions.php:211
4331
  #: includes/functions.php:213 includes/functions.php:214
4332
  #: includes/functions.php:215 includes/functions.php:218
4333
+ #: includes/functions.php:254
4334
  #, php-format
4335
  msgid " and then <strong>%s per %s for %d more %s</strong>."
4336
  msgstr ""
4337
 
4338
+ #: includes/functions.php:258 includes/functions.php:258
4339
  #, php-format
4340
  msgid " and then <strong>%s every %d %s for %d more payments</strong>."
4341
  msgstr ""
4344
  #: includes/functions.php:214 includes/functions.php:220
4345
  #: includes/functions.php:222 includes/functions.php:223
4346
  #: includes/functions.php:224 includes/functions.php:227
4347
+ #: includes/functions.php:263
4348
  #, php-format
4349
  msgid " and then <strong>%s after %d %s</strong>."
4350
  msgstr ""
4352
  #: includes/functions.php:271 includes/functions.php:228
4353
  #: includes/functions.php:229 includes/functions.php:230
4354
  #: includes/functions.php:231 includes/functions.php:235
4355
+ #: includes/functions.php:271
4356
  #, php-format
4357
  msgid "The price for membership is <strong>%s per %s</strong>."
4358
  msgstr ""
4359
 
4360
  #: includes/functions.php:273 includes/functions.php:230
4361
  #: includes/functions.php:233 includes/functions.php:237
4362
+ #: includes/functions.php:273
4363
  #, php-format
4364
  msgid "<strong>%s per %s</strong>."
4365
  msgstr ""
4367
  #: includes/functions.php:278 includes/functions.php:233
4368
  #: includes/functions.php:234 includes/functions.php:235
4369
  #: includes/functions.php:238 includes/functions.php:242
4370
+ #: includes/functions.php:278
4371
  #, php-format
4372
  msgid "The price for membership is <strong>%s every %d %s</strong>."
4373
  msgstr ""
4374
 
4375
  #: includes/functions.php:280 includes/functions.php:237
4376
  #: includes/functions.php:240 includes/functions.php:244
4377
+ #: includes/functions.php:280
4378
  #, php-format
4379
  msgid "<strong>%s every %d %s</strong>."
4380
  msgstr ""
4384
  #: includes/functions.php:238 includes/functions.php:239
4385
  #: includes/functions.php:240 includes/functions.php:242
4386
  #: includes/functions.php:245 includes/functions.php:249
4387
+ #: includes/functions.php:285
4388
  #, php-format
4389
  msgid " and then <strong>%s per %s</strong>."
4390
  msgstr ""
4394
  #: includes/functions.php:242 includes/functions.php:243
4395
  #: includes/functions.php:244 includes/functions.php:246
4396
  #: includes/functions.php:249 includes/functions.php:253
4397
+ #: includes/functions.php:289
4398
  #, php-format
4399
  msgid " and then <strong>%s every %d %s</strong>."
4400
  msgstr ""
4403
  #: includes/functions.php:238 includes/functions.php:249
4404
  #: includes/functions.php:260 includes/functions.php:261
4405
  #: includes/functions.php:262 includes/functions.php:264
4406
+ #: includes/functions.php:267 includes/functions.php:271
4407
+ #: includes/functions.php:307 pages/levels.php:82
4408
  msgid "After your initial payment, your first payment is Free."
4409
  msgstr ""
4410
 
4412
  #: includes/functions.php:242 includes/functions.php:253
4413
  #: includes/functions.php:264 includes/functions.php:265
4414
  #: includes/functions.php:266 includes/functions.php:268
4415
+ #: includes/functions.php:271 includes/functions.php:275
4416
+ #: includes/functions.php:311 pages/levels.php:86
4417
  #, php-format
4418
  msgid "After your initial payment, your first %d payments are Free."
4419
  msgstr ""
4422
  #: includes/functions.php:249 includes/functions.php:260
4423
  #: includes/functions.php:271 includes/functions.php:272
4424
  #: includes/functions.php:273 includes/functions.php:275
4425
+ #: includes/functions.php:278 includes/functions.php:282
4426
+ #: includes/functions.php:318 pages/levels.php:93
4427
  #, php-format
4428
  msgid "After your initial payment, your first payment will cost %s."
4429
  msgstr ""
4432
  #: includes/functions.php:253 includes/functions.php:264
4433
  #: includes/functions.php:275 includes/functions.php:276
4434
  #: includes/functions.php:277 includes/functions.php:279
4435
+ #: includes/functions.php:282 includes/functions.php:286
4436
+ #: includes/functions.php:322 pages/levels.php:97
4437
  #, php-format
4438
  msgid "After your initial payment, your first %d payments will cost %s."
4439
  msgstr ""
4443
  #: includes/functions.php:286 includes/functions.php:287
4444
  #: includes/functions.php:288 includes/functions.php:290
4445
  #: includes/functions.php:293 includes/functions.php:297
4446
+ #: includes/functions.php:333
4447
  #, php-format
4448
  msgid "Customers in %s will be charged %s%% tax."
4449
  msgstr ""
4453
  #: includes/functions.php:300 includes/functions.php:301
4454
  #: includes/functions.php:302 includes/functions.php:304
4455
  #: includes/functions.php:307 includes/functions.php:311
4456
+ #: includes/functions.php:347
4457
  #, php-format
4458
  msgid "Membership expires after %d %s."
4459
  msgstr ""
4464
  #: includes/functions.php:538 includes/functions.php:545
4465
  #: includes/functions.php:569 includes/functions.php:570
4466
  #: includes/functions.php:576 includes/functions.php:592
4467
+ #: includes/functions.php:615 includes/functions.php:694
4468
  msgid "User ID not found."
4469
  msgstr ""
4470
 
4475
  #: includes/functions.php:586 includes/functions.php:587
4476
  #: includes/functions.php:589 includes/functions.php:596
4477
  #: includes/functions.php:612 includes/functions.php:635
4478
+ #: includes/functions.php:714
4479
  msgid "Invalid level."
4480
  msgstr ""
4481
 
4486
  #: includes/functions.php:597 includes/functions.php:598
4487
  #: includes/functions.php:600 includes/functions.php:607
4488
  #: includes/functions.php:623 includes/functions.php:646
4489
+ #: includes/functions.php:725
4490
  msgid "not changing?"
4491
  msgstr ""
4492
 
4509
  #: includes/functions.php:698 includes/functions.php:699
4510
  #: includes/functions.php:700 includes/functions.php:707
4511
  #: includes/functions.php:722 includes/functions.php:723
4512
+ #: includes/functions.php:742 includes/functions.php:746
4513
+ #: includes/functions.php:815 includes/functions.php:839
4514
  msgid "Error interacting with database"
4515
  msgstr ""
4516
 
4528
  #: includes/functions.php:764 includes/functions.php:777
4529
  #: includes/functions.php:778 includes/functions.php:780
4530
  #: includes/functions.php:787 includes/functions.php:803
4531
+ #: includes/functions.php:826 includes/functions.php:881
4532
+ #: includes/functions.php:920
4533
  msgid "Membership level not found."
4534
  msgstr ""
4535
 
4538
  #: includes/functions.php:1142 includes/functions.php:1143
4539
  #: includes/functions.php:1150 includes/functions.php:1157
4540
  #: includes/functions.php:1173 includes/functions.php:1196
4541
+ #: includes/functions.php:1290
4542
  msgid "No code was given to check."
4543
  msgstr ""
4544
 
4550
  #: includes/functions.php:1127 includes/functions.php:1151
4551
  #: includes/functions.php:1152 includes/functions.php:1159
4552
  #: includes/functions.php:1166 includes/functions.php:1182
4553
+ #: includes/functions.php:1205 includes/functions.php:1299
4554
  msgid "The discount code could not be found."
4555
  msgstr ""
4556
 
4562
  #: includes/functions.php:1142 includes/functions.php:1166
4563
  #: includes/functions.php:1167 includes/functions.php:1174
4564
  #: includes/functions.php:1181 includes/functions.php:1197
4565
+ #: includes/functions.php:1220 includes/functions.php:1314
4566
  #, php-format
4567
  msgid "This discount code goes into effect on %s."
4568
  msgstr ""
4575
  #: includes/functions.php:1149 includes/functions.php:1173
4576
  #: includes/functions.php:1174 includes/functions.php:1181
4577
  #: includes/functions.php:1188 includes/functions.php:1204
4578
+ #: includes/functions.php:1227 includes/functions.php:1321
4579
  #, php-format
4580
  msgid "This discount code expired on %s."
4581
  msgstr ""
4588
  #: includes/functions.php:1159 includes/functions.php:1183
4589
  #: includes/functions.php:1184 includes/functions.php:1191
4590
  #: includes/functions.php:1198 includes/functions.php:1214
4591
+ #: includes/functions.php:1237 includes/functions.php:1331
4592
  msgid "This discount code is no longer valid."
4593
  msgstr ""
4594
 
4600
  #: includes/functions.php:1196 includes/functions.php:1197
4601
  #: includes/functions.php:1204 includes/functions.php:1211
4602
  #: includes/functions.php:1227 includes/functions.php:1250
4603
+ #: includes/functions.php:1344
4604
  msgid "This discount code does not apply to this membership level."
4605
  msgstr ""
4606
 
4612
  #: includes/functions.php:1198 includes/functions.php:1222
4613
  #: includes/functions.php:1223 includes/functions.php:1230
4614
  #: includes/functions.php:1237 includes/functions.php:1253
4615
+ #: includes/functions.php:1276 includes/functions.php:1370
4616
  msgid "This discount code is okay."
4617
  msgstr ""
4618
 
4619
+ #: includes/functions.php:1397 includes/functions.php:1134
4620
  #: includes/functions.php:1156 includes/functions.php:1172
4621
  #: includes/functions.php:1183 includes/functions.php:1186
4622
  #: includes/functions.php:1196 includes/functions.php:1205
4624
  #: includes/functions.php:1247 includes/functions.php:1248
4625
  #: includes/functions.php:1255 includes/functions.php:1262
4626
  #: includes/functions.php:1278 includes/functions.php:1301
4627
+ #: includes/functions.php:1395 includes/functions.php:1397
4628
  msgid "and"
4629
  msgstr ""
4630
 
4631
+ #: includes/functions.php:1624 includes/functions.php:1319
4632
  #: includes/functions.php:1341 includes/functions.php:1361
4633
  #: includes/functions.php:1372 includes/functions.php:1375
4634
  #: includes/functions.php:1385 includes/functions.php:1394
4636
  #: includes/functions.php:1436 includes/functions.php:1437
4637
  #: includes/functions.php:1450 includes/functions.php:1457
4638
  #: includes/functions.php:1473 includes/functions.php:1496
4639
+ #: includes/functions.php:1501 includes/functions.php:1620
4640
+ #: includes/functions.php:1624
4641
  msgid "Sign Up for !!name!! Now"
4642
  msgstr ""
4643
 
4644
+ #: includes/functions.php:1630 includes/functions.php:1325
4645
  #: includes/functions.php:1347 includes/functions.php:1367
4646
  #: includes/functions.php:1378 includes/functions.php:1381
4647
  #: includes/functions.php:1391 includes/functions.php:1400
4649
  #: includes/functions.php:1442 includes/functions.php:1443
4650
  #: includes/functions.php:1456 includes/functions.php:1463
4651
  #: includes/functions.php:1479 includes/functions.php:1502
4652
+ #: includes/functions.php:1507 includes/functions.php:1626
4653
+ #: includes/functions.php:1630
4654
  msgid "Please specify a level id."
4655
  msgstr ""
4656
 
4657
  #: includes/init.php:253 includes/profile.php:39 includes/init.php:229
4658
  #: includes/init.php:232 includes/init.php:233 includes/init.php:235
4659
+ #: includes/init.php:237 includes/init.php:245 includes/init.php:253
4660
+ #: includes/profile.php:37 includes/profile.php:39
4661
  msgid "None"
4662
  msgstr ""
4663
 
4761
  msgid "Years"
4762
  msgstr ""
4763
 
4764
+ #: includes/metaboxes.php:39 includes/metaboxes.php:38
4765
+ #: includes/metaboxes.php:39
4766
  msgid ""
4767
  "This post is already protected for this level because it is within a "
4768
  "category that requires membership."
4769
  msgstr ""
4770
 
4771
+ #: includes/metaboxes.php:104 includes/metaboxes.php:105
4772
  #: includes/metaboxes.php:99 includes/metaboxes.php:100
4773
+ #: includes/metaboxes.php:104 includes/metaboxes.php:105
4774
  msgid "Require Membership"
4775
  msgstr ""
4776
 
4777
+ #: includes/metaboxes.php:135 includes/metaboxes.php:130
4778
+ #: includes/metaboxes.php:135
4779
  msgid ""
4780
  "Only members of these levels will be able to view posts in this category."
4781
  msgstr ""
4796
  "checkbox is selected below."
4797
  msgstr ""
4798
 
4799
+ #: includes/updates.php:97 includes/updates.php:97
4800
+ msgid "Paid Memberships Pro Data Update Required"
4801
+ msgstr ""
4802
+
4803
+ #: includes/updates.php:102 includes/updates.php:102
4804
+ msgid "Start the Update"
4805
+ msgstr ""
4806
+
4807
+ #: includes/updates.php:123 includes/updates.php:123
4808
+ msgid "All Paid Memberships Pro updates have finished."
4809
+ msgstr ""
4810
+
4811
+ #: includes/upgradecheck.php:542 includes/upgradecheck.php:401
4812
  #: includes/upgradecheck.php:410 includes/upgradecheck.php:422
4813
+ #: includes/upgradecheck.php:442 includes/upgradecheck.php:542
4814
  #, php-format
4815
  msgid ""
4816
  "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
4817
  msgstr ""
4818
 
4819
+ #: includes/upgradecheck.php:545 includes/upgradecheck.php:404
4820
  #: includes/upgradecheck.php:413 includes/upgradecheck.php:425
4821
+ #: includes/upgradecheck.php:445 includes/upgradecheck.php:545
4822
  #, php-format
4823
  msgid ""
4824
  "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
4825
  "<a href=\"%s\">Register</a>"
4826
  msgstr ""
4827
 
4828
+ #: includes/upgradecheck.php:549 includes/upgradecheck.php:408
4829
  #: includes/upgradecheck.php:417 includes/upgradecheck.php:429
4830
+ #: includes/upgradecheck.php:449 includes/upgradecheck.php:549
4831
  msgid ""
4832
  "This content is for !!levels!! members only. Visit the site and log in/"
4833
  "register to read."
4847
  #: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
4848
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
4849
  #: pages/cancel.php:52 pages/invoice.php:109 pages/levels.php:13
4850
+ #: pages/levels.php:35 shortcodes/pmpro_account.php:44
4851
+ #: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:126
4852
  msgid "Level"
4853
  msgstr ""
4854
 
4881
  "paypal.com\">login to PayPal here</a> to update your billing information."
4882
  msgstr ""
4883
 
4884
+ #: pages/billing.php:78 pages/checkout.php:326 pages/billing.php:65
4885
  #: pages/billing.php:69 pages/billing.php:78 pages/checkout.php:305
4886
  #: pages/checkout.php:307 pages/checkout.php:309 pages/checkout.php:318
4887
+ #: pages/checkout.php:321 pages/checkout.php:324 pages/checkout.php:326
4888
+ #: pages/checkout.php:328
4889
  msgid "First Name"
4890
  msgstr ""
4891
 
4892
+ #: pages/billing.php:82 pages/checkout.php:330 pages/billing.php:69
4893
  #: pages/billing.php:73 pages/billing.php:82 pages/checkout.php:309
4894
  #: pages/checkout.php:311 pages/checkout.php:313 pages/checkout.php:322
4895
+ #: pages/checkout.php:325 pages/checkout.php:328 pages/checkout.php:330
4896
+ #: pages/checkout.php:332
4897
  msgid "Last Name"
4898
  msgstr ""
4899
 
4900
+ #: pages/billing.php:86 pages/checkout.php:334 pages/billing.php:73
4901
  #: pages/billing.php:77 pages/billing.php:86 pages/checkout.php:313
4902
  #: pages/checkout.php:315 pages/checkout.php:317 pages/checkout.php:326
4903
+ #: pages/checkout.php:329 pages/checkout.php:332 pages/checkout.php:334
4904
+ #: pages/checkout.php:336
4905
  msgid "Address 1"
4906
  msgstr ""
4907
 
4908
+ #: pages/billing.php:90 pages/checkout.php:338 pages/billing.php:77
4909
  #: pages/billing.php:81 pages/billing.php:90 pages/checkout.php:317
4910
  #: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:330
4911
+ #: pages/checkout.php:333 pages/checkout.php:336 pages/checkout.php:338
4912
+ #: pages/checkout.php:340
4913
  msgid "Address 2"
4914
  msgstr ""
4915
 
4916
+ #: pages/billing.php:100 pages/checkout.php:348 pages/billing.php:87
4917
  #: pages/billing.php:91 pages/billing.php:100 pages/checkout.php:327
4918
  #: pages/checkout.php:329 pages/checkout.php:331 pages/checkout.php:340
4919
+ #: pages/checkout.php:343 pages/checkout.php:346 pages/checkout.php:348
4920
+ #: pages/checkout.php:350
4921
  msgid "City"
4922
  msgstr ""
4923
 
4924
+ #: pages/billing.php:104 pages/checkout.php:352 pages/billing.php:91
4925
  #: pages/billing.php:95 pages/billing.php:104 pages/checkout.php:331
4926
  #: pages/checkout.php:333 pages/checkout.php:335 pages/checkout.php:344
4927
+ #: pages/checkout.php:347 pages/checkout.php:350 pages/checkout.php:352
4928
+ #: pages/checkout.php:354
4929
  msgid "State"
4930
  msgstr ""
4931
 
4932
+ #: pages/billing.php:108 pages/checkout.php:356 pages/billing.php:95
4933
  #: pages/billing.php:99 pages/billing.php:108 pages/checkout.php:335
4934
  #: pages/checkout.php:337 pages/checkout.php:339 pages/checkout.php:348
4935
+ #: pages/checkout.php:351 pages/checkout.php:354 pages/checkout.php:356
4936
+ #: pages/checkout.php:358
4937
  msgid "Postal Code"
4938
  msgstr ""
4939
 
4940
+ #: pages/billing.php:117 pages/checkout.php:365 pages/billing.php:104
4941
  #: pages/billing.php:108 pages/billing.php:117 pages/checkout.php:344
4942
  #: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:357
4943
+ #: pages/checkout.php:360 pages/checkout.php:363 pages/checkout.php:365
4944
+ #: pages/checkout.php:367
4945
  msgid "City, State Zip"
4946
  msgstr ""
4947
 
4948
+ #: pages/billing.php:170 pages/checkout.php:418 pages/billing.php:157
4949
  #: pages/billing.php:161 pages/billing.php:170 pages/checkout.php:397
4950
  #: pages/checkout.php:399 pages/checkout.php:401 pages/checkout.php:410
4951
+ #: pages/checkout.php:413 pages/checkout.php:416 pages/checkout.php:418
4952
+ #: pages/checkout.php:420
4953
  msgid "Country"
4954
  msgstr ""
4955
 
4956
+ #: pages/billing.php:195 pages/checkout.php:443 pages/billing.php:182
4957
  #: pages/billing.php:186 pages/billing.php:195 pages/checkout.php:422
4958
  #: pages/checkout.php:424 pages/checkout.php:426 pages/checkout.php:435
4959
+ #: pages/checkout.php:438 pages/checkout.php:441 pages/checkout.php:443
4960
+ #: pages/checkout.php:445
4961
  msgid "Phone"
4962
  msgstr ""
4963
 
4964
+ #: pages/billing.php:206 pages/checkout.php:220 pages/checkout.php:457
4965
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
4966
  #: pages/checkout.php:204 pages/checkout.php:207 pages/checkout.php:209
4967
+ #: pages/checkout.php:216 pages/checkout.php:218 pages/checkout.php:220
4968
+ #: pages/checkout.php:436 pages/checkout.php:438 pages/checkout.php:440
4969
+ #: pages/checkout.php:449 pages/checkout.php:453 pages/checkout.php:455
4970
+ #: pages/checkout.php:457 pages/checkout.php:460
4971
  msgid "E-mail Address"
4972
  msgstr ""
4973
 
4974
+ #: pages/billing.php:210 pages/checkout.php:466 pages/billing.php:197
4975
  #: pages/billing.php:201 pages/billing.php:210 pages/checkout.php:445
4976
  #: pages/checkout.php:447 pages/checkout.php:449 pages/checkout.php:458
4977
+ #: pages/checkout.php:462 pages/checkout.php:464 pages/checkout.php:466
4978
+ #: pages/checkout.php:469
4979
  msgid "Confirm E-mail"
4980
  msgstr ""
4981
 
4982
  #: pages/billing.php:231 pages/billing.php:217 pages/billing.php:221
4983
+ #: pages/billing.php:230 pages/billing.php:231
4984
  msgid "Credit Card Information"
4985
  msgstr ""
4986
 
4987
  #: pages/billing.php:232 pages/billing.php:217 pages/billing.php:221
4988
+ #: pages/billing.php:230 pages/billing.php:232
4989
  #, php-format
4990
  msgid "We accept %s"
4991
  msgstr ""
4992
 
4993
+ #: pages/billing.php:360 pages/billing.php:309 pages/billing.php:313
4994
+ #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
4995
+ #: pages/billing.php:360
4996
  msgid ""
4997
  "This subscription is not recurring. So you don't need to update your billing "
4998
  "information."
5036
  msgstr ""
5037
 
5038
  #: pages/checkout.php:43 pages/checkout.php:33 pages/checkout.php:34
5039
+ #: pages/checkout.php:35 pages/checkout.php:42 pages/checkout.php:43
5040
  msgid "change"
5041
  msgstr ""
5042
 
5043
  #: pages/checkout.php:51 pages/checkout.php:41 pages/checkout.php:42
5044
+ #: pages/checkout.php:43 pages/checkout.php:50 pages/checkout.php:51
5045
  #, php-format
5046
  msgid "You have selected the <strong>%s</strong> membership level."
5047
  msgstr ""
5048
 
5049
  #: pages/checkout.php:61 pages/checkout.php:51 pages/checkout.php:53
5050
+ #: pages/checkout.php:60 pages/checkout.php:61
5051
  #, php-format
5052
  msgid ""
5053
  "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
5056
 
5057
  #: pages/checkout.php:72 services/applydiscountcode.php:89
5058
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
5059
+ #: pages/checkout.php:71 pages/checkout.php:72
5060
+ #: services/applydiscountcode.php:74 services/applydiscountcode.php:75
5061
+ #: services/applydiscountcode.php:78 services/applydiscountcode.php:89
5062
  msgid "Click here to change your discount code"
5063
  msgstr ""
5064
 
5065
  #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
5066
+ #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
5067
  msgid "Click here to enter your discount code"
5068
  msgstr ""
5069
 
5070
  #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
5071
+ #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
5072
  msgid "Do you have a discount code?"
5073
  msgstr ""
5074
 
5075
+ #: pages/checkout.php:175 pages/checkout.php:160 pages/checkout.php:163
5076
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
5077
+ #: pages/checkout.php:175
5078
  msgid "Account Information"
5079
  msgstr ""
5080
 
5081
+ #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
5082
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
5083
+ #: pages/checkout.php:176
5084
  msgid "Already have an account?"
5085
  msgstr ""
5086
 
5087
+ #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
5088
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
5089
+ #: pages/checkout.php:176
5090
  msgid "Log in here"
5091
  msgstr ""
5092
 
5093
+ #: pages/checkout.php:202 pages/checkout.php:186 pages/checkout.php:189
5094
+ #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
5095
+ #: pages/checkout.php:202
5096
  msgid "Confirm Password"
5097
  msgstr ""
5098
 
5099
+ #: pages/checkout.php:229 pages/checkout.php:213 pages/checkout.php:216
5100
+ #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
5101
+ #: pages/checkout.php:229
5102
  msgid "Confirm E-mail Address"
5103
  msgstr ""
5104
 
5105
+ #: pages/checkout.php:248 pages/checkout.php:232 pages/checkout.php:235
5106
+ #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
5107
+ #: pages/checkout.php:248
5108
  msgid "Full Name"
5109
  msgstr ""
5110
 
5111
+ #: pages/checkout.php:249 pages/checkout.php:233 pages/checkout.php:236
5112
+ #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
5113
+ #: pages/checkout.php:249
5114
  msgid "LEAVE THIS BLANK"
5115
  msgstr ""
5116
 
5117
+ #: pages/checkout.php:273 pages/checkout.php:257 pages/checkout.php:260
5118
+ #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
5119
+ #: pages/checkout.php:273
5120
  #, php-format
5121
  msgid ""
5122
  "You are logged in as <strong>%s</strong>. If you would like to use a "
5123
  "different account for this membership, <a href=\"%s\">log out now</a>."
5124
  msgstr ""
5125
 
5126
+ #: pages/checkout.php:289 pages/checkout.php:276 pages/checkout.php:278
5127
+ #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:289
5128
+ #: pages/checkout.php:292 pages/checkout.php:299
5129
  msgid "Choose your Payment Method"
5130
  msgstr ""
5131
 
5132
+ #: pages/checkout.php:298 pages/checkout.php:284 pages/checkout.php:286
5133
+ #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:298
5134
+ #: pages/checkout.php:300 pages/checkout.php:307
5135
  msgid "Check Out with a Credit Card Here"
5136
  msgstr ""
5137
 
5138
+ #: pages/checkout.php:696 pages/checkout.php:277 pages/checkout.php:284
5139
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
5140
+ #: pages/checkout.php:681 pages/checkout.php:690 pages/checkout.php:696
5141
  #, php-format
5142
  msgid "I agree to the %s"
5143
  msgstr ""
5144
 
5145
+ #: pages/checkout.php:716 pages/checkout.php:667 pages/checkout.php:674
5146
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
5147
+ #: pages/checkout.php:701 pages/checkout.php:710 pages/checkout.php:716
5148
  msgid "Complete Payment"
5149
  msgstr ""
5150
 
5151
+ #: pages/checkout.php:738 pages/checkout.php:687 pages/checkout.php:694
5152
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
5153
+ #: pages/checkout.php:723 pages/checkout.php:732 pages/checkout.php:738
5154
  msgid "Processing..."
5155
  msgstr ""
5156
 
5255
  msgstr ""
5256
 
5257
  #: pages/levels.php:55 pages/levels.php:33 pages/levels.php:43
5258
+ #: pages/levels.php:55
5259
  msgid "Free"
5260
  msgstr ""
5261
 
5262
  #: pages/levels.php:69 pages/levels.php:71 pages/levels.php:47
5263
+ #: pages/levels.php:49 pages/levels.php:69 pages/levels.php:71
5264
+ #: pages/levels.php:113 pages/levels.php:115
5265
  msgid "Select"
5266
  msgstr ""
5267
 
5268
  #: pages/levels.php:78 shortcodes/pmpro_account.php:61 pages/account.php:33
5269
+ #: pages/levels.php:57 pages/levels.php:78 pages/levels.php:123
5270
+ #: shortcodes/pmpro_account.php:59 shortcodes/pmpro_account.php:61
5271
  msgid "Renew"
5272
  msgstr ""
5273
 
5274
+ #: pages/levels.php:82 pages/levels.php:63 pages/levels.php:82
5275
+ #: pages/levels.php:117 pages/levels.php:129
5276
  msgid "Your&nbsp;Level"
5277
  msgstr ""
5278
 
5279
+ #: pages/levels.php:98 pages/levels.php:79 pages/levels.php:98
5280
+ #: pages/levels.php:129 pages/levels.php:145
5281
  msgid "&larr; Return to Your Account"
5282
  msgstr ""
5283
 
5284
+ #: pages/levels.php:100 pages/levels.php:81 pages/levels.php:100
5285
+ #: pages/levels.php:131 pages/levels.php:147
5286
  msgid "&larr; Return to Home"
5287
  msgstr ""
5288
 
5289
+ #: paid-memberships-pro.php:125 adminpages/orders.php:398
5290
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
5291
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
5292
+ #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
5293
  msgid "Testing Only"
5294
  msgstr ""
5295
 
5296
+ #: paid-memberships-pro.php:130 paid-memberships-pro.php:120
5297
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
5298
+ #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
5299
  msgid "PayPal Payflow Pro/PayPal Pro"
5300
  msgstr ""
5301
 
5302
+ #: paid-memberships-pro.php:135 paid-memberships-pro.php:125
5303
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
5304
+ #: paid-memberships-pro.php:134 paid-memberships-pro.php:135
5305
  msgid "Cybersource"
5306
  msgstr ""
5307
 
5323
  #: preheaders/billing.php:258 preheaders/billing.php:265
5324
  #: preheaders/billing.php:266 preheaders/billing.php:270
5325
  #: preheaders/billing.php:279 preheaders/checkout.php:332
5326
+ #: preheaders/checkout.php:336 preheaders/checkout.php:458
5327
+ #: preheaders/checkout.php:464 preheaders/checkout.php:465
5328
+ #: preheaders/checkout.php:470 preheaders/checkout.php:481
5329
+ #: preheaders/checkout.php:482
5330
  msgid "Please complete all required fields."
5331
  msgstr ""
5332
 
5334
  #: preheaders/billing.php:263 preheaders/billing.php:268
5335
  #: preheaders/billing.php:269 preheaders/billing.php:273
5336
  #: preheaders/billing.php:284 preheaders/checkout.php:340
5337
+ #: preheaders/checkout.php:344 preheaders/checkout.php:466
5338
+ #: preheaders/checkout.php:473 preheaders/checkout.php:474
5339
+ #: preheaders/checkout.php:478 preheaders/checkout.php:491
5340
+ #: preheaders/checkout.php:492
5341
  msgid "Your email addresses do not match. Please try again."
5342
  msgstr ""
5343
 
5345
  #: preheaders/billing.php:268 preheaders/billing.php:271
5346
  #: preheaders/billing.php:272 preheaders/billing.php:276
5347
  #: preheaders/billing.php:289 preheaders/checkout.php:345
5348
+ #: preheaders/checkout.php:349 preheaders/checkout.php:471
5349
+ #: preheaders/checkout.php:478 preheaders/checkout.php:480
5350
+ #: preheaders/checkout.php:483 preheaders/checkout.php:497
5351
+ #: preheaders/checkout.php:498
5352
  msgid "The email address entered is in an invalid format. Please try again."
5353
  msgstr ""
5354
 
5380
  #: preheaders/checkout.php:32 preheaders/checkout.php:358
5381
  #: preheaders/checkout.php:28 preheaders/checkout.php:30
5382
  #: preheaders/checkout.php:31 preheaders/checkout.php:32
5383
+ #: preheaders/checkout.php:354 preheaders/checkout.php:358
5384
+ #: preheaders/checkout.php:480 preheaders/checkout.php:487
5385
+ #: preheaders/checkout.php:491 preheaders/checkout.php:492
5386
+ #: preheaders/checkout.php:508 preheaders/checkout.php:509
5387
  msgid "Invalid gateway."
5388
  msgstr ""
5389
 
5398
  msgstr ""
5399
 
5400
  #: preheaders/checkout.php:304 preheaders/checkout.php:300
5401
+ #: preheaders/checkout.php:304 preheaders/checkout.php:416
5402
+ #: preheaders/checkout.php:421
5403
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
5404
  msgstr ""
5405
 
5406
  #: preheaders/checkout.php:339 preheaders/checkout.php:335
5407
+ #: preheaders/checkout.php:339 preheaders/checkout.php:461
5408
+ #: preheaders/checkout.php:468 preheaders/checkout.php:473
5409
+ #: preheaders/checkout.php:485 preheaders/checkout.php:486
5410
  msgid "Your passwords do not match. Please try again."
5411
  msgstr ""
5412
 
5413
  #: preheaders/checkout.php:354 preheaders/checkout.php:350
5414
+ #: preheaders/checkout.php:354 preheaders/checkout.php:476
5415
+ #: preheaders/checkout.php:483 preheaders/checkout.php:486
5416
+ #: preheaders/checkout.php:488 preheaders/checkout.php:503
5417
+ #: preheaders/checkout.php:504
5418
  #, php-format
5419
  msgid "Please check the box to agree to the %s."
5420
  msgstr ""
5421
 
5422
  #: preheaders/checkout.php:361 preheaders/checkout.php:357
5423
+ #: preheaders/checkout.php:361 preheaders/checkout.php:483
5424
+ #: preheaders/checkout.php:490 preheaders/checkout.php:495
5425
+ #: preheaders/checkout.php:512 preheaders/checkout.php:513
5426
  msgid "Are you a spammer?"
5427
  msgstr ""
5428
 
5429
  #: preheaders/checkout.php:381 preheaders/checkout.php:377
5430
+ #: preheaders/checkout.php:381 preheaders/checkout.php:503
5431
+ #: preheaders/checkout.php:510 preheaders/checkout.php:515
5432
+ #: preheaders/checkout.php:518 preheaders/checkout.php:535
5433
+ #: preheaders/checkout.php:536
5434
  msgid "That username is already taken. Please try another."
5435
  msgstr ""
5436
 
5437
  #: preheaders/checkout.php:386 preheaders/checkout.php:382
5438
+ #: preheaders/checkout.php:386 preheaders/checkout.php:508
5439
+ #: preheaders/checkout.php:515 preheaders/checkout.php:520
5440
+ #: preheaders/checkout.php:524 preheaders/checkout.php:541
5441
+ #: preheaders/checkout.php:542
5442
  msgid "That email address is already taken. Please try another."
5443
  msgstr ""
5444
 
5445
  #: preheaders/checkout.php:420 preheaders/checkout.php:397
5446
  #: preheaders/checkout.php:399 preheaders/checkout.php:416
5447
+ #: preheaders/checkout.php:420 preheaders/checkout.php:525
5448
+ #: preheaders/checkout.php:532 preheaders/checkout.php:537
5449
+ #: preheaders/checkout.php:544 preheaders/checkout.php:561
5450
+ #: preheaders/checkout.php:562
5451
  #, php-format
5452
  msgid "reCAPTCHA failed. (%s) Please try again."
5453
  msgstr ""
5454
 
5455
  #: preheaders/checkout.php:505 preheaders/checkout.php:482
5456
  #: preheaders/checkout.php:484 preheaders/checkout.php:501
5457
+ #: preheaders/checkout.php:505 preheaders/checkout.php:647
5458
+ #: preheaders/checkout.php:654 preheaders/checkout.php:659
5459
+ #: preheaders/checkout.php:683 preheaders/checkout.php:701
5460
+ #: preheaders/checkout.php:702
5461
  msgid "Payment accepted."
5462
  msgstr ""
5463
 
5464
  #: preheaders/checkout.php:513 preheaders/checkout.php:490
5465
  #: preheaders/checkout.php:492 preheaders/checkout.php:509
5466
+ #: preheaders/checkout.php:513 preheaders/checkout.php:653
5467
+ #: preheaders/checkout.php:660 preheaders/checkout.php:665
5468
+ #: preheaders/checkout.php:691 preheaders/checkout.php:709
5469
+ #: preheaders/checkout.php:710
5470
  msgid ""
5471
  "Unknown error generating account. Please contact us to set up your "
5472
  "membership."
5474
 
5475
  #: preheaders/checkout.php:575 preheaders/checkout.php:550
5476
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
5477
+ #: preheaders/checkout.php:571 preheaders/checkout.php:575
5478
+ #: preheaders/checkout.php:785 preheaders/checkout.php:792
5479
+ #: preheaders/checkout.php:797 preheaders/checkout.php:825
5480
+ #: preheaders/checkout.php:844 preheaders/checkout.php:859
5481
+ #: preheaders/checkout.php:860
5482
  msgid ""
5483
  "Your payment was accepted, but there was an error setting up your account. "
5484
  "Please contact us."
5486
 
5487
  #: preheaders/checkout.php:722 preheaders/checkout.php:691
5488
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
5489
+ #: preheaders/checkout.php:712 preheaders/checkout.php:722
5490
+ #: preheaders/checkout.php:953 preheaders/checkout.php:960
5491
+ #: preheaders/checkout.php:970 preheaders/checkout.php:983
5492
+ #: preheaders/checkout.php:1030 preheaders/checkout.php:1045
5493
+ #: preheaders/checkout.php:1046
5494
  msgid ""
5495
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5496
  "authorized, but we cancelled the order immediately. You should not try to "
5499
 
5500
  #: preheaders/checkout.php:725 preheaders/checkout.php:694
5501
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
5502
+ #: preheaders/checkout.php:715 preheaders/checkout.php:725
5503
+ #: preheaders/checkout.php:956 preheaders/checkout.php:963
5504
+ #: preheaders/checkout.php:973 preheaders/checkout.php:988
5505
+ #: preheaders/checkout.php:1035 preheaders/checkout.php:1050
5506
+ #: preheaders/checkout.php:1051
5507
  msgid ""
5508
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5509
  "was charged, but we couldn't assign your membership. You should not submit "
5512
 
5513
  #: preheaders/checkout.php:736 preheaders/checkout.php:705
5514
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
5515
+ #: preheaders/checkout.php:726 preheaders/checkout.php:736
5516
+ #: preheaders/checkout.php:967 preheaders/checkout.php:974
5517
+ #: preheaders/checkout.php:984 preheaders/checkout.php:1001
5518
+ #: preheaders/checkout.php:1048 preheaders/checkout.php:1063
5519
+ #: preheaders/checkout.php:1064
5520
  #, php-format
5521
  msgid ""
5522
  "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
5525
 
5526
  #: preheaders/checkout.php:738 preheaders/checkout.php:707
5527
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
5528
+ #: preheaders/checkout.php:728 preheaders/checkout.php:738
5529
+ #: preheaders/checkout.php:969 preheaders/checkout.php:976
5530
+ #: preheaders/checkout.php:986 preheaders/checkout.php:1003
5531
+ #: preheaders/checkout.php:1050 preheaders/checkout.php:1065
5532
+ #: preheaders/checkout.php:1066
5533
  msgid "A Payment Gateway must be set up before any payments will be processed."
5534
  msgstr ""
5535
 
5536
  #: scheduled/crons.php:39 scheduled/crons.php:31 scheduled/crons.php:34
5537
+ #: scheduled/crons.php:38 scheduled/crons.php:39 scheduled/crons.php:61
5538
  #, php-format
5539
  msgid "Membership expired email sent to %s. "
5540
  msgstr ""
5541
 
5542
  #: scheduled/crons.php:88 scheduled/crons.php:27 scheduled/crons.php:74
5543
+ #: scheduled/crons.php:80 scheduled/crons.php:84 scheduled/crons.php:88
5544
  #, php-format
5545
  msgid "Membership expiring email sent to %s. "
5546
  msgstr ""
5547
 
5548
  #: scheduled/crons.php:164 scheduled/crons.php:143 scheduled/crons.php:152
5549
+ #: scheduled/crons.php:157 scheduled/crons.php:164
5550
  #, php-format
5551
  msgid "Credit card expiring email sent to %s. "
5552
  msgstr ""
5553
 
5554
  #: scheduled/crons.php:220 scheduled/crons.php:104 scheduled/crons.php:196
5555
+ #: scheduled/crons.php:208 scheduled/crons.php:210 scheduled/crons.php:220
5556
  #, php-format
5557
  msgid "Trial ending email sent to %s. "
5558
  msgstr ""
5570
  msgid "The <strong>%s</strong> code has been applied to your order."
5571
  msgstr ""
5572
 
5573
+ #: services/authnet-silent-post.php:144 services/authnet-silent-post.php:133
5574
  #: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
5575
+ #: services/authnet-silent-post.php:144
5576
  msgid ""
5577
  "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
5578
  "Information From Authorize.net"
5579
  msgstr ""
5580
 
5581
+ #: services/stripe-webhook.php:272 services/stripe-webhook.php:176
5582
  #: services/stripe-webhook.php:194 services/stripe-webhook.php:270
5583
+ #: services/stripe-webhook.php:271 services/stripe-webhook.php:272
5584
  #, php-format
5585
  msgid ""
5586
  "%s has had their payment subscription cancelled by Stripe. Please check that "
5593
  msgstr ""
5594
 
5595
  #: shortcodes/pmpro_account.php:65 pages/account.php:36
5596
+ #: shortcodes/pmpro_account.php:62 shortcodes/pmpro_account.php:65
5597
  msgid "Update Billing Info"
5598
  msgstr ""
5599
 
5600
  #: shortcodes/pmpro_account.php:71 pages/account.php:42
5601
+ #: shortcodes/pmpro_account.php:68 shortcodes/pmpro_account.php:71
5602
  msgid "Change"
5603
  msgstr ""
5604
 
5605
  #: shortcodes/pmpro_account.php:93 pages/account.php:64
5606
+ #: shortcodes/pmpro_account.php:90 shortcodes/pmpro_account.php:93
5607
  msgid "View all Membership Options"
5608
  msgstr ""
5609
 
5610
  #: shortcodes/pmpro_account.php:102 pages/account.php:46 pages/account.php:50
5611
  #: pages/account.php:71 shortcodes/pmpro_account.php:99
5612
+ #: shortcodes/pmpro_account.php:102
5613
  msgid "My Account"
5614
  msgstr ""
5615
 
5616
  #: shortcodes/pmpro_account.php:113 pages/account.php:55 pages/account.php:59
5617
  #: pages/account.php:80 shortcodes/pmpro_account.php:110
5618
+ #: shortcodes/pmpro_account.php:113
5619
  msgid "Edit Profile"
5620
  msgstr ""
5621
 
5622
  #: shortcodes/pmpro_account.php:114 pages/account.php:56 pages/account.php:60
5623
  #: pages/account.php:81 shortcodes/pmpro_account.php:111
5624
+ #: shortcodes/pmpro_account.php:114
5625
  msgid "Change Password"
5626
  msgstr ""
5627
 
5628
  #: shortcodes/pmpro_account.php:121 pages/account.php:87 pages/account.php:125
5629
  #: pages/account.php:129 shortcodes/pmpro_account.php:118
5630
+ #: shortcodes/pmpro_account.php:121
5631
  msgid "Past Invoices"
5632
  msgstr ""
5633
 
5634
  #: shortcodes/pmpro_account.php:127 pages/account.php:93
5635
+ #: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:127
5636
  msgid "Amount"
5637
  msgstr ""
5638
 
5639
  #: shortcodes/pmpro_account.php:155 pages/account.php:121
5640
  #: pages/account.php:140 pages/account.php:144
5641
+ #: shortcodes/pmpro_account.php:152 shortcodes/pmpro_account.php:155
5642
  msgid "View All Invoices"
5643
  msgstr ""
5644
 
5645
  #: shortcodes/pmpro_account.php:162 pages/account.php:128
5646
  #: pages/account.php:146 pages/account.php:150
5647
+ #: shortcodes/pmpro_account.php:159 shortcodes/pmpro_account.php:162
5648
  msgid "Member Links"
5649
  msgstr ""
5650
 
5776
  msgid "Logins All Time"
5777
  msgstr ""
5778
 
5779
+ #: adminpages/reports/memberships.php:38 adminpages/reports/memberships.php:67
5780
+ msgid "Cancellations"
5781
+ msgstr ""
5782
+
5783
  #: adminpages/reports/memberships.php:86
5784
  msgid "Other Stats"
5785
  msgstr ""
5796
  msgid "Lifetime Value (LTV)"
5797
  msgstr ""
5798
 
5799
+ #: classes/class.pmproemail.php:342 classes/class.pmproemail.php:345
5800
+ #: classes/class.pmproemail.php:363 classes/class.pmproemail.php:366
5801
+ #: classes/class.pmproemail.php:375
5802
+ #, php-format
5803
+ msgid "Your billing information has been udpated at %s"
5804
+ msgstr ""
5805
+
5806
+ #: classes/class.pmproemail.php:386 classes/class.pmproemail.php:390
5807
+ #: classes/class.pmproemail.php:416 classes/class.pmproemail.php:419
5808
+ #: classes/class.pmproemail.php:428
5809
+ #, php-format
5810
+ msgid "Billing information has been udpated for %s at %s"
5811
+ msgstr ""
5812
+
5813
  #: classes/class.pmproemail.php:685 classes/class.pmproemail.php:734
5814
  #: classes/class.pmproemail.php:799
5815
  msgid "membership has been cancelled"
5816
  msgstr ""
5817
 
5818
+ #: classes/gateways/class.pmprogateway_twocheckout.php:139
5819
+ msgid "API Private Key"
5820
+ msgstr ""
5821
+
5822
+ #: classes/gateways/class.pmprogateway_twocheckout.php:143
5823
+ msgid ""
5824
+ "Go to API in 2Checkout and generate a new key pair. Paste the Private Key "
5825
+ "here."
5826
+ msgstr ""
5827
+
5828
  #: includes/currencies.php:11
5829
  msgid "Brazilian Real (&#36;)"
5830
  msgstr ""
languages/pmpro.pot CHANGED
@@ -5,7 +5,7 @@
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: pmpro\n"
8
- "POT-Creation-Date: 2015-11-07 16:42-0500\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"
@@ -19,24 +19,27 @@ msgstr ""
19
  #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
20
  #: adminpages/orders-print.php:12 adminpages/orders.php:5
21
  #: adminpages/pagesettings.php:4 adminpages/paymentsettings.php:5
22
- #: includes/license.php:36 adminpages/addons.php:5 adminpages/addons.php:21
23
- #: adminpages/advancedsettings.php:5 adminpages/discountcodes.php:5
24
- #: adminpages/emailsettings.php:5 adminpages/membershiplevels.php:5
25
- #: adminpages/memberslist-csv.php:5 adminpages/memberslist.php:5
26
- #: adminpages/orders-csv.php:5 adminpages/orders.php:5
 
27
  #: adminpages/pagesettings.php:4 adminpages/pagesettings.php:5
28
- #: adminpages/paymentsettings.php:5 includes/license.php:36
 
29
  msgid "You do not have permissions to perform this action."
30
  msgstr ""
31
 
32
  #: adminpages/addons.php:64 adminpages/admin_header.php:170
33
- #: includes/adminpages.php:52 includes/adminpages.php:146
34
  #: adminpages/addons.php:64 adminpages/addons.php:80
35
  #: adminpages/admin_header.php:133 adminpages/admin_header.php:154
36
  #: adminpages/admin_header.php:170 includes/adminpages.php:14
37
- #: includes/adminpages.php:52 includes/adminpages.php:69
38
- #: includes/adminpages.php:135 includes/adminpages.php:142
39
- #: includes/adminpages.php:146
 
40
  msgid "Add Ons"
41
  msgstr ""
42
 
@@ -49,8 +52,9 @@ msgstr ""
49
  msgid "Check Again"
50
  msgstr ""
51
 
52
- #: adminpages/addons.php:76 adminpages/orders.php:741 adminpages/addons.php:76
53
  #: adminpages/addons.php:92 adminpages/orders.php:605
 
54
  msgid "All"
55
  msgstr ""
56
 
@@ -284,9 +288,9 @@ msgid "User Forum"
284
  msgstr ""
285
 
286
  #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:618
287
- #: adminpages/pagesettings.php:70 includes/adminpages.php:64
288
- #: includes/adminpages.php:65 includes/adminpages.php:111
289
- #: includes/metaboxes.php:126 adminpages/admin_header.php:128
290
  #: adminpages/admin_header.php:149 adminpages/admin_header.php:150
291
  #: adminpages/membershiplevels.php:490 adminpages/membershiplevels.php:496
292
  #: adminpages/membershiplevels.php:498 adminpages/membershiplevels.php:525
@@ -294,9 +298,11 @@ msgstr ""
294
  #: adminpages/membershiplevels.php:618 adminpages/membershiplevels.php:619
295
  #: adminpages/pagesettings.php:69 adminpages/pagesettings.php:70
296
  #: includes/adminpages.php:44 includes/adminpages.php:64
297
- #: includes/adminpages.php:65 includes/adminpages.php:100
 
298
  #: includes/adminpages.php:107 includes/adminpages.php:111
299
- #: includes/metaboxes.php:126
 
300
  msgid "Membership Levels"
301
  msgstr ""
302
 
@@ -318,7 +324,7 @@ msgstr ""
318
  #: adminpages/memberslist.php:115 adminpages/memberslist.php:148
319
  #: adminpages/memberslist.php:158 adminpages/memberslist.php:168
320
  #: pages/account.php:52 pages/account.php:56 pages/account.php:77
321
- #: shortcodes/pmpro_account.php:106
322
  msgid "Email"
323
  msgstr ""
324
 
@@ -354,12 +360,13 @@ msgid ""
354
  "This content is for members only. Visit the site and log in/register to read."
355
  msgstr ""
356
 
357
- #: adminpages/advancedsettings.php:88 includes/adminpages.php:51
358
- #: includes/adminpages.php:139 adminpages/advancedsettings.php:79
359
  #: adminpages/advancedsettings.php:86 adminpages/advancedsettings.php:88
360
  #: includes/adminpages.php:13 includes/adminpages.php:51
361
- #: includes/adminpages.php:64 includes/adminpages.php:128
362
- #: includes/adminpages.php:135 includes/adminpages.php:139
 
363
  msgid "Advanced Settings"
364
  msgstr ""
365
 
@@ -430,7 +437,7 @@ msgstr ""
430
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
431
  #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:667
432
  #: adminpages/paymentsettings.php:210
433
- #: classes/gateways/class.pmprogateway_stripe.php:184 includes/profile.php:110
434
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
435
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:187
436
  #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
@@ -446,7 +453,8 @@ msgstr ""
446
  #: adminpages/paymentsettings.php:461
447
  #: classes/gateways/class.pmprogateway_stripe.php:173
448
  #: classes/gateways/class.pmprogateway_stripe.php:174
449
- #: classes/gateways/class.pmprogateway_stripe.php:184 includes/profile.php:101
 
450
  #: includes/profile.php:105 includes/profile.php:110 includes/profile.php:121
451
  #: includes/profile.php:123
452
  msgid "No"
@@ -489,7 +497,7 @@ msgstr ""
489
 
490
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:667
491
  #: adminpages/paymentsettings.php:211
492
- #: classes/gateways/class.pmprogateway_stripe.php:185 includes/profile.php:111
493
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
494
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:563
495
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
@@ -502,7 +510,8 @@ msgstr ""
502
  #: adminpages/paymentsettings.php:460 adminpages/paymentsettings.php:462
503
  #: classes/gateways/class.pmprogateway_stripe.php:174
504
  #: classes/gateways/class.pmprogateway_stripe.php:175
505
- #: classes/gateways/class.pmprogateway_stripe.php:185 includes/profile.php:102
 
506
  #: includes/profile.php:106 includes/profile.php:111 includes/profile.php:122
507
  #: includes/profile.php:124
508
  msgid "Yes"
@@ -637,7 +646,7 @@ msgstr ""
637
 
638
  #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
639
  #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:636
640
- #: adminpages/memberslist.php:164 adminpages/orders.php:966
641
  #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
642
  #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
643
  #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
@@ -652,25 +661,31 @@ msgstr ""
652
  #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
653
  #: adminpages/memberslist.php:164 adminpages/orders.php:597
654
  #: adminpages/orders.php:900 adminpages/orders.php:910
 
655
  #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
 
 
656
  msgid "ID"
657
  msgstr ""
658
 
659
- #: adminpages/discountcodes.php:311 adminpages/orders.php:362
660
  #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
661
  #: adminpages/discountcodes.php:311 adminpages/orders.php:211
662
- #: adminpages/orders.php:261
 
663
  msgid "This will be generated when you save."
664
  msgstr ""
665
 
666
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
667
- #: adminpages/orders.php:366 adminpages/orders.php:967
668
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
669
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:548
670
  #: adminpages/discountcodes.php:558 adminpages/discountcodes.php:586
671
  #: adminpages/discountcodes.php:587 adminpages/orders.php:215
672
- #: adminpages/orders.php:265 adminpages/orders.php:598
 
673
  #: adminpages/orders.php:901 adminpages/orders.php:911
 
674
  msgid "Code"
675
  msgstr ""
676
 
@@ -680,18 +695,22 @@ msgid "Start Date"
680
  msgstr ""
681
 
682
  #: adminpages/discountcodes.php:371
683
- #: classes/gateways/class.pmprogateway_braintree.php:321
684
- #: classes/gateways/class.pmprogateway_stripe.php:469 pages/billing.php:265
685
- #: pages/checkout.php:571 adminpages/discountcodes.php:367
686
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
687
  #: classes/gateways/class.pmprogateway_braintree.php:308
688
  #: classes/gateways/class.pmprogateway_braintree.php:321
 
689
  #: classes/gateways/class.pmprogateway_stripe.php:454
690
  #: classes/gateways/class.pmprogateway_stripe.php:455
691
- #: classes/gateways/class.pmprogateway_stripe.php:465 pages/billing.php:249
692
- #: pages/billing.php:253 pages/billing.php:262 pages/checkout.php:508
693
- #: pages/checkout.php:524 pages/checkout.php:525 pages/checkout.php:532
694
- #: pages/checkout.php:553 pages/checkout.php:562
 
 
 
695
  msgid "Expiration Date"
696
  msgstr ""
697
 
@@ -760,7 +779,7 @@ msgstr ""
760
 
761
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
762
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
763
- #: classes/gateways/class.pmprogateway_stripe.php:536
764
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
765
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
766
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
@@ -772,12 +791,14 @@ msgstr ""
772
  #: classes/gateways/class.pmprogateway_stripe.php:521
773
  #: classes/gateways/class.pmprogateway_stripe.php:522
774
  #: classes/gateways/class.pmprogateway_stripe.php:532
 
 
775
  msgid "Day(s)"
776
  msgstr ""
777
 
778
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
779
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
780
- #: classes/gateways/class.pmprogateway_stripe.php:536
781
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
782
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
783
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
@@ -789,12 +810,14 @@ msgstr ""
789
  #: classes/gateways/class.pmprogateway_stripe.php:521
790
  #: classes/gateways/class.pmprogateway_stripe.php:522
791
  #: classes/gateways/class.pmprogateway_stripe.php:532
 
 
792
  msgid "Month(s)"
793
  msgstr ""
794
 
795
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
796
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
797
- #: classes/gateways/class.pmprogateway_stripe.php:536
798
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
799
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
800
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
@@ -806,12 +829,14 @@ msgstr ""
806
  #: classes/gateways/class.pmprogateway_stripe.php:521
807
  #: classes/gateways/class.pmprogateway_stripe.php:522
808
  #: classes/gateways/class.pmprogateway_stripe.php:532
 
 
809
  msgid "Week(s)"
810
  msgstr ""
811
 
812
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
813
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
814
- #: classes/gateways/class.pmprogateway_stripe.php:536
815
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
816
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
817
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
@@ -823,6 +848,8 @@ msgstr ""
823
  #: classes/gateways/class.pmprogateway_stripe.php:521
824
  #: classes/gateways/class.pmprogateway_stripe.php:522
825
  #: classes/gateways/class.pmprogateway_stripe.php:532
 
 
826
  msgid "Year(s)"
827
  msgstr ""
828
 
@@ -958,6 +985,7 @@ msgstr ""
958
  #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
959
  #: adminpages/discountcodes.php:569 adminpages/discountcodes.php:570
960
  #: adminpages/reports/login.php:81 adminpages/reports/login.php:83
 
961
  msgid "Search"
962
  msgstr ""
963
 
@@ -974,8 +1002,9 @@ msgstr ""
974
  #: adminpages/memberslist.php:121 adminpages/memberslist.php:159
975
  #: adminpages/memberslist.php:169 adminpages/memberslist.php:179
976
  #: adminpages/reports/login.php:145 adminpages/reports/login.php:147
977
- #: includes/profile.php:98 includes/profile.php:102 includes/profile.php:107
978
- #: includes/profile.php:118 includes/profile.php:120
 
979
  msgid "Expires"
980
  msgstr ""
981
 
@@ -1000,7 +1029,7 @@ msgid ""
1000
  msgstr ""
1001
 
1002
  #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:669
1003
- #: adminpages/orders.php:1050 adminpages/discountcodes.php:614
1004
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
1005
  #: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
1006
  #: adminpages/membershiplevels.php:564 adminpages/membershiplevels.php:570
@@ -1009,7 +1038,8 @@ msgstr ""
1009
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1010
  #: adminpages/orders.php:658 adminpages/orders.php:961
1011
  #: adminpages/orders.php:979 adminpages/orders.php:989
1012
- #: adminpages/orders.php:992
 
1013
  msgid "edit"
1014
  msgstr ""
1015
 
@@ -1024,7 +1054,7 @@ msgid ""
1024
  msgstr ""
1025
 
1026
  #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:669
1027
- #: adminpages/orders.php:1056 adminpages/discountcodes.php:617
1028
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
1029
  #: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
1030
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:572
@@ -1033,16 +1063,18 @@ msgstr ""
1033
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1034
  #: adminpages/orders.php:664 adminpages/orders.php:967
1035
  #: adminpages/orders.php:985 adminpages/orders.php:995
1036
- #: adminpages/orders.php:998
 
1037
  msgid "delete"
1038
  msgstr ""
1039
 
1040
- #: adminpages/emailsettings.php:69 includes/adminpages.php:50
1041
- #: includes/adminpages.php:132 adminpages/emailsettings.php:60
1042
  #: adminpages/emailsettings.php:69 includes/adminpages.php:12
1043
- #: includes/adminpages.php:50 includes/adminpages.php:59
1044
- #: includes/adminpages.php:121 includes/adminpages.php:128
1045
- #: includes/adminpages.php:132
 
1046
  msgid "Email Settings"
1047
  msgstr ""
1048
 
@@ -1210,6 +1242,7 @@ msgstr ""
1210
  #: adminpages/membershiplevels.php:542 adminpages/membershiplevels.php:584
1211
  #: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:638
1212
  #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
 
1213
  msgid "Name"
1214
  msgstr ""
1215
 
@@ -1227,13 +1260,15 @@ msgid "Billing Details"
1227
  msgstr ""
1228
 
1229
  #: adminpages/membershiplevels.php:372
1230
- #: classes/gateways/class.pmprogateway_stripe.php:634
1231
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1232
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1233
  #: adminpages/membershiplevels.php:373
1234
  #: classes/gateways/class.pmprogateway_stripe.php:619
1235
  #: classes/gateways/class.pmprogateway_stripe.php:620
1236
  #: classes/gateways/class.pmprogateway_stripe.php:630
 
 
1237
  msgid "per"
1238
  msgstr ""
1239
 
@@ -1380,12 +1415,15 @@ msgstr ""
1380
  msgid "Save Level"
1381
  msgstr ""
1382
 
1383
- #: adminpages/membershiplevels.php:517 adminpages/orders.php:662
1384
- #: pages/billing.php:342 pages/cancel.php:71 shortcodes/pmpro_account.php:73
1385
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1386
- #: adminpages/orders.php:511 adminpages/orders.php:561 pages/account.php:44
 
1387
  #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1388
- #: pages/billing.php:339 pages/cancel.php:71 shortcodes/pmpro_account.php:70
 
 
1389
  msgid "Cancel"
1390
  msgstr ""
1391
 
@@ -1460,47 +1498,57 @@ msgid ""
1460
  "be cancelled."
1461
  msgstr ""
1462
 
1463
- #: adminpages/membershiplevels.php:669 adminpages/orders.php:1053
1464
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1465
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1466
  #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1467
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1468
  #: adminpages/orders.php:661 adminpages/orders.php:964
1469
  #: adminpages/orders.php:982 adminpages/orders.php:992
1470
- #: adminpages/orders.php:995
 
1471
  msgid "copy"
1472
  msgstr ""
1473
 
1474
- #: adminpages/memberslist.php:25 includes/adminpages.php:53
1475
- #: includes/adminpages.php:153 adminpages/memberslist.php:25
1476
  #: includes/adminpages.php:15 includes/adminpages.php:53
1477
- #: includes/adminpages.php:74 includes/adminpages.php:142
1478
- #: includes/adminpages.php:149 includes/adminpages.php:153
 
1479
  msgid "Members List"
1480
  msgstr ""
1481
 
1482
- #: adminpages/memberslist.php:26 adminpages/orders.php:727
1483
  #: adminpages/memberslist.php:26 adminpages/orders.php:522
1484
- #: adminpages/orders.php:591
 
1485
  msgid "Export to CSV"
1486
  msgstr ""
1487
 
1488
- #: adminpages/memberslist.php:30 adminpages/orders.php:739
1489
- #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:256
1490
  #: adminpages/reports/sales.php:202 adminpages/memberslist.php:30
1491
- #: adminpages/orders.php:603 adminpages/reports/login.php:65
1492
- #: adminpages/reports/login.php:67 adminpages/reports/memberships.php:292
1493
- #: adminpages/reports/sales.php:185 adminpages/reports/sales.php:193
1494
- #: adminpages/reports/sales.php:194
 
 
 
 
1495
  msgid "Show"
1496
  msgstr ""
1497
 
1498
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1499
- #: adminpages/reports/memberships.php:281 adminpages/reports/sales.php:225
1500
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:67
1501
- #: adminpages/reports/login.php:69 adminpages/reports/memberships.php:317
1502
- #: adminpages/reports/sales.php:208 adminpages/reports/sales.php:216
1503
- #: adminpages/reports/sales.php:217
 
 
 
1504
  msgid "All Levels"
1505
  msgstr ""
1506
 
@@ -1531,13 +1579,14 @@ msgstr ""
1531
  msgid "%d members found."
1532
  msgstr ""
1533
 
1534
- #: adminpages/memberslist.php:165 pages/checkout.php:182
1535
  #: shortcodes/pmpro_account.php:108 adminpages/memberslist.php:112
1536
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1537
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1538
  #: pages/account.php:76 pages/checkout.php:168 pages/checkout.php:171
1539
- #: pages/checkout.php:173 pages/checkout.php:180
1540
- #: shortcodes/pmpro_account.php:105
 
1541
  msgid "Username"
1542
  msgstr ""
1543
 
@@ -1553,15 +1602,16 @@ msgstr ""
1553
  msgid "Last&nbsp;Name"
1554
  msgstr ""
1555
 
1556
- #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:317
1557
  #: pages/confirmation.php:61 pages/invoice.php:48
1558
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1559
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
1560
  #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
1561
  #: pages/billing.php:62 pages/billing.php:71 pages/checkout.php:298
1562
  #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
1563
- #: pages/checkout.php:314 pages/checkout.php:321 pages/confirmation.php:59
1564
- #: pages/confirmation.php:61 pages/invoice.php:46 pages/invoice.php:48
 
1565
  msgid "Billing Address"
1566
  msgstr ""
1567
 
@@ -1570,7 +1620,7 @@ msgstr ""
1570
  #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1571
  #: adminpages/memberslist.php:161 adminpages/memberslist.php:171
1572
  #: adminpages/pagesettings.php:51 adminpages/reports/login.php:143
1573
- #: adminpages/reports/login.php:145
1574
  #: classes/gateways/class.pmprogateway_authorizenet.php:187
1575
  #: classes/gateways/class.pmprogateway_authorizenet.php:303
1576
  msgid "Membership"
@@ -1586,6 +1636,7 @@ msgstr ""
1586
  #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1587
  #: adminpages/memberslist.php:163 adminpages/memberslist.php:173
1588
  #: adminpages/reports/login.php:144 adminpages/reports/login.php:146
 
1589
  msgid "Joined"
1590
  msgstr ""
1591
 
@@ -1598,6 +1649,7 @@ msgstr ""
1598
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1599
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1600
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
 
1601
  msgid "No members found."
1602
  msgstr ""
1603
 
@@ -1605,411 +1657,496 @@ msgstr ""
1605
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1606
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1607
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
 
1608
  msgid "Search all levels"
1609
  msgstr ""
1610
 
1611
- #: adminpages/orders.php:155
1612
  msgid "Invoice emailed successfully."
1613
  msgstr ""
1614
 
1615
- #: adminpages/orders.php:160
1616
  msgid "Error emailing invoice."
1617
  msgstr ""
1618
 
1619
  #: adminpages/orders.php:175 adminpages/orders.php:26 adminpages/orders.php:67
 
1620
  msgid "Order deleted successfully."
1621
  msgstr ""
1622
 
1623
  #: adminpages/orders.php:180 adminpages/orders.php:31 adminpages/orders.php:72
 
1624
  msgid "Error deleting order."
1625
  msgstr ""
1626
 
1627
  #: adminpages/orders.php:270 adminpages/orders.php:119
1628
- #: adminpages/orders.php:169
1629
  msgid "Order saved successfully."
1630
  msgstr ""
1631
 
1632
  #: adminpages/orders.php:275 adminpages/orders.php:124
1633
- #: adminpages/orders.php:174
1634
  msgid "Error updating order timestamp."
1635
  msgstr ""
1636
 
1637
  #: adminpages/orders.php:281 adminpages/orders.php:130
1638
- #: adminpages/orders.php:180
1639
  msgid "Error saving order."
1640
  msgstr ""
1641
 
1642
- #: adminpages/orders.php:346 adminpages/orders.php:195
1643
- #: adminpages/orders.php:245
 
1644
  msgid "Order"
1645
  msgstr ""
1646
 
1647
- #: adminpages/orders.php:348 adminpages/orders.php:197
1648
- #: adminpages/orders.php:247
 
1649
  msgid "New Order"
1650
  msgstr ""
1651
 
1652
- #: adminpages/orders.php:371 adminpages/orders.php:220
1653
- #: adminpages/orders.php:270
 
1654
  msgid "Randomly generated for you."
1655
  msgstr ""
1656
 
1657
- #: adminpages/orders.php:376 adminpages/orders.php:225
1658
- #: adminpages/orders.php:275
 
1659
  msgid "User ID"
1660
  msgstr ""
1661
 
1662
- #: adminpages/orders.php:385 adminpages/orders.php:234
1663
- #: adminpages/orders.php:284
 
1664
  msgid "Membership Level ID"
1665
  msgstr ""
1666
 
1667
- #: adminpages/orders.php:394 adminpages/orders.php:243
1668
- #: adminpages/orders.php:293
 
1669
  msgid "Billing Name"
1670
  msgstr ""
1671
 
1672
- #: adminpages/orders.php:402 adminpages/orders.php:251
1673
- #: adminpages/orders.php:301
 
1674
  msgid "Billing Street"
1675
  msgstr ""
1676
 
1677
- #: adminpages/orders.php:409 adminpages/orders.php:258
1678
- #: adminpages/orders.php:308
 
1679
  msgid "Billing City"
1680
  msgstr ""
1681
 
1682
- #: adminpages/orders.php:416 adminpages/orders.php:265
1683
- #: adminpages/orders.php:315
 
1684
  msgid "Billing State"
1685
  msgstr ""
1686
 
1687
- #: adminpages/orders.php:423 adminpages/orders.php:272
1688
- #: adminpages/orders.php:322
 
1689
  msgid "Billing Postal Code"
1690
  msgstr ""
1691
 
1692
- #: adminpages/orders.php:430 adminpages/orders.php:279
1693
- #: adminpages/orders.php:329
 
1694
  msgid "Billing Country"
1695
  msgstr ""
1696
 
1697
- #: adminpages/orders.php:438 adminpages/orders.php:287
1698
- #: adminpages/orders.php:337
 
1699
  msgid "Billing Phone"
1700
  msgstr ""
1701
 
1702
- #: adminpages/orders.php:447 adminpages/orders.php:296
1703
- #: adminpages/orders.php:346
 
1704
  msgid "Sub Total"
1705
  msgstr ""
1706
 
1707
- #: adminpages/orders.php:455 adminpages/templates/orders-email.php:60
1708
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1709
- #: adminpages/orders.php:304 adminpages/orders.php:354 pages/invoice.php:78
 
 
 
1710
  #: pages/invoice.php:80
1711
  msgid "Tax"
1712
  msgstr ""
1713
 
1714
- #: adminpages/orders.php:463 adminpages/orders.php:312
1715
- #: adminpages/orders.php:362
 
1716
  msgid "Coupon Amount"
1717
  msgstr ""
1718
 
1719
- #: adminpages/orders.php:471 adminpages/orders.php:971
1720
  #: adminpages/templates/orders-email.php:64
1721
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1722
  #: adminpages/orders.php:320 adminpages/orders.php:370
 
1723
  #: adminpages/orders.php:602 adminpages/orders.php:905
1724
- #: adminpages/orders.php:915 pages/invoice.php:82 pages/invoice.php:84
 
 
 
1725
  msgid "Total"
1726
  msgstr ""
1727
 
1728
- #: adminpages/orders.php:476 adminpages/orders.php:325
1729
- #: adminpages/orders.php:375
 
1730
  msgid "Should be subtotal + tax - couponamount."
1731
  msgstr ""
1732
 
1733
- #: adminpages/orders.php:481 adminpages/orders.php:330
1734
- #: adminpages/orders.php:380
 
1735
  msgid "Payment Type"
1736
  msgstr ""
1737
 
1738
- #: adminpages/orders.php:486 adminpages/orders.php:335
1739
- #: adminpages/orders.php:385
 
1740
  msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1741
  msgstr ""
1742
 
1743
- #: adminpages/orders.php:490
1744
- #: classes/gateways/class.pmprogateway_braintree.php:304
1745
- #: classes/gateways/class.pmprogateway_stripe.php:423 pages/billing.php:250
1746
- #: pages/checkout.php:525 adminpages/orders.php:339 adminpages/orders.php:389
 
1747
  #: classes/gateways/class.pmprogateway_braintree.php:291
1748
  #: classes/gateways/class.pmprogateway_braintree.php:304
 
1749
  #: classes/gateways/class.pmprogateway_stripe.php:408
1750
  #: classes/gateways/class.pmprogateway_stripe.php:409
1751
- #: classes/gateways/class.pmprogateway_stripe.php:419 pages/billing.php:234
1752
- #: pages/billing.php:238 pages/billing.php:247 pages/checkout.php:493
1753
- #: pages/checkout.php:507 pages/checkout.php:510 pages/checkout.php:516
1754
- #: pages/checkout.php:517
 
 
 
1755
  msgid "Card Type"
1756
  msgstr ""
1757
 
1758
- #: adminpages/orders.php:495 adminpages/orders.php:344
1759
- #: adminpages/orders.php:394
 
1760
  msgid "e.g. Visa, MasterCard, AMEX, etc"
1761
  msgstr ""
1762
 
1763
- #: adminpages/orders.php:499
1764
- #: classes/gateways/class.pmprogateway_twocheckout.php:148
1765
  #: adminpages/orders.php:348 adminpages/orders.php:398
 
1766
  #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
1767
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
 
1768
  #: classes/gateways/class.pmprogateway_twocheckout.php:148
1769
  msgid "Account Number"
1770
  msgstr ""
1771
 
1772
- #: adminpages/orders.php:504 adminpages/orders.php:353
1773
- #: adminpages/orders.php:403
 
1774
  msgid "Obscure all but last 4 digits."
1775
  msgstr ""
1776
 
1777
- #: adminpages/orders.php:509 adminpages/orders.php:358
1778
- #: adminpages/orders.php:408
 
1779
  msgid "Expiration Month"
1780
  msgstr ""
1781
 
1782
- #: adminpages/orders.php:516 adminpages/orders.php:365
1783
- #: adminpages/orders.php:415
 
1784
  msgid "Expiration Year"
1785
  msgstr ""
1786
 
1787
- #: adminpages/orders.php:524 adminpages/orders.php:975
1788
  #: adminpages/orders.php:373 adminpages/orders.php:423
 
1789
  #: adminpages/orders.php:606 adminpages/orders.php:909
1790
- #: adminpages/orders.php:919
 
1791
  msgid "Status"
1792
  msgstr ""
1793
 
1794
- #: adminpages/orders.php:545 adminpages/orders.php:973
1795
  #: adminpages/orders.php:394 adminpages/orders.php:444
 
1796
  #: adminpages/orders.php:604 adminpages/orders.php:907
1797
- #: adminpages/orders.php:917
 
1798
  msgid "Gateway"
1799
  msgstr ""
1800
 
1801
- #: adminpages/orders.php:563 adminpages/paymentsettings.php:124
1802
  #: adminpages/orders.php:411 adminpages/orders.php:461
1803
- #: adminpages/orders.php:462 adminpages/paymentsettings.php:124
 
1804
  #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
1805
  #: adminpages/paymentsettings.php:184
1806
  msgid "Gateway Environment"
1807
  msgstr ""
1808
 
1809
- #: adminpages/orders.php:567 adminpages/paymentsettings.php:128
1810
  #: adminpages/orders.php:415 adminpages/orders.php:465
1811
- #: adminpages/orders.php:466 adminpages/paymentsettings.php:128
 
1812
  #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
1813
  #: adminpages/paymentsettings.php:188
1814
  msgid "Sandbox/Testing"
1815
  msgstr ""
1816
 
1817
- #: adminpages/orders.php:568 adminpages/paymentsettings.php:129
1818
  #: adminpages/orders.php:416 adminpages/orders.php:466
1819
- #: adminpages/orders.php:467 adminpages/paymentsettings.php:129
 
1820
  #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
1821
  #: adminpages/paymentsettings.php:189
1822
  msgid "Live/Production"
1823
  msgstr ""
1824
 
1825
- #: adminpages/orders.php:575 adminpages/orders.php:423
1826
  #: adminpages/orders.php:473 adminpages/orders.php:474
 
1827
  msgid "Payment Transaction ID"
1828
  msgstr ""
1829
 
1830
- #: adminpages/orders.php:580 adminpages/orders.php:428
1831
  #: adminpages/orders.php:478 adminpages/orders.php:479
 
1832
  msgid "Generated by the gateway. Useful to cross reference orders."
1833
  msgstr ""
1834
 
1835
- #: adminpages/orders.php:584 adminpages/orders.php:432
1836
  #: adminpages/orders.php:482 adminpages/orders.php:483
 
1837
  msgid "Subscription Transaction ID"
1838
  msgstr ""
1839
 
1840
- #: adminpages/orders.php:589 adminpages/orders.php:437
1841
  #: adminpages/orders.php:487 adminpages/orders.php:488
 
1842
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
1843
  msgstr ""
1844
 
1845
- #: adminpages/orders.php:594 adminpages/orders.php:976 pages/invoice.php:107
1846
  #: shortcodes/pmpro_account.php:125 adminpages/orders.php:442
1847
  #: adminpages/orders.php:492 adminpages/orders.php:493
 
1848
  #: adminpages/orders.php:607 adminpages/orders.php:910
1849
- #: adminpages/orders.php:920 pages/account.php:91 pages/invoice.php:105
 
1850
  #: pages/invoice.php:107 shortcodes/pmpro_account.php:122
 
1851
  msgid "Date"
1852
  msgstr ""
1853
 
1854
- #: adminpages/orders.php:628 adminpages/orders.php:477
1855
- #: adminpages/orders.php:527
 
1856
  msgid "Affiliate ID"
1857
  msgstr ""
1858
 
1859
- #: adminpages/orders.php:636 adminpages/orders.php:485
1860
- #: adminpages/orders.php:535
 
1861
  msgid "Affiliate SubID"
1862
  msgstr ""
1863
 
1864
- #: adminpages/orders.php:646 adminpages/orders.php:495
1865
- #: adminpages/orders.php:545
 
1866
  msgid "Notes"
1867
  msgstr ""
1868
 
1869
- #: adminpages/orders.php:661 adminpages/orders.php:510
1870
- #: adminpages/orders.php:560
 
1871
  msgid "Save Order"
1872
  msgstr ""
1873
 
 
1874
  #: adminpages/orders.php:696
1875
  msgid "Email Invoice"
1876
  msgstr ""
1877
 
 
1878
  #: adminpages/orders.php:699
1879
  msgid "Send an invoice for this order to: "
1880
  msgstr ""
1881
 
 
1882
  #: adminpages/orders.php:701
1883
  msgid "Send Email"
1884
  msgstr ""
1885
 
1886
- #: adminpages/orders.php:706 includes/adminpages.php:55
1887
- #: includes/adminpages.php:167 adminpages/orders.php:520
1888
- #: adminpages/orders.php:570 includes/adminpages.php:17
1889
- #: includes/adminpages.php:55 includes/adminpages.php:84
1890
- #: includes/adminpages.php:156 includes/adminpages.php:163
1891
- #: includes/adminpages.php:167
 
 
1892
  msgid "Orders"
1893
  msgstr ""
1894
 
1895
- #: adminpages/orders.php:707 adminpages/orders.php:521
1896
- #: adminpages/orders.php:571
 
1897
  msgid "Add New Order"
1898
  msgstr ""
1899
 
1900
- #: adminpages/orders.php:742 adminpages/orders.php:606
 
1901
  msgid "Within a Date Range"
1902
  msgstr ""
1903
 
1904
- #: adminpages/orders.php:743 adminpages/orders.php:607
 
1905
  msgid "Predefined Date Range"
1906
  msgstr ""
1907
 
1908
- #: adminpages/orders.php:744 adminpages/orders.php:608
 
1909
  msgid "Within a Level"
1910
  msgstr ""
1911
 
1912
- #: adminpages/orders.php:745 adminpages/orders.php:609
 
1913
  msgid "Within a Status"
1914
  msgstr ""
1915
 
1916
- #: adminpages/orders.php:748 adminpages/orders.php:612
 
1917
  msgid "From"
1918
  msgstr ""
1919
 
1920
- #: adminpages/orders.php:760 adminpages/orders.php:624
 
1921
  msgid "To"
1922
  msgstr ""
1923
 
1924
- #: adminpages/orders.php:772 adminpages/orders.php:636
 
1925
  msgid "filter by "
1926
  msgstr ""
1927
 
1928
- #: adminpages/orders.php:809 adminpages/orders.php:674
 
1929
  msgid "Filter"
1930
  msgstr ""
1931
 
1932
- #: adminpages/orders.php:912 adminpages/orders.php:915
1933
  #: adminpages/orders.php:535 adminpages/orders.php:538
1934
  #: adminpages/orders.php:777 adminpages/orders.php:780
 
 
1935
  msgid "Search Orders"
1936
  msgstr ""
1937
 
1938
- #: adminpages/orders.php:959 adminpages/orders.php:590
1939
  #: adminpages/orders.php:893 adminpages/orders.php:903
 
1940
  #, php-format
1941
  msgid "%d orders found."
1942
  msgstr ""
1943
 
1944
- #: adminpages/orders.php:968 adminpages/reports/login.php:159
1945
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
1946
  #: adminpages/orders.php:599 adminpages/orders.php:902
1947
- #: adminpages/orders.php:912 adminpages/paymentsettings.php:211
 
1948
  #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
1949
  #: adminpages/reports/login.php:141 adminpages/reports/login.php:143
 
1950
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
1951
  msgid "User"
1952
  msgstr ""
1953
 
1954
- #: adminpages/orders.php:970 includes/init.php:238 includes/profile.php:27
1955
  #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
1956
  #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1957
  #: adminpages/orders.php:601 adminpages/orders.php:904
1958
- #: adminpages/orders.php:914 includes/init.php:214 includes/init.php:217
 
1959
  #: includes/init.php:218 includes/init.php:220 includes/init.php:222
1960
- #: includes/init.php:230 includes/profile.php:25 includes/profile.php:27
1961
- #: pages/checkout.php:33 pages/checkout.php:34 pages/checkout.php:35
1962
- #: pages/checkout.php:42 pages/confirmation.php:46 pages/confirmation.php:47
1963
- #: pages/confirmation.php:62 pages/confirmation.php:64
1964
- #: pages/confirmation.php:103 pages/confirmation.php:105 pages/invoice.php:27
1965
- #: pages/invoice.php:28 pages/invoice.php:49 pages/invoice.php:51
 
1966
  msgid "Membership Level"
1967
  msgstr ""
1968
 
1969
- #: adminpages/orders.php:972 adminpages/orders.php:1040
1970
  #: adminpages/orders.php:603 adminpages/orders.php:651
1971
  #: adminpages/orders.php:906 adminpages/orders.php:916
1972
- #: adminpages/orders.php:954 adminpages/orders.php:972
1973
- #: adminpages/orders.php:982
 
1974
  msgid "Payment"
1975
  msgstr ""
1976
 
1977
- #: adminpages/orders.php:974 adminpages/orders.php:605
1978
  #: adminpages/orders.php:908 adminpages/orders.php:918
 
1979
  msgid "Transaction IDs"
1980
  msgstr ""
1981
 
1982
- #: adminpages/orders.php:1001 adminpages/orders.php:630
1983
  #: adminpages/orders.php:933 adminpages/orders.php:943
 
1984
  msgid "deleted"
1985
  msgstr ""
1986
 
1987
- #: adminpages/orders.php:1042 adminpages/orders.php:653
1988
  #: adminpages/orders.php:956 adminpages/orders.php:974
1989
- #: adminpages/orders.php:984
 
1990
  msgid "Subscription"
1991
  msgstr ""
1992
 
1993
- #: adminpages/orders.php:1056 adminpages/orders.php:664
1994
  #: adminpages/orders.php:967 adminpages/orders.php:985
1995
  #: adminpages/orders.php:995 adminpages/orders.php:998
 
1996
  #, php-format
1997
  msgid ""
1998
  "Deleting orders is permanent and can affect active users. Are you sure you "
1999
  "want to delete order %s?"
2000
  msgstr ""
2001
 
 
2002
  #: adminpages/orders.php:1059
2003
  msgid "print"
2004
  msgstr ""
2005
 
 
2006
  #: adminpages/orders.php:1062
2007
  msgid "email"
2008
  msgstr ""
2009
 
2010
- #: adminpages/orders.php:1072 adminpages/orders.php:674
2011
  #: adminpages/orders.php:977 adminpages/orders.php:995
2012
  #: adminpages/orders.php:1005 adminpages/orders.php:1008
 
2013
  msgid "No orders found."
2014
  msgstr ""
2015
 
@@ -2326,7 +2463,7 @@ msgstr ""
2326
  msgid "Details"
2327
  msgstr ""
2328
 
2329
- #: adminpages/reports.php:61
2330
  msgid "Back to Reports Dashboard"
2331
  msgstr ""
2332
 
@@ -2334,149 +2471,185 @@ msgstr ""
2334
  msgid "Visits, Views, and Logins"
2335
  msgstr ""
2336
 
2337
- #: adminpages/reports/login.php:31
2338
  msgid "Visits"
2339
  msgstr ""
2340
 
2341
- #: adminpages/reports/login.php:32
2342
  msgid "Views"
2343
  msgstr ""
2344
 
2345
- #: adminpages/reports/login.php:33
2346
  msgid "Logins"
2347
  msgstr ""
2348
 
2349
  #: adminpages/reports/login.php:38 adminpages/reports/memberships.php:43
2350
- #: adminpages/reports/sales.php:51 adminpages/reports/memberships.php:62
2351
- #: adminpages/reports/memberships.php:81
 
2352
  msgid "Today"
2353
  msgstr ""
2354
 
2355
  #: adminpages/reports/login.php:44 adminpages/reports/memberships.php:48
2356
- #: adminpages/reports/sales.php:56 adminpages/reports/memberships.php:58
2357
- #: adminpages/reports/memberships.php:77
 
2358
  msgid "This Month"
2359
  msgstr ""
2360
 
2361
  #: adminpages/reports/login.php:50 adminpages/reports/memberships.php:58
2362
- #: adminpages/reports/sales.php:66 adminpages/reports/memberships.php:50
2363
- #: adminpages/reports/memberships.php:69
 
2364
  msgid "All Time"
2365
  msgstr ""
2366
 
2367
  #: adminpages/reports/login.php:79 adminpages/reports/login.php:61
2368
- #: adminpages/reports/login.php:63
2369
  msgid "Visits, Views, and Logins Report"
2370
  msgstr ""
2371
 
2372
  #: adminpages/reports/login.php:84 adminpages/reports/login.php:66
2373
- #: adminpages/reports/login.php:68
2374
  msgid "All Users"
2375
  msgstr ""
2376
 
2377
  #: adminpages/reports/login.php:164 adminpages/reports/login.php:146
2378
- #: adminpages/reports/login.php:148
2379
  msgid "Last Visit"
2380
  msgstr ""
2381
 
2382
  #: adminpages/reports/login.php:165 adminpages/reports/login.php:27
2383
  #: adminpages/reports/login.php:28 adminpages/reports/login.php:147
2384
- #: adminpages/reports/login.php:149
2385
  msgid "Visits This Month"
2386
  msgstr ""
2387
 
2388
  #: adminpages/reports/login.php:166 adminpages/reports/login.php:148
2389
- #: adminpages/reports/login.php:150
2390
  msgid "Total Visits"
2391
  msgstr ""
2392
 
2393
  #: adminpages/reports/login.php:167 adminpages/reports/login.php:32
2394
  #: adminpages/reports/login.php:33 adminpages/reports/login.php:149
2395
- #: adminpages/reports/login.php:151
2396
  msgid "Views This Month"
2397
  msgstr ""
2398
 
2399
  #: adminpages/reports/login.php:168 adminpages/reports/login.php:150
2400
- #: adminpages/reports/login.php:152
2401
  msgid "Total Views"
2402
  msgstr ""
2403
 
2404
  #: adminpages/reports/login.php:169 adminpages/reports/login.php:151
2405
- #: adminpages/reports/login.php:153
2406
  msgid "Last Login"
2407
  msgstr ""
2408
 
2409
  #: adminpages/reports/login.php:170 adminpages/reports/login.php:37
2410
  #: adminpages/reports/login.php:38 adminpages/reports/login.php:152
2411
- #: adminpages/reports/login.php:154
2412
  msgid "Logins This Month"
2413
  msgstr ""
2414
 
2415
  #: adminpages/reports/login.php:171 adminpages/reports/login.php:153
2416
- #: adminpages/reports/login.php:155
2417
  msgid "Total Logins"
2418
  msgstr ""
2419
 
2420
  #: adminpages/reports/memberships.php:18
2421
- #: adminpages/reports/memberships.php:252
2422
  #: adminpages/reports/memberships.php:18
 
 
2423
  #: adminpages/reports/memberships.php:288
2424
  msgid "Membership Stats"
2425
  msgstr ""
2426
 
2427
- #: adminpages/reports/memberships.php:37 adminpages/reports/memberships.php:48
 
2428
  msgid "Signups"
2429
  msgstr ""
2430
 
2431
- #: adminpages/reports/memberships.php:38 adminpages/reports/memberships.php:67
2432
- msgid "Cancellations"
2433
  msgstr ""
2434
 
2435
  #: adminpages/reports/memberships.php:53 adminpages/reports/sales.php:61
2436
- #: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
 
2437
  msgid "This Year"
2438
  msgstr ""
2439
 
2440
- #: adminpages/reports/memberships.php:258 adminpages/reports/sales.php:204
 
 
2441
  #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:187
2442
  #: adminpages/reports/sales.php:195 adminpages/reports/sales.php:196
 
2443
  msgid "Daily"
2444
  msgstr ""
2445
 
2446
- #: adminpages/reports/memberships.php:259 adminpages/reports/sales.php:205
 
 
2447
  #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:188
2448
  #: adminpages/reports/sales.php:196 adminpages/reports/sales.php:197
 
2449
  msgid "Monthly"
2450
  msgstr ""
2451
 
2452
- #: adminpages/reports/memberships.php:260 adminpages/reports/sales.php:206
 
 
2453
  #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:189
2454
  #: adminpages/reports/sales.php:197 adminpages/reports/sales.php:198
 
2455
  msgid "Annual"
2456
  msgstr ""
2457
 
 
 
 
 
 
 
2458
  #: adminpages/reports/memberships.php:263
 
2459
  #: adminpages/reports/memberships.php:299
2460
  msgid "Signups vs. Cancellations"
2461
  msgstr ""
2462
 
2463
- #: adminpages/reports/memberships.php:268
2464
- #: adminpages/reports/memberships.php:279 adminpages/reports/sales.php:212
 
 
 
 
 
2465
  #: adminpages/reports/sales.php:223 adminpages/membershiplevels.php:545
2466
  #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
2467
  #: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
2468
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
 
 
 
 
2469
  #: adminpages/reports/memberships.php:304
2470
  #: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:195
2471
  #: adminpages/reports/sales.php:203 adminpages/reports/sales.php:204
2472
- #: adminpages/reports/sales.php:206 adminpages/reports/sales.php:214
2473
- #: adminpages/reports/sales.php:215
 
2474
  msgid "for"
2475
  msgstr ""
2476
 
2477
- #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:239
 
 
2478
  #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:222
2479
  #: adminpages/reports/sales.php:230 adminpages/reports/sales.php:231
 
2480
  msgid "Generate Report"
2481
  msgstr ""
2482
 
@@ -2486,36 +2659,45 @@ msgstr ""
2486
 
2487
  #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:198
2488
  #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:180
2489
- #: adminpages/reports/sales.php:189
2490
  msgid "Sales and Revenue"
2491
  msgstr ""
2492
 
2493
  #: adminpages/reports/sales.php:45 adminpages/reports/sales.php:210
2494
- #: adminpages/reports/sales.php:193 adminpages/reports/sales.php:201
2495
- #: adminpages/reports/sales.php:202
 
2496
  msgid "Sales"
2497
  msgstr ""
2498
 
2499
  #: adminpages/reports/sales.php:46 adminpages/reports/sales.php:209
2500
- #: adminpages/reports/sales.php:192 adminpages/reports/sales.php:200
2501
- #: adminpages/reports/sales.php:201
 
2502
  msgid "Revenue"
2503
  msgstr ""
2504
 
 
 
2505
  #: adminpages/templates/orders-email.php:14
2506
  #: adminpages/templates/orders-print.php:50
2507
  msgid "Invoice #: "
2508
  msgstr ""
2509
 
 
 
2510
  #: adminpages/templates/orders-email.php:18
2511
  #: adminpages/templates/orders-print.php:54
2512
  msgid "Date:"
2513
  msgstr ""
2514
 
 
2515
  #: adminpages/templates/orders-email.php:24
2516
  msgid "Bill to:"
2517
  msgstr ""
2518
 
 
 
2519
  #: adminpages/templates/orders-email.php:47
2520
  #: adminpages/templates/orders-print.php:76
2521
  msgid "Item"
@@ -2523,20 +2705,36 @@ msgstr ""
2523
 
2524
  #: adminpages/templates/orders-email.php:48
2525
  #: adminpages/templates/orders-print.php:77 pages/levels.php:36
2526
- #: pages/levels.php:14
 
 
2527
  msgid "Price"
2528
  msgstr ""
2529
 
2530
  #: adminpages/templates/orders-email.php:56
2531
  #: adminpages/templates/orders-print.php:85 pages/invoice.php:79
2532
- #: pages/invoice.php:77 pages/invoice.php:79
 
 
2533
  msgid "Subtotal"
2534
  msgstr ""
2535
 
2536
- #: classes/class.memberorder.php:644 classes/class.memberorder.php:553
 
 
 
 
 
 
 
 
 
 
 
 
2537
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2538
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2539
- #: includes/cleanup.php:24
2540
  #, php-format
2541
  msgid ""
2542
  "There was an error canceling the subscription for user with ID=%s. You will "
@@ -2573,9 +2771,9 @@ msgstr ""
2573
  #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2574
  #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2575
  #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2576
- #: classes/gateways/class.pmprogateway_braintree.php:362
2577
- #: classes/gateways/class.pmprogateway_stripe.php:510 pages/checkout.php:76
2578
- #: pages/checkout.php:86 pages/checkout.php:612 pages/confirmation.php:52
2579
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2580
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2581
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
@@ -2592,14 +2790,18 @@ msgstr ""
2592
  #: classes/class.pmproemail.php:648 classes/class.pmproemail.php:657
2593
  #: classes/gateways/class.pmprogateway_braintree.php:349
2594
  #: classes/gateways/class.pmprogateway_braintree.php:362
 
2595
  #: classes/gateways/class.pmprogateway_stripe.php:495
2596
  #: classes/gateways/class.pmprogateway_stripe.php:496
2597
- #: classes/gateways/class.pmprogateway_stripe.php:506 pages/checkout.php:66
 
 
2598
  #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2599
  #: pages/checkout.php:76 pages/checkout.php:77 pages/checkout.php:78
2600
- #: pages/checkout.php:85 pages/checkout.php:549 pages/checkout.php:565
2601
- #: pages/checkout.php:566 pages/checkout.php:573 pages/checkout.php:594
2602
- #: pages/checkout.php:603 pages/confirmation.php:51 pages/confirmation.php:52
 
2603
  #: pages/invoice.php:32 pages/invoice.php:33
2604
  msgid "Discount Code"
2605
  msgstr ""
@@ -2624,18 +2826,14 @@ msgstr ""
2624
  msgid "Member Checkout for %s at %s"
2625
  msgstr ""
2626
 
2627
- #: classes/class.pmproemail.php:375 classes/class.pmproemail.php:342
2628
- #: classes/class.pmproemail.php:345 classes/class.pmproemail.php:363
2629
- #: classes/class.pmproemail.php:366 classes/class.pmproemail.php:375
2630
  #, php-format
2631
- msgid "Your billing information has been udpated at %s"
2632
  msgstr ""
2633
 
2634
- #: classes/class.pmproemail.php:428 classes/class.pmproemail.php:386
2635
- #: classes/class.pmproemail.php:390 classes/class.pmproemail.php:416
2636
- #: classes/class.pmproemail.php:419 classes/class.pmproemail.php:428
2637
  #, php-format
2638
- msgid "Billing information has been udpated for %s at %s"
2639
  msgstr ""
2640
 
2641
  #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
@@ -2739,7 +2937,7 @@ msgstr ""
2739
  msgid "Membership has been cancelled"
2740
  msgstr ""
2741
 
2742
- #: classes/class.pmproemail.php:848
2743
  msgid "Invoice for Order #: "
2744
  msgstr ""
2745
 
@@ -2748,7 +2946,7 @@ msgstr ""
2748
  #: classes/gateways/class.pmprogateway_check.php:193
2749
  #: classes/gateways/class.pmprogateway_cybersource.php:171
2750
  #: classes/gateways/class.pmprogateway_payflowpro.php:164
2751
- #: classes/gateways/class.pmprogateway_paypal.php:247
2752
  #: classes/gateways/class.pmprogateway.php:55
2753
  #: classes/gateways/class.pmprogateway_authorizenet.php:55
2754
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
@@ -2760,6 +2958,7 @@ msgstr ""
2760
  #: classes/gateways/class.pmprogateway_payflowpro.php:164
2761
  #: classes/gateways/class.pmprogateway_paypal.php:27
2762
  #: classes/gateways/class.pmprogateway_paypal.php:247
 
2763
  msgid "Unknown error: Authorization failed."
2764
  msgstr ""
2765
 
@@ -2769,15 +2968,15 @@ msgstr ""
2769
  #: classes/gateways/class.pmprogateway_authorizenet.php:222
2770
  #: classes/gateways/class.pmprogateway_authorizenet.php:227
2771
  #: classes/gateways/class.pmprogateway_authorizenet.php:244
2772
- #: classes/gateways/class.pmprogateway_check.php:244
2773
- #: classes/gateways/class.pmprogateway_check.php:249
2774
- #: classes/gateways/class.pmprogateway_check.php:267
2775
  #: classes/gateways/class.pmprogateway_cybersource.php:222
2776
  #: classes/gateways/class.pmprogateway_cybersource.php:227
2777
  #: classes/gateways/class.pmprogateway_cybersource.php:245
2778
  #: classes/gateways/class.pmprogateway_payflowpro.php:187
2779
  #: classes/gateways/class.pmprogateway_payflowpro.php:192
2780
- #: classes/gateways/class.pmprogateway_paypal.php:270
2781
  #: classes/gateways/class.pmprogateway.php:106
2782
  #: classes/gateways/class.pmprogateway.php:111
2783
  #: classes/gateways/class.pmprogateway.php:129
@@ -2791,8 +2990,11 @@ msgstr ""
2791
  #: classes/gateways/class.pmprogateway_check.php:116
2792
  #: classes/gateways/class.pmprogateway_check.php:134
2793
  #: classes/gateways/class.pmprogateway_check.php:244
 
2794
  #: classes/gateways/class.pmprogateway_check.php:249
 
2795
  #: classes/gateways/class.pmprogateway_check.php:267
 
2796
  #: classes/gateways/class.pmprogateway_cybersource.php:108
2797
  #: classes/gateways/class.pmprogateway_cybersource.php:113
2798
  #: classes/gateways/class.pmprogateway_cybersource.php:131
@@ -2805,18 +3007,20 @@ msgstr ""
2805
  #: classes/gateways/class.pmprogateway_payflowpro.php:192
2806
  #: classes/gateways/class.pmprogateway_paypal.php:50
2807
  #: classes/gateways/class.pmprogateway_paypal.php:270
 
2808
  msgid "Unknown error: Payment failed."
2809
  msgstr ""
2810
 
2811
  #: classes/gateways/class.pmprogateway.php:113
2812
  #: classes/gateways/class.pmprogateway_authorizenet.php:228
2813
- #: classes/gateways/class.pmprogateway_check.php:251
2814
  #: classes/gateways/class.pmprogateway_cybersource.php:229
2815
  #: classes/gateways/class.pmprogateway.php:113
2816
  #: classes/gateways/class.pmprogateway_authorizenet.php:112
2817
  #: classes/gateways/class.pmprogateway_authorizenet.php:228
2818
  #: classes/gateways/class.pmprogateway_check.php:118
2819
  #: classes/gateways/class.pmprogateway_check.php:251
 
2820
  #: classes/gateways/class.pmprogateway_cybersource.php:115
2821
  #: classes/gateways/class.pmprogateway_cybersource.php:229
2822
  msgid ""
@@ -2825,10 +3029,11 @@ msgid ""
2825
  msgstr ""
2826
 
2827
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
2828
- #: paid-memberships-pro.php:131
2829
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
2830
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
2831
- #: paid-memberships-pro.php:130
 
2832
  msgid "Authorize.net"
2833
  msgstr ""
2834
 
@@ -2875,15 +3080,17 @@ msgstr ""
2875
  #: classes/gateways/class.pmprogateway_authorizenet.php:793
2876
  #: classes/gateways/class.pmprogateway_authorizenet.php:908
2877
  #: classes/gateways/class.pmprogateway_authorizenet.php:909
 
2878
  msgid "Could not connect to Authorize.net"
2879
  msgstr ""
2880
 
2881
  #: classes/gateways/class.pmprogateway_braintree.php:76
2882
- #: paid-memberships-pro.php:132
2883
  #: classes/gateways/class.pmprogateway_braintree.php:63
2884
  #: classes/gateways/class.pmprogateway_braintree.php:76
2885
  #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
2886
- #: paid-memberships-pro.php:131
 
2887
  msgid "Braintree Payments"
2888
  msgstr ""
2889
 
@@ -2929,7 +3136,7 @@ msgid "Client-Side Encryption Key"
2929
  msgstr ""
2930
 
2931
  #: classes/gateways/class.pmprogateway_braintree.php:169
2932
- #: classes/gateways/class.pmprogateway_stripe.php:192
2933
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
2934
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
2935
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
@@ -2939,6 +3146,7 @@ msgstr ""
2939
  #: classes/gateways/class.pmprogateway_stripe.php:181
2940
  #: classes/gateways/class.pmprogateway_stripe.php:182
2941
  #: classes/gateways/class.pmprogateway_stripe.php:192
 
2942
  msgid "Web Hook URL"
2943
  msgstr ""
2944
 
@@ -2950,159 +3158,193 @@ msgstr ""
2950
  msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
2951
  msgstr ""
2952
 
2953
- #: classes/gateways/class.pmprogateway_braintree.php:283
2954
- #: classes/gateways/class.pmprogateway_stripe.php:402 pages/checkout.php:501
2955
  #: classes/gateways/class.pmprogateway_braintree.php:270
2956
  #: classes/gateways/class.pmprogateway_braintree.php:283
 
2957
  #: classes/gateways/class.pmprogateway_stripe.php:387
2958
  #: classes/gateways/class.pmprogateway_stripe.php:388
2959
- #: classes/gateways/class.pmprogateway_stripe.php:398 pages/checkout.php:476
 
 
2960
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2961
- #: pages/checkout.php:494 pages/checkout.php:500
 
2962
  msgid "Payment Information"
2963
  msgstr ""
2964
 
2965
- #: classes/gateways/class.pmprogateway_braintree.php:283
2966
- #: classes/gateways/class.pmprogateway_stripe.php:402 pages/checkout.php:502
2967
  #: classes/gateways/class.pmprogateway_braintree.php:270
2968
  #: classes/gateways/class.pmprogateway_braintree.php:283
 
2969
  #: classes/gateways/class.pmprogateway_stripe.php:387
2970
  #: classes/gateways/class.pmprogateway_stripe.php:388
2971
- #: classes/gateways/class.pmprogateway_stripe.php:398 pages/checkout.php:476
 
 
2972
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2973
- #: pages/checkout.php:494 pages/checkout.php:500
 
2974
  #, php-format
2975
  msgid "We Accept %s"
2976
  msgstr ""
2977
 
2978
- #: classes/gateways/class.pmprogateway_braintree.php:316
2979
- #: classes/gateways/class.pmprogateway_stripe.php:464 pages/billing.php:260
2980
- #: pages/checkout.php:566
2981
  #: classes/gateways/class.pmprogateway_braintree.php:303
2982
  #: classes/gateways/class.pmprogateway_braintree.php:316
 
2983
  #: classes/gateways/class.pmprogateway_stripe.php:449
2984
  #: classes/gateways/class.pmprogateway_stripe.php:450
2985
- #: classes/gateways/class.pmprogateway_stripe.php:460 pages/billing.php:244
2986
- #: pages/billing.php:248 pages/billing.php:257 pages/checkout.php:503
2987
- #: pages/checkout.php:519 pages/checkout.php:520 pages/checkout.php:527
2988
- #: pages/checkout.php:548 pages/checkout.php:557
 
 
 
2989
  msgid "Card Number"
2990
  msgstr ""
2991
 
2992
- #: classes/gateways/class.pmprogateway_braintree.php:353
2993
- #: classes/gateways/class.pmprogateway_stripe.php:501 pages/billing.php:297
2994
- #: pages/checkout.php:603
2995
  #: classes/gateways/class.pmprogateway_braintree.php:340
2996
  #: classes/gateways/class.pmprogateway_braintree.php:353
 
2997
  #: classes/gateways/class.pmprogateway_stripe.php:486
2998
  #: classes/gateways/class.pmprogateway_stripe.php:487
2999
- #: classes/gateways/class.pmprogateway_stripe.php:497 pages/billing.php:281
3000
- #: pages/billing.php:285 pages/billing.php:294 pages/checkout.php:540
3001
- #: pages/checkout.php:556 pages/checkout.php:557 pages/checkout.php:564
3002
- #: pages/checkout.php:585 pages/checkout.php:594
 
 
 
3003
  msgid "CVV"
3004
  msgstr ""
3005
 
3006
- #: classes/gateways/class.pmprogateway_braintree.php:354
3007
- #: classes/gateways/class.pmprogateway_stripe.php:502 pages/billing.php:298
3008
- #: pages/checkout.php:604
3009
  #: classes/gateways/class.pmprogateway_braintree.php:341
3010
  #: classes/gateways/class.pmprogateway_braintree.php:354
 
3011
  #: classes/gateways/class.pmprogateway_stripe.php:487
3012
  #: classes/gateways/class.pmprogateway_stripe.php:488
3013
- #: classes/gateways/class.pmprogateway_stripe.php:498 pages/billing.php:282
3014
- #: pages/billing.php:286 pages/billing.php:295 pages/checkout.php:541
3015
- #: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
3016
- #: pages/checkout.php:586 pages/checkout.php:595
 
 
 
3017
  msgid "what's this?"
3018
  msgstr ""
3019
 
3020
- #: classes/gateways/class.pmprogateway_braintree.php:364
3021
- #: classes/gateways/class.pmprogateway_stripe.php:512 pages/checkout.php:88
3022
- #: pages/checkout.php:614
3023
  #: classes/gateways/class.pmprogateway_braintree.php:351
3024
  #: classes/gateways/class.pmprogateway_braintree.php:364
 
3025
  #: classes/gateways/class.pmprogateway_stripe.php:497
3026
  #: classes/gateways/class.pmprogateway_stripe.php:498
3027
- #: classes/gateways/class.pmprogateway_stripe.php:508 pages/checkout.php:78
 
 
3028
  #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3029
- #: pages/checkout.php:551 pages/checkout.php:567 pages/checkout.php:568
3030
- #: pages/checkout.php:575 pages/checkout.php:596 pages/checkout.php:605
 
3031
  msgid "Apply"
3032
  msgstr ""
3033
 
3034
- #: classes/gateways/class.pmprogateway_braintree.php:419
3035
- #: classes/gateways/class.pmprogateway_stripe.php:1040
3036
  #: classes/gateways/class.pmprogateway_braintree.php:61
3037
  #: classes/gateways/class.pmprogateway_braintree.php:406
3038
  #: classes/gateways/class.pmprogateway_braintree.php:419
 
3039
  #: classes/gateways/class.pmprogateway_stripe.php:53
3040
  #: classes/gateways/class.pmprogateway_stripe.php:1011
3041
  #: classes/gateways/class.pmprogateway_stripe.php:1025
3042
  #: classes/gateways/class.pmprogateway_stripe.php:1026
3043
  #: classes/gateways/class.pmprogateway_stripe.php:1036
 
 
3044
  msgid "Unknown error: Initial payment failed."
3045
  msgstr ""
3046
 
3047
- #: classes/gateways/class.pmprogateway_braintree.php:478
3048
  #: classes/gateways/class.pmprogateway_braintree.php:120
3049
  #: classes/gateways/class.pmprogateway_braintree.php:465
3050
  #: classes/gateways/class.pmprogateway_braintree.php:478
 
3051
  msgid "Error during settlement:"
3052
  msgstr ""
3053
 
3054
- #: classes/gateways/class.pmprogateway_braintree.php:487
3055
  #: classes/gateways/class.pmprogateway_braintree.php:129
3056
  #: classes/gateways/class.pmprogateway_braintree.php:474
3057
  #: classes/gateways/class.pmprogateway_braintree.php:487
 
3058
  msgid "Error during charge:"
3059
  msgstr ""
3060
 
3061
- #: classes/gateways/class.pmprogateway_braintree.php:579
3062
  #: classes/gateways/class.pmprogateway_braintree.php:198
3063
  #: classes/gateways/class.pmprogateway_braintree.php:221
3064
  #: classes/gateways/class.pmprogateway_braintree.php:566
3065
  #: classes/gateways/class.pmprogateway_braintree.php:579
 
3066
  msgid "Failed to update customer."
3067
  msgstr ""
3068
 
3069
- #: classes/gateways/class.pmprogateway_braintree.php:627
3070
  #: classes/gateways/class.pmprogateway_braintree.php:246
3071
  #: classes/gateways/class.pmprogateway_braintree.php:269
3072
  #: classes/gateways/class.pmprogateway_braintree.php:614
3073
  #: classes/gateways/class.pmprogateway_braintree.php:627
 
3074
  msgid "Failed to create customer."
3075
  msgstr ""
3076
 
3077
- #: classes/gateways/class.pmprogateway_braintree.php:634
3078
  #: classes/gateways/class.pmprogateway_braintree.php:253
3079
  #: classes/gateways/class.pmprogateway_braintree.php:276
3080
  #: classes/gateways/class.pmprogateway_braintree.php:621
3081
  #: classes/gateways/class.pmprogateway_braintree.php:634
 
3082
  msgid "Error creating customer record with Braintree:"
3083
  msgstr ""
3084
 
3085
- #: classes/gateways/class.pmprogateway_braintree.php:734
3086
  #: classes/gateways/class.pmprogateway_braintree.php:344
3087
  #: classes/gateways/class.pmprogateway_braintree.php:345
3088
  #: classes/gateways/class.pmprogateway_braintree.php:376
3089
  #: classes/gateways/class.pmprogateway_braintree.php:721
3090
  #: classes/gateways/class.pmprogateway_braintree.php:734
 
3091
  msgid "Error subscribing customer to plan with Braintree:"
3092
  msgstr ""
3093
 
3094
- #: classes/gateways/class.pmprogateway_braintree.php:749
3095
  #: classes/gateways/class.pmprogateway_braintree.php:359
3096
  #: classes/gateways/class.pmprogateway_braintree.php:360
3097
  #: classes/gateways/class.pmprogateway_braintree.php:391
3098
  #: classes/gateways/class.pmprogateway_braintree.php:736
3099
  #: classes/gateways/class.pmprogateway_braintree.php:749
 
3100
  msgid "Failed to subscribe with Braintree:"
3101
  msgstr ""
3102
 
3103
- #: classes/gateways/class.pmprogateway_braintree.php:787
3104
- #: classes/gateways/class.pmprogateway_braintree.php:800
3105
- #: classes/gateways/class.pmprogateway_braintree.php:807
3106
  #: classes/gateways/class.pmprogateway_braintree.php:397
3107
  #: classes/gateways/class.pmprogateway_braintree.php:398
3108
  #: classes/gateways/class.pmprogateway_braintree.php:410
@@ -3114,9 +3356,12 @@ msgstr ""
3114
  #: classes/gateways/class.pmprogateway_braintree.php:449
3115
  #: classes/gateways/class.pmprogateway_braintree.php:774
3116
  #: classes/gateways/class.pmprogateway_braintree.php:787
 
3117
  #: classes/gateways/class.pmprogateway_braintree.php:794
3118
  #: classes/gateways/class.pmprogateway_braintree.php:800
 
3119
  #: classes/gateways/class.pmprogateway_braintree.php:807
 
3120
  #: classes/gateways/class.pmprogateway_stripe.php:343
3121
  #: classes/gateways/class.pmprogateway_stripe.php:344
3122
  #: classes/gateways/class.pmprogateway_stripe.php:351
@@ -3130,12 +3375,13 @@ msgid "Could not find the subscription."
3130
  msgstr ""
3131
 
3132
  #: classes/gateways/class.pmprogateway_check.php:48
3133
- #: paid-memberships-pro.php:125 adminpages/orders.php:399
3134
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3135
  #: adminpages/paymentsettings.php:159
3136
  #: classes/gateways/class.pmprogateway_check.php:48
3137
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:117
3138
- #: paid-memberships-pro.php:124
 
3139
  msgid "Pay by Check"
3140
  msgstr ""
3141
 
@@ -3211,11 +3457,11 @@ msgid "Vendor"
3211
  msgstr ""
3212
 
3213
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3214
- #: pages/checkout.php:191 adminpages/paymentsettings.php:219
3215
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3216
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3217
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
3218
- #: pages/checkout.php:189
3219
  msgid "Password"
3220
  msgstr ""
3221
 
@@ -3233,21 +3479,23 @@ msgid ""
3233
  msgstr ""
3234
 
3235
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3236
- #: classes/gateways/class.pmprogateway_paypal.php:277
3237
  #: classes/gateways/class.pmprogateway_payflowpro.php:57
3238
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3239
  #: classes/gateways/class.pmprogateway_paypal.php:57
3240
  #: classes/gateways/class.pmprogateway_paypal.php:277
 
3241
  msgid ""
3242
  "A partial payment was made that we could not refund. Please contact the site "
3243
  "owner immediately to correct this."
3244
  msgstr ""
3245
 
3246
  #: classes/gateways/class.pmprogateway_paypal.php:57
3247
- #: paid-memberships-pro.php:128
3248
  #: classes/gateways/class.pmprogateway_paypal.php:57
3249
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
3250
- #: paid-memberships-pro.php:127
 
3251
  msgid "PayPal Website Payments Pro"
3252
  msgstr ""
3253
 
@@ -3292,7 +3540,7 @@ msgstr ""
3292
  #: classes/gateways/class.pmprogateway_paypal.php:131
3293
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3294
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3295
- #: classes/gateways/class.pmprogateway_twocheckout.php:121
3296
  #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
3297
  #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
3298
  #: adminpages/paymentsettings.php:336
@@ -3301,6 +3549,7 @@ msgstr ""
3301
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3302
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3303
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
 
3304
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3305
  msgid "API Username"
3306
  msgstr ""
@@ -3308,7 +3557,7 @@ msgstr ""
3308
  #: classes/gateways/class.pmprogateway_paypal.php:139
3309
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3310
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3311
- #: classes/gateways/class.pmprogateway_twocheckout.php:130
3312
  #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
3313
  #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
3314
  #: adminpages/paymentsettings.php:344
@@ -3317,6 +3566,7 @@ msgstr ""
3317
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3318
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3319
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
 
3320
  #: classes/gateways/class.pmprogateway_twocheckout.php:130
3321
  msgid "API Password"
3322
  msgstr ""
@@ -3355,54 +3605,60 @@ msgstr ""
3355
  #: classes/gateways/class.pmprogateway_paypal.php:178
3356
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3357
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3358
- #: pages/checkout.php:300 classes/gateways/class.pmprogateway_paypal.php:178
3359
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3360
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3361
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3362
  #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3363
- #: pages/checkout.php:302 pages/checkout.php:309 pages/checkout.php:675
3364
- #: pages/checkout.php:682 pages/checkout.php:685 pages/checkout.php:701
 
3365
  msgid "Check Out with PayPal"
3366
  msgstr ""
3367
 
3368
  #: classes/gateways/class.pmprogateway_paypal.php:184
3369
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3370
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3371
- #: pages/checkout.php:722 classes/gateways/class.pmprogateway_paypal.php:184
3372
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3373
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3374
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3375
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3376
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
 
3377
  msgid "Submit and Check Out"
3378
  msgstr ""
3379
 
3380
  #: classes/gateways/class.pmprogateway_paypal.php:184
3381
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3382
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3383
- #: classes/gateways/class.pmprogateway_twocheckout.php:214
3384
- #: pages/checkout.php:722 classes/gateways/class.pmprogateway_paypal.php:184
3385
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3386
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3387
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3388
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
 
3389
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3390
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3391
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
 
3392
  msgid "Submit and Confirm"
3393
  msgstr ""
3394
 
3395
- #: classes/gateways/class.pmprogateway_paypal.php:605
3396
- #: classes/gateways/class.pmprogateway_paypalexpress.php:750
3397
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3398
  #: classes/gateways/class.pmprogateway_paypal.php:385
3399
  #: classes/gateways/class.pmprogateway_paypal.php:605
 
3400
  #: classes/gateways/class.pmprogateway_paypalexpress.php:301
3401
  #: classes/gateways/class.pmprogateway_paypalexpress.php:303
3402
  #: classes/gateways/class.pmprogateway_paypalexpress.php:305
3403
  #: classes/gateways/class.pmprogateway_paypalexpress.php:731
3404
  #: classes/gateways/class.pmprogateway_paypalexpress.php:740
3405
  #: classes/gateways/class.pmprogateway_paypalexpress.php:750
 
3406
  #: classes/gateways/class.pmprogateway_paypalstandard.php:216
3407
  #: classes/gateways/class.pmprogateway_paypalstandard.php:220
3408
  #: classes/gateways/class.pmprogateway_paypalstandard.php:230
@@ -3414,11 +3670,12 @@ msgid ""
3414
  msgstr ""
3415
 
3416
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3417
- #: paid-memberships-pro.php:127
3418
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3419
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3420
  #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3421
- #: paid-memberships-pro.php:126
 
3422
  msgid "PayPal Express"
3423
  msgstr ""
3424
 
@@ -3446,10 +3703,11 @@ msgid "The PayPal Token was lost."
3446
  msgstr ""
3447
 
3448
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3449
- #: paid-memberships-pro.php:130
3450
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3451
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
3452
- #: paid-memberships-pro.php:129
 
3453
  msgid "PayPal Standard"
3454
  msgstr ""
3455
 
@@ -3460,111 +3718,138 @@ msgid ""
3460
  "settings."
3461
  msgstr ""
3462
 
3463
- #: classes/gateways/class.pmprogateway_stripe.php:104
3464
- #: paid-memberships-pro.php:126
 
 
 
 
 
 
 
 
3465
  #: classes/gateways/class.pmprogateway_stripe.php:93
3466
  #: classes/gateways/class.pmprogateway_stripe.php:94
3467
  #: classes/gateways/class.pmprogateway_stripe.php:104
 
3468
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3469
- #: paid-memberships-pro.php:125
 
3470
  msgid "Stripe"
3471
  msgstr ""
3472
 
3473
- #: classes/gateways/class.pmprogateway_stripe.php:159
3474
  #: classes/gateways/class.pmprogateway_stripe.php:148
3475
  #: classes/gateways/class.pmprogateway_stripe.php:149
3476
  #: classes/gateways/class.pmprogateway_stripe.php:159
 
3477
  msgid "Stripe Settings"
3478
  msgstr ""
3479
 
3480
- #: classes/gateways/class.pmprogateway_stripe.php:164
3481
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3482
  #: adminpages/paymentsettings.php:286
3483
  #: classes/gateways/class.pmprogateway_stripe.php:153
3484
  #: classes/gateways/class.pmprogateway_stripe.php:154
3485
  #: classes/gateways/class.pmprogateway_stripe.php:164
 
3486
  msgid "Secret Key"
3487
  msgstr ""
3488
 
3489
- #: classes/gateways/class.pmprogateway_stripe.php:172
3490
  #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3491
  #: adminpages/paymentsettings.php:294
3492
  #: classes/gateways/class.pmprogateway_stripe.php:161
3493
  #: classes/gateways/class.pmprogateway_stripe.php:162
3494
  #: classes/gateways/class.pmprogateway_stripe.php:172
 
3495
  msgid "Publishable Key"
3496
  msgstr ""
3497
 
3498
- #: classes/gateways/class.pmprogateway_stripe.php:180
3499
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3500
  #: adminpages/paymentsettings.php:432
3501
  #: classes/gateways/class.pmprogateway_stripe.php:169
3502
  #: classes/gateways/class.pmprogateway_stripe.php:170
3503
  #: classes/gateways/class.pmprogateway_stripe.php:180
 
3504
  msgid "Show Billing Address Fields"
3505
  msgstr ""
3506
 
3507
- #: classes/gateways/class.pmprogateway_stripe.php:187
3508
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3509
  #: classes/gateways/class.pmprogateway_stripe.php:176
3510
  #: classes/gateways/class.pmprogateway_stripe.php:177
3511
  #: classes/gateways/class.pmprogateway_stripe.php:187
 
3512
  msgid ""
3513
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3514
  "the checkout page.<br /><strong>If No, make sure you disable address "
3515
  "verification in the Stripe dashboard settings.</strong>"
3516
  msgstr ""
3517
 
3518
- #: classes/gateways/class.pmprogateway_stripe.php:195
3519
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3520
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3521
  #: classes/gateways/class.pmprogateway_stripe.php:184
3522
  #: classes/gateways/class.pmprogateway_stripe.php:185
3523
  #: classes/gateways/class.pmprogateway_stripe.php:195
 
3524
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3525
  msgstr ""
3526
 
3527
- #: classes/gateways/class.pmprogateway_stripe.php:582
3528
  #: classes/gateways/class.pmprogateway_stripe.php:567
3529
  #: classes/gateways/class.pmprogateway_stripe.php:568
3530
  #: classes/gateways/class.pmprogateway_stripe.php:578
 
 
3531
  msgid "Subscription Updates"
3532
  msgstr ""
3533
 
3534
- #: classes/gateways/class.pmprogateway_stripe.php:586
3535
  #: classes/gateways/class.pmprogateway_stripe.php:571
3536
  #: classes/gateways/class.pmprogateway_stripe.php:572
3537
  #: classes/gateways/class.pmprogateway_stripe.php:582
 
 
3538
  msgid ""
3539
  "Subscription updates, allow you to change the member's subscription values "
3540
  "at predefined times. Be sure to click Update Profile after making changes."
3541
  msgstr ""
3542
 
3543
- #: classes/gateways/class.pmprogateway_stripe.php:588
3544
  #: classes/gateways/class.pmprogateway_stripe.php:573
3545
  #: classes/gateways/class.pmprogateway_stripe.php:574
3546
  #: classes/gateways/class.pmprogateway_stripe.php:584
 
 
3547
  msgid ""
3548
  "Subscription updates, allow you to change the member's subscription values "
3549
  "at predefined times. Be sure to click Update User after making changes."
3550
  msgstr ""
3551
 
3552
- #: classes/gateways/class.pmprogateway_stripe.php:593 pages/billing.php:341
3553
  #: classes/gateways/class.pmprogateway_stripe.php:578
3554
  #: classes/gateways/class.pmprogateway_stripe.php:579
3555
- #: classes/gateways/class.pmprogateway_stripe.php:589 pages/billing.php:294
 
 
3556
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
 
3557
  msgid "Update"
3558
  msgstr ""
3559
 
3560
- #: classes/gateways/class.pmprogateway_stripe.php:784
3561
  #: classes/gateways/class.pmprogateway_stripe.php:769
3562
  #: classes/gateways/class.pmprogateway_stripe.php:770
3563
  #: classes/gateways/class.pmprogateway_stripe.php:780
 
 
3564
  msgid "Could not cancel the old subscription. Updates have not been processed."
3565
  msgstr ""
3566
 
3567
- #: classes/gateways/class.pmprogateway_stripe.php:1218
3568
  #: classes/gateways/class.pmprogateway_stripe.php:190
3569
  #: classes/gateways/class.pmprogateway_stripe.php:192
3570
  #: classes/gateways/class.pmprogateway_stripe.php:199
@@ -3575,14 +3860,18 @@ msgstr ""
3575
  #: classes/gateways/class.pmprogateway_stripe.php:1203
3576
  #: classes/gateways/class.pmprogateway_stripe.php:1204
3577
  #: classes/gateways/class.pmprogateway_stripe.php:1214
 
 
3578
  msgid "Error creating customer record with Stripe:"
3579
  msgstr ""
3580
 
 
3581
  #: classes/gateways/class.pmprogateway_stripe.php:1275
 
3582
  msgid "Error getting subscription with Stripe:"
3583
  msgstr ""
3584
 
3585
- #: classes/gateways/class.pmprogateway_stripe.php:1425
3586
  #: classes/gateways/class.pmprogateway_stripe.php:278
3587
  #: classes/gateways/class.pmprogateway_stripe.php:279
3588
  #: classes/gateways/class.pmprogateway_stripe.php:286
@@ -3601,10 +3890,12 @@ msgstr ""
3601
  #: classes/gateways/class.pmprogateway_stripe.php:1410
3602
  #: classes/gateways/class.pmprogateway_stripe.php:1411
3603
  #: classes/gateways/class.pmprogateway_stripe.php:1421
 
 
3604
  msgid "Error creating plan with Stripe:"
3605
  msgstr ""
3606
 
3607
- #: classes/gateways/class.pmprogateway_stripe.php:1456
3608
  #: classes/gateways/class.pmprogateway_stripe.php:294
3609
  #: classes/gateways/class.pmprogateway_stripe.php:295
3610
  #: classes/gateways/class.pmprogateway_stripe.php:302
@@ -3618,10 +3909,12 @@ msgstr ""
3618
  #: classes/gateways/class.pmprogateway_stripe.php:1441
3619
  #: classes/gateways/class.pmprogateway_stripe.php:1442
3620
  #: classes/gateways/class.pmprogateway_stripe.php:1452
 
 
3621
  msgid "Error subscribing customer to plan with Stripe:"
3622
  msgstr ""
3623
 
3624
- #: classes/gateways/class.pmprogateway_stripe.php:1552
3625
  #: classes/gateways/class.pmprogateway_stripe.php:383
3626
  #: classes/gateways/class.pmprogateway_stripe.php:389
3627
  #: classes/gateways/class.pmprogateway_stripe.php:410
@@ -3632,10 +3925,12 @@ msgstr ""
3632
  #: classes/gateways/class.pmprogateway_stripe.php:1537
3633
  #: classes/gateways/class.pmprogateway_stripe.php:1538
3634
  #: classes/gateways/class.pmprogateway_stripe.php:1548
 
 
3635
  msgid "Could not cancel old subscription."
3636
  msgstr ""
3637
 
3638
- #: classes/gateways/class.pmprogateway_stripe.php:1569
3639
  #: classes/gateways/class.pmprogateway_stripe.php:1533
3640
  #: classes/gateways/class.pmprogateway_stripe.php:1534
3641
  #: classes/gateways/class.pmprogateway_stripe.php:1535
@@ -3643,324 +3938,374 @@ msgstr ""
3643
  #: classes/gateways/class.pmprogateway_stripe.php:1554
3644
  #: classes/gateways/class.pmprogateway_stripe.php:1555
3645
  #: classes/gateways/class.pmprogateway_stripe.php:1565
 
 
3646
  msgid "Could not find the customer."
3647
  msgstr ""
3648
 
3649
- #: classes/gateways/class.pmprogateway_twocheckout.php:60
3650
- #: paid-memberships-pro.php:133
3651
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
 
3652
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
3653
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3654
- #: paid-memberships-pro.php:132
 
3655
  msgid "2Checkout"
3656
  msgstr ""
3657
 
3658
- #: classes/gateways/class.pmprogateway_twocheckout.php:116
3659
  #: classes/gateways/class.pmprogateway_twocheckout.php:108
 
3660
  #: classes/gateways/class.pmprogateway_twocheckout.php:116
3661
  msgid "2Checkout Settings"
3662
  msgstr ""
3663
 
3664
- #: classes/gateways/class.pmprogateway_twocheckout.php:125
 
3665
  #: classes/gateways/class.pmprogateway_twocheckout.php:125
3666
  msgid ""
3667
  "Go to Account &raquo; User Management in 2Checkout and create a user with "
3668
  "API Access and API Updating."
3669
  msgstr ""
3670
 
3671
- #: classes/gateways/class.pmprogateway_twocheckout.php:134
 
3672
  #: classes/gateways/class.pmprogateway_twocheckout.php:134
3673
  msgid "Password for the API user created."
3674
  msgstr ""
3675
 
3676
- #: classes/gateways/class.pmprogateway_twocheckout.php:139
3677
- #: classes/gateways/class.pmprogateway_twocheckout.php:139
3678
- msgid "API Private Key"
3679
- msgstr ""
3680
-
3681
- #: classes/gateways/class.pmprogateway_twocheckout.php:143
3682
- #: classes/gateways/class.pmprogateway_twocheckout.php:143
3683
- msgid ""
3684
- "Go to API in 2Checkout and generate a new key pair. Paste the Private Key "
3685
- "here."
3686
- msgstr ""
3687
-
3688
- #: classes/gateways/class.pmprogateway_twocheckout.php:152
3689
  #: classes/gateways/class.pmprogateway_twocheckout.php:152
3690
  msgid "Click on the profile icon in 2Checkout to find your Account Number."
3691
  msgstr ""
3692
 
3693
- #: classes/gateways/class.pmprogateway_twocheckout.php:157
3694
  #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3695
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
 
3696
  #: classes/gateways/class.pmprogateway_twocheckout.php:157
3697
  msgid "Secret Word"
3698
  msgstr ""
3699
 
3700
- #: classes/gateways/class.pmprogateway_twocheckout.php:161
 
3701
  #: classes/gateways/class.pmprogateway_twocheckout.php:161
3702
  msgid ""
3703
  "Go to Account &raquo; Site Management. Look under Checkout Options to find "
3704
  "the Secret Word."
3705
  msgstr ""
3706
 
3707
- #: classes/gateways/class.pmprogateway_twocheckout.php:166
3708
  #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
3709
  #: adminpages/paymentsettings.php:495
3710
  #: classes/gateways/class.pmprogateway_twocheckout.php:145
 
3711
  #: classes/gateways/class.pmprogateway_twocheckout.php:166
3712
  msgid "TwoCheckout INS URL"
3713
  msgstr ""
3714
 
3715
- #: classes/gateways/class.pmprogateway_twocheckout.php:169
 
3716
  #: classes/gateways/class.pmprogateway_twocheckout.php:169
3717
  msgid ""
3718
  "To fully integrate with 2Checkout, be sure to use the following for your INS "
3719
  "URL and Approved URL"
3720
  msgstr ""
3721
 
3722
- #: classes/gateways/class.pmprogateway_twocheckout.php:214
3723
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
 
3724
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3725
  msgid "Check Out with 2Checkout"
3726
  msgstr ""
3727
 
3728
- #: includes/adminpages.php:47 includes/adminpages.php:9
3729
  #: includes/adminpages.php:39 includes/adminpages.php:47
3730
- #: includes/adminpages.php:93 includes/adminpages.php:100
 
3731
  msgid "Memberships"
3732
  msgstr ""
3733
 
3734
- #: includes/adminpages.php:48 includes/adminpages.php:118
3735
  #: includes/adminpages.php:10 includes/adminpages.php:48
3736
  #: includes/adminpages.php:49 includes/adminpages.php:107
3737
  #: includes/adminpages.php:114 includes/adminpages.php:118
 
3738
  msgid "Page Settings"
3739
  msgstr ""
3740
 
3741
- #: includes/adminpages.php:49 includes/adminpages.php:125
3742
  #: includes/adminpages.php:11 includes/adminpages.php:49
3743
- #: includes/adminpages.php:54 includes/adminpages.php:114
3744
- #: includes/adminpages.php:121 includes/adminpages.php:125
 
3745
  msgid "Payment Settings"
3746
  msgstr ""
3747
 
3748
- #: includes/adminpages.php:54 includes/adminpages.php:160
3749
  #: includes/adminpages.php:16 includes/adminpages.php:54
3750
- #: includes/adminpages.php:79 includes/adminpages.php:149
3751
- #: includes/adminpages.php:156 includes/adminpages.php:160
 
3752
  msgid "Reports"
3753
  msgstr ""
3754
 
3755
- #: includes/adminpages.php:56 includes/adminpages.php:174
3756
  #: includes/adminpages.php:18 includes/adminpages.php:56
3757
- #: includes/adminpages.php:89 includes/adminpages.php:163
3758
- #: includes/adminpages.php:170 includes/adminpages.php:174
 
3759
  msgid "Discount Codes"
3760
  msgstr ""
3761
 
3762
- #: includes/adminpages.php:104 includes/adminpages.php:100
3763
- #: includes/adminpages.php:104
 
 
 
 
3764
  msgid "<span class=\"ab-icon\"></span>Memberships"
3765
  msgstr ""
3766
 
3767
- #: includes/adminpages.php:265 includes/adminpages.php:261
3768
- #: includes/adminpages.php:265
3769
  msgid "Docs"
3770
  msgstr ""
3771
 
3772
- #: includes/adminpages.php:265 includes/adminpages.php:261
3773
- #: includes/adminpages.php:265
3774
  msgid "View PMPro Documentation"
3775
  msgstr ""
3776
 
3777
- #: includes/adminpages.php:266 includes/adminpages.php:262
3778
- #: includes/adminpages.php:266
3779
  msgid "Support"
3780
  msgstr ""
3781
 
3782
- #: includes/adminpages.php:266 includes/adminpages.php:262
3783
- #: includes/adminpages.php:266
3784
  msgid "Visit Customer Support Forum"
3785
  msgstr ""
3786
 
3787
- #: includes/currencies.php:17 includes/currencies.php:85
3788
- #: includes/currencies.php:7 includes/currencies.php:37
3789
- #: includes/currencies.php:44 includes/currencies.php:64
3790
- #: includes/currencies.php:68 includes/currencies.php:75
 
 
3791
  msgid "US Dollars (&#36;)"
3792
  msgstr ""
3793
 
3794
- #: includes/currencies.php:19 includes/currencies.php:88
3795
  #: includes/currencies.php:8 includes/currencies.php:9
3796
- #: includes/currencies.php:40 includes/currencies.php:47
3797
- #: includes/currencies.php:67 includes/currencies.php:71
3798
- #: includes/currencies.php:78
 
3799
  msgid "Euros (&euro;)"
3800
  msgstr ""
3801
 
3802
- #: includes/currencies.php:24 includes/currencies.php:87
3803
  #: includes/currencies.php:9 includes/currencies.php:14
3804
- #: includes/currencies.php:39 includes/currencies.php:46
3805
- #: includes/currencies.php:66 includes/currencies.php:70
3806
- #: includes/currencies.php:77
 
3807
  msgid "Pounds Sterling (&pound;)"
3808
  msgstr ""
3809
 
3810
- #: includes/currencies.php:28 includes/currencies.php:10
3811
- #: includes/currencies.php:18
 
 
 
 
 
3812
  msgid "Australian Dollars (&#36;)"
3813
  msgstr ""
3814
 
3815
- #: includes/currencies.php:30 includes/currencies.php:20
 
3816
  msgid "Brazilian Real (R&#36;)"
3817
  msgstr ""
3818
 
3819
- #: includes/currencies.php:34 includes/currencies.php:86
3820
  #: includes/currencies.php:12 includes/currencies.php:24
 
3821
  #: includes/currencies.php:38 includes/currencies.php:45
3822
  #: includes/currencies.php:65 includes/currencies.php:69
3823
- #: includes/currencies.php:76
 
3824
  msgid "Canadian Dollars (&#36;)"
3825
  msgstr ""
3826
 
3827
- #: includes/currencies.php:35 includes/currencies.php:13
3828
- #: includes/currencies.php:25
 
3829
  msgid "Chinese Yuan"
3830
  msgstr ""
3831
 
3832
- #: includes/currencies.php:37 includes/currencies.php:13
3833
  #: includes/currencies.php:14 includes/currencies.php:26
3834
- #: includes/currencies.php:27
 
3835
  msgid "Czech Koruna"
3836
  msgstr ""
3837
 
3838
- #: includes/currencies.php:44 includes/currencies.php:14
3839
  #: includes/currencies.php:15 includes/currencies.php:27
3840
- #: includes/currencies.php:34
 
3841
  msgid "Danish Krone"
3842
  msgstr ""
3843
 
3844
- #: includes/currencies.php:45 includes/currencies.php:15
3845
  #: includes/currencies.php:16 includes/currencies.php:28
3846
- #: includes/currencies.php:35
 
3847
  msgid "Hong Kong Dollar (&#36;)"
3848
  msgstr ""
3849
 
3850
- #: includes/currencies.php:46 includes/currencies.php:16
3851
  #: includes/currencies.php:17 includes/currencies.php:29
3852
- #: includes/currencies.php:36
 
3853
  msgid "Hungarian Forint"
3854
  msgstr ""
3855
 
3856
- #: includes/currencies.php:47 includes/currencies.php:18
3857
  #: includes/currencies.php:30 includes/currencies.php:37
 
3858
  msgid "Indian Rupee"
3859
  msgstr ""
3860
 
3861
- #: includes/currencies.php:48 includes/currencies.php:19
3862
  #: includes/currencies.php:31 includes/currencies.php:38
 
3863
  msgid "Indonesia Rupiah"
3864
  msgstr ""
3865
 
3866
- #: includes/currencies.php:49 includes/currencies.php:17
3867
  #: includes/currencies.php:20 includes/currencies.php:32
3868
- #: includes/currencies.php:39
 
3869
  msgid "Israeli Shekel"
3870
  msgstr ""
3871
 
3872
- #: includes/currencies.php:51 includes/currencies.php:18
3873
  #: includes/currencies.php:21 includes/currencies.php:34
3874
- #: includes/currencies.php:41
 
3875
  msgid "Japanese Yen (&yen;)"
3876
  msgstr ""
3877
 
3878
- #: includes/currencies.php:55 includes/currencies.php:19
3879
  #: includes/currencies.php:22 includes/currencies.php:38
3880
- #: includes/currencies.php:45
 
3881
  msgid "Malaysian Ringgits"
3882
  msgstr ""
3883
 
3884
- #: includes/currencies.php:56 includes/currencies.php:20
3885
  #: includes/currencies.php:23 includes/currencies.php:39
3886
- #: includes/currencies.php:46
 
3887
  msgid "Mexican Peso (&#36;)"
3888
  msgstr ""
3889
 
3890
- #: includes/currencies.php:57 includes/currencies.php:21
 
 
 
 
3891
  #: includes/currencies.php:24 includes/currencies.php:40
3892
- #: includes/currencies.php:47
 
3893
  msgid "New Zealand Dollar (&#36;)"
3894
  msgstr ""
3895
 
3896
- #: includes/currencies.php:58 includes/currencies.php:22
3897
  #: includes/currencies.php:25 includes/currencies.php:41
3898
- #: includes/currencies.php:48
 
3899
  msgid "Norwegian Krone"
3900
  msgstr ""
3901
 
3902
- #: includes/currencies.php:59 includes/currencies.php:23
3903
  #: includes/currencies.php:26 includes/currencies.php:42
3904
- #: includes/currencies.php:49
 
3905
  msgid "Philippine Pesos"
3906
  msgstr ""
3907
 
3908
- #: includes/currencies.php:60 includes/currencies.php:24
3909
  #: includes/currencies.php:27 includes/currencies.php:43
3910
- #: includes/currencies.php:50
 
3911
  msgid "Polish Zloty"
3912
  msgstr ""
3913
 
3914
- #: includes/currencies.php:62 includes/currencies.php:25
3915
  #: includes/currencies.php:28 includes/currencies.php:45
3916
- #: includes/currencies.php:52
 
3917
  msgid "Singapore Dollar (&#36;)"
3918
  msgstr ""
3919
 
3920
- #: includes/currencies.php:67 includes/currencies.php:50
3921
- #: includes/currencies.php:57
 
3922
  msgid "South African Rand (R)"
3923
  msgstr ""
3924
 
3925
- #: includes/currencies.php:71 includes/currencies.php:30
3926
  #: includes/currencies.php:50 includes/currencies.php:54
3927
- #: includes/currencies.php:61
 
3928
  msgid "South Korean Won"
3929
  msgstr ""
3930
 
3931
- #: includes/currencies.php:72 includes/currencies.php:26
3932
  #: includes/currencies.php:31 includes/currencies.php:51
3933
  #: includes/currencies.php:55 includes/currencies.php:62
 
3934
  msgid "Swedish Krona"
3935
  msgstr ""
3936
 
3937
- #: includes/currencies.php:73 includes/currencies.php:27
3938
  #: includes/currencies.php:32 includes/currencies.php:52
3939
  #: includes/currencies.php:56 includes/currencies.php:63
 
3940
  msgid "Swiss Franc"
3941
  msgstr ""
3942
 
3943
- #: includes/currencies.php:74 includes/currencies.php:28
3944
  #: includes/currencies.php:33 includes/currencies.php:53
3945
  #: includes/currencies.php:57 includes/currencies.php:64
 
3946
  msgid "Taiwan New Dollars"
3947
  msgstr ""
3948
 
3949
- #: includes/currencies.php:75 includes/currencies.php:29
3950
  #: includes/currencies.php:34 includes/currencies.php:54
3951
  #: includes/currencies.php:58 includes/currencies.php:65
 
3952
  msgid "Thai Baht"
3953
  msgstr ""
3954
 
3955
- #: includes/currencies.php:76 includes/currencies.php:35
3956
  #: includes/currencies.php:55 includes/currencies.php:59
3957
- #: includes/currencies.php:66
 
3958
  msgid "Turkish Lira"
3959
  msgstr ""
3960
 
3961
- #: includes/currencies.php:77 includes/currencies.php:36
3962
  #: includes/currencies.php:56 includes/currencies.php:60
3963
- #: includes/currencies.php:67
 
3964
  msgid "Vietnamese Dong"
3965
  msgstr ""
3966
 
@@ -3968,6 +4313,7 @@ msgstr ""
3968
  #: includes/functions.php:196 includes/functions.php:200
3969
  #: includes/functions.php:202 includes/functions.php:203
3970
  #: includes/functions.php:204 includes/functions.php:207
 
3971
  #, php-format
3972
  msgid "The price for membership is <strong>%s</strong> now"
3973
  msgstr ""
@@ -3975,6 +4321,7 @@ msgstr ""
3975
  #: includes/functions.php:245 includes/functions.php:202
3976
  #: includes/functions.php:204 includes/functions.php:205
3977
  #: includes/functions.php:206 includes/functions.php:209
 
3978
  #, php-format
3979
  msgid "<strong>%s</strong> now"
3980
  msgstr ""
@@ -3983,11 +4330,12 @@ msgstr ""
3983
  #: includes/functions.php:205 includes/functions.php:211
3984
  #: includes/functions.php:213 includes/functions.php:214
3985
  #: includes/functions.php:215 includes/functions.php:218
 
3986
  #, php-format
3987
  msgid " and then <strong>%s per %s for %d more %s</strong>."
3988
  msgstr ""
3989
 
3990
- #: includes/functions.php:258
3991
  #, php-format
3992
  msgid " and then <strong>%s every %d %s for %d more payments</strong>."
3993
  msgstr ""
@@ -3996,6 +4344,7 @@ msgstr ""
3996
  #: includes/functions.php:214 includes/functions.php:220
3997
  #: includes/functions.php:222 includes/functions.php:223
3998
  #: includes/functions.php:224 includes/functions.php:227
 
3999
  #, php-format
4000
  msgid " and then <strong>%s after %d %s</strong>."
4001
  msgstr ""
@@ -4003,12 +4352,14 @@ msgstr ""
4003
  #: includes/functions.php:271 includes/functions.php:228
4004
  #: includes/functions.php:229 includes/functions.php:230
4005
  #: includes/functions.php:231 includes/functions.php:235
 
4006
  #, php-format
4007
  msgid "The price for membership is <strong>%s per %s</strong>."
4008
  msgstr ""
4009
 
4010
  #: includes/functions.php:273 includes/functions.php:230
4011
  #: includes/functions.php:233 includes/functions.php:237
 
4012
  #, php-format
4013
  msgid "<strong>%s per %s</strong>."
4014
  msgstr ""
@@ -4016,12 +4367,14 @@ msgstr ""
4016
  #: includes/functions.php:278 includes/functions.php:233
4017
  #: includes/functions.php:234 includes/functions.php:235
4018
  #: includes/functions.php:238 includes/functions.php:242
 
4019
  #, php-format
4020
  msgid "The price for membership is <strong>%s every %d %s</strong>."
4021
  msgstr ""
4022
 
4023
  #: includes/functions.php:280 includes/functions.php:237
4024
  #: includes/functions.php:240 includes/functions.php:244
 
4025
  #, php-format
4026
  msgid "<strong>%s every %d %s</strong>."
4027
  msgstr ""
@@ -4031,6 +4384,7 @@ msgstr ""
4031
  #: includes/functions.php:238 includes/functions.php:239
4032
  #: includes/functions.php:240 includes/functions.php:242
4033
  #: includes/functions.php:245 includes/functions.php:249
 
4034
  #, php-format
4035
  msgid " and then <strong>%s per %s</strong>."
4036
  msgstr ""
@@ -4040,6 +4394,7 @@ msgstr ""
4040
  #: includes/functions.php:242 includes/functions.php:243
4041
  #: includes/functions.php:244 includes/functions.php:246
4042
  #: includes/functions.php:249 includes/functions.php:253
 
4043
  #, php-format
4044
  msgid " and then <strong>%s every %d %s</strong>."
4045
  msgstr ""
@@ -4048,7 +4403,8 @@ msgstr ""
4048
  #: includes/functions.php:238 includes/functions.php:249
4049
  #: includes/functions.php:260 includes/functions.php:261
4050
  #: includes/functions.php:262 includes/functions.php:264
4051
- #: includes/functions.php:267 includes/functions.php:271 pages/levels.php:82
 
4052
  msgid "After your initial payment, your first payment is Free."
4053
  msgstr ""
4054
 
@@ -4056,7 +4412,8 @@ msgstr ""
4056
  #: includes/functions.php:242 includes/functions.php:253
4057
  #: includes/functions.php:264 includes/functions.php:265
4058
  #: includes/functions.php:266 includes/functions.php:268
4059
- #: includes/functions.php:271 includes/functions.php:275 pages/levels.php:86
 
4060
  #, php-format
4061
  msgid "After your initial payment, your first %d payments are Free."
4062
  msgstr ""
@@ -4065,7 +4422,8 @@ msgstr ""
4065
  #: includes/functions.php:249 includes/functions.php:260
4066
  #: includes/functions.php:271 includes/functions.php:272
4067
  #: includes/functions.php:273 includes/functions.php:275
4068
- #: includes/functions.php:278 includes/functions.php:282 pages/levels.php:93
 
4069
  #, php-format
4070
  msgid "After your initial payment, your first payment will cost %s."
4071
  msgstr ""
@@ -4074,7 +4432,8 @@ msgstr ""
4074
  #: includes/functions.php:253 includes/functions.php:264
4075
  #: includes/functions.php:275 includes/functions.php:276
4076
  #: includes/functions.php:277 includes/functions.php:279
4077
- #: includes/functions.php:282 includes/functions.php:286 pages/levels.php:97
 
4078
  #, php-format
4079
  msgid "After your initial payment, your first %d payments will cost %s."
4080
  msgstr ""
@@ -4084,6 +4443,7 @@ msgstr ""
4084
  #: includes/functions.php:286 includes/functions.php:287
4085
  #: includes/functions.php:288 includes/functions.php:290
4086
  #: includes/functions.php:293 includes/functions.php:297
 
4087
  #, php-format
4088
  msgid "Customers in %s will be charged %s%% tax."
4089
  msgstr ""
@@ -4093,6 +4453,7 @@ msgstr ""
4093
  #: includes/functions.php:300 includes/functions.php:301
4094
  #: includes/functions.php:302 includes/functions.php:304
4095
  #: includes/functions.php:307 includes/functions.php:311
 
4096
  #, php-format
4097
  msgid "Membership expires after %d %s."
4098
  msgstr ""
@@ -4103,7 +4464,7 @@ msgstr ""
4103
  #: includes/functions.php:538 includes/functions.php:545
4104
  #: includes/functions.php:569 includes/functions.php:570
4105
  #: includes/functions.php:576 includes/functions.php:592
4106
- #: includes/functions.php:615
4107
  msgid "User ID not found."
4108
  msgstr ""
4109
 
@@ -4114,6 +4475,7 @@ msgstr ""
4114
  #: includes/functions.php:586 includes/functions.php:587
4115
  #: includes/functions.php:589 includes/functions.php:596
4116
  #: includes/functions.php:612 includes/functions.php:635
 
4117
  msgid "Invalid level."
4118
  msgstr ""
4119
 
@@ -4124,6 +4486,7 @@ msgstr ""
4124
  #: includes/functions.php:597 includes/functions.php:598
4125
  #: includes/functions.php:600 includes/functions.php:607
4126
  #: includes/functions.php:623 includes/functions.php:646
 
4127
  msgid "not changing?"
4128
  msgstr ""
4129
 
@@ -4146,7 +4509,8 @@ msgstr ""
4146
  #: includes/functions.php:698 includes/functions.php:699
4147
  #: includes/functions.php:700 includes/functions.php:707
4148
  #: includes/functions.php:722 includes/functions.php:723
4149
- #: includes/functions.php:746
 
4150
  msgid "Error interacting with database"
4151
  msgstr ""
4152
 
@@ -4164,7 +4528,8 @@ msgstr ""
4164
  #: includes/functions.php:764 includes/functions.php:777
4165
  #: includes/functions.php:778 includes/functions.php:780
4166
  #: includes/functions.php:787 includes/functions.php:803
4167
- #: includes/functions.php:826
 
4168
  msgid "Membership level not found."
4169
  msgstr ""
4170
 
@@ -4173,6 +4538,7 @@ msgstr ""
4173
  #: includes/functions.php:1142 includes/functions.php:1143
4174
  #: includes/functions.php:1150 includes/functions.php:1157
4175
  #: includes/functions.php:1173 includes/functions.php:1196
 
4176
  msgid "No code was given to check."
4177
  msgstr ""
4178
 
@@ -4184,7 +4550,7 @@ msgstr ""
4184
  #: includes/functions.php:1127 includes/functions.php:1151
4185
  #: includes/functions.php:1152 includes/functions.php:1159
4186
  #: includes/functions.php:1166 includes/functions.php:1182
4187
- #: includes/functions.php:1205
4188
  msgid "The discount code could not be found."
4189
  msgstr ""
4190
 
@@ -4196,7 +4562,7 @@ msgstr ""
4196
  #: includes/functions.php:1142 includes/functions.php:1166
4197
  #: includes/functions.php:1167 includes/functions.php:1174
4198
  #: includes/functions.php:1181 includes/functions.php:1197
4199
- #: includes/functions.php:1220
4200
  #, php-format
4201
  msgid "This discount code goes into effect on %s."
4202
  msgstr ""
@@ -4209,7 +4575,7 @@ msgstr ""
4209
  #: includes/functions.php:1149 includes/functions.php:1173
4210
  #: includes/functions.php:1174 includes/functions.php:1181
4211
  #: includes/functions.php:1188 includes/functions.php:1204
4212
- #: includes/functions.php:1227
4213
  #, php-format
4214
  msgid "This discount code expired on %s."
4215
  msgstr ""
@@ -4222,7 +4588,7 @@ msgstr ""
4222
  #: includes/functions.php:1159 includes/functions.php:1183
4223
  #: includes/functions.php:1184 includes/functions.php:1191
4224
  #: includes/functions.php:1198 includes/functions.php:1214
4225
- #: includes/functions.php:1237
4226
  msgid "This discount code is no longer valid."
4227
  msgstr ""
4228
 
@@ -4234,6 +4600,7 @@ msgstr ""
4234
  #: includes/functions.php:1196 includes/functions.php:1197
4235
  #: includes/functions.php:1204 includes/functions.php:1211
4236
  #: includes/functions.php:1227 includes/functions.php:1250
 
4237
  msgid "This discount code does not apply to this membership level."
4238
  msgstr ""
4239
 
@@ -4245,11 +4612,11 @@ msgstr ""
4245
  #: includes/functions.php:1198 includes/functions.php:1222
4246
  #: includes/functions.php:1223 includes/functions.php:1230
4247
  #: includes/functions.php:1237 includes/functions.php:1253
4248
- #: includes/functions.php:1276
4249
  msgid "This discount code is okay."
4250
  msgstr ""
4251
 
4252
- #: includes/functions.php:1395 includes/functions.php:1134
4253
  #: includes/functions.php:1156 includes/functions.php:1172
4254
  #: includes/functions.php:1183 includes/functions.php:1186
4255
  #: includes/functions.php:1196 includes/functions.php:1205
@@ -4257,10 +4624,11 @@ msgstr ""
4257
  #: includes/functions.php:1247 includes/functions.php:1248
4258
  #: includes/functions.php:1255 includes/functions.php:1262
4259
  #: includes/functions.php:1278 includes/functions.php:1301
 
4260
  msgid "and"
4261
  msgstr ""
4262
 
4263
- #: includes/functions.php:1620 includes/functions.php:1319
4264
  #: includes/functions.php:1341 includes/functions.php:1361
4265
  #: includes/functions.php:1372 includes/functions.php:1375
4266
  #: includes/functions.php:1385 includes/functions.php:1394
@@ -4268,11 +4636,12 @@ msgstr ""
4268
  #: includes/functions.php:1436 includes/functions.php:1437
4269
  #: includes/functions.php:1450 includes/functions.php:1457
4270
  #: includes/functions.php:1473 includes/functions.php:1496
4271
- #: includes/functions.php:1501
 
4272
  msgid "Sign Up for !!name!! Now"
4273
  msgstr ""
4274
 
4275
- #: includes/functions.php:1626 includes/functions.php:1325
4276
  #: includes/functions.php:1347 includes/functions.php:1367
4277
  #: includes/functions.php:1378 includes/functions.php:1381
4278
  #: includes/functions.php:1391 includes/functions.php:1400
@@ -4280,14 +4649,15 @@ msgstr ""
4280
  #: includes/functions.php:1442 includes/functions.php:1443
4281
  #: includes/functions.php:1456 includes/functions.php:1463
4282
  #: includes/functions.php:1479 includes/functions.php:1502
4283
- #: includes/functions.php:1507
 
4284
  msgid "Please specify a level id."
4285
  msgstr ""
4286
 
4287
  #: includes/init.php:253 includes/profile.php:39 includes/init.php:229
4288
  #: includes/init.php:232 includes/init.php:233 includes/init.php:235
4289
- #: includes/init.php:237 includes/init.php:245 includes/profile.php:37
4290
- #: includes/profile.php:39
4291
  msgid "None"
4292
  msgstr ""
4293
 
@@ -4391,18 +4761,21 @@ msgstr ""
4391
  msgid "Years"
4392
  msgstr ""
4393
 
4394
- #: includes/metaboxes.php:38 includes/metaboxes.php:38
 
4395
  msgid ""
4396
  "This post is already protected for this level because it is within a "
4397
  "category that requires membership."
4398
  msgstr ""
4399
 
 
4400
  #: includes/metaboxes.php:99 includes/metaboxes.php:100
4401
- #: includes/metaboxes.php:99 includes/metaboxes.php:100
4402
  msgid "Require Membership"
4403
  msgstr ""
4404
 
4405
- #: includes/metaboxes.php:130 includes/metaboxes.php:130
 
4406
  msgid ""
4407
  "Only members of these levels will be able to view posts in this category."
4408
  msgstr ""
@@ -4423,23 +4796,38 @@ msgid ""
4423
  "checkbox is selected below."
4424
  msgstr ""
4425
 
4426
- #: includes/upgradecheck.php:442 includes/upgradecheck.php:401
 
 
 
 
 
 
 
 
 
 
 
 
4427
  #: includes/upgradecheck.php:410 includes/upgradecheck.php:422
 
4428
  #, php-format
4429
  msgid ""
4430
  "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
4431
  msgstr ""
4432
 
4433
- #: includes/upgradecheck.php:445 includes/upgradecheck.php:404
4434
  #: includes/upgradecheck.php:413 includes/upgradecheck.php:425
 
4435
  #, php-format
4436
  msgid ""
4437
  "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
4438
  "<a href=\"%s\">Register</a>"
4439
  msgstr ""
4440
 
4441
- #: includes/upgradecheck.php:449 includes/upgradecheck.php:408
4442
  #: includes/upgradecheck.php:417 includes/upgradecheck.php:429
 
4443
  msgid ""
4444
  "This content is for !!levels!! members only. Visit the site and log in/"
4445
  "register to read."
@@ -4459,7 +4847,8 @@ msgstr ""
4459
  #: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
4460
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
4461
  #: pages/cancel.php:52 pages/invoice.php:109 pages/levels.php:13
4462
- #: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
 
4463
  msgid "Level"
4464
  msgstr ""
4465
 
@@ -4492,105 +4881,118 @@ msgid ""
4492
  "paypal.com\">login to PayPal here</a> to update your billing information."
4493
  msgstr ""
4494
 
4495
- #: pages/billing.php:78 pages/checkout.php:324 pages/billing.php:65
4496
  #: pages/billing.php:69 pages/billing.php:78 pages/checkout.php:305
4497
  #: pages/checkout.php:307 pages/checkout.php:309 pages/checkout.php:318
4498
- #: pages/checkout.php:321 pages/checkout.php:328
 
4499
  msgid "First Name"
4500
  msgstr ""
4501
 
4502
- #: pages/billing.php:82 pages/checkout.php:328 pages/billing.php:69
4503
  #: pages/billing.php:73 pages/billing.php:82 pages/checkout.php:309
4504
  #: pages/checkout.php:311 pages/checkout.php:313 pages/checkout.php:322
4505
- #: pages/checkout.php:325 pages/checkout.php:332
 
4506
  msgid "Last Name"
4507
  msgstr ""
4508
 
4509
- #: pages/billing.php:86 pages/checkout.php:332 pages/billing.php:73
4510
  #: pages/billing.php:77 pages/billing.php:86 pages/checkout.php:313
4511
  #: pages/checkout.php:315 pages/checkout.php:317 pages/checkout.php:326
4512
- #: pages/checkout.php:329 pages/checkout.php:336
 
4513
  msgid "Address 1"
4514
  msgstr ""
4515
 
4516
- #: pages/billing.php:90 pages/checkout.php:336 pages/billing.php:77
4517
  #: pages/billing.php:81 pages/billing.php:90 pages/checkout.php:317
4518
  #: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:330
4519
- #: pages/checkout.php:333 pages/checkout.php:340
 
4520
  msgid "Address 2"
4521
  msgstr ""
4522
 
4523
- #: pages/billing.php:100 pages/checkout.php:346 pages/billing.php:87
4524
  #: pages/billing.php:91 pages/billing.php:100 pages/checkout.php:327
4525
  #: pages/checkout.php:329 pages/checkout.php:331 pages/checkout.php:340
4526
- #: pages/checkout.php:343 pages/checkout.php:350
 
4527
  msgid "City"
4528
  msgstr ""
4529
 
4530
- #: pages/billing.php:104 pages/checkout.php:350 pages/billing.php:91
4531
  #: pages/billing.php:95 pages/billing.php:104 pages/checkout.php:331
4532
  #: pages/checkout.php:333 pages/checkout.php:335 pages/checkout.php:344
4533
- #: pages/checkout.php:347 pages/checkout.php:354
 
4534
  msgid "State"
4535
  msgstr ""
4536
 
4537
- #: pages/billing.php:108 pages/checkout.php:354 pages/billing.php:95
4538
  #: pages/billing.php:99 pages/billing.php:108 pages/checkout.php:335
4539
  #: pages/checkout.php:337 pages/checkout.php:339 pages/checkout.php:348
4540
- #: pages/checkout.php:351 pages/checkout.php:358
 
4541
  msgid "Postal Code"
4542
  msgstr ""
4543
 
4544
- #: pages/billing.php:117 pages/checkout.php:363 pages/billing.php:104
4545
  #: pages/billing.php:108 pages/billing.php:117 pages/checkout.php:344
4546
  #: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:357
4547
- #: pages/checkout.php:360 pages/checkout.php:367
 
4548
  msgid "City, State Zip"
4549
  msgstr ""
4550
 
4551
- #: pages/billing.php:170 pages/checkout.php:416 pages/billing.php:157
4552
  #: pages/billing.php:161 pages/billing.php:170 pages/checkout.php:397
4553
  #: pages/checkout.php:399 pages/checkout.php:401 pages/checkout.php:410
4554
- #: pages/checkout.php:413 pages/checkout.php:420
 
4555
  msgid "Country"
4556
  msgstr ""
4557
 
4558
- #: pages/billing.php:195 pages/checkout.php:441 pages/billing.php:182
4559
  #: pages/billing.php:186 pages/billing.php:195 pages/checkout.php:422
4560
  #: pages/checkout.php:424 pages/checkout.php:426 pages/checkout.php:435
4561
- #: pages/checkout.php:438 pages/checkout.php:445
 
4562
  msgid "Phone"
4563
  msgstr ""
4564
 
4565
- #: pages/billing.php:206 pages/checkout.php:218 pages/checkout.php:455
4566
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
4567
  #: pages/checkout.php:204 pages/checkout.php:207 pages/checkout.php:209
4568
- #: pages/checkout.php:216 pages/checkout.php:436 pages/checkout.php:438
4569
- #: pages/checkout.php:440 pages/checkout.php:449 pages/checkout.php:453
4570
- #: pages/checkout.php:460
 
4571
  msgid "E-mail Address"
4572
  msgstr ""
4573
 
4574
- #: pages/billing.php:210 pages/checkout.php:464 pages/billing.php:197
4575
  #: pages/billing.php:201 pages/billing.php:210 pages/checkout.php:445
4576
  #: pages/checkout.php:447 pages/checkout.php:449 pages/checkout.php:458
4577
- #: pages/checkout.php:462 pages/checkout.php:469
 
4578
  msgid "Confirm E-mail"
4579
  msgstr ""
4580
 
4581
  #: pages/billing.php:231 pages/billing.php:217 pages/billing.php:221
4582
- #: pages/billing.php:230
4583
  msgid "Credit Card Information"
4584
  msgstr ""
4585
 
4586
  #: pages/billing.php:232 pages/billing.php:217 pages/billing.php:221
4587
- #: pages/billing.php:230
4588
  #, php-format
4589
  msgid "We accept %s"
4590
  msgstr ""
4591
 
4592
- #: pages/billing.php:356 pages/billing.php:309 pages/billing.php:313
4593
- #: pages/billing.php:344 pages/billing.php:353
 
4594
  msgid ""
4595
  "This subscription is not recurring. So you don't need to update your billing "
4596
  "information."
@@ -4634,18 +5036,18 @@ msgid ""
4634
  msgstr ""
4635
 
4636
  #: pages/checkout.php:43 pages/checkout.php:33 pages/checkout.php:34
4637
- #: pages/checkout.php:35 pages/checkout.php:42
4638
  msgid "change"
4639
  msgstr ""
4640
 
4641
  #: pages/checkout.php:51 pages/checkout.php:41 pages/checkout.php:42
4642
- #: pages/checkout.php:43 pages/checkout.php:50
4643
  #, php-format
4644
  msgid "You have selected the <strong>%s</strong> membership level."
4645
  msgstr ""
4646
 
4647
  #: pages/checkout.php:61 pages/checkout.php:51 pages/checkout.php:53
4648
- #: pages/checkout.php:60
4649
  #, php-format
4650
  msgid ""
4651
  "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
@@ -4654,91 +5056,101 @@ msgstr ""
4654
 
4655
  #: pages/checkout.php:72 services/applydiscountcode.php:89
4656
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
4657
- #: pages/checkout.php:71 services/applydiscountcode.php:74
4658
- #: services/applydiscountcode.php:75 services/applydiscountcode.php:78
4659
- #: services/applydiscountcode.php:89
4660
  msgid "Click here to change your discount code"
4661
  msgstr ""
4662
 
4663
  #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
4664
- #: pages/checkout.php:66 pages/checkout.php:73
4665
  msgid "Click here to enter your discount code"
4666
  msgstr ""
4667
 
4668
  #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
4669
- #: pages/checkout.php:66 pages/checkout.php:73
4670
  msgid "Do you have a discount code?"
4671
  msgstr ""
4672
 
4673
- #: pages/checkout.php:173 pages/checkout.php:160 pages/checkout.php:163
4674
- #: pages/checkout.php:165 pages/checkout.php:172
 
4675
  msgid "Account Information"
4676
  msgstr ""
4677
 
4678
- #: pages/checkout.php:174 pages/checkout.php:160 pages/checkout.php:163
4679
- #: pages/checkout.php:165 pages/checkout.php:172
 
4680
  msgid "Already have an account?"
4681
  msgstr ""
4682
 
4683
- #: pages/checkout.php:174 pages/checkout.php:160 pages/checkout.php:163
4684
- #: pages/checkout.php:165 pages/checkout.php:172
 
4685
  msgid "Log in here"
4686
  msgstr ""
4687
 
4688
- #: pages/checkout.php:200 pages/checkout.php:186 pages/checkout.php:189
4689
- #: pages/checkout.php:191 pages/checkout.php:198
 
4690
  msgid "Confirm Password"
4691
  msgstr ""
4692
 
4693
- #: pages/checkout.php:227 pages/checkout.php:213 pages/checkout.php:216
4694
- #: pages/checkout.php:218 pages/checkout.php:225
 
4695
  msgid "Confirm E-mail Address"
4696
  msgstr ""
4697
 
4698
- #: pages/checkout.php:246 pages/checkout.php:232 pages/checkout.php:235
4699
- #: pages/checkout.php:237 pages/checkout.php:244
 
4700
  msgid "Full Name"
4701
  msgstr ""
4702
 
4703
- #: pages/checkout.php:247 pages/checkout.php:233 pages/checkout.php:236
4704
- #: pages/checkout.php:238 pages/checkout.php:245
 
4705
  msgid "LEAVE THIS BLANK"
4706
  msgstr ""
4707
 
4708
- #: pages/checkout.php:271 pages/checkout.php:257 pages/checkout.php:260
4709
- #: pages/checkout.php:262 pages/checkout.php:269
 
4710
  #, php-format
4711
  msgid ""
4712
  "You are logged in as <strong>%s</strong>. If you would like to use a "
4713
  "different account for this membership, <a href=\"%s\">log out now</a>."
4714
  msgstr ""
4715
 
4716
- #: pages/checkout.php:287 pages/checkout.php:276 pages/checkout.php:278
4717
- #: pages/checkout.php:285 pages/checkout.php:292 pages/checkout.php:299
 
4718
  msgid "Choose your Payment Method"
4719
  msgstr ""
4720
 
4721
- #: pages/checkout.php:296 pages/checkout.php:284 pages/checkout.php:286
4722
- #: pages/checkout.php:293 pages/checkout.php:300 pages/checkout.php:307
 
4723
  msgid "Check Out with a Credit Card Here"
4724
  msgstr ""
4725
 
4726
- #: pages/checkout.php:690 pages/checkout.php:277 pages/checkout.php:284
4727
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
4728
- #: pages/checkout.php:681
4729
  #, php-format
4730
  msgid "I agree to the %s"
4731
  msgstr ""
4732
 
4733
- #: pages/checkout.php:710 pages/checkout.php:667 pages/checkout.php:674
4734
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
4735
- #: pages/checkout.php:701
4736
  msgid "Complete Payment"
4737
  msgstr ""
4738
 
4739
- #: pages/checkout.php:732 pages/checkout.php:687 pages/checkout.php:694
4740
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
4741
- #: pages/checkout.php:723
4742
  msgid "Processing..."
4743
  msgstr ""
4744
 
@@ -4843,47 +5255,53 @@ msgid "&larr; View All Invoices"
4843
  msgstr ""
4844
 
4845
  #: pages/levels.php:55 pages/levels.php:33 pages/levels.php:43
 
4846
  msgid "Free"
4847
  msgstr ""
4848
 
4849
  #: pages/levels.php:69 pages/levels.php:71 pages/levels.php:47
4850
- #: pages/levels.php:49 pages/levels.php:113 pages/levels.php:115
 
4851
  msgid "Select"
4852
  msgstr ""
4853
 
4854
  #: pages/levels.php:78 shortcodes/pmpro_account.php:61 pages/account.php:33
4855
- #: pages/levels.php:57 pages/levels.php:123 shortcodes/pmpro_account.php:59
 
4856
  msgid "Renew"
4857
  msgstr ""
4858
 
4859
- #: pages/levels.php:82 pages/levels.php:63 pages/levels.php:117
4860
- #: pages/levels.php:129
4861
  msgid "Your&nbsp;Level"
4862
  msgstr ""
4863
 
4864
- #: pages/levels.php:98 pages/levels.php:79 pages/levels.php:129
4865
- #: pages/levels.php:145
4866
  msgid "&larr; Return to Your Account"
4867
  msgstr ""
4868
 
4869
- #: pages/levels.php:100 pages/levels.php:81 pages/levels.php:131
4870
- #: pages/levels.php:147
4871
  msgid "&larr; Return to Home"
4872
  msgstr ""
4873
 
4874
- #: paid-memberships-pro.php:124 adminpages/orders.php:398
4875
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
4876
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
 
4877
  msgid "Testing Only"
4878
  msgstr ""
4879
 
4880
- #: paid-memberships-pro.php:129 paid-memberships-pro.php:120
4881
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
 
4882
  msgid "PayPal Payflow Pro/PayPal Pro"
4883
  msgstr ""
4884
 
4885
- #: paid-memberships-pro.php:134 paid-memberships-pro.php:125
4886
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
 
4887
  msgid "Cybersource"
4888
  msgstr ""
4889
 
@@ -4905,9 +5323,10 @@ msgstr ""
4905
  #: preheaders/billing.php:258 preheaders/billing.php:265
4906
  #: preheaders/billing.php:266 preheaders/billing.php:270
4907
  #: preheaders/billing.php:279 preheaders/checkout.php:332
4908
- #: preheaders/checkout.php:458 preheaders/checkout.php:464
4909
- #: preheaders/checkout.php:465 preheaders/checkout.php:470
4910
- #: preheaders/checkout.php:481 preheaders/checkout.php:482
 
4911
  msgid "Please complete all required fields."
4912
  msgstr ""
4913
 
@@ -4915,9 +5334,10 @@ msgstr ""
4915
  #: preheaders/billing.php:263 preheaders/billing.php:268
4916
  #: preheaders/billing.php:269 preheaders/billing.php:273
4917
  #: preheaders/billing.php:284 preheaders/checkout.php:340
4918
- #: preheaders/checkout.php:466 preheaders/checkout.php:473
4919
- #: preheaders/checkout.php:474 preheaders/checkout.php:478
4920
- #: preheaders/checkout.php:491 preheaders/checkout.php:492
 
4921
  msgid "Your email addresses do not match. Please try again."
4922
  msgstr ""
4923
 
@@ -4925,9 +5345,10 @@ msgstr ""
4925
  #: preheaders/billing.php:268 preheaders/billing.php:271
4926
  #: preheaders/billing.php:272 preheaders/billing.php:276
4927
  #: preheaders/billing.php:289 preheaders/checkout.php:345
4928
- #: preheaders/checkout.php:471 preheaders/checkout.php:478
4929
- #: preheaders/checkout.php:480 preheaders/checkout.php:483
4930
- #: preheaders/checkout.php:497 preheaders/checkout.php:498
 
4931
  msgid "The email address entered is in an invalid format. Please try again."
4932
  msgstr ""
4933
 
@@ -4959,10 +5380,10 @@ msgstr ""
4959
  #: preheaders/checkout.php:32 preheaders/checkout.php:358
4960
  #: preheaders/checkout.php:28 preheaders/checkout.php:30
4961
  #: preheaders/checkout.php:31 preheaders/checkout.php:32
4962
- #: preheaders/checkout.php:354 preheaders/checkout.php:480
4963
- #: preheaders/checkout.php:487 preheaders/checkout.php:491
4964
- #: preheaders/checkout.php:492 preheaders/checkout.php:508
4965
- #: preheaders/checkout.php:509
4966
  msgid "Invalid gateway."
4967
  msgstr ""
4968
 
@@ -4977,68 +5398,75 @@ msgid "Set Up Your Account"
4977
  msgstr ""
4978
 
4979
  #: preheaders/checkout.php:304 preheaders/checkout.php:300
4980
- #: preheaders/checkout.php:416 preheaders/checkout.php:421
 
4981
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
4982
  msgstr ""
4983
 
4984
  #: preheaders/checkout.php:339 preheaders/checkout.php:335
4985
- #: preheaders/checkout.php:461 preheaders/checkout.php:468
4986
- #: preheaders/checkout.php:473 preheaders/checkout.php:485
4987
- #: preheaders/checkout.php:486
4988
  msgid "Your passwords do not match. Please try again."
4989
  msgstr ""
4990
 
4991
  #: preheaders/checkout.php:354 preheaders/checkout.php:350
4992
- #: preheaders/checkout.php:476 preheaders/checkout.php:483
4993
- #: preheaders/checkout.php:486 preheaders/checkout.php:488
4994
- #: preheaders/checkout.php:503 preheaders/checkout.php:504
 
4995
  #, php-format
4996
  msgid "Please check the box to agree to the %s."
4997
  msgstr ""
4998
 
4999
  #: preheaders/checkout.php:361 preheaders/checkout.php:357
5000
- #: preheaders/checkout.php:483 preheaders/checkout.php:490
5001
- #: preheaders/checkout.php:495 preheaders/checkout.php:512
5002
- #: preheaders/checkout.php:513
5003
  msgid "Are you a spammer?"
5004
  msgstr ""
5005
 
5006
  #: preheaders/checkout.php:381 preheaders/checkout.php:377
5007
- #: preheaders/checkout.php:503 preheaders/checkout.php:510
5008
- #: preheaders/checkout.php:515 preheaders/checkout.php:518
5009
- #: preheaders/checkout.php:535 preheaders/checkout.php:536
 
5010
  msgid "That username is already taken. Please try another."
5011
  msgstr ""
5012
 
5013
  #: preheaders/checkout.php:386 preheaders/checkout.php:382
5014
- #: preheaders/checkout.php:508 preheaders/checkout.php:515
5015
- #: preheaders/checkout.php:520 preheaders/checkout.php:524
5016
- #: preheaders/checkout.php:541 preheaders/checkout.php:542
 
5017
  msgid "That email address is already taken. Please try another."
5018
  msgstr ""
5019
 
5020
  #: preheaders/checkout.php:420 preheaders/checkout.php:397
5021
  #: preheaders/checkout.php:399 preheaders/checkout.php:416
5022
- #: preheaders/checkout.php:525 preheaders/checkout.php:532
5023
- #: preheaders/checkout.php:537 preheaders/checkout.php:544
5024
- #: preheaders/checkout.php:561 preheaders/checkout.php:562
 
5025
  #, php-format
5026
  msgid "reCAPTCHA failed. (%s) Please try again."
5027
  msgstr ""
5028
 
5029
  #: preheaders/checkout.php:505 preheaders/checkout.php:482
5030
  #: preheaders/checkout.php:484 preheaders/checkout.php:501
5031
- #: preheaders/checkout.php:647 preheaders/checkout.php:654
5032
- #: preheaders/checkout.php:659 preheaders/checkout.php:683
5033
- #: preheaders/checkout.php:701 preheaders/checkout.php:702
 
5034
  msgid "Payment accepted."
5035
  msgstr ""
5036
 
5037
  #: preheaders/checkout.php:513 preheaders/checkout.php:490
5038
  #: preheaders/checkout.php:492 preheaders/checkout.php:509
5039
- #: preheaders/checkout.php:653 preheaders/checkout.php:660
5040
- #: preheaders/checkout.php:665 preheaders/checkout.php:691
5041
- #: preheaders/checkout.php:709 preheaders/checkout.php:710
 
5042
  msgid ""
5043
  "Unknown error generating account. Please contact us to set up your "
5044
  "membership."
@@ -5046,10 +5474,11 @@ msgstr ""
5046
 
5047
  #: preheaders/checkout.php:575 preheaders/checkout.php:550
5048
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
5049
- #: preheaders/checkout.php:571 preheaders/checkout.php:785
5050
- #: preheaders/checkout.php:792 preheaders/checkout.php:797
5051
- #: preheaders/checkout.php:825 preheaders/checkout.php:844
5052
- #: preheaders/checkout.php:859 preheaders/checkout.php:860
 
5053
  msgid ""
5054
  "Your payment was accepted, but there was an error setting up your account. "
5055
  "Please contact us."
@@ -5057,10 +5486,11 @@ msgstr ""
5057
 
5058
  #: preheaders/checkout.php:722 preheaders/checkout.php:691
5059
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
5060
- #: preheaders/checkout.php:712 preheaders/checkout.php:953
5061
- #: preheaders/checkout.php:960 preheaders/checkout.php:970
5062
- #: preheaders/checkout.php:983 preheaders/checkout.php:1030
5063
- #: preheaders/checkout.php:1045 preheaders/checkout.php:1046
 
5064
  msgid ""
5065
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5066
  "authorized, but we cancelled the order immediately. You should not try to "
@@ -5069,10 +5499,11 @@ msgstr ""
5069
 
5070
  #: preheaders/checkout.php:725 preheaders/checkout.php:694
5071
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
5072
- #: preheaders/checkout.php:715 preheaders/checkout.php:956
5073
- #: preheaders/checkout.php:963 preheaders/checkout.php:973
5074
- #: preheaders/checkout.php:988 preheaders/checkout.php:1035
5075
- #: preheaders/checkout.php:1050 preheaders/checkout.php:1051
 
5076
  msgid ""
5077
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5078
  "was charged, but we couldn't assign your membership. You should not submit "
@@ -5081,10 +5512,11 @@ msgstr ""
5081
 
5082
  #: preheaders/checkout.php:736 preheaders/checkout.php:705
5083
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
5084
- #: preheaders/checkout.php:726 preheaders/checkout.php:967
5085
- #: preheaders/checkout.php:974 preheaders/checkout.php:984
5086
- #: preheaders/checkout.php:1001 preheaders/checkout.php:1048
5087
- #: preheaders/checkout.php:1063 preheaders/checkout.php:1064
 
5088
  #, php-format
5089
  msgid ""
5090
  "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
@@ -5093,33 +5525,34 @@ msgstr ""
5093
 
5094
  #: preheaders/checkout.php:738 preheaders/checkout.php:707
5095
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
5096
- #: preheaders/checkout.php:728 preheaders/checkout.php:969
5097
- #: preheaders/checkout.php:976 preheaders/checkout.php:986
5098
- #: preheaders/checkout.php:1003 preheaders/checkout.php:1050
5099
- #: preheaders/checkout.php:1065 preheaders/checkout.php:1066
 
5100
  msgid "A Payment Gateway must be set up before any payments will be processed."
5101
  msgstr ""
5102
 
5103
  #: scheduled/crons.php:39 scheduled/crons.php:31 scheduled/crons.php:34
5104
- #: scheduled/crons.php:38 scheduled/crons.php:61
5105
  #, php-format
5106
  msgid "Membership expired email sent to %s. "
5107
  msgstr ""
5108
 
5109
  #: scheduled/crons.php:88 scheduled/crons.php:27 scheduled/crons.php:74
5110
- #: scheduled/crons.php:80 scheduled/crons.php:84
5111
  #, php-format
5112
  msgid "Membership expiring email sent to %s. "
5113
  msgstr ""
5114
 
5115
  #: scheduled/crons.php:164 scheduled/crons.php:143 scheduled/crons.php:152
5116
- #: scheduled/crons.php:157
5117
  #, php-format
5118
  msgid "Credit card expiring email sent to %s. "
5119
  msgstr ""
5120
 
5121
  #: scheduled/crons.php:220 scheduled/crons.php:104 scheduled/crons.php:196
5122
- #: scheduled/crons.php:208 scheduled/crons.php:210
5123
  #, php-format
5124
  msgid "Trial ending email sent to %s. "
5125
  msgstr ""
@@ -5137,15 +5570,17 @@ msgstr ""
5137
  msgid "The <strong>%s</strong> code has been applied to your order."
5138
  msgstr ""
5139
 
5140
- #: services/authnet-silent-post.php:141 services/authnet-silent-post.php:133
5141
  #: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
 
5142
  msgid ""
5143
  "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
5144
  "Information From Authorize.net"
5145
  msgstr ""
5146
 
5147
- #: services/stripe-webhook.php:271 services/stripe-webhook.php:176
5148
  #: services/stripe-webhook.php:194 services/stripe-webhook.php:270
 
5149
  #, php-format
5150
  msgid ""
5151
  "%s has had their payment subscription cancelled by Stripe. Please check that "
@@ -5158,54 +5593,58 @@ msgid "Billing"
5158
  msgstr ""
5159
 
5160
  #: shortcodes/pmpro_account.php:65 pages/account.php:36
5161
- #: shortcodes/pmpro_account.php:62
5162
  msgid "Update Billing Info"
5163
  msgstr ""
5164
 
5165
  #: shortcodes/pmpro_account.php:71 pages/account.php:42
5166
- #: shortcodes/pmpro_account.php:68
5167
  msgid "Change"
5168
  msgstr ""
5169
 
5170
  #: shortcodes/pmpro_account.php:93 pages/account.php:64
5171
- #: shortcodes/pmpro_account.php:90
5172
  msgid "View all Membership Options"
5173
  msgstr ""
5174
 
5175
  #: shortcodes/pmpro_account.php:102 pages/account.php:46 pages/account.php:50
5176
  #: pages/account.php:71 shortcodes/pmpro_account.php:99
 
5177
  msgid "My Account"
5178
  msgstr ""
5179
 
5180
  #: shortcodes/pmpro_account.php:113 pages/account.php:55 pages/account.php:59
5181
  #: pages/account.php:80 shortcodes/pmpro_account.php:110
 
5182
  msgid "Edit Profile"
5183
  msgstr ""
5184
 
5185
  #: shortcodes/pmpro_account.php:114 pages/account.php:56 pages/account.php:60
5186
  #: pages/account.php:81 shortcodes/pmpro_account.php:111
 
5187
  msgid "Change Password"
5188
  msgstr ""
5189
 
5190
  #: shortcodes/pmpro_account.php:121 pages/account.php:87 pages/account.php:125
5191
  #: pages/account.php:129 shortcodes/pmpro_account.php:118
 
5192
  msgid "Past Invoices"
5193
  msgstr ""
5194
 
5195
  #: shortcodes/pmpro_account.php:127 pages/account.php:93
5196
- #: shortcodes/pmpro_account.php:124
5197
  msgid "Amount"
5198
  msgstr ""
5199
 
5200
  #: shortcodes/pmpro_account.php:155 pages/account.php:121
5201
  #: pages/account.php:140 pages/account.php:144
5202
- #: shortcodes/pmpro_account.php:152
5203
  msgid "View All Invoices"
5204
  msgstr ""
5205
 
5206
  #: shortcodes/pmpro_account.php:162 pages/account.php:128
5207
  #: pages/account.php:146 pages/account.php:150
5208
- #: shortcodes/pmpro_account.php:159
5209
  msgid "Member Links"
5210
  msgstr ""
5211
 
@@ -5337,6 +5776,10 @@ msgstr ""
5337
  msgid "Logins All Time"
5338
  msgstr ""
5339
 
 
 
 
 
5340
  #: adminpages/reports/memberships.php:86
5341
  msgid "Other Stats"
5342
  msgstr ""
@@ -5353,11 +5796,35 @@ msgstr ""
5353
  msgid "Lifetime Value (LTV)"
5354
  msgstr ""
5355
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5356
  #: classes/class.pmproemail.php:685 classes/class.pmproemail.php:734
5357
  #: classes/class.pmproemail.php:799
5358
  msgid "membership has been cancelled"
5359
  msgstr ""
5360
 
 
 
 
 
 
 
 
 
 
 
5361
  #: includes/currencies.php:11
5362
  msgid "Brazilian Real (&#36;)"
5363
  msgstr ""
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: pmpro\n"
8
+ "POT-Creation-Date: 2016-01-20 11:58-0500\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"
19
  #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5
20
  #: adminpages/orders-print.php:12 adminpages/orders.php:5
21
  #: adminpages/pagesettings.php:4 adminpages/paymentsettings.php:5
22
+ #: adminpages/updates.php:5 includes/license.php:36 adminpages/addons.php:5
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
38
  #: adminpages/admin_header.php:170 includes/adminpages.php:14
39
+ #: includes/adminpages.php:52 includes/adminpages.php:53
40
+ #: includes/adminpages.php:69 includes/adminpages.php:135
41
+ #: includes/adminpages.php:142 includes/adminpages.php:146
42
+ #: includes/adminpages.php:151
43
  msgid "Add Ons"
44
  msgstr ""
45
 
52
  msgid "Check Again"
53
  msgstr ""
54
 
55
+ #: adminpages/addons.php:76 adminpages/orders.php:712 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
 
288
  msgstr ""
289
 
290
  #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:618
291
+ #: adminpages/pagesettings.php:70 includes/adminpages.php:69
292
+ #: includes/adminpages.php:70 includes/adminpages.php:116
293
+ #: includes/metaboxes.php:131 adminpages/admin_header.php:128
294
  #: adminpages/admin_header.php:149 adminpages/admin_header.php:150
295
  #: adminpages/membershiplevels.php:490 adminpages/membershiplevels.php:496
296
  #: adminpages/membershiplevels.php:498 adminpages/membershiplevels.php:525
298
  #: adminpages/membershiplevels.php:618 adminpages/membershiplevels.php:619
299
  #: adminpages/pagesettings.php:69 adminpages/pagesettings.php:70
300
  #: includes/adminpages.php:44 includes/adminpages.php:64
301
+ #: includes/adminpages.php:65 includes/adminpages.php:69
302
+ #: includes/adminpages.php:70 includes/adminpages.php:100
303
  #: includes/adminpages.php:107 includes/adminpages.php:111
304
+ #: includes/adminpages.php:116 includes/metaboxes.php:126
305
+ #: includes/metaboxes.php:131
306
  msgid "Membership Levels"
307
  msgstr ""
308
 
324
  #: adminpages/memberslist.php:115 adminpages/memberslist.php:148
325
  #: adminpages/memberslist.php:158 adminpages/memberslist.php:168
326
  #: pages/account.php:52 pages/account.php:56 pages/account.php:77
327
+ #: shortcodes/pmpro_account.php:106 shortcodes/pmpro_account.php:109
328
  msgid "Email"
329
  msgstr ""
330
 
360
  "This content is for members only. Visit the site and log in/register to read."
361
  msgstr ""
362
 
363
+ #: adminpages/advancedsettings.php:88 includes/adminpages.php:52
364
+ #: includes/adminpages.php:144 adminpages/advancedsettings.php:79
365
  #: adminpages/advancedsettings.php:86 adminpages/advancedsettings.php:88
366
  #: includes/adminpages.php:13 includes/adminpages.php:51
367
+ #: includes/adminpages.php:52 includes/adminpages.php:64
368
+ #: includes/adminpages.php:128 includes/adminpages.php:135
369
+ #: includes/adminpages.php:139 includes/adminpages.php:144
370
  msgid "Advanced Settings"
371
  msgstr ""
372
 
437
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
438
  #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:667
439
  #: adminpages/paymentsettings.php:210
440
+ #: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:110
441
  #: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
442
  #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:187
443
  #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
453
  #: adminpages/paymentsettings.php:461
454
  #: classes/gateways/class.pmprogateway_stripe.php:173
455
  #: classes/gateways/class.pmprogateway_stripe.php:174
456
+ #: classes/gateways/class.pmprogateway_stripe.php:184
457
+ #: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:101
458
  #: includes/profile.php:105 includes/profile.php:110 includes/profile.php:121
459
  #: includes/profile.php:123
460
  msgid "No"
497
 
498
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:667
499
  #: adminpages/paymentsettings.php:211
500
+ #: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:111
501
  #: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
502
  #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:563
503
  #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
510
  #: adminpages/paymentsettings.php:460 adminpages/paymentsettings.php:462
511
  #: classes/gateways/class.pmprogateway_stripe.php:174
512
  #: classes/gateways/class.pmprogateway_stripe.php:175
513
+ #: classes/gateways/class.pmprogateway_stripe.php:185
514
+ #: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:102
515
  #: includes/profile.php:106 includes/profile.php:111 includes/profile.php:122
516
  #: includes/profile.php:124
517
  msgid "Yes"
646
 
647
  #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
648
  #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:636
649
+ #: adminpages/memberslist.php:164 adminpages/orders.php:937
650
  #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
651
  #: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
652
  #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
661
  #: adminpages/memberslist.php:144 adminpages/memberslist.php:154
662
  #: adminpages/memberslist.php:164 adminpages/orders.php:597
663
  #: adminpages/orders.php:900 adminpages/orders.php:910
664
+ #: adminpages/orders.php:937 adminpages/orders.php:966
665
  #: adminpages/reports/login.php:140 adminpages/reports/login.php:142
666
+ #: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
667
+ #: adminpages/templates/orders-print.php:75
668
  msgid "ID"
669
  msgstr ""
670
 
671
+ #: adminpages/discountcodes.php:311 adminpages/orders.php:333
672
  #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
673
  #: adminpages/discountcodes.php:311 adminpages/orders.php:211
674
+ #: adminpages/orders.php:261 adminpages/orders.php:333
675
+ #: adminpages/orders.php:362
676
  msgid "This will be generated when you save."
677
  msgstr ""
678
 
679
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
680
+ #: adminpages/orders.php:337 adminpages/orders.php:938
681
  #: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
682
  #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:548
683
  #: adminpages/discountcodes.php:558 adminpages/discountcodes.php:586
684
  #: adminpages/discountcodes.php:587 adminpages/orders.php:215
685
+ #: adminpages/orders.php:265 adminpages/orders.php:337
686
+ #: adminpages/orders.php:366 adminpages/orders.php:598
687
  #: adminpages/orders.php:901 adminpages/orders.php:911
688
+ #: adminpages/orders.php:938 adminpages/orders.php:967
689
  msgid "Code"
690
  msgstr ""
691
 
695
  msgstr ""
696
 
697
  #: adminpages/discountcodes.php:371
698
+ #: classes/gateways/class.pmprogateway_braintree.php:323
699
+ #: classes/gateways/class.pmprogateway_stripe.php:495 pages/billing.php:265
700
+ #: pages/checkout.php:575 adminpages/discountcodes.php:367
701
  #: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
702
  #: classes/gateways/class.pmprogateway_braintree.php:308
703
  #: classes/gateways/class.pmprogateway_braintree.php:321
704
+ #: classes/gateways/class.pmprogateway_braintree.php:323
705
  #: classes/gateways/class.pmprogateway_stripe.php:454
706
  #: classes/gateways/class.pmprogateway_stripe.php:455
707
+ #: classes/gateways/class.pmprogateway_stripe.php:465
708
+ #: classes/gateways/class.pmprogateway_stripe.php:469
709
+ #: classes/gateways/class.pmprogateway_stripe.php:495 pages/billing.php:249
710
+ #: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
711
+ #: pages/checkout.php:508 pages/checkout.php:524 pages/checkout.php:525
712
+ #: pages/checkout.php:532 pages/checkout.php:553 pages/checkout.php:562
713
+ #: pages/checkout.php:571 pages/checkout.php:575
714
  msgid "Expiration Date"
715
  msgstr ""
716
 
779
 
780
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
781
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
782
+ #: classes/gateways/class.pmprogateway_stripe.php:562
783
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
784
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
785
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
791
  #: classes/gateways/class.pmprogateway_stripe.php:521
792
  #: classes/gateways/class.pmprogateway_stripe.php:522
793
  #: classes/gateways/class.pmprogateway_stripe.php:532
794
+ #: classes/gateways/class.pmprogateway_stripe.php:536
795
+ #: classes/gateways/class.pmprogateway_stripe.php:562
796
  msgid "Day(s)"
797
  msgstr ""
798
 
799
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
800
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
801
+ #: classes/gateways/class.pmprogateway_stripe.php:562
802
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
803
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
804
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
810
  #: classes/gateways/class.pmprogateway_stripe.php:521
811
  #: classes/gateways/class.pmprogateway_stripe.php:522
812
  #: classes/gateways/class.pmprogateway_stripe.php:532
813
+ #: classes/gateways/class.pmprogateway_stripe.php:536
814
+ #: classes/gateways/class.pmprogateway_stripe.php:562
815
  msgid "Month(s)"
816
  msgstr ""
817
 
818
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
819
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
820
+ #: classes/gateways/class.pmprogateway_stripe.php:562
821
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
822
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
823
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
829
  #: classes/gateways/class.pmprogateway_stripe.php:521
830
  #: classes/gateways/class.pmprogateway_stripe.php:522
831
  #: classes/gateways/class.pmprogateway_stripe.php:532
832
+ #: classes/gateways/class.pmprogateway_stripe.php:536
833
+ #: classes/gateways/class.pmprogateway_stripe.php:562
834
  msgid "Week(s)"
835
  msgstr ""
836
 
837
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
838
  #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
839
+ #: classes/gateways/class.pmprogateway_stripe.php:562
840
  #: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
841
  #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:492
842
  #: adminpages/discountcodes.php:520 adminpages/discountcodes.php:521
848
  #: classes/gateways/class.pmprogateway_stripe.php:521
849
  #: classes/gateways/class.pmprogateway_stripe.php:522
850
  #: classes/gateways/class.pmprogateway_stripe.php:532
851
+ #: classes/gateways/class.pmprogateway_stripe.php:536
852
+ #: classes/gateways/class.pmprogateway_stripe.php:562
853
  msgid "Year(s)"
854
  msgstr ""
855
 
985
  #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
986
  #: adminpages/discountcodes.php:569 adminpages/discountcodes.php:570
987
  #: adminpages/reports/login.php:81 adminpages/reports/login.php:83
988
+ #: adminpages/reports/login.php:99
989
  msgid "Search"
990
  msgstr ""
991
 
1002
  #: adminpages/memberslist.php:121 adminpages/memberslist.php:159
1003
  #: adminpages/memberslist.php:169 adminpages/memberslist.php:179
1004
  #: adminpages/reports/login.php:145 adminpages/reports/login.php:147
1005
+ #: adminpages/reports/login.php:163 includes/profile.php:98
1006
+ #: includes/profile.php:102 includes/profile.php:107 includes/profile.php:118
1007
+ #: includes/profile.php:120
1008
  msgid "Expires"
1009
  msgstr ""
1010
 
1029
  msgstr ""
1030
 
1031
  #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:669
1032
+ #: adminpages/orders.php:1021 adminpages/discountcodes.php:614
1033
  #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
1034
  #: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
1035
  #: adminpages/membershiplevels.php:564 adminpages/membershiplevels.php:570
1038
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1039
  #: adminpages/orders.php:658 adminpages/orders.php:961
1040
  #: adminpages/orders.php:979 adminpages/orders.php:989
1041
+ #: adminpages/orders.php:992 adminpages/orders.php:1021
1042
+ #: adminpages/orders.php:1050
1043
  msgid "edit"
1044
  msgstr ""
1045
 
1054
  msgstr ""
1055
 
1056
  #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:669
1057
+ #: adminpages/orders.php:1027 adminpages/discountcodes.php:617
1058
  #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
1059
  #: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
1060
  #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:572
1063
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1064
  #: adminpages/orders.php:664 adminpages/orders.php:967
1065
  #: adminpages/orders.php:985 adminpages/orders.php:995
1066
+ #: adminpages/orders.php:998 adminpages/orders.php:1027
1067
+ #: adminpages/orders.php:1056
1068
  msgid "delete"
1069
  msgstr ""
1070
 
1071
+ #: adminpages/emailsettings.php:69 includes/adminpages.php:51
1072
+ #: includes/adminpages.php:137 adminpages/emailsettings.php:60
1073
  #: adminpages/emailsettings.php:69 includes/adminpages.php:12
1074
+ #: includes/adminpages.php:50 includes/adminpages.php:51
1075
+ #: includes/adminpages.php:59 includes/adminpages.php:121
1076
+ #: includes/adminpages.php:128 includes/adminpages.php:132
1077
+ #: includes/adminpages.php:137
1078
  msgid "Email Settings"
1079
  msgstr ""
1080
 
1242
  #: adminpages/membershiplevels.php:542 adminpages/membershiplevels.php:584
1243
  #: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:638
1244
  #: adminpages/reports/login.php:142 adminpages/reports/login.php:144
1245
+ #: adminpages/reports/login.php:160
1246
  msgid "Name"
1247
  msgstr ""
1248
 
1260
  msgstr ""
1261
 
1262
  #: adminpages/membershiplevels.php:372
1263
+ #: classes/gateways/class.pmprogateway_stripe.php:660
1264
  #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1265
  #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1266
  #: adminpages/membershiplevels.php:373
1267
  #: classes/gateways/class.pmprogateway_stripe.php:619
1268
  #: classes/gateways/class.pmprogateway_stripe.php:620
1269
  #: classes/gateways/class.pmprogateway_stripe.php:630
1270
+ #: classes/gateways/class.pmprogateway_stripe.php:634
1271
+ #: classes/gateways/class.pmprogateway_stripe.php:660
1272
  msgid "per"
1273
  msgstr ""
1274
 
1415
  msgid "Save Level"
1416
  msgstr ""
1417
 
1418
+ #: adminpages/membershiplevels.php:517 adminpages/orders.php:633
1419
+ #: pages/billing.php:344 pages/cancel.php:71 shortcodes/pmpro_account.php:73
1420
  #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
1421
+ #: adminpages/orders.php:511 adminpages/orders.php:561
1422
+ #: adminpages/orders.php:633 adminpages/orders.php:662 pages/account.php:44
1423
  #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1424
+ #: pages/billing.php:339 pages/billing.php:342 pages/billing.php:344
1425
+ #: pages/cancel.php:71 shortcodes/pmpro_account.php:70
1426
+ #: shortcodes/pmpro_account.php:73
1427
  msgid "Cancel"
1428
  msgstr ""
1429
 
1498
  "be cancelled."
1499
  msgstr ""
1500
 
1501
+ #: adminpages/membershiplevels.php:669 adminpages/orders.php:1024
1502
  #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1503
  #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1504
  #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1505
  #: adminpages/membershiplevels.php:669 adminpages/membershiplevels.php:670
1506
  #: adminpages/orders.php:661 adminpages/orders.php:964
1507
  #: adminpages/orders.php:982 adminpages/orders.php:992
1508
+ #: adminpages/orders.php:995 adminpages/orders.php:1024
1509
+ #: adminpages/orders.php:1053
1510
  msgid "copy"
1511
  msgstr ""
1512
 
1513
+ #: adminpages/memberslist.php:25 includes/adminpages.php:54
1514
+ #: includes/adminpages.php:158 adminpages/memberslist.php:25
1515
  #: includes/adminpages.php:15 includes/adminpages.php:53
1516
+ #: includes/adminpages.php:54 includes/adminpages.php:74
1517
+ #: includes/adminpages.php:142 includes/adminpages.php:149
1518
+ #: includes/adminpages.php:153 includes/adminpages.php:158
1519
  msgid "Members List"
1520
  msgstr ""
1521
 
1522
+ #: adminpages/memberslist.php:26 adminpages/orders.php:698
1523
  #: adminpages/memberslist.php:26 adminpages/orders.php:522
1524
+ #: adminpages/orders.php:591 adminpages/orders.php:698
1525
+ #: adminpages/orders.php:727
1526
  msgid "Export to CSV"
1527
  msgstr ""
1528
 
1529
+ #: adminpages/memberslist.php:30 adminpages/orders.php:710
1530
+ #: adminpages/reports/login.php:83 adminpages/reports/memberships.php:263
1531
  #: adminpages/reports/sales.php:202 adminpages/memberslist.php:30
1532
+ #: adminpages/orders.php:603 adminpages/orders.php:710
1533
+ #: adminpages/orders.php:739 adminpages/reports/login.php:65
1534
+ #: adminpages/reports/login.php:67 adminpages/reports/login.php:83
1535
+ #: adminpages/reports/memberships.php:256
1536
+ #: adminpages/reports/memberships.php:263
1537
+ #: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
1538
+ #: adminpages/reports/sales.php:193 adminpages/reports/sales.php:194
1539
+ #: adminpages/reports/sales.php:202
1540
  msgid "Show"
1541
  msgstr ""
1542
 
1543
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:85
1544
+ #: adminpages/reports/memberships.php:290 adminpages/reports/sales.php:225
1545
  #: adminpages/memberslist.php:32 adminpages/reports/login.php:67
1546
+ #: adminpages/reports/login.php:69 adminpages/reports/login.php:85
1547
+ #: adminpages/reports/memberships.php:281
1548
+ #: adminpages/reports/memberships.php:290
1549
+ #: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:208
1550
+ #: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
1551
+ #: adminpages/reports/sales.php:225
1552
  msgid "All Levels"
1553
  msgstr ""
1554
 
1579
  msgid "%d members found."
1580
  msgstr ""
1581
 
1582
+ #: adminpages/memberslist.php:165 pages/checkout.php:184
1583
  #: shortcodes/pmpro_account.php:108 adminpages/memberslist.php:112
1584
  #: adminpages/memberslist.php:145 adminpages/memberslist.php:155
1585
  #: adminpages/memberslist.php:165 pages/account.php:51 pages/account.php:55
1586
  #: pages/account.php:76 pages/checkout.php:168 pages/checkout.php:171
1587
+ #: pages/checkout.php:173 pages/checkout.php:180 pages/checkout.php:182
1588
+ #: pages/checkout.php:184 shortcodes/pmpro_account.php:105
1589
+ #: shortcodes/pmpro_account.php:108
1590
  msgid "Username"
1591
  msgstr ""
1592
 
1602
  msgid "Last&nbsp;Name"
1603
  msgstr ""
1604
 
1605
+ #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:319
1606
  #: pages/confirmation.php:61 pages/invoice.php:48
1607
  #: adminpages/memberslist.php:117 adminpages/memberslist.php:150
1608
  #: adminpages/memberslist.php:160 adminpages/memberslist.php:170
1609
  #: pages/account.php:90 pages/account.php:94 pages/billing.php:58
1610
  #: pages/billing.php:62 pages/billing.php:71 pages/checkout.php:298
1611
  #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
1612
+ #: pages/checkout.php:314 pages/checkout.php:317 pages/checkout.php:319
1613
+ #: pages/checkout.php:321 pages/confirmation.php:59 pages/confirmation.php:61
1614
+ #: pages/invoice.php:46 pages/invoice.php:48
1615
  msgid "Billing Address"
1616
  msgstr ""
1617
 
1620
  #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1621
  #: adminpages/memberslist.php:161 adminpages/memberslist.php:171
1622
  #: adminpages/pagesettings.php:51 adminpages/reports/login.php:143
1623
+ #: adminpages/reports/login.php:145 adminpages/reports/login.php:161
1624
  #: classes/gateways/class.pmprogateway_authorizenet.php:187
1625
  #: classes/gateways/class.pmprogateway_authorizenet.php:303
1626
  msgid "Membership"
1636
  #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1637
  #: adminpages/memberslist.php:163 adminpages/memberslist.php:173
1638
  #: adminpages/reports/login.php:144 adminpages/reports/login.php:146
1639
+ #: adminpages/reports/login.php:162
1640
  msgid "Joined"
1641
  msgstr ""
1642
 
1649
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1650
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1651
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
1652
+ #: adminpages/reports/login.php:228
1653
  msgid "No members found."
1654
  msgstr ""
1655
 
1657
  #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1658
  #: adminpages/memberslist.php:251 adminpages/memberslist.php:261
1659
  #: adminpages/reports/login.php:210 adminpages/reports/login.php:212
1660
+ #: adminpages/reports/login.php:228
1661
  msgid "Search all levels"
1662
  msgstr ""
1663
 
1664
+ #: adminpages/orders.php:155 adminpages/orders.php:155
1665
  msgid "Invoice emailed successfully."
1666
  msgstr ""
1667
 
1668
+ #: adminpages/orders.php:160 adminpages/orders.php:160
1669
  msgid "Error emailing invoice."
1670
  msgstr ""
1671
 
1672
  #: adminpages/orders.php:175 adminpages/orders.php:26 adminpages/orders.php:67
1673
+ #: adminpages/orders.php:175
1674
  msgid "Order deleted successfully."
1675
  msgstr ""
1676
 
1677
  #: adminpages/orders.php:180 adminpages/orders.php:31 adminpages/orders.php:72
1678
+ #: adminpages/orders.php:180
1679
  msgid "Error deleting order."
1680
  msgstr ""
1681
 
1682
  #: adminpages/orders.php:270 adminpages/orders.php:119
1683
+ #: adminpages/orders.php:169 adminpages/orders.php:270
1684
  msgid "Order saved successfully."
1685
  msgstr ""
1686
 
1687
  #: adminpages/orders.php:275 adminpages/orders.php:124
1688
+ #: adminpages/orders.php:174 adminpages/orders.php:275
1689
  msgid "Error updating order timestamp."
1690
  msgstr ""
1691
 
1692
  #: adminpages/orders.php:281 adminpages/orders.php:130
1693
+ #: adminpages/orders.php:180 adminpages/orders.php:281
1694
  msgid "Error saving order."
1695
  msgstr ""
1696
 
1697
+ #: adminpages/orders.php:317 adminpages/orders.php:195
1698
+ #: adminpages/orders.php:245 adminpages/orders.php:317
1699
+ #: adminpages/orders.php:346
1700
  msgid "Order"
1701
  msgstr ""
1702
 
1703
+ #: adminpages/orders.php:319 adminpages/orders.php:197
1704
+ #: adminpages/orders.php:247 adminpages/orders.php:319
1705
+ #: adminpages/orders.php:348
1706
  msgid "New Order"
1707
  msgstr ""
1708
 
1709
+ #: adminpages/orders.php:342 adminpages/orders.php:220
1710
+ #: adminpages/orders.php:270 adminpages/orders.php:342
1711
+ #: adminpages/orders.php:371
1712
  msgid "Randomly generated for you."
1713
  msgstr ""
1714
 
1715
+ #: adminpages/orders.php:347 adminpages/orders.php:225
1716
+ #: adminpages/orders.php:275 adminpages/orders.php:347
1717
+ #: adminpages/orders.php:376
1718
  msgid "User ID"
1719
  msgstr ""
1720
 
1721
+ #: adminpages/orders.php:356 adminpages/orders.php:234
1722
+ #: adminpages/orders.php:284 adminpages/orders.php:356
1723
+ #: adminpages/orders.php:385
1724
  msgid "Membership Level ID"
1725
  msgstr ""
1726
 
1727
+ #: adminpages/orders.php:365 adminpages/orders.php:243
1728
+ #: adminpages/orders.php:293 adminpages/orders.php:365
1729
+ #: adminpages/orders.php:394
1730
  msgid "Billing Name"
1731
  msgstr ""
1732
 
1733
+ #: adminpages/orders.php:373 adminpages/orders.php:251
1734
+ #: adminpages/orders.php:301 adminpages/orders.php:373
1735
+ #: adminpages/orders.php:402
1736
  msgid "Billing Street"
1737
  msgstr ""
1738
 
1739
+ #: adminpages/orders.php:380 adminpages/orders.php:258
1740
+ #: adminpages/orders.php:308 adminpages/orders.php:380
1741
+ #: adminpages/orders.php:409
1742
  msgid "Billing City"
1743
  msgstr ""
1744
 
1745
+ #: adminpages/orders.php:387 adminpages/orders.php:265
1746
+ #: adminpages/orders.php:315 adminpages/orders.php:387
1747
+ #: adminpages/orders.php:416
1748
  msgid "Billing State"
1749
  msgstr ""
1750
 
1751
+ #: adminpages/orders.php:394 adminpages/orders.php:272
1752
+ #: adminpages/orders.php:322 adminpages/orders.php:394
1753
+ #: adminpages/orders.php:423
1754
  msgid "Billing Postal Code"
1755
  msgstr ""
1756
 
1757
+ #: adminpages/orders.php:401 adminpages/orders.php:279
1758
+ #: adminpages/orders.php:329 adminpages/orders.php:401
1759
+ #: adminpages/orders.php:430
1760
  msgid "Billing Country"
1761
  msgstr ""
1762
 
1763
+ #: adminpages/orders.php:409 adminpages/orders.php:287
1764
+ #: adminpages/orders.php:337 adminpages/orders.php:409
1765
+ #: adminpages/orders.php:438
1766
  msgid "Billing Phone"
1767
  msgstr ""
1768
 
1769
+ #: adminpages/orders.php:418 adminpages/orders.php:296
1770
+ #: adminpages/orders.php:346 adminpages/orders.php:418
1771
+ #: adminpages/orders.php:447
1772
  msgid "Sub Total"
1773
  msgstr ""
1774
 
1775
+ #: adminpages/orders.php:426 adminpages/templates/orders-email.php:60
1776
  #: adminpages/templates/orders-print.php:89 pages/invoice.php:80
1777
+ #: adminpages/orders.php:304 adminpages/orders.php:354
1778
+ #: adminpages/orders.php:426 adminpages/orders.php:455
1779
+ #: adminpages/templates/orders-email.php:60
1780
+ #: adminpages/templates/orders-print.php:89 pages/invoice.php:78
1781
  #: pages/invoice.php:80
1782
  msgid "Tax"
1783
  msgstr ""
1784
 
1785
+ #: adminpages/orders.php:434 adminpages/orders.php:312
1786
+ #: adminpages/orders.php:362 adminpages/orders.php:434
1787
+ #: adminpages/orders.php:463
1788
  msgid "Coupon Amount"
1789
  msgstr ""
1790
 
1791
+ #: adminpages/orders.php:442 adminpages/orders.php:942
1792
  #: adminpages/templates/orders-email.php:64
1793
  #: adminpages/templates/orders-print.php:93 pages/invoice.php:84
1794
  #: adminpages/orders.php:320 adminpages/orders.php:370
1795
+ #: adminpages/orders.php:442 adminpages/orders.php:471
1796
  #: adminpages/orders.php:602 adminpages/orders.php:905
1797
+ #: adminpages/orders.php:915 adminpages/orders.php:942
1798
+ #: adminpages/orders.php:971 adminpages/templates/orders-email.php:64
1799
+ #: adminpages/templates/orders-print.php:93 pages/invoice.php:82
1800
+ #: pages/invoice.php:84
1801
  msgid "Total"
1802
  msgstr ""
1803
 
1804
+ #: adminpages/orders.php:447 adminpages/orders.php:325
1805
+ #: adminpages/orders.php:375 adminpages/orders.php:447
1806
+ #: adminpages/orders.php:476
1807
  msgid "Should be subtotal + tax - couponamount."
1808
  msgstr ""
1809
 
1810
+ #: adminpages/orders.php:452 adminpages/orders.php:330
1811
+ #: adminpages/orders.php:380 adminpages/orders.php:452
1812
+ #: adminpages/orders.php:481
1813
  msgid "Payment Type"
1814
  msgstr ""
1815
 
1816
+ #: adminpages/orders.php:457 adminpages/orders.php:335
1817
+ #: adminpages/orders.php:385 adminpages/orders.php:457
1818
+ #: adminpages/orders.php:486
1819
  msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1820
  msgstr ""
1821
 
1822
+ #: adminpages/orders.php:461
1823
+ #: classes/gateways/class.pmprogateway_braintree.php:306
1824
+ #: classes/gateways/class.pmprogateway_stripe.php:447 pages/billing.php:250
1825
+ #: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
1826
+ #: adminpages/orders.php:461 adminpages/orders.php:490
1827
  #: classes/gateways/class.pmprogateway_braintree.php:291
1828
  #: classes/gateways/class.pmprogateway_braintree.php:304
1829
+ #: classes/gateways/class.pmprogateway_braintree.php:306
1830
  #: classes/gateways/class.pmprogateway_stripe.php:408
1831
  #: classes/gateways/class.pmprogateway_stripe.php:409
1832
+ #: classes/gateways/class.pmprogateway_stripe.php:419
1833
+ #: classes/gateways/class.pmprogateway_stripe.php:423
1834
+ #: classes/gateways/class.pmprogateway_stripe.php:447 pages/billing.php:234
1835
+ #: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
1836
+ #: pages/checkout.php:493 pages/checkout.php:507 pages/checkout.php:510
1837
+ #: pages/checkout.php:516 pages/checkout.php:517 pages/checkout.php:525
1838
+ #: pages/checkout.php:527
1839
  msgid "Card Type"
1840
  msgstr ""
1841
 
1842
+ #: adminpages/orders.php:466 adminpages/orders.php:344
1843
+ #: adminpages/orders.php:394 adminpages/orders.php:466
1844
+ #: adminpages/orders.php:495
1845
  msgid "e.g. Visa, MasterCard, AMEX, etc"
1846
  msgstr ""
1847
 
1848
+ #: adminpages/orders.php:470
1849
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
1850
  #: adminpages/orders.php:348 adminpages/orders.php:398
1851
+ #: adminpages/orders.php:470 adminpages/orders.php:499
1852
  #: adminpages/paymentsettings.php:347 adminpages/paymentsettings.php:352
1853
  #: classes/gateways/class.pmprogateway_twocheckout.php:129
1854
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
1855
  #: classes/gateways/class.pmprogateway_twocheckout.php:148
1856
  msgid "Account Number"
1857
  msgstr ""
1858
 
1859
+ #: adminpages/orders.php:475 adminpages/orders.php:353
1860
+ #: adminpages/orders.php:403 adminpages/orders.php:475
1861
+ #: adminpages/orders.php:504
1862
  msgid "Obscure all but last 4 digits."
1863
  msgstr ""
1864
 
1865
+ #: adminpages/orders.php:480 adminpages/orders.php:358
1866
+ #: adminpages/orders.php:408 adminpages/orders.php:480
1867
+ #: adminpages/orders.php:509
1868
  msgid "Expiration Month"
1869
  msgstr ""
1870
 
1871
+ #: adminpages/orders.php:487 adminpages/orders.php:365
1872
+ #: adminpages/orders.php:415 adminpages/orders.php:487
1873
+ #: adminpages/orders.php:516
1874
  msgid "Expiration Year"
1875
  msgstr ""
1876
 
1877
+ #: adminpages/orders.php:495 adminpages/orders.php:946
1878
  #: adminpages/orders.php:373 adminpages/orders.php:423
1879
+ #: adminpages/orders.php:495 adminpages/orders.php:524
1880
  #: adminpages/orders.php:606 adminpages/orders.php:909
1881
+ #: adminpages/orders.php:919 adminpages/orders.php:946
1882
+ #: adminpages/orders.php:975
1883
  msgid "Status"
1884
  msgstr ""
1885
 
1886
+ #: adminpages/orders.php:516 adminpages/orders.php:944
1887
  #: adminpages/orders.php:394 adminpages/orders.php:444
1888
+ #: adminpages/orders.php:516 adminpages/orders.php:545
1889
  #: adminpages/orders.php:604 adminpages/orders.php:907
1890
+ #: adminpages/orders.php:917 adminpages/orders.php:944
1891
+ #: adminpages/orders.php:973
1892
  msgid "Gateway"
1893
  msgstr ""
1894
 
1895
+ #: adminpages/orders.php:534 adminpages/paymentsettings.php:124
1896
  #: adminpages/orders.php:411 adminpages/orders.php:461
1897
+ #: adminpages/orders.php:462 adminpages/orders.php:534
1898
+ #: adminpages/orders.php:563 adminpages/paymentsettings.php:124
1899
  #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
1900
  #: adminpages/paymentsettings.php:184
1901
  msgid "Gateway Environment"
1902
  msgstr ""
1903
 
1904
+ #: adminpages/orders.php:538 adminpages/paymentsettings.php:128
1905
  #: adminpages/orders.php:415 adminpages/orders.php:465
1906
+ #: adminpages/orders.php:466 adminpages/orders.php:538
1907
+ #: adminpages/orders.php:567 adminpages/paymentsettings.php:128
1908
  #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
1909
  #: adminpages/paymentsettings.php:188
1910
  msgid "Sandbox/Testing"
1911
  msgstr ""
1912
 
1913
+ #: adminpages/orders.php:539 adminpages/paymentsettings.php:129
1914
  #: adminpages/orders.php:416 adminpages/orders.php:466
1915
+ #: adminpages/orders.php:467 adminpages/orders.php:539
1916
+ #: adminpages/orders.php:568 adminpages/paymentsettings.php:129
1917
  #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
1918
  #: adminpages/paymentsettings.php:189
1919
  msgid "Live/Production"
1920
  msgstr ""
1921
 
1922
+ #: adminpages/orders.php:546 adminpages/orders.php:423
1923
  #: adminpages/orders.php:473 adminpages/orders.php:474
1924
+ #: adminpages/orders.php:546 adminpages/orders.php:575
1925
  msgid "Payment Transaction ID"
1926
  msgstr ""
1927
 
1928
+ #: adminpages/orders.php:551 adminpages/orders.php:428
1929
  #: adminpages/orders.php:478 adminpages/orders.php:479
1930
+ #: adminpages/orders.php:551 adminpages/orders.php:580
1931
  msgid "Generated by the gateway. Useful to cross reference orders."
1932
  msgstr ""
1933
 
1934
+ #: adminpages/orders.php:555 adminpages/orders.php:432
1935
  #: adminpages/orders.php:482 adminpages/orders.php:483
1936
+ #: adminpages/orders.php:555 adminpages/orders.php:584
1937
  msgid "Subscription Transaction ID"
1938
  msgstr ""
1939
 
1940
+ #: adminpages/orders.php:560 adminpages/orders.php:437
1941
  #: adminpages/orders.php:487 adminpages/orders.php:488
1942
+ #: adminpages/orders.php:560 adminpages/orders.php:589
1943
  msgid "Generated by the gateway. Useful to cross reference subscriptions."
1944
  msgstr ""
1945
 
1946
+ #: adminpages/orders.php:565 adminpages/orders.php:947 pages/invoice.php:107
1947
  #: shortcodes/pmpro_account.php:125 adminpages/orders.php:442
1948
  #: adminpages/orders.php:492 adminpages/orders.php:493
1949
+ #: adminpages/orders.php:565 adminpages/orders.php:594
1950
  #: adminpages/orders.php:607 adminpages/orders.php:910
1951
+ #: adminpages/orders.php:920 adminpages/orders.php:947
1952
+ #: adminpages/orders.php:976 pages/account.php:91 pages/invoice.php:105
1953
  #: pages/invoice.php:107 shortcodes/pmpro_account.php:122
1954
+ #: shortcodes/pmpro_account.php:125
1955
  msgid "Date"
1956
  msgstr ""
1957
 
1958
+ #: adminpages/orders.php:599 adminpages/orders.php:477
1959
+ #: adminpages/orders.php:527 adminpages/orders.php:599
1960
+ #: adminpages/orders.php:628
1961
  msgid "Affiliate ID"
1962
  msgstr ""
1963
 
1964
+ #: adminpages/orders.php:607 adminpages/orders.php:485
1965
+ #: adminpages/orders.php:535 adminpages/orders.php:607
1966
+ #: adminpages/orders.php:636
1967
  msgid "Affiliate SubID"
1968
  msgstr ""
1969
 
1970
+ #: adminpages/orders.php:617 adminpages/orders.php:495
1971
+ #: adminpages/orders.php:545 adminpages/orders.php:617
1972
+ #: adminpages/orders.php:646
1973
  msgid "Notes"
1974
  msgstr ""
1975
 
1976
+ #: adminpages/orders.php:632 adminpages/orders.php:510
1977
+ #: adminpages/orders.php:560 adminpages/orders.php:632
1978
+ #: adminpages/orders.php:661
1979
  msgid "Save Order"
1980
  msgstr ""
1981
 
1982
+ #: adminpages/orders.php:667 adminpages/orders.php:667
1983
  #: adminpages/orders.php:696
1984
  msgid "Email Invoice"
1985
  msgstr ""
1986
 
1987
+ #: adminpages/orders.php:670 adminpages/orders.php:670
1988
  #: adminpages/orders.php:699
1989
  msgid "Send an invoice for this order to: "
1990
  msgstr ""
1991
 
1992
+ #: adminpages/orders.php:672 adminpages/orders.php:672
1993
  #: adminpages/orders.php:701
1994
  msgid "Send Email"
1995
  msgstr ""
1996
 
1997
+ #: adminpages/orders.php:677 includes/adminpages.php:56
1998
+ #: includes/adminpages.php:172 adminpages/orders.php:520
1999
+ #: adminpages/orders.php:570 adminpages/orders.php:677
2000
+ #: adminpages/orders.php:706 includes/adminpages.php:17
2001
+ #: includes/adminpages.php:55 includes/adminpages.php:56
2002
+ #: includes/adminpages.php:84 includes/adminpages.php:156
2003
+ #: includes/adminpages.php:163 includes/adminpages.php:167
2004
+ #: includes/adminpages.php:172
2005
  msgid "Orders"
2006
  msgstr ""
2007
 
2008
+ #: adminpages/orders.php:678 adminpages/orders.php:521
2009
+ #: adminpages/orders.php:571 adminpages/orders.php:678
2010
+ #: adminpages/orders.php:707
2011
  msgid "Add New Order"
2012
  msgstr ""
2013
 
2014
+ #: adminpages/orders.php:713 adminpages/orders.php:606
2015
+ #: adminpages/orders.php:713 adminpages/orders.php:742
2016
  msgid "Within a Date Range"
2017
  msgstr ""
2018
 
2019
+ #: adminpages/orders.php:714 adminpages/orders.php:607
2020
+ #: adminpages/orders.php:714 adminpages/orders.php:743
2021
  msgid "Predefined Date Range"
2022
  msgstr ""
2023
 
2024
+ #: adminpages/orders.php:715 adminpages/orders.php:608
2025
+ #: adminpages/orders.php:715 adminpages/orders.php:744
2026
  msgid "Within a Level"
2027
  msgstr ""
2028
 
2029
+ #: adminpages/orders.php:716 adminpages/orders.php:609
2030
+ #: adminpages/orders.php:716 adminpages/orders.php:745
2031
  msgid "Within a Status"
2032
  msgstr ""
2033
 
2034
+ #: adminpages/orders.php:719 adminpages/orders.php:612
2035
+ #: adminpages/orders.php:719 adminpages/orders.php:748
2036
  msgid "From"
2037
  msgstr ""
2038
 
2039
+ #: adminpages/orders.php:731 adminpages/orders.php:624
2040
+ #: adminpages/orders.php:731 adminpages/orders.php:760
2041
  msgid "To"
2042
  msgstr ""
2043
 
2044
+ #: adminpages/orders.php:743 adminpages/orders.php:636
2045
+ #: adminpages/orders.php:743 adminpages/orders.php:772
2046
  msgid "filter by "
2047
  msgstr ""
2048
 
2049
+ #: adminpages/orders.php:780 adminpages/orders.php:674
2050
+ #: adminpages/orders.php:780 adminpages/orders.php:809
2051
  msgid "Filter"
2052
  msgstr ""
2053
 
2054
+ #: adminpages/orders.php:883 adminpages/orders.php:886
2055
  #: adminpages/orders.php:535 adminpages/orders.php:538
2056
  #: adminpages/orders.php:777 adminpages/orders.php:780
2057
+ #: adminpages/orders.php:883 adminpages/orders.php:886
2058
+ #: adminpages/orders.php:912 adminpages/orders.php:915
2059
  msgid "Search Orders"
2060
  msgstr ""
2061
 
2062
+ #: adminpages/orders.php:930 adminpages/orders.php:590
2063
  #: adminpages/orders.php:893 adminpages/orders.php:903
2064
+ #: adminpages/orders.php:930 adminpages/orders.php:959
2065
  #, php-format
2066
  msgid "%d orders found."
2067
  msgstr ""
2068
 
2069
+ #: adminpages/orders.php:939 adminpages/reports/login.php:159
2070
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
2071
  #: adminpages/orders.php:599 adminpages/orders.php:902
2072
+ #: adminpages/orders.php:912 adminpages/orders.php:939
2073
+ #: adminpages/orders.php:968 adminpages/paymentsettings.php:211
2074
  #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
2075
  #: adminpages/reports/login.php:141 adminpages/reports/login.php:143
2076
+ #: adminpages/reports/login.php:159
2077
  #: classes/gateways/class.pmprogateway_payflowpro.php:116
2078
  msgid "User"
2079
  msgstr ""
2080
 
2081
+ #: adminpages/orders.php:941 includes/init.php:238 includes/profile.php:27
2082
  #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
2083
  #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
2084
  #: adminpages/orders.php:601 adminpages/orders.php:904
2085
+ #: adminpages/orders.php:914 adminpages/orders.php:941
2086
+ #: adminpages/orders.php:970 includes/init.php:214 includes/init.php:217
2087
  #: includes/init.php:218 includes/init.php:220 includes/init.php:222
2088
+ #: includes/init.php:230 includes/init.php:238 includes/profile.php:25
2089
+ #: includes/profile.php:27 pages/checkout.php:33 pages/checkout.php:34
2090
+ #: pages/checkout.php:35 pages/checkout.php:42 pages/confirmation.php:46
2091
+ #: pages/confirmation.php:47 pages/confirmation.php:62
2092
+ #: pages/confirmation.php:64 pages/confirmation.php:103
2093
+ #: pages/confirmation.php:105 pages/invoice.php:27 pages/invoice.php:28
2094
+ #: pages/invoice.php:49 pages/invoice.php:51
2095
  msgid "Membership Level"
2096
  msgstr ""
2097
 
2098
+ #: adminpages/orders.php:943 adminpages/orders.php:1011
2099
  #: adminpages/orders.php:603 adminpages/orders.php:651
2100
  #: adminpages/orders.php:906 adminpages/orders.php:916
2101
+ #: adminpages/orders.php:943 adminpages/orders.php:954
2102
+ #: adminpages/orders.php:972 adminpages/orders.php:982
2103
+ #: adminpages/orders.php:1011 adminpages/orders.php:1040
2104
  msgid "Payment"
2105
  msgstr ""
2106
 
2107
+ #: adminpages/orders.php:945 adminpages/orders.php:605
2108
  #: adminpages/orders.php:908 adminpages/orders.php:918
2109
+ #: adminpages/orders.php:945 adminpages/orders.php:974
2110
  msgid "Transaction IDs"
2111
  msgstr ""
2112
 
2113
+ #: adminpages/orders.php:972 adminpages/orders.php:630
2114
  #: adminpages/orders.php:933 adminpages/orders.php:943
2115
+ #: adminpages/orders.php:972 adminpages/orders.php:1001
2116
  msgid "deleted"
2117
  msgstr ""
2118
 
2119
+ #: adminpages/orders.php:1013 adminpages/orders.php:653
2120
  #: adminpages/orders.php:956 adminpages/orders.php:974
2121
+ #: adminpages/orders.php:984 adminpages/orders.php:1013
2122
+ #: adminpages/orders.php:1042
2123
  msgid "Subscription"
2124
  msgstr ""
2125
 
2126
+ #: adminpages/orders.php:1027 adminpages/orders.php:664
2127
  #: adminpages/orders.php:967 adminpages/orders.php:985
2128
  #: adminpages/orders.php:995 adminpages/orders.php:998
2129
+ #: adminpages/orders.php:1027 adminpages/orders.php:1056
2130
  #, php-format
2131
  msgid ""
2132
  "Deleting orders is permanent and can affect active users. Are you sure you "
2133
  "want to delete order %s?"
2134
  msgstr ""
2135
 
2136
+ #: adminpages/orders.php:1030 adminpages/orders.php:1030
2137
  #: adminpages/orders.php:1059
2138
  msgid "print"
2139
  msgstr ""
2140
 
2141
+ #: adminpages/orders.php:1033 adminpages/orders.php:1033
2142
  #: adminpages/orders.php:1062
2143
  msgid "email"
2144
  msgstr ""
2145
 
2146
+ #: adminpages/orders.php:1043 adminpages/orders.php:674
2147
  #: adminpages/orders.php:977 adminpages/orders.php:995
2148
  #: adminpages/orders.php:1005 adminpages/orders.php:1008
2149
+ #: adminpages/orders.php:1043 adminpages/orders.php:1072
2150
  msgid "No orders found."
2151
  msgstr ""
2152
 
2463
  msgid "Details"
2464
  msgstr ""
2465
 
2466
+ #: adminpages/reports.php:61 adminpages/reports.php:61
2467
  msgid "Back to Reports Dashboard"
2468
  msgstr ""
2469
 
2471
  msgid "Visits, Views, and Logins"
2472
  msgstr ""
2473
 
2474
+ #: adminpages/reports/login.php:31 adminpages/reports/login.php:31
2475
  msgid "Visits"
2476
  msgstr ""
2477
 
2478
+ #: adminpages/reports/login.php:32 adminpages/reports/login.php:32
2479
  msgid "Views"
2480
  msgstr ""
2481
 
2482
+ #: adminpages/reports/login.php:33 adminpages/reports/login.php:33
2483
  msgid "Logins"
2484
  msgstr ""
2485
 
2486
  #: adminpages/reports/login.php:38 adminpages/reports/memberships.php:43
2487
+ #: adminpages/reports/sales.php:51 adminpages/reports/login.php:38
2488
+ #: adminpages/reports/memberships.php:43 adminpages/reports/memberships.php:62
2489
+ #: adminpages/reports/memberships.php:81 adminpages/reports/sales.php:51
2490
  msgid "Today"
2491
  msgstr ""
2492
 
2493
  #: adminpages/reports/login.php:44 adminpages/reports/memberships.php:48
2494
+ #: adminpages/reports/sales.php:56 adminpages/reports/login.php:44
2495
+ #: adminpages/reports/memberships.php:48 adminpages/reports/memberships.php:58
2496
+ #: adminpages/reports/memberships.php:77 adminpages/reports/sales.php:56
2497
  msgid "This Month"
2498
  msgstr ""
2499
 
2500
  #: adminpages/reports/login.php:50 adminpages/reports/memberships.php:58
2501
+ #: adminpages/reports/sales.php:66 adminpages/reports/login.php:50
2502
+ #: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:58
2503
+ #: adminpages/reports/memberships.php:69 adminpages/reports/sales.php:66
2504
  msgid "All Time"
2505
  msgstr ""
2506
 
2507
  #: adminpages/reports/login.php:79 adminpages/reports/login.php:61
2508
+ #: adminpages/reports/login.php:63 adminpages/reports/login.php:79
2509
  msgid "Visits, Views, and Logins Report"
2510
  msgstr ""
2511
 
2512
  #: adminpages/reports/login.php:84 adminpages/reports/login.php:66
2513
+ #: adminpages/reports/login.php:68 adminpages/reports/login.php:84
2514
  msgid "All Users"
2515
  msgstr ""
2516
 
2517
  #: adminpages/reports/login.php:164 adminpages/reports/login.php:146
2518
+ #: adminpages/reports/login.php:148 adminpages/reports/login.php:164
2519
  msgid "Last Visit"
2520
  msgstr ""
2521
 
2522
  #: adminpages/reports/login.php:165 adminpages/reports/login.php:27
2523
  #: adminpages/reports/login.php:28 adminpages/reports/login.php:147
2524
+ #: adminpages/reports/login.php:149 adminpages/reports/login.php:165
2525
  msgid "Visits This Month"
2526
  msgstr ""
2527
 
2528
  #: adminpages/reports/login.php:166 adminpages/reports/login.php:148
2529
+ #: adminpages/reports/login.php:150 adminpages/reports/login.php:166
2530
  msgid "Total Visits"
2531
  msgstr ""
2532
 
2533
  #: adminpages/reports/login.php:167 adminpages/reports/login.php:32
2534
  #: adminpages/reports/login.php:33 adminpages/reports/login.php:149
2535
+ #: adminpages/reports/login.php:151 adminpages/reports/login.php:167
2536
  msgid "Views This Month"
2537
  msgstr ""
2538
 
2539
  #: adminpages/reports/login.php:168 adminpages/reports/login.php:150
2540
+ #: adminpages/reports/login.php:152 adminpages/reports/login.php:168
2541
  msgid "Total Views"
2542
  msgstr ""
2543
 
2544
  #: adminpages/reports/login.php:169 adminpages/reports/login.php:151
2545
+ #: adminpages/reports/login.php:153 adminpages/reports/login.php:169
2546
  msgid "Last Login"
2547
  msgstr ""
2548
 
2549
  #: adminpages/reports/login.php:170 adminpages/reports/login.php:37
2550
  #: adminpages/reports/login.php:38 adminpages/reports/login.php:152
2551
+ #: adminpages/reports/login.php:154 adminpages/reports/login.php:170
2552
  msgid "Logins This Month"
2553
  msgstr ""
2554
 
2555
  #: adminpages/reports/login.php:171 adminpages/reports/login.php:153
2556
+ #: adminpages/reports/login.php:155 adminpages/reports/login.php:171
2557
  msgid "Total Logins"
2558
  msgstr ""
2559
 
2560
  #: adminpages/reports/memberships.php:18
2561
+ #: adminpages/reports/memberships.php:259
2562
  #: adminpages/reports/memberships.php:18
2563
+ #: adminpages/reports/memberships.php:252
2564
+ #: adminpages/reports/memberships.php:259
2565
  #: adminpages/reports/memberships.php:288
2566
  msgid "Membership Stats"
2567
  msgstr ""
2568
 
2569
+ #: adminpages/reports/memberships.php:37 adminpages/reports/memberships.php:37
2570
+ #: adminpages/reports/memberships.php:48
2571
  msgid "Signups"
2572
  msgstr ""
2573
 
2574
+ #: adminpages/reports/memberships.php:38 adminpages/reports/memberships.php:38
2575
+ msgid "All Cancellations"
2576
  msgstr ""
2577
 
2578
  #: adminpages/reports/memberships.php:53 adminpages/reports/sales.php:61
2579
+ #: adminpages/reports/memberships.php:53 adminpages/reports/memberships.php:54
2580
+ #: adminpages/reports/memberships.php:73 adminpages/reports/sales.php:61
2581
  msgid "This Year"
2582
  msgstr ""
2583
 
2584
+ #: adminpages/reports/memberships.php:265 adminpages/reports/sales.php:204
2585
+ #: adminpages/reports/memberships.php:258
2586
+ #: adminpages/reports/memberships.php:265
2587
  #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:187
2588
  #: adminpages/reports/sales.php:195 adminpages/reports/sales.php:196
2589
+ #: adminpages/reports/sales.php:204
2590
  msgid "Daily"
2591
  msgstr ""
2592
 
2593
+ #: adminpages/reports/memberships.php:266 adminpages/reports/sales.php:205
2594
+ #: adminpages/reports/memberships.php:259
2595
+ #: adminpages/reports/memberships.php:266
2596
  #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:188
2597
  #: adminpages/reports/sales.php:196 adminpages/reports/sales.php:197
2598
+ #: adminpages/reports/sales.php:205
2599
  msgid "Monthly"
2600
  msgstr ""
2601
 
2602
+ #: adminpages/reports/memberships.php:267 adminpages/reports/sales.php:206
2603
+ #: adminpages/reports/memberships.php:260
2604
+ #: adminpages/reports/memberships.php:267
2605
  #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:189
2606
  #: adminpages/reports/sales.php:197 adminpages/reports/sales.php:198
2607
+ #: adminpages/reports/sales.php:206
2608
  msgid "Annual"
2609
  msgstr ""
2610
 
2611
+ #: adminpages/reports/memberships.php:270
2612
+ #: adminpages/reports/memberships.php:270
2613
+ msgid "Signups vs. All Cancellations"
2614
+ msgstr ""
2615
+
2616
+ #: adminpages/reports/memberships.php:271
2617
  #: adminpages/reports/memberships.php:263
2618
+ #: adminpages/reports/memberships.php:271
2619
  #: adminpages/reports/memberships.php:299
2620
  msgid "Signups vs. Cancellations"
2621
  msgstr ""
2622
 
2623
+ #: adminpages/reports/memberships.php:272
2624
+ #: adminpages/reports/memberships.php:272
2625
+ msgid "Signups vs. Expirations"
2626
+ msgstr ""
2627
+
2628
+ #: adminpages/reports/memberships.php:277
2629
+ #: adminpages/reports/memberships.php:288 adminpages/reports/sales.php:212
2630
  #: adminpages/reports/sales.php:223 adminpages/membershiplevels.php:545
2631
  #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
2632
  #: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
2633
  #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
2634
+ #: adminpages/reports/memberships.php:268
2635
+ #: adminpages/reports/memberships.php:277
2636
+ #: adminpages/reports/memberships.php:279
2637
+ #: adminpages/reports/memberships.php:288
2638
  #: adminpages/reports/memberships.php:304
2639
  #: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:195
2640
  #: adminpages/reports/sales.php:203 adminpages/reports/sales.php:204
2641
+ #: adminpages/reports/sales.php:206 adminpages/reports/sales.php:212
2642
+ #: adminpages/reports/sales.php:214 adminpages/reports/sales.php:215
2643
+ #: adminpages/reports/sales.php:223
2644
  msgid "for"
2645
  msgstr ""
2646
 
2647
+ #: adminpages/reports/memberships.php:304 adminpages/reports/sales.php:239
2648
+ #: adminpages/reports/memberships.php:295
2649
+ #: adminpages/reports/memberships.php:304
2650
  #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:222
2651
  #: adminpages/reports/sales.php:230 adminpages/reports/sales.php:231
2652
+ #: adminpages/reports/sales.php:239
2653
  msgid "Generate Report"
2654
  msgstr ""
2655
 
2659
 
2660
  #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:198
2661
  #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:180
2662
+ #: adminpages/reports/sales.php:189 adminpages/reports/sales.php:198
2663
  msgid "Sales and Revenue"
2664
  msgstr ""
2665
 
2666
  #: adminpages/reports/sales.php:45 adminpages/reports/sales.php:210
2667
+ #: adminpages/reports/sales.php:45 adminpages/reports/sales.php:193
2668
+ #: adminpages/reports/sales.php:201 adminpages/reports/sales.php:202
2669
+ #: adminpages/reports/sales.php:210
2670
  msgid "Sales"
2671
  msgstr ""
2672
 
2673
  #: adminpages/reports/sales.php:46 adminpages/reports/sales.php:209
2674
+ #: adminpages/reports/sales.php:46 adminpages/reports/sales.php:192
2675
+ #: adminpages/reports/sales.php:200 adminpages/reports/sales.php:201
2676
+ #: adminpages/reports/sales.php:209
2677
  msgid "Revenue"
2678
  msgstr ""
2679
 
2680
+ #: adminpages/templates/orders-email.php:14
2681
+ #: adminpages/templates/orders-print.php:50
2682
  #: adminpages/templates/orders-email.php:14
2683
  #: adminpages/templates/orders-print.php:50
2684
  msgid "Invoice #: "
2685
  msgstr ""
2686
 
2687
+ #: adminpages/templates/orders-email.php:18
2688
+ #: adminpages/templates/orders-print.php:54
2689
  #: adminpages/templates/orders-email.php:18
2690
  #: adminpages/templates/orders-print.php:54
2691
  msgid "Date:"
2692
  msgstr ""
2693
 
2694
+ #: adminpages/templates/orders-email.php:24
2695
  #: adminpages/templates/orders-email.php:24
2696
  msgid "Bill to:"
2697
  msgstr ""
2698
 
2699
+ #: adminpages/templates/orders-email.php:47
2700
+ #: adminpages/templates/orders-print.php:76
2701
  #: adminpages/templates/orders-email.php:47
2702
  #: adminpages/templates/orders-print.php:76
2703
  msgid "Item"
2705
 
2706
  #: adminpages/templates/orders-email.php:48
2707
  #: adminpages/templates/orders-print.php:77 pages/levels.php:36
2708
+ #: adminpages/templates/orders-email.php:48
2709
+ #: adminpages/templates/orders-print.php:77 pages/levels.php:14
2710
+ #: pages/levels.php:36
2711
  msgid "Price"
2712
  msgstr ""
2713
 
2714
  #: adminpages/templates/orders-email.php:56
2715
  #: adminpages/templates/orders-print.php:85 pages/invoice.php:79
2716
+ #: adminpages/templates/orders-email.php:56
2717
+ #: adminpages/templates/orders-print.php:85 pages/invoice.php:77
2718
+ #: pages/invoice.php:79
2719
  msgid "Subtotal"
2720
  msgstr ""
2721
 
2722
+ #: adminpages/updates.php:11 adminpages/updates.php:11
2723
+ msgid "Updating Paid Memberships Pro"
2724
+ msgstr ""
2725
+
2726
+ #: adminpages/updates.php:18 adminpages/updates.php:18
2727
+ msgid "Updates are processing. This may take a few minutes to complete."
2728
+ msgstr ""
2729
+
2730
+ #: adminpages/updates.php:23 adminpages/updates.php:23
2731
+ msgid "Update complete."
2732
+ msgstr ""
2733
+
2734
+ #: classes/class.memberorder.php:697 classes/class.memberorder.php:553
2735
  #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2736
  #: classes/class.memberorder.php:573 classes/class.memberorder.php:644
2737
+ #: classes/class.memberorder.php:697 includes/cleanup.php:24
2738
  #, php-format
2739
  msgid ""
2740
  "There was an error canceling the subscription for user with ID=%s. You will "
2771
  #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2772
  #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2773
  #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2774
+ #: classes/gateways/class.pmprogateway_braintree.php:364
2775
+ #: classes/gateways/class.pmprogateway_stripe.php:536 pages/checkout.php:76
2776
+ #: pages/checkout.php:86 pages/checkout.php:616 pages/confirmation.php:52
2777
  #: pages/invoice.php:33 classes/class.pmproemail.php:216
2778
  #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2779
  #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
2790
  #: classes/class.pmproemail.php:648 classes/class.pmproemail.php:657
2791
  #: classes/gateways/class.pmprogateway_braintree.php:349
2792
  #: classes/gateways/class.pmprogateway_braintree.php:362
2793
+ #: classes/gateways/class.pmprogateway_braintree.php:364
2794
  #: classes/gateways/class.pmprogateway_stripe.php:495
2795
  #: classes/gateways/class.pmprogateway_stripe.php:496
2796
+ #: classes/gateways/class.pmprogateway_stripe.php:506
2797
+ #: classes/gateways/class.pmprogateway_stripe.php:510
2798
+ #: classes/gateways/class.pmprogateway_stripe.php:536 pages/checkout.php:66
2799
  #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:75
2800
  #: pages/checkout.php:76 pages/checkout.php:77 pages/checkout.php:78
2801
+ #: pages/checkout.php:85 pages/checkout.php:86 pages/checkout.php:549
2802
+ #: pages/checkout.php:565 pages/checkout.php:566 pages/checkout.php:573
2803
+ #: pages/checkout.php:594 pages/checkout.php:603 pages/checkout.php:612
2804
+ #: pages/checkout.php:616 pages/confirmation.php:51 pages/confirmation.php:52
2805
  #: pages/invoice.php:32 pages/invoice.php:33
2806
  msgid "Discount Code"
2807
  msgstr ""
2826
  msgid "Member Checkout for %s at %s"
2827
  msgstr ""
2828
 
2829
+ #: classes/class.pmproemail.php:375
 
 
2830
  #, php-format
2831
+ msgid "Your billing information has been updated at %s"
2832
  msgstr ""
2833
 
2834
+ #: classes/class.pmproemail.php:428
 
 
2835
  #, php-format
2836
+ msgid "Billing information has been updated for %s at %s"
2837
  msgstr ""
2838
 
2839
  #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
2937
  msgid "Membership has been cancelled"
2938
  msgstr ""
2939
 
2940
+ #: classes/class.pmproemail.php:848 classes/class.pmproemail.php:848
2941
  msgid "Invoice for Order #: "
2942
  msgstr ""
2943
 
2946
  #: classes/gateways/class.pmprogateway_check.php:193
2947
  #: classes/gateways/class.pmprogateway_cybersource.php:171
2948
  #: classes/gateways/class.pmprogateway_payflowpro.php:164
2949
+ #: classes/gateways/class.pmprogateway_paypal.php:249
2950
  #: classes/gateways/class.pmprogateway.php:55
2951
  #: classes/gateways/class.pmprogateway_authorizenet.php:55
2952
  #: classes/gateways/class.pmprogateway_authorizenet.php:171
2958
  #: classes/gateways/class.pmprogateway_payflowpro.php:164
2959
  #: classes/gateways/class.pmprogateway_paypal.php:27
2960
  #: classes/gateways/class.pmprogateway_paypal.php:247
2961
+ #: classes/gateways/class.pmprogateway_paypal.php:249
2962
  msgid "Unknown error: Authorization failed."
2963
  msgstr ""
2964
 
2968
  #: classes/gateways/class.pmprogateway_authorizenet.php:222
2969
  #: classes/gateways/class.pmprogateway_authorizenet.php:227
2970
  #: classes/gateways/class.pmprogateway_authorizenet.php:244
2971
+ #: classes/gateways/class.pmprogateway_check.php:245
2972
+ #: classes/gateways/class.pmprogateway_check.php:250
2973
+ #: classes/gateways/class.pmprogateway_check.php:268
2974
  #: classes/gateways/class.pmprogateway_cybersource.php:222
2975
  #: classes/gateways/class.pmprogateway_cybersource.php:227
2976
  #: classes/gateways/class.pmprogateway_cybersource.php:245
2977
  #: classes/gateways/class.pmprogateway_payflowpro.php:187
2978
  #: classes/gateways/class.pmprogateway_payflowpro.php:192
2979
+ #: classes/gateways/class.pmprogateway_paypal.php:272
2980
  #: classes/gateways/class.pmprogateway.php:106
2981
  #: classes/gateways/class.pmprogateway.php:111
2982
  #: classes/gateways/class.pmprogateway.php:129
2990
  #: classes/gateways/class.pmprogateway_check.php:116
2991
  #: classes/gateways/class.pmprogateway_check.php:134
2992
  #: classes/gateways/class.pmprogateway_check.php:244
2993
+ #: classes/gateways/class.pmprogateway_check.php:245
2994
  #: classes/gateways/class.pmprogateway_check.php:249
2995
+ #: classes/gateways/class.pmprogateway_check.php:250
2996
  #: classes/gateways/class.pmprogateway_check.php:267
2997
+ #: classes/gateways/class.pmprogateway_check.php:268
2998
  #: classes/gateways/class.pmprogateway_cybersource.php:108
2999
  #: classes/gateways/class.pmprogateway_cybersource.php:113
3000
  #: classes/gateways/class.pmprogateway_cybersource.php:131
3007
  #: classes/gateways/class.pmprogateway_payflowpro.php:192
3008
  #: classes/gateways/class.pmprogateway_paypal.php:50
3009
  #: classes/gateways/class.pmprogateway_paypal.php:270
3010
+ #: classes/gateways/class.pmprogateway_paypal.php:272
3011
  msgid "Unknown error: Payment failed."
3012
  msgstr ""
3013
 
3014
  #: classes/gateways/class.pmprogateway.php:113
3015
  #: classes/gateways/class.pmprogateway_authorizenet.php:228
3016
+ #: classes/gateways/class.pmprogateway_check.php:252
3017
  #: classes/gateways/class.pmprogateway_cybersource.php:229
3018
  #: classes/gateways/class.pmprogateway.php:113
3019
  #: classes/gateways/class.pmprogateway_authorizenet.php:112
3020
  #: classes/gateways/class.pmprogateway_authorizenet.php:228
3021
  #: classes/gateways/class.pmprogateway_check.php:118
3022
  #: classes/gateways/class.pmprogateway_check.php:251
3023
+ #: classes/gateways/class.pmprogateway_check.php:252
3024
  #: classes/gateways/class.pmprogateway_cybersource.php:115
3025
  #: classes/gateways/class.pmprogateway_cybersource.php:229
3026
  msgid ""
3029
  msgstr ""
3030
 
3031
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3032
+ #: paid-memberships-pro.php:132
3033
  #: classes/gateways/class.pmprogateway_authorizenet.php:39
3034
  #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
3035
+ #: paid-memberships-pro.php:130 paid-memberships-pro.php:131
3036
+ #: paid-memberships-pro.php:132
3037
  msgid "Authorize.net"
3038
  msgstr ""
3039
 
3080
  #: classes/gateways/class.pmprogateway_authorizenet.php:793
3081
  #: classes/gateways/class.pmprogateway_authorizenet.php:908
3082
  #: classes/gateways/class.pmprogateway_authorizenet.php:909
3083
+ #: classes/gateways/class.pmprogateway_authorizenet.php:910
3084
  msgid "Could not connect to Authorize.net"
3085
  msgstr ""
3086
 
3087
  #: classes/gateways/class.pmprogateway_braintree.php:76
3088
+ #: paid-memberships-pro.php:133
3089
  #: classes/gateways/class.pmprogateway_braintree.php:63
3090
  #: classes/gateways/class.pmprogateway_braintree.php:76
3091
  #: paid-memberships-pro.php:123 paid-memberships-pro.php:124
3092
+ #: paid-memberships-pro.php:131 paid-memberships-pro.php:132
3093
+ #: paid-memberships-pro.php:133
3094
  msgid "Braintree Payments"
3095
  msgstr ""
3096
 
3136
  msgstr ""
3137
 
3138
  #: classes/gateways/class.pmprogateway_braintree.php:169
3139
+ #: classes/gateways/class.pmprogateway_stripe.php:214
3140
  #: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
3141
  #: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
3142
  #: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
3146
  #: classes/gateways/class.pmprogateway_stripe.php:181
3147
  #: classes/gateways/class.pmprogateway_stripe.php:182
3148
  #: classes/gateways/class.pmprogateway_stripe.php:192
3149
+ #: classes/gateways/class.pmprogateway_stripe.php:214
3150
  msgid "Web Hook URL"
3151
  msgstr ""
3152
 
3158
  msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
3159
  msgstr ""
3160
 
3161
+ #: classes/gateways/class.pmprogateway_braintree.php:285
3162
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:503
3163
  #: classes/gateways/class.pmprogateway_braintree.php:270
3164
  #: classes/gateways/class.pmprogateway_braintree.php:283
3165
+ #: classes/gateways/class.pmprogateway_braintree.php:285
3166
  #: classes/gateways/class.pmprogateway_stripe.php:387
3167
  #: classes/gateways/class.pmprogateway_stripe.php:388
3168
+ #: classes/gateways/class.pmprogateway_stripe.php:398
3169
+ #: classes/gateways/class.pmprogateway_stripe.php:402
3170
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:476
3171
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3172
+ #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
3173
+ #: pages/checkout.php:503
3174
  msgid "Payment Information"
3175
  msgstr ""
3176
 
3177
+ #: classes/gateways/class.pmprogateway_braintree.php:285
3178
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:504
3179
  #: classes/gateways/class.pmprogateway_braintree.php:270
3180
  #: classes/gateways/class.pmprogateway_braintree.php:283
3181
+ #: classes/gateways/class.pmprogateway_braintree.php:285
3182
  #: classes/gateways/class.pmprogateway_stripe.php:387
3183
  #: classes/gateways/class.pmprogateway_stripe.php:388
3184
+ #: classes/gateways/class.pmprogateway_stripe.php:398
3185
+ #: classes/gateways/class.pmprogateway_stripe.php:402
3186
+ #: classes/gateways/class.pmprogateway_stripe.php:426 pages/checkout.php:476
3187
  #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
3188
+ #: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
3189
+ #: pages/checkout.php:504
3190
  #, php-format
3191
  msgid "We Accept %s"
3192
  msgstr ""
3193
 
3194
+ #: classes/gateways/class.pmprogateway_braintree.php:318
3195
+ #: classes/gateways/class.pmprogateway_stripe.php:490 pages/billing.php:260
3196
+ #: pages/checkout.php:570
3197
  #: classes/gateways/class.pmprogateway_braintree.php:303
3198
  #: classes/gateways/class.pmprogateway_braintree.php:316
3199
+ #: classes/gateways/class.pmprogateway_braintree.php:318
3200
  #: classes/gateways/class.pmprogateway_stripe.php:449
3201
  #: classes/gateways/class.pmprogateway_stripe.php:450
3202
+ #: classes/gateways/class.pmprogateway_stripe.php:460
3203
+ #: classes/gateways/class.pmprogateway_stripe.php:464
3204
+ #: classes/gateways/class.pmprogateway_stripe.php:490 pages/billing.php:244
3205
+ #: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
3206
+ #: pages/checkout.php:503 pages/checkout.php:519 pages/checkout.php:520
3207
+ #: pages/checkout.php:527 pages/checkout.php:548 pages/checkout.php:557
3208
+ #: pages/checkout.php:566 pages/checkout.php:570
3209
  msgid "Card Number"
3210
  msgstr ""
3211
 
3212
+ #: classes/gateways/class.pmprogateway_braintree.php:355
3213
+ #: classes/gateways/class.pmprogateway_stripe.php:527 pages/billing.php:297
3214
+ #: pages/checkout.php:607
3215
  #: classes/gateways/class.pmprogateway_braintree.php:340
3216
  #: classes/gateways/class.pmprogateway_braintree.php:353
3217
+ #: classes/gateways/class.pmprogateway_braintree.php:355
3218
  #: classes/gateways/class.pmprogateway_stripe.php:486
3219
  #: classes/gateways/class.pmprogateway_stripe.php:487
3220
+ #: classes/gateways/class.pmprogateway_stripe.php:497
3221
+ #: classes/gateways/class.pmprogateway_stripe.php:501
3222
+ #: classes/gateways/class.pmprogateway_stripe.php:527 pages/billing.php:281
3223
+ #: pages/billing.php:285 pages/billing.php:294 pages/billing.php:297
3224
+ #: pages/checkout.php:540 pages/checkout.php:556 pages/checkout.php:557
3225
+ #: pages/checkout.php:564 pages/checkout.php:585 pages/checkout.php:594
3226
+ #: pages/checkout.php:603 pages/checkout.php:607
3227
  msgid "CVV"
3228
  msgstr ""
3229
 
3230
+ #: classes/gateways/class.pmprogateway_braintree.php:356
3231
+ #: classes/gateways/class.pmprogateway_stripe.php:528 pages/billing.php:298
3232
+ #: pages/checkout.php:608
3233
  #: classes/gateways/class.pmprogateway_braintree.php:341
3234
  #: classes/gateways/class.pmprogateway_braintree.php:354
3235
+ #: classes/gateways/class.pmprogateway_braintree.php:356
3236
  #: classes/gateways/class.pmprogateway_stripe.php:487
3237
  #: classes/gateways/class.pmprogateway_stripe.php:488
3238
+ #: classes/gateways/class.pmprogateway_stripe.php:498
3239
+ #: classes/gateways/class.pmprogateway_stripe.php:502
3240
+ #: classes/gateways/class.pmprogateway_stripe.php:528 pages/billing.php:282
3241
+ #: pages/billing.php:286 pages/billing.php:295 pages/billing.php:298
3242
+ #: pages/checkout.php:541 pages/checkout.php:557 pages/checkout.php:558
3243
+ #: pages/checkout.php:565 pages/checkout.php:586 pages/checkout.php:595
3244
+ #: pages/checkout.php:604 pages/checkout.php:608
3245
  msgid "what's this?"
3246
  msgstr ""
3247
 
3248
+ #: classes/gateways/class.pmprogateway_braintree.php:366
3249
+ #: classes/gateways/class.pmprogateway_stripe.php:538 pages/checkout.php:88
3250
+ #: pages/checkout.php:618
3251
  #: classes/gateways/class.pmprogateway_braintree.php:351
3252
  #: classes/gateways/class.pmprogateway_braintree.php:364
3253
+ #: classes/gateways/class.pmprogateway_braintree.php:366
3254
  #: classes/gateways/class.pmprogateway_stripe.php:497
3255
  #: classes/gateways/class.pmprogateway_stripe.php:498
3256
+ #: classes/gateways/class.pmprogateway_stripe.php:508
3257
+ #: classes/gateways/class.pmprogateway_stripe.php:512
3258
+ #: classes/gateways/class.pmprogateway_stripe.php:538 pages/checkout.php:78
3259
  #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
3260
+ #: pages/checkout.php:88 pages/checkout.php:551 pages/checkout.php:567
3261
+ #: pages/checkout.php:568 pages/checkout.php:575 pages/checkout.php:596
3262
+ #: pages/checkout.php:605 pages/checkout.php:614 pages/checkout.php:618
3263
  msgid "Apply"
3264
  msgstr ""
3265
 
3266
+ #: classes/gateways/class.pmprogateway_braintree.php:421
3267
+ #: classes/gateways/class.pmprogateway_stripe.php:1068
3268
  #: classes/gateways/class.pmprogateway_braintree.php:61
3269
  #: classes/gateways/class.pmprogateway_braintree.php:406
3270
  #: classes/gateways/class.pmprogateway_braintree.php:419
3271
+ #: classes/gateways/class.pmprogateway_braintree.php:421
3272
  #: classes/gateways/class.pmprogateway_stripe.php:53
3273
  #: classes/gateways/class.pmprogateway_stripe.php:1011
3274
  #: classes/gateways/class.pmprogateway_stripe.php:1025
3275
  #: classes/gateways/class.pmprogateway_stripe.php:1026
3276
  #: classes/gateways/class.pmprogateway_stripe.php:1036
3277
+ #: classes/gateways/class.pmprogateway_stripe.php:1040
3278
+ #: classes/gateways/class.pmprogateway_stripe.php:1068
3279
  msgid "Unknown error: Initial payment failed."
3280
  msgstr ""
3281
 
3282
+ #: classes/gateways/class.pmprogateway_braintree.php:480
3283
  #: classes/gateways/class.pmprogateway_braintree.php:120
3284
  #: classes/gateways/class.pmprogateway_braintree.php:465
3285
  #: classes/gateways/class.pmprogateway_braintree.php:478
3286
+ #: classes/gateways/class.pmprogateway_braintree.php:480
3287
  msgid "Error during settlement:"
3288
  msgstr ""
3289
 
3290
+ #: classes/gateways/class.pmprogateway_braintree.php:489
3291
  #: classes/gateways/class.pmprogateway_braintree.php:129
3292
  #: classes/gateways/class.pmprogateway_braintree.php:474
3293
  #: classes/gateways/class.pmprogateway_braintree.php:487
3294
+ #: classes/gateways/class.pmprogateway_braintree.php:489
3295
  msgid "Error during charge:"
3296
  msgstr ""
3297
 
3298
+ #: classes/gateways/class.pmprogateway_braintree.php:581
3299
  #: classes/gateways/class.pmprogateway_braintree.php:198
3300
  #: classes/gateways/class.pmprogateway_braintree.php:221
3301
  #: classes/gateways/class.pmprogateway_braintree.php:566
3302
  #: classes/gateways/class.pmprogateway_braintree.php:579
3303
+ #: classes/gateways/class.pmprogateway_braintree.php:581
3304
  msgid "Failed to update customer."
3305
  msgstr ""
3306
 
3307
+ #: classes/gateways/class.pmprogateway_braintree.php:629
3308
  #: classes/gateways/class.pmprogateway_braintree.php:246
3309
  #: classes/gateways/class.pmprogateway_braintree.php:269
3310
  #: classes/gateways/class.pmprogateway_braintree.php:614
3311
  #: classes/gateways/class.pmprogateway_braintree.php:627
3312
+ #: classes/gateways/class.pmprogateway_braintree.php:629
3313
  msgid "Failed to create customer."
3314
  msgstr ""
3315
 
3316
+ #: classes/gateways/class.pmprogateway_braintree.php:636
3317
  #: classes/gateways/class.pmprogateway_braintree.php:253
3318
  #: classes/gateways/class.pmprogateway_braintree.php:276
3319
  #: classes/gateways/class.pmprogateway_braintree.php:621
3320
  #: classes/gateways/class.pmprogateway_braintree.php:634
3321
+ #: classes/gateways/class.pmprogateway_braintree.php:636
3322
  msgid "Error creating customer record with Braintree:"
3323
  msgstr ""
3324
 
3325
+ #: classes/gateways/class.pmprogateway_braintree.php:736
3326
  #: classes/gateways/class.pmprogateway_braintree.php:344
3327
  #: classes/gateways/class.pmprogateway_braintree.php:345
3328
  #: classes/gateways/class.pmprogateway_braintree.php:376
3329
  #: classes/gateways/class.pmprogateway_braintree.php:721
3330
  #: classes/gateways/class.pmprogateway_braintree.php:734
3331
+ #: classes/gateways/class.pmprogateway_braintree.php:736
3332
  msgid "Error subscribing customer to plan with Braintree:"
3333
  msgstr ""
3334
 
3335
+ #: classes/gateways/class.pmprogateway_braintree.php:751
3336
  #: classes/gateways/class.pmprogateway_braintree.php:359
3337
  #: classes/gateways/class.pmprogateway_braintree.php:360
3338
  #: classes/gateways/class.pmprogateway_braintree.php:391
3339
  #: classes/gateways/class.pmprogateway_braintree.php:736
3340
  #: classes/gateways/class.pmprogateway_braintree.php:749
3341
+ #: classes/gateways/class.pmprogateway_braintree.php:751
3342
  msgid "Failed to subscribe with Braintree:"
3343
  msgstr ""
3344
 
3345
+ #: classes/gateways/class.pmprogateway_braintree.php:789
3346
+ #: classes/gateways/class.pmprogateway_braintree.php:802
3347
+ #: classes/gateways/class.pmprogateway_braintree.php:809
3348
  #: classes/gateways/class.pmprogateway_braintree.php:397
3349
  #: classes/gateways/class.pmprogateway_braintree.php:398
3350
  #: classes/gateways/class.pmprogateway_braintree.php:410
3356
  #: classes/gateways/class.pmprogateway_braintree.php:449
3357
  #: classes/gateways/class.pmprogateway_braintree.php:774
3358
  #: classes/gateways/class.pmprogateway_braintree.php:787
3359
+ #: classes/gateways/class.pmprogateway_braintree.php:789
3360
  #: classes/gateways/class.pmprogateway_braintree.php:794
3361
  #: classes/gateways/class.pmprogateway_braintree.php:800
3362
+ #: classes/gateways/class.pmprogateway_braintree.php:802
3363
  #: classes/gateways/class.pmprogateway_braintree.php:807
3364
+ #: classes/gateways/class.pmprogateway_braintree.php:809
3365
  #: classes/gateways/class.pmprogateway_stripe.php:343
3366
  #: classes/gateways/class.pmprogateway_stripe.php:344
3367
  #: classes/gateways/class.pmprogateway_stripe.php:351
3375
  msgstr ""
3376
 
3377
  #: classes/gateways/class.pmprogateway_check.php:48
3378
+ #: paid-memberships-pro.php:126 adminpages/orders.php:399
3379
  #: adminpages/orders.php:449 adminpages/paymentsettings.php:157
3380
  #: adminpages/paymentsettings.php:159
3381
  #: classes/gateways/class.pmprogateway_check.php:48
3382
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:117
3383
+ #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3384
+ #: paid-memberships-pro.php:126
3385
  msgid "Pay by Check"
3386
  msgstr ""
3387
 
3457
  msgstr ""
3458
 
3459
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3460
+ #: pages/checkout.php:193 adminpages/paymentsettings.php:219
3461
  #: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
3462
  #: classes/gateways/class.pmprogateway_payflowpro.php:124
3463
  #: pages/checkout.php:177 pages/checkout.php:180 pages/checkout.php:182
3464
+ #: pages/checkout.php:189 pages/checkout.php:191 pages/checkout.php:193
3465
  msgid "Password"
3466
  msgstr ""
3467
 
3479
  msgstr ""
3480
 
3481
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3482
+ #: classes/gateways/class.pmprogateway_paypal.php:279
3483
  #: classes/gateways/class.pmprogateway_payflowpro.php:57
3484
  #: classes/gateways/class.pmprogateway_payflowpro.php:194
3485
  #: classes/gateways/class.pmprogateway_paypal.php:57
3486
  #: classes/gateways/class.pmprogateway_paypal.php:277
3487
+ #: classes/gateways/class.pmprogateway_paypal.php:279
3488
  msgid ""
3489
  "A partial payment was made that we could not refund. Please contact the site "
3490
  "owner immediately to correct this."
3491
  msgstr ""
3492
 
3493
  #: classes/gateways/class.pmprogateway_paypal.php:57
3494
+ #: paid-memberships-pro.php:129
3495
  #: classes/gateways/class.pmprogateway_paypal.php:57
3496
  #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
3497
+ #: paid-memberships-pro.php:127 paid-memberships-pro.php:128
3498
+ #: paid-memberships-pro.php:129
3499
  msgid "PayPal Website Payments Pro"
3500
  msgstr ""
3501
 
3540
  #: classes/gateways/class.pmprogateway_paypal.php:131
3541
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3542
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3543
+ #: classes/gateways/class.pmprogateway_twocheckout.php:119
3544
  #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
3545
  #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
3546
  #: adminpages/paymentsettings.php:336
3549
  #: classes/gateways/class.pmprogateway_paypalexpress.php:146
3550
  #: classes/gateways/class.pmprogateway_paypalstandard.php:130
3551
  #: classes/gateways/class.pmprogateway_twocheckout.php:113
3552
+ #: classes/gateways/class.pmprogateway_twocheckout.php:119
3553
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3554
  msgid "API Username"
3555
  msgstr ""
3557
  #: classes/gateways/class.pmprogateway_paypal.php:139
3558
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3559
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3560
+ #: classes/gateways/class.pmprogateway_twocheckout.php:128
3561
  #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
3562
  #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
3563
  #: adminpages/paymentsettings.php:344
3566
  #: classes/gateways/class.pmprogateway_paypalexpress.php:154
3567
  #: classes/gateways/class.pmprogateway_paypalstandard.php:138
3568
  #: classes/gateways/class.pmprogateway_twocheckout.php:121
3569
+ #: classes/gateways/class.pmprogateway_twocheckout.php:128
3570
  #: classes/gateways/class.pmprogateway_twocheckout.php:130
3571
  msgid "API Password"
3572
  msgstr ""
3605
  #: classes/gateways/class.pmprogateway_paypal.php:178
3606
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3607
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3608
+ #: pages/checkout.php:302 classes/gateways/class.pmprogateway_paypal.php:178
3609
  #: classes/gateways/class.pmprogateway_paypalexpress.php:402
3610
  #: classes/gateways/class.pmprogateway_paypalexpress.php:412
3611
  #: classes/gateways/class.pmprogateway_paypalstandard.php:202
3612
  #: pages/checkout.php:286 pages/checkout.php:288 pages/checkout.php:295
3613
+ #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:309
3614
+ #: pages/checkout.php:675 pages/checkout.php:682 pages/checkout.php:685
3615
+ #: pages/checkout.php:701
3616
  msgid "Check Out with PayPal"
3617
  msgstr ""
3618
 
3619
  #: classes/gateways/class.pmprogateway_paypal.php:184
3620
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3621
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3622
+ #: pages/checkout.php:728 classes/gateways/class.pmprogateway_paypal.php:184
3623
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3624
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3625
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3626
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3627
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3628
+ #: pages/checkout.php:722 pages/checkout.php:728
3629
  msgid "Submit and Check Out"
3630
  msgstr ""
3631
 
3632
  #: classes/gateways/class.pmprogateway_paypal.php:184
3633
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3634
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3635
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
3636
+ #: pages/checkout.php:728 classes/gateways/class.pmprogateway_paypal.php:184
3637
  #: classes/gateways/class.pmprogateway_paypalexpress.php:408
3638
  #: classes/gateways/class.pmprogateway_paypalexpress.php:418
3639
  #: classes/gateways/class.pmprogateway_paypalstandard.php:208
3640
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
3641
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
3642
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
3643
  #: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
3644
  #: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
3645
+ #: pages/checkout.php:722 pages/checkout.php:728
3646
  msgid "Submit and Confirm"
3647
  msgstr ""
3648
 
3649
+ #: classes/gateways/class.pmprogateway_paypal.php:607
3650
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:752
3651
  #: classes/gateways/class.pmprogateway_paypalstandard.php:466
3652
  #: classes/gateways/class.pmprogateway_paypal.php:385
3653
  #: classes/gateways/class.pmprogateway_paypal.php:605
3654
+ #: classes/gateways/class.pmprogateway_paypal.php:607
3655
  #: classes/gateways/class.pmprogateway_paypalexpress.php:301
3656
  #: classes/gateways/class.pmprogateway_paypalexpress.php:303
3657
  #: classes/gateways/class.pmprogateway_paypalexpress.php:305
3658
  #: classes/gateways/class.pmprogateway_paypalexpress.php:731
3659
  #: classes/gateways/class.pmprogateway_paypalexpress.php:740
3660
  #: classes/gateways/class.pmprogateway_paypalexpress.php:750
3661
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:752
3662
  #: classes/gateways/class.pmprogateway_paypalstandard.php:216
3663
  #: classes/gateways/class.pmprogateway_paypalstandard.php:220
3664
  #: classes/gateways/class.pmprogateway_paypalstandard.php:230
3670
  msgstr ""
3671
 
3672
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3673
+ #: paid-memberships-pro.php:128
3674
  #: classes/gateways/class.pmprogateway_paypalexpress.php:63
3675
  #: classes/gateways/class.pmprogateway_paypalexpress.php:73
3676
  #: paid-memberships-pro.php:118 paid-memberships-pro.php:119
3677
+ #: paid-memberships-pro.php:126 paid-memberships-pro.php:127
3678
+ #: paid-memberships-pro.php:128
3679
  msgid "PayPal Express"
3680
  msgstr ""
3681
 
3703
  msgstr ""
3704
 
3705
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3706
+ #: paid-memberships-pro.php:131
3707
  #: classes/gateways/class.pmprogateway_paypalstandard.php:60
3708
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:122
3709
+ #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
3710
+ #: paid-memberships-pro.php:131
3711
  msgid "PayPal Standard"
3712
  msgstr ""
3713
 
3718
  "settings."
3719
  msgstr ""
3720
 
3721
+ #: classes/gateways/class.pmprogateway_stripe.php:51
3722
+ #: classes/gateways/class.pmprogateway_stripe.php:51
3723
+ #, php-format
3724
+ msgid ""
3725
+ "The %s gateway depends on the %s PHP extension. Please enable it, or ask "
3726
+ "your hosting provider to enable it"
3727
+ msgstr ""
3728
+
3729
+ #: classes/gateways/class.pmprogateway_stripe.php:126
3730
+ #: paid-memberships-pro.php:127
3731
  #: classes/gateways/class.pmprogateway_stripe.php:93
3732
  #: classes/gateways/class.pmprogateway_stripe.php:94
3733
  #: classes/gateways/class.pmprogateway_stripe.php:104
3734
+ #: classes/gateways/class.pmprogateway_stripe.php:126
3735
  #: paid-memberships-pro.php:117 paid-memberships-pro.php:118
3736
+ #: paid-memberships-pro.php:125 paid-memberships-pro.php:126
3737
+ #: paid-memberships-pro.php:127
3738
  msgid "Stripe"
3739
  msgstr ""
3740
 
3741
+ #: classes/gateways/class.pmprogateway_stripe.php:181
3742
  #: classes/gateways/class.pmprogateway_stripe.php:148
3743
  #: classes/gateways/class.pmprogateway_stripe.php:149
3744
  #: classes/gateways/class.pmprogateway_stripe.php:159
3745
+ #: classes/gateways/class.pmprogateway_stripe.php:181
3746
  msgid "Stripe Settings"
3747
  msgstr ""
3748
 
3749
+ #: classes/gateways/class.pmprogateway_stripe.php:186
3750
  #: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:281
3751
  #: adminpages/paymentsettings.php:286
3752
  #: classes/gateways/class.pmprogateway_stripe.php:153
3753
  #: classes/gateways/class.pmprogateway_stripe.php:154
3754
  #: classes/gateways/class.pmprogateway_stripe.php:164
3755
+ #: classes/gateways/class.pmprogateway_stripe.php:186
3756
  msgid "Secret Key"
3757
  msgstr ""
3758
 
3759
+ #: classes/gateways/class.pmprogateway_stripe.php:194
3760
  #: adminpages/paymentsettings.php:285 adminpages/paymentsettings.php:289
3761
  #: adminpages/paymentsettings.php:294
3762
  #: classes/gateways/class.pmprogateway_stripe.php:161
3763
  #: classes/gateways/class.pmprogateway_stripe.php:162
3764
  #: classes/gateways/class.pmprogateway_stripe.php:172
3765
+ #: classes/gateways/class.pmprogateway_stripe.php:194
3766
  msgid "Publishable Key"
3767
  msgstr ""
3768
 
3769
+ #: classes/gateways/class.pmprogateway_stripe.php:202
3770
  #: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
3771
  #: adminpages/paymentsettings.php:432
3772
  #: classes/gateways/class.pmprogateway_stripe.php:169
3773
  #: classes/gateways/class.pmprogateway_stripe.php:170
3774
  #: classes/gateways/class.pmprogateway_stripe.php:180
3775
+ #: classes/gateways/class.pmprogateway_stripe.php:202
3776
  msgid "Show Billing Address Fields"
3777
  msgstr ""
3778
 
3779
+ #: classes/gateways/class.pmprogateway_stripe.php:209
3780
  #: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
3781
  #: classes/gateways/class.pmprogateway_stripe.php:176
3782
  #: classes/gateways/class.pmprogateway_stripe.php:177
3783
  #: classes/gateways/class.pmprogateway_stripe.php:187
3784
+ #: classes/gateways/class.pmprogateway_stripe.php:209
3785
  msgid ""
3786
  "Stripe doesn't require billing address fields. Choose 'No' to hide them on "
3787
  "the checkout page.<br /><strong>If No, make sure you disable address "
3788
  "verification in the Stripe dashboard settings.</strong>"
3789
  msgstr ""
3790
 
3791
+ #: classes/gateways/class.pmprogateway_stripe.php:217
3792
  #: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
3793
  #: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
3794
  #: classes/gateways/class.pmprogateway_stripe.php:184
3795
  #: classes/gateways/class.pmprogateway_stripe.php:185
3796
  #: classes/gateways/class.pmprogateway_stripe.php:195
3797
+ #: classes/gateways/class.pmprogateway_stripe.php:217
3798
  msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
3799
  msgstr ""
3800
 
3801
+ #: classes/gateways/class.pmprogateway_stripe.php:608
3802
  #: classes/gateways/class.pmprogateway_stripe.php:567
3803
  #: classes/gateways/class.pmprogateway_stripe.php:568
3804
  #: classes/gateways/class.pmprogateway_stripe.php:578
3805
+ #: classes/gateways/class.pmprogateway_stripe.php:582
3806
+ #: classes/gateways/class.pmprogateway_stripe.php:608
3807
  msgid "Subscription Updates"
3808
  msgstr ""
3809
 
3810
+ #: classes/gateways/class.pmprogateway_stripe.php:612
3811
  #: classes/gateways/class.pmprogateway_stripe.php:571
3812
  #: classes/gateways/class.pmprogateway_stripe.php:572
3813
  #: classes/gateways/class.pmprogateway_stripe.php:582
3814
+ #: classes/gateways/class.pmprogateway_stripe.php:586
3815
+ #: classes/gateways/class.pmprogateway_stripe.php:612
3816
  msgid ""
3817
  "Subscription updates, allow you to change the member's subscription values "
3818
  "at predefined times. Be sure to click Update Profile after making changes."
3819
  msgstr ""
3820
 
3821
+ #: classes/gateways/class.pmprogateway_stripe.php:614
3822
  #: classes/gateways/class.pmprogateway_stripe.php:573
3823
  #: classes/gateways/class.pmprogateway_stripe.php:574
3824
  #: classes/gateways/class.pmprogateway_stripe.php:584
3825
+ #: classes/gateways/class.pmprogateway_stripe.php:588
3826
+ #: classes/gateways/class.pmprogateway_stripe.php:614
3827
  msgid ""
3828
  "Subscription updates, allow you to change the member's subscription values "
3829
  "at predefined times. Be sure to click Update User after making changes."
3830
  msgstr ""
3831
 
3832
+ #: classes/gateways/class.pmprogateway_stripe.php:619 pages/billing.php:343
3833
  #: classes/gateways/class.pmprogateway_stripe.php:578
3834
  #: classes/gateways/class.pmprogateway_stripe.php:579
3835
+ #: classes/gateways/class.pmprogateway_stripe.php:589
3836
+ #: classes/gateways/class.pmprogateway_stripe.php:593
3837
+ #: classes/gateways/class.pmprogateway_stripe.php:619 pages/billing.php:294
3838
  #: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
3839
+ #: pages/billing.php:341 pages/billing.php:343
3840
  msgid "Update"
3841
  msgstr ""
3842
 
3843
+ #: classes/gateways/class.pmprogateway_stripe.php:812
3844
  #: classes/gateways/class.pmprogateway_stripe.php:769
3845
  #: classes/gateways/class.pmprogateway_stripe.php:770
3846
  #: classes/gateways/class.pmprogateway_stripe.php:780
3847
+ #: classes/gateways/class.pmprogateway_stripe.php:784
3848
+ #: classes/gateways/class.pmprogateway_stripe.php:812
3849
  msgid "Could not cancel the old subscription. Updates have not been processed."
3850
  msgstr ""
3851
 
3852
+ #: classes/gateways/class.pmprogateway_stripe.php:1246
3853
  #: classes/gateways/class.pmprogateway_stripe.php:190
3854
  #: classes/gateways/class.pmprogateway_stripe.php:192
3855
  #: classes/gateways/class.pmprogateway_stripe.php:199
3860
  #: classes/gateways/class.pmprogateway_stripe.php:1203
3861
  #: classes/gateways/class.pmprogateway_stripe.php:1204
3862
  #: classes/gateways/class.pmprogateway_stripe.php:1214
3863
+ #: classes/gateways/class.pmprogateway_stripe.php:1218
3864
+ #: classes/gateways/class.pmprogateway_stripe.php:1246
3865
  msgid "Error creating customer record with Stripe:"
3866
  msgstr ""
3867
 
3868
+ #: classes/gateways/class.pmprogateway_stripe.php:1303
3869
  #: classes/gateways/class.pmprogateway_stripe.php:1275
3870
+ #: classes/gateways/class.pmprogateway_stripe.php:1303
3871
  msgid "Error getting subscription with Stripe:"
3872
  msgstr ""
3873
 
3874
+ #: classes/gateways/class.pmprogateway_stripe.php:1453
3875
  #: classes/gateways/class.pmprogateway_stripe.php:278
3876
  #: classes/gateways/class.pmprogateway_stripe.php:279
3877
  #: classes/gateways/class.pmprogateway_stripe.php:286
3890
  #: classes/gateways/class.pmprogateway_stripe.php:1410
3891
  #: classes/gateways/class.pmprogateway_stripe.php:1411
3892
  #: classes/gateways/class.pmprogateway_stripe.php:1421
3893
+ #: classes/gateways/class.pmprogateway_stripe.php:1425
3894
+ #: classes/gateways/class.pmprogateway_stripe.php:1453
3895
  msgid "Error creating plan with Stripe:"
3896
  msgstr ""
3897
 
3898
+ #: classes/gateways/class.pmprogateway_stripe.php:1484
3899
  #: classes/gateways/class.pmprogateway_stripe.php:294
3900
  #: classes/gateways/class.pmprogateway_stripe.php:295
3901
  #: classes/gateways/class.pmprogateway_stripe.php:302
3909
  #: classes/gateways/class.pmprogateway_stripe.php:1441
3910
  #: classes/gateways/class.pmprogateway_stripe.php:1442
3911
  #: classes/gateways/class.pmprogateway_stripe.php:1452
3912
+ #: classes/gateways/class.pmprogateway_stripe.php:1456
3913
+ #: classes/gateways/class.pmprogateway_stripe.php:1484
3914
  msgid "Error subscribing customer to plan with Stripe:"
3915
  msgstr ""
3916
 
3917
+ #: classes/gateways/class.pmprogateway_stripe.php:1580
3918
  #: classes/gateways/class.pmprogateway_stripe.php:383
3919
  #: classes/gateways/class.pmprogateway_stripe.php:389
3920
  #: classes/gateways/class.pmprogateway_stripe.php:410
3925
  #: classes/gateways/class.pmprogateway_stripe.php:1537
3926
  #: classes/gateways/class.pmprogateway_stripe.php:1538
3927
  #: classes/gateways/class.pmprogateway_stripe.php:1548
3928
+ #: classes/gateways/class.pmprogateway_stripe.php:1552
3929
+ #: classes/gateways/class.pmprogateway_stripe.php:1580
3930
  msgid "Could not cancel old subscription."
3931
  msgstr ""
3932
 
3933
+ #: classes/gateways/class.pmprogateway_stripe.php:1597
3934
  #: classes/gateways/class.pmprogateway_stripe.php:1533
3935
  #: classes/gateways/class.pmprogateway_stripe.php:1534
3936
  #: classes/gateways/class.pmprogateway_stripe.php:1535
3938
  #: classes/gateways/class.pmprogateway_stripe.php:1554
3939
  #: classes/gateways/class.pmprogateway_stripe.php:1555
3940
  #: classes/gateways/class.pmprogateway_stripe.php:1565
3941
+ #: classes/gateways/class.pmprogateway_stripe.php:1569
3942
+ #: classes/gateways/class.pmprogateway_stripe.php:1597
3943
  msgid "Could not find the customer."
3944
  msgstr ""
3945
 
3946
+ #: classes/gateways/class.pmprogateway_twocheckout.php:59
3947
+ #: paid-memberships-pro.php:134
3948
  #: classes/gateways/class.pmprogateway_twocheckout.php:53
3949
+ #: classes/gateways/class.pmprogateway_twocheckout.php:59
3950
  #: classes/gateways/class.pmprogateway_twocheckout.php:60
3951
  #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
3952
+ #: paid-memberships-pro.php:132 paid-memberships-pro.php:133
3953
+ #: paid-memberships-pro.php:134
3954
  msgid "2Checkout"
3955
  msgstr ""
3956
 
3957
+ #: classes/gateways/class.pmprogateway_twocheckout.php:114
3958
  #: classes/gateways/class.pmprogateway_twocheckout.php:108
3959
+ #: classes/gateways/class.pmprogateway_twocheckout.php:114
3960
  #: classes/gateways/class.pmprogateway_twocheckout.php:116
3961
  msgid "2Checkout Settings"
3962
  msgstr ""
3963
 
3964
+ #: classes/gateways/class.pmprogateway_twocheckout.php:123
3965
+ #: classes/gateways/class.pmprogateway_twocheckout.php:123
3966
  #: classes/gateways/class.pmprogateway_twocheckout.php:125
3967
  msgid ""
3968
  "Go to Account &raquo; User Management in 2Checkout and create a user with "
3969
  "API Access and API Updating."
3970
  msgstr ""
3971
 
3972
+ #: classes/gateways/class.pmprogateway_twocheckout.php:132
3973
+ #: classes/gateways/class.pmprogateway_twocheckout.php:132
3974
  #: classes/gateways/class.pmprogateway_twocheckout.php:134
3975
  msgid "Password for the API user created."
3976
  msgstr ""
3977
 
3978
+ #: classes/gateways/class.pmprogateway_twocheckout.php:141
3979
+ #: classes/gateways/class.pmprogateway_twocheckout.php:141
 
 
 
 
 
 
 
 
 
 
 
3980
  #: classes/gateways/class.pmprogateway_twocheckout.php:152
3981
  msgid "Click on the profile icon in 2Checkout to find your Account Number."
3982
  msgstr ""
3983
 
3984
+ #: classes/gateways/class.pmprogateway_twocheckout.php:146
3985
  #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3986
  #: classes/gateways/class.pmprogateway_twocheckout.php:137
3987
+ #: classes/gateways/class.pmprogateway_twocheckout.php:146
3988
  #: classes/gateways/class.pmprogateway_twocheckout.php:157
3989
  msgid "Secret Word"
3990
  msgstr ""
3991
 
3992
+ #: classes/gateways/class.pmprogateway_twocheckout.php:150
3993
+ #: classes/gateways/class.pmprogateway_twocheckout.php:150
3994
  #: classes/gateways/class.pmprogateway_twocheckout.php:161
3995
  msgid ""
3996
  "Go to Account &raquo; Site Management. Look under Checkout Options to find "
3997
  "the Secret Word."
3998
  msgstr ""
3999
 
4000
+ #: classes/gateways/class.pmprogateway_twocheckout.php:155
4001
  #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
4002
  #: adminpages/paymentsettings.php:495
4003
  #: classes/gateways/class.pmprogateway_twocheckout.php:145
4004
+ #: classes/gateways/class.pmprogateway_twocheckout.php:155
4005
  #: classes/gateways/class.pmprogateway_twocheckout.php:166
4006
  msgid "TwoCheckout INS URL"
4007
  msgstr ""
4008
 
4009
+ #: classes/gateways/class.pmprogateway_twocheckout.php:158
4010
+ #: classes/gateways/class.pmprogateway_twocheckout.php:158
4011
  #: classes/gateways/class.pmprogateway_twocheckout.php:169
4012
  msgid ""
4013
  "To fully integrate with 2Checkout, be sure to use the following for your INS "
4014
  "URL and Approved URL"
4015
  msgstr ""
4016
 
4017
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
4018
  #: classes/gateways/class.pmprogateway_twocheckout.php:192
4019
+ #: classes/gateways/class.pmprogateway_twocheckout.php:203
4020
  #: classes/gateways/class.pmprogateway_twocheckout.php:214
4021
  msgid "Check Out with 2Checkout"
4022
  msgstr ""
4023
 
4024
+ #: includes/adminpages.php:48 includes/adminpages.php:9
4025
  #: includes/adminpages.php:39 includes/adminpages.php:47
4026
+ #: includes/adminpages.php:48 includes/adminpages.php:93
4027
+ #: includes/adminpages.php:100
4028
  msgid "Memberships"
4029
  msgstr ""
4030
 
4031
+ #: includes/adminpages.php:49 includes/adminpages.php:123
4032
  #: includes/adminpages.php:10 includes/adminpages.php:48
4033
  #: includes/adminpages.php:49 includes/adminpages.php:107
4034
  #: includes/adminpages.php:114 includes/adminpages.php:118
4035
+ #: includes/adminpages.php:123
4036
  msgid "Page Settings"
4037
  msgstr ""
4038
 
4039
+ #: includes/adminpages.php:50 includes/adminpages.php:130
4040
  #: includes/adminpages.php:11 includes/adminpages.php:49
4041
+ #: includes/adminpages.php:50 includes/adminpages.php:54
4042
+ #: includes/adminpages.php:114 includes/adminpages.php:121
4043
+ #: includes/adminpages.php:125 includes/adminpages.php:130
4044
  msgid "Payment Settings"
4045
  msgstr ""
4046
 
4047
+ #: includes/adminpages.php:55 includes/adminpages.php:165
4048
  #: includes/adminpages.php:16 includes/adminpages.php:54
4049
+ #: includes/adminpages.php:55 includes/adminpages.php:79
4050
+ #: includes/adminpages.php:149 includes/adminpages.php:156
4051
+ #: includes/adminpages.php:160 includes/adminpages.php:165
4052
  msgid "Reports"
4053
  msgstr ""
4054
 
4055
+ #: includes/adminpages.php:57 includes/adminpages.php:179
4056
  #: includes/adminpages.php:18 includes/adminpages.php:56
4057
+ #: includes/adminpages.php:57 includes/adminpages.php:89
4058
+ #: includes/adminpages.php:163 includes/adminpages.php:170
4059
+ #: includes/adminpages.php:174 includes/adminpages.php:179
4060
  msgid "Discount Codes"
4061
  msgstr ""
4062
 
4063
+ #: includes/adminpages.php:61 includes/adminpages.php:61
4064
+ msgid "Updates Required"
4065
+ msgstr ""
4066
+
4067
+ #: includes/adminpages.php:109 includes/adminpages.php:100
4068
+ #: includes/adminpages.php:104 includes/adminpages.php:109
4069
  msgid "<span class=\"ab-icon\"></span>Memberships"
4070
  msgstr ""
4071
 
4072
+ #: includes/adminpages.php:274 includes/adminpages.php:261
4073
+ #: includes/adminpages.php:265 includes/adminpages.php:274
4074
  msgid "Docs"
4075
  msgstr ""
4076
 
4077
+ #: includes/adminpages.php:274 includes/adminpages.php:261
4078
+ #: includes/adminpages.php:265 includes/adminpages.php:274
4079
  msgid "View PMPro Documentation"
4080
  msgstr ""
4081
 
4082
+ #: includes/adminpages.php:275 includes/adminpages.php:262
4083
+ #: includes/adminpages.php:266 includes/adminpages.php:275
4084
  msgid "Support"
4085
  msgstr ""
4086
 
4087
+ #: includes/adminpages.php:275 includes/adminpages.php:262
4088
+ #: includes/adminpages.php:266 includes/adminpages.php:275
4089
  msgid "Visit Customer Support Forum"
4090
  msgstr ""
4091
 
4092
+ #: includes/currencies.php:17 includes/currencies.php:87
4093
+ #: includes/currencies.php:7 includes/currencies.php:17
4094
+ #: includes/currencies.php:37 includes/currencies.php:44
4095
+ #: includes/currencies.php:64 includes/currencies.php:68
4096
+ #: includes/currencies.php:75 includes/currencies.php:85
4097
+ #: includes/currencies.php:87
4098
  msgid "US Dollars (&#36;)"
4099
  msgstr ""
4100
 
4101
+ #: includes/currencies.php:19 includes/currencies.php:90
4102
  #: includes/currencies.php:8 includes/currencies.php:9
4103
+ #: includes/currencies.php:19 includes/currencies.php:40
4104
+ #: includes/currencies.php:47 includes/currencies.php:67
4105
+ #: includes/currencies.php:71 includes/currencies.php:78
4106
+ #: includes/currencies.php:88 includes/currencies.php:90
4107
  msgid "Euros (&euro;)"
4108
  msgstr ""
4109
 
4110
+ #: includes/currencies.php:24 includes/currencies.php:89
4111
  #: includes/currencies.php:9 includes/currencies.php:14
4112
+ #: includes/currencies.php:24 includes/currencies.php:39
4113
+ #: includes/currencies.php:46 includes/currencies.php:66
4114
+ #: includes/currencies.php:70 includes/currencies.php:77
4115
+ #: includes/currencies.php:87 includes/currencies.php:89
4116
  msgid "Pounds Sterling (&pound;)"
4117
  msgstr ""
4118
 
4119
+ #: includes/currencies.php:28 includes/currencies.php:28
4120
+ msgid "Argentine Peso (&#36;)"
4121
+ msgstr ""
4122
+
4123
+ #: includes/currencies.php:29 includes/currencies.php:10
4124
+ #: includes/currencies.php:18 includes/currencies.php:28
4125
+ #: includes/currencies.php:29
4126
  msgid "Australian Dollars (&#36;)"
4127
  msgstr ""
4128
 
4129
+ #: includes/currencies.php:31 includes/currencies.php:20
4130
+ #: includes/currencies.php:30 includes/currencies.php:31
4131
  msgid "Brazilian Real (R&#36;)"
4132
  msgstr ""
4133
 
4134
+ #: includes/currencies.php:35 includes/currencies.php:88
4135
  #: includes/currencies.php:12 includes/currencies.php:24
4136
+ #: includes/currencies.php:34 includes/currencies.php:35
4137
  #: includes/currencies.php:38 includes/currencies.php:45
4138
  #: includes/currencies.php:65 includes/currencies.php:69
4139
+ #: includes/currencies.php:76 includes/currencies.php:86
4140
+ #: includes/currencies.php:88
4141
  msgid "Canadian Dollars (&#36;)"
4142
  msgstr ""
4143
 
4144
+ #: includes/currencies.php:36 includes/currencies.php:13
4145
+ #: includes/currencies.php:25 includes/currencies.php:35
4146
+ #: includes/currencies.php:36
4147
  msgid "Chinese Yuan"
4148
  msgstr ""
4149
 
4150
+ #: includes/currencies.php:38 includes/currencies.php:13
4151
  #: includes/currencies.php:14 includes/currencies.php:26
4152
+ #: includes/currencies.php:27 includes/currencies.php:37
4153
+ #: includes/currencies.php:38
4154
  msgid "Czech Koruna"
4155
  msgstr ""
4156
 
4157
+ #: includes/currencies.php:45 includes/currencies.php:14
4158
  #: includes/currencies.php:15 includes/currencies.php:27
4159
+ #: includes/currencies.php:34 includes/currencies.php:44
4160
+ #: includes/currencies.php:45
4161
  msgid "Danish Krone"
4162
  msgstr ""
4163
 
4164
+ #: includes/currencies.php:46 includes/currencies.php:15
4165
  #: includes/currencies.php:16 includes/currencies.php:28
4166
+ #: includes/currencies.php:35 includes/currencies.php:45
4167
+ #: includes/currencies.php:46
4168
  msgid "Hong Kong Dollar (&#36;)"
4169
  msgstr ""
4170
 
4171
+ #: includes/currencies.php:47 includes/currencies.php:16
4172
  #: includes/currencies.php:17 includes/currencies.php:29
4173
+ #: includes/currencies.php:36 includes/currencies.php:46
4174
+ #: includes/currencies.php:47
4175
  msgid "Hungarian Forint"
4176
  msgstr ""
4177
 
4178
+ #: includes/currencies.php:48 includes/currencies.php:18
4179
  #: includes/currencies.php:30 includes/currencies.php:37
4180
+ #: includes/currencies.php:47 includes/currencies.php:48
4181
  msgid "Indian Rupee"
4182
  msgstr ""
4183
 
4184
+ #: includes/currencies.php:49 includes/currencies.php:19
4185
  #: includes/currencies.php:31 includes/currencies.php:38
4186
+ #: includes/currencies.php:48 includes/currencies.php:49
4187
  msgid "Indonesia Rupiah"
4188
  msgstr ""
4189
 
4190
+ #: includes/currencies.php:50 includes/currencies.php:17
4191
  #: includes/currencies.php:20 includes/currencies.php:32
4192
+ #: includes/currencies.php:39 includes/currencies.php:49
4193
+ #: includes/currencies.php:50
4194
  msgid "Israeli Shekel"
4195
  msgstr ""
4196
 
4197
+ #: includes/currencies.php:52 includes/currencies.php:18
4198
  #: includes/currencies.php:21 includes/currencies.php:34
4199
+ #: includes/currencies.php:41 includes/currencies.php:51
4200
+ #: includes/currencies.php:52
4201
  msgid "Japanese Yen (&yen;)"
4202
  msgstr ""
4203
 
4204
+ #: includes/currencies.php:56 includes/currencies.php:19
4205
  #: includes/currencies.php:22 includes/currencies.php:38
4206
+ #: includes/currencies.php:45 includes/currencies.php:55
4207
+ #: includes/currencies.php:56
4208
  msgid "Malaysian Ringgits"
4209
  msgstr ""
4210
 
4211
+ #: includes/currencies.php:57 includes/currencies.php:20
4212
  #: includes/currencies.php:23 includes/currencies.php:39
4213
+ #: includes/currencies.php:46 includes/currencies.php:56
4214
+ #: includes/currencies.php:57
4215
  msgid "Mexican Peso (&#36;)"
4216
  msgstr ""
4217
 
4218
+ #: includes/currencies.php:58 includes/currencies.php:58
4219
+ msgid "Nigerian Naira (&#8358;)"
4220
+ msgstr ""
4221
+
4222
+ #: includes/currencies.php:59 includes/currencies.php:21
4223
  #: includes/currencies.php:24 includes/currencies.php:40
4224
+ #: includes/currencies.php:47 includes/currencies.php:57
4225
+ #: includes/currencies.php:59
4226
  msgid "New Zealand Dollar (&#36;)"
4227
  msgstr ""
4228
 
4229
+ #: includes/currencies.php:60 includes/currencies.php:22
4230
  #: includes/currencies.php:25 includes/currencies.php:41
4231
+ #: includes/currencies.php:48 includes/currencies.php:58
4232
+ #: includes/currencies.php:60
4233
  msgid "Norwegian Krone"
4234
  msgstr ""
4235
 
4236
+ #: includes/currencies.php:61 includes/currencies.php:23
4237
  #: includes/currencies.php:26 includes/currencies.php:42
4238
+ #: includes/currencies.php:49 includes/currencies.php:59
4239
+ #: includes/currencies.php:61
4240
  msgid "Philippine Pesos"
4241
  msgstr ""
4242
 
4243
+ #: includes/currencies.php:62 includes/currencies.php:24
4244
  #: includes/currencies.php:27 includes/currencies.php:43
4245
+ #: includes/currencies.php:50 includes/currencies.php:60
4246
+ #: includes/currencies.php:62
4247
  msgid "Polish Zloty"
4248
  msgstr ""
4249
 
4250
+ #: includes/currencies.php:64 includes/currencies.php:25
4251
  #: includes/currencies.php:28 includes/currencies.php:45
4252
+ #: includes/currencies.php:52 includes/currencies.php:62
4253
+ #: includes/currencies.php:64
4254
  msgid "Singapore Dollar (&#36;)"
4255
  msgstr ""
4256
 
4257
+ #: includes/currencies.php:69 includes/currencies.php:50
4258
+ #: includes/currencies.php:57 includes/currencies.php:67
4259
+ #: includes/currencies.php:69
4260
  msgid "South African Rand (R)"
4261
  msgstr ""
4262
 
4263
+ #: includes/currencies.php:73 includes/currencies.php:30
4264
  #: includes/currencies.php:50 includes/currencies.php:54
4265
+ #: includes/currencies.php:61 includes/currencies.php:71
4266
+ #: includes/currencies.php:73
4267
  msgid "South Korean Won"
4268
  msgstr ""
4269
 
4270
+ #: includes/currencies.php:74 includes/currencies.php:26
4271
  #: includes/currencies.php:31 includes/currencies.php:51
4272
  #: includes/currencies.php:55 includes/currencies.php:62
4273
+ #: includes/currencies.php:72 includes/currencies.php:74
4274
  msgid "Swedish Krona"
4275
  msgstr ""
4276
 
4277
+ #: includes/currencies.php:75 includes/currencies.php:27
4278
  #: includes/currencies.php:32 includes/currencies.php:52
4279
  #: includes/currencies.php:56 includes/currencies.php:63
4280
+ #: includes/currencies.php:73 includes/currencies.php:75
4281
  msgid "Swiss Franc"
4282
  msgstr ""
4283
 
4284
+ #: includes/currencies.php:76 includes/currencies.php:28
4285
  #: includes/currencies.php:33 includes/currencies.php:53
4286
  #: includes/currencies.php:57 includes/currencies.php:64
4287
+ #: includes/currencies.php:74 includes/currencies.php:76
4288
  msgid "Taiwan New Dollars"
4289
  msgstr ""
4290
 
4291
+ #: includes/currencies.php:77 includes/currencies.php:29
4292
  #: includes/currencies.php:34 includes/currencies.php:54
4293
  #: includes/currencies.php:58 includes/currencies.php:65
4294
+ #: includes/currencies.php:75 includes/currencies.php:77
4295
  msgid "Thai Baht"
4296
  msgstr ""
4297
 
4298
+ #: includes/currencies.php:78 includes/currencies.php:35
4299
  #: includes/currencies.php:55 includes/currencies.php:59
4300
+ #: includes/currencies.php:66 includes/currencies.php:76
4301
+ #: includes/currencies.php:78
4302
  msgid "Turkish Lira"
4303
  msgstr ""
4304
 
4305
+ #: includes/currencies.php:79 includes/currencies.php:36
4306
  #: includes/currencies.php:56 includes/currencies.php:60
4307
+ #: includes/currencies.php:67 includes/currencies.php:77
4308
+ #: includes/currencies.php:79
4309
  msgid "Vietnamese Dong"
4310
  msgstr ""
4311
 
4313
  #: includes/functions.php:196 includes/functions.php:200
4314
  #: includes/functions.php:202 includes/functions.php:203
4315
  #: includes/functions.php:204 includes/functions.php:207
4316
+ #: includes/functions.php:243
4317
  #, php-format
4318
  msgid "The price for membership is <strong>%s</strong> now"
4319
  msgstr ""
4321
  #: includes/functions.php:245 includes/functions.php:202
4322
  #: includes/functions.php:204 includes/functions.php:205
4323
  #: includes/functions.php:206 includes/functions.php:209
4324
+ #: includes/functions.php:245
4325
  #, php-format
4326
  msgid "<strong>%s</strong> now"
4327
  msgstr ""
4330
  #: includes/functions.php:205 includes/functions.php:211
4331
  #: includes/functions.php:213 includes/functions.php:214
4332
  #: includes/functions.php:215 includes/functions.php:218
4333
+ #: includes/functions.php:254
4334
  #, php-format
4335
  msgid " and then <strong>%s per %s for %d more %s</strong>."
4336
  msgstr ""
4337
 
4338
+ #: includes/functions.php:258 includes/functions.php:258
4339
  #, php-format
4340
  msgid " and then <strong>%s every %d %s for %d more payments</strong>."
4341
  msgstr ""
4344
  #: includes/functions.php:214 includes/functions.php:220
4345
  #: includes/functions.php:222 includes/functions.php:223
4346
  #: includes/functions.php:224 includes/functions.php:227
4347
+ #: includes/functions.php:263
4348
  #, php-format
4349
  msgid " and then <strong>%s after %d %s</strong>."
4350
  msgstr ""
4352
  #: includes/functions.php:271 includes/functions.php:228
4353
  #: includes/functions.php:229 includes/functions.php:230
4354
  #: includes/functions.php:231 includes/functions.php:235
4355
+ #: includes/functions.php:271
4356
  #, php-format
4357
  msgid "The price for membership is <strong>%s per %s</strong>."
4358
  msgstr ""
4359
 
4360
  #: includes/functions.php:273 includes/functions.php:230
4361
  #: includes/functions.php:233 includes/functions.php:237
4362
+ #: includes/functions.php:273
4363
  #, php-format
4364
  msgid "<strong>%s per %s</strong>."
4365
  msgstr ""
4367
  #: includes/functions.php:278 includes/functions.php:233
4368
  #: includes/functions.php:234 includes/functions.php:235
4369
  #: includes/functions.php:238 includes/functions.php:242
4370
+ #: includes/functions.php:278
4371
  #, php-format
4372
  msgid "The price for membership is <strong>%s every %d %s</strong>."
4373
  msgstr ""
4374
 
4375
  #: includes/functions.php:280 includes/functions.php:237
4376
  #: includes/functions.php:240 includes/functions.php:244
4377
+ #: includes/functions.php:280
4378
  #, php-format
4379
  msgid "<strong>%s every %d %s</strong>."
4380
  msgstr ""
4384
  #: includes/functions.php:238 includes/functions.php:239
4385
  #: includes/functions.php:240 includes/functions.php:242
4386
  #: includes/functions.php:245 includes/functions.php:249
4387
+ #: includes/functions.php:285
4388
  #, php-format
4389
  msgid " and then <strong>%s per %s</strong>."
4390
  msgstr ""
4394
  #: includes/functions.php:242 includes/functions.php:243
4395
  #: includes/functions.php:244 includes/functions.php:246
4396
  #: includes/functions.php:249 includes/functions.php:253
4397
+ #: includes/functions.php:289
4398
  #, php-format
4399
  msgid " and then <strong>%s every %d %s</strong>."
4400
  msgstr ""
4403
  #: includes/functions.php:238 includes/functions.php:249
4404
  #: includes/functions.php:260 includes/functions.php:261
4405
  #: includes/functions.php:262 includes/functions.php:264
4406
+ #: includes/functions.php:267 includes/functions.php:271
4407
+ #: includes/functions.php:307 pages/levels.php:82
4408
  msgid "After your initial payment, your first payment is Free."
4409
  msgstr ""
4410
 
4412
  #: includes/functions.php:242 includes/functions.php:253
4413
  #: includes/functions.php:264 includes/functions.php:265
4414
  #: includes/functions.php:266 includes/functions.php:268
4415
+ #: includes/functions.php:271 includes/functions.php:275
4416
+ #: includes/functions.php:311 pages/levels.php:86
4417
  #, php-format
4418
  msgid "After your initial payment, your first %d payments are Free."
4419
  msgstr ""
4422
  #: includes/functions.php:249 includes/functions.php:260
4423
  #: includes/functions.php:271 includes/functions.php:272
4424
  #: includes/functions.php:273 includes/functions.php:275
4425
+ #: includes/functions.php:278 includes/functions.php:282
4426
+ #: includes/functions.php:318 pages/levels.php:93
4427
  #, php-format
4428
  msgid "After your initial payment, your first payment will cost %s."
4429
  msgstr ""
4432
  #: includes/functions.php:253 includes/functions.php:264
4433
  #: includes/functions.php:275 includes/functions.php:276
4434
  #: includes/functions.php:277 includes/functions.php:279
4435
+ #: includes/functions.php:282 includes/functions.php:286
4436
+ #: includes/functions.php:322 pages/levels.php:97
4437
  #, php-format
4438
  msgid "After your initial payment, your first %d payments will cost %s."
4439
  msgstr ""
4443
  #: includes/functions.php:286 includes/functions.php:287
4444
  #: includes/functions.php:288 includes/functions.php:290
4445
  #: includes/functions.php:293 includes/functions.php:297
4446
+ #: includes/functions.php:333
4447
  #, php-format
4448
  msgid "Customers in %s will be charged %s%% tax."
4449
  msgstr ""
4453
  #: includes/functions.php:300 includes/functions.php:301
4454
  #: includes/functions.php:302 includes/functions.php:304
4455
  #: includes/functions.php:307 includes/functions.php:311
4456
+ #: includes/functions.php:347
4457
  #, php-format
4458
  msgid "Membership expires after %d %s."
4459
  msgstr ""
4464
  #: includes/functions.php:538 includes/functions.php:545
4465
  #: includes/functions.php:569 includes/functions.php:570
4466
  #: includes/functions.php:576 includes/functions.php:592
4467
+ #: includes/functions.php:615 includes/functions.php:694
4468
  msgid "User ID not found."
4469
  msgstr ""
4470
 
4475
  #: includes/functions.php:586 includes/functions.php:587
4476
  #: includes/functions.php:589 includes/functions.php:596
4477
  #: includes/functions.php:612 includes/functions.php:635
4478
+ #: includes/functions.php:714
4479
  msgid "Invalid level."
4480
  msgstr ""
4481
 
4486
  #: includes/functions.php:597 includes/functions.php:598
4487
  #: includes/functions.php:600 includes/functions.php:607
4488
  #: includes/functions.php:623 includes/functions.php:646
4489
+ #: includes/functions.php:725
4490
  msgid "not changing?"
4491
  msgstr ""
4492
 
4509
  #: includes/functions.php:698 includes/functions.php:699
4510
  #: includes/functions.php:700 includes/functions.php:707
4511
  #: includes/functions.php:722 includes/functions.php:723
4512
+ #: includes/functions.php:742 includes/functions.php:746
4513
+ #: includes/functions.php:815 includes/functions.php:839
4514
  msgid "Error interacting with database"
4515
  msgstr ""
4516
 
4528
  #: includes/functions.php:764 includes/functions.php:777
4529
  #: includes/functions.php:778 includes/functions.php:780
4530
  #: includes/functions.php:787 includes/functions.php:803
4531
+ #: includes/functions.php:826 includes/functions.php:881
4532
+ #: includes/functions.php:920
4533
  msgid "Membership level not found."
4534
  msgstr ""
4535
 
4538
  #: includes/functions.php:1142 includes/functions.php:1143
4539
  #: includes/functions.php:1150 includes/functions.php:1157
4540
  #: includes/functions.php:1173 includes/functions.php:1196
4541
+ #: includes/functions.php:1290
4542
  msgid "No code was given to check."
4543
  msgstr ""
4544
 
4550
  #: includes/functions.php:1127 includes/functions.php:1151
4551
  #: includes/functions.php:1152 includes/functions.php:1159
4552
  #: includes/functions.php:1166 includes/functions.php:1182
4553
+ #: includes/functions.php:1205 includes/functions.php:1299
4554
  msgid "The discount code could not be found."
4555
  msgstr ""
4556
 
4562
  #: includes/functions.php:1142 includes/functions.php:1166
4563
  #: includes/functions.php:1167 includes/functions.php:1174
4564
  #: includes/functions.php:1181 includes/functions.php:1197
4565
+ #: includes/functions.php:1220 includes/functions.php:1314
4566
  #, php-format
4567
  msgid "This discount code goes into effect on %s."
4568
  msgstr ""
4575
  #: includes/functions.php:1149 includes/functions.php:1173
4576
  #: includes/functions.php:1174 includes/functions.php:1181
4577
  #: includes/functions.php:1188 includes/functions.php:1204
4578
+ #: includes/functions.php:1227 includes/functions.php:1321
4579
  #, php-format
4580
  msgid "This discount code expired on %s."
4581
  msgstr ""
4588
  #: includes/functions.php:1159 includes/functions.php:1183
4589
  #: includes/functions.php:1184 includes/functions.php:1191
4590
  #: includes/functions.php:1198 includes/functions.php:1214
4591
+ #: includes/functions.php:1237 includes/functions.php:1331
4592
  msgid "This discount code is no longer valid."
4593
  msgstr ""
4594
 
4600
  #: includes/functions.php:1196 includes/functions.php:1197
4601
  #: includes/functions.php:1204 includes/functions.php:1211
4602
  #: includes/functions.php:1227 includes/functions.php:1250
4603
+ #: includes/functions.php:1344
4604
  msgid "This discount code does not apply to this membership level."
4605
  msgstr ""
4606
 
4612
  #: includes/functions.php:1198 includes/functions.php:1222
4613
  #: includes/functions.php:1223 includes/functions.php:1230
4614
  #: includes/functions.php:1237 includes/functions.php:1253
4615
+ #: includes/functions.php:1276 includes/functions.php:1370
4616
  msgid "This discount code is okay."
4617
  msgstr ""
4618
 
4619
+ #: includes/functions.php:1397 includes/functions.php:1134
4620
  #: includes/functions.php:1156 includes/functions.php:1172
4621
  #: includes/functions.php:1183 includes/functions.php:1186
4622
  #: includes/functions.php:1196 includes/functions.php:1205
4624
  #: includes/functions.php:1247 includes/functions.php:1248
4625
  #: includes/functions.php:1255 includes/functions.php:1262
4626
  #: includes/functions.php:1278 includes/functions.php:1301
4627
+ #: includes/functions.php:1395 includes/functions.php:1397
4628
  msgid "and"
4629
  msgstr ""
4630
 
4631
+ #: includes/functions.php:1624 includes/functions.php:1319
4632
  #: includes/functions.php:1341 includes/functions.php:1361
4633
  #: includes/functions.php:1372 includes/functions.php:1375
4634
  #: includes/functions.php:1385 includes/functions.php:1394
4636
  #: includes/functions.php:1436 includes/functions.php:1437
4637
  #: includes/functions.php:1450 includes/functions.php:1457
4638
  #: includes/functions.php:1473 includes/functions.php:1496
4639
+ #: includes/functions.php:1501 includes/functions.php:1620
4640
+ #: includes/functions.php:1624
4641
  msgid "Sign Up for !!name!! Now"
4642
  msgstr ""
4643
 
4644
+ #: includes/functions.php:1630 includes/functions.php:1325
4645
  #: includes/functions.php:1347 includes/functions.php:1367
4646
  #: includes/functions.php:1378 includes/functions.php:1381
4647
  #: includes/functions.php:1391 includes/functions.php:1400
4649
  #: includes/functions.php:1442 includes/functions.php:1443
4650
  #: includes/functions.php:1456 includes/functions.php:1463
4651
  #: includes/functions.php:1479 includes/functions.php:1502
4652
+ #: includes/functions.php:1507 includes/functions.php:1626
4653
+ #: includes/functions.php:1630
4654
  msgid "Please specify a level id."
4655
  msgstr ""
4656
 
4657
  #: includes/init.php:253 includes/profile.php:39 includes/init.php:229
4658
  #: includes/init.php:232 includes/init.php:233 includes/init.php:235
4659
+ #: includes/init.php:237 includes/init.php:245 includes/init.php:253
4660
+ #: includes/profile.php:37 includes/profile.php:39
4661
  msgid "None"
4662
  msgstr ""
4663
 
4761
  msgid "Years"
4762
  msgstr ""
4763
 
4764
+ #: includes/metaboxes.php:39 includes/metaboxes.php:38
4765
+ #: includes/metaboxes.php:39
4766
  msgid ""
4767
  "This post is already protected for this level because it is within a "
4768
  "category that requires membership."
4769
  msgstr ""
4770
 
4771
+ #: includes/metaboxes.php:104 includes/metaboxes.php:105
4772
  #: includes/metaboxes.php:99 includes/metaboxes.php:100
4773
+ #: includes/metaboxes.php:104 includes/metaboxes.php:105
4774
  msgid "Require Membership"
4775
  msgstr ""
4776
 
4777
+ #: includes/metaboxes.php:135 includes/metaboxes.php:130
4778
+ #: includes/metaboxes.php:135
4779
  msgid ""
4780
  "Only members of these levels will be able to view posts in this category."
4781
  msgstr ""
4796
  "checkbox is selected below."
4797
  msgstr ""
4798
 
4799
+ #: includes/updates.php:97 includes/updates.php:97
4800
+ msgid "Paid Memberships Pro Data Update Required"
4801
+ msgstr ""
4802
+
4803
+ #: includes/updates.php:102 includes/updates.php:102
4804
+ msgid "Start the Update"
4805
+ msgstr ""
4806
+
4807
+ #: includes/updates.php:123 includes/updates.php:123
4808
+ msgid "All Paid Memberships Pro updates have finished."
4809
+ msgstr ""
4810
+
4811
+ #: includes/upgradecheck.php:542 includes/upgradecheck.php:401
4812
  #: includes/upgradecheck.php:410 includes/upgradecheck.php:422
4813
+ #: includes/upgradecheck.php:442 includes/upgradecheck.php:542
4814
  #, php-format
4815
  msgid ""
4816
  "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
4817
  msgstr ""
4818
 
4819
+ #: includes/upgradecheck.php:545 includes/upgradecheck.php:404
4820
  #: includes/upgradecheck.php:413 includes/upgradecheck.php:425
4821
+ #: includes/upgradecheck.php:445 includes/upgradecheck.php:545
4822
  #, php-format
4823
  msgid ""
4824
  "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
4825
  "<a href=\"%s\">Register</a>"
4826
  msgstr ""
4827
 
4828
+ #: includes/upgradecheck.php:549 includes/upgradecheck.php:408
4829
  #: includes/upgradecheck.php:417 includes/upgradecheck.php:429
4830
+ #: includes/upgradecheck.php:449 includes/upgradecheck.php:549
4831
  msgid ""
4832
  "This content is for !!levels!! members only. Visit the site and log in/"
4833
  "register to read."
4847
  #: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
4848
  #: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
4849
  #: pages/cancel.php:52 pages/invoice.php:109 pages/levels.php:13
4850
+ #: pages/levels.php:35 shortcodes/pmpro_account.php:44
4851
+ #: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:126
4852
  msgid "Level"
4853
  msgstr ""
4854
 
4881
  "paypal.com\">login to PayPal here</a> to update your billing information."
4882
  msgstr ""
4883
 
4884
+ #: pages/billing.php:78 pages/checkout.php:326 pages/billing.php:65
4885
  #: pages/billing.php:69 pages/billing.php:78 pages/checkout.php:305
4886
  #: pages/checkout.php:307 pages/checkout.php:309 pages/checkout.php:318
4887
+ #: pages/checkout.php:321 pages/checkout.php:324 pages/checkout.php:326
4888
+ #: pages/checkout.php:328
4889
  msgid "First Name"
4890
  msgstr ""
4891
 
4892
+ #: pages/billing.php:82 pages/checkout.php:330 pages/billing.php:69
4893
  #: pages/billing.php:73 pages/billing.php:82 pages/checkout.php:309
4894
  #: pages/checkout.php:311 pages/checkout.php:313 pages/checkout.php:322
4895
+ #: pages/checkout.php:325 pages/checkout.php:328 pages/checkout.php:330
4896
+ #: pages/checkout.php:332
4897
  msgid "Last Name"
4898
  msgstr ""
4899
 
4900
+ #: pages/billing.php:86 pages/checkout.php:334 pages/billing.php:73
4901
  #: pages/billing.php:77 pages/billing.php:86 pages/checkout.php:313
4902
  #: pages/checkout.php:315 pages/checkout.php:317 pages/checkout.php:326
4903
+ #: pages/checkout.php:329 pages/checkout.php:332 pages/checkout.php:334
4904
+ #: pages/checkout.php:336
4905
  msgid "Address 1"
4906
  msgstr ""
4907
 
4908
+ #: pages/billing.php:90 pages/checkout.php:338 pages/billing.php:77
4909
  #: pages/billing.php:81 pages/billing.php:90 pages/checkout.php:317
4910
  #: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:330
4911
+ #: pages/checkout.php:333 pages/checkout.php:336 pages/checkout.php:338
4912
+ #: pages/checkout.php:340
4913
  msgid "Address 2"
4914
  msgstr ""
4915
 
4916
+ #: pages/billing.php:100 pages/checkout.php:348 pages/billing.php:87
4917
  #: pages/billing.php:91 pages/billing.php:100 pages/checkout.php:327
4918
  #: pages/checkout.php:329 pages/checkout.php:331 pages/checkout.php:340
4919
+ #: pages/checkout.php:343 pages/checkout.php:346 pages/checkout.php:348
4920
+ #: pages/checkout.php:350
4921
  msgid "City"
4922
  msgstr ""
4923
 
4924
+ #: pages/billing.php:104 pages/checkout.php:352 pages/billing.php:91
4925
  #: pages/billing.php:95 pages/billing.php:104 pages/checkout.php:331
4926
  #: pages/checkout.php:333 pages/checkout.php:335 pages/checkout.php:344
4927
+ #: pages/checkout.php:347 pages/checkout.php:350 pages/checkout.php:352
4928
+ #: pages/checkout.php:354
4929
  msgid "State"
4930
  msgstr ""
4931
 
4932
+ #: pages/billing.php:108 pages/checkout.php:356 pages/billing.php:95
4933
  #: pages/billing.php:99 pages/billing.php:108 pages/checkout.php:335
4934
  #: pages/checkout.php:337 pages/checkout.php:339 pages/checkout.php:348
4935
+ #: pages/checkout.php:351 pages/checkout.php:354 pages/checkout.php:356
4936
+ #: pages/checkout.php:358
4937
  msgid "Postal Code"
4938
  msgstr ""
4939
 
4940
+ #: pages/billing.php:117 pages/checkout.php:365 pages/billing.php:104
4941
  #: pages/billing.php:108 pages/billing.php:117 pages/checkout.php:344
4942
  #: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:357
4943
+ #: pages/checkout.php:360 pages/checkout.php:363 pages/checkout.php:365
4944
+ #: pages/checkout.php:367
4945
  msgid "City, State Zip"
4946
  msgstr ""
4947
 
4948
+ #: pages/billing.php:170 pages/checkout.php:418 pages/billing.php:157
4949
  #: pages/billing.php:161 pages/billing.php:170 pages/checkout.php:397
4950
  #: pages/checkout.php:399 pages/checkout.php:401 pages/checkout.php:410
4951
+ #: pages/checkout.php:413 pages/checkout.php:416 pages/checkout.php:418
4952
+ #: pages/checkout.php:420
4953
  msgid "Country"
4954
  msgstr ""
4955
 
4956
+ #: pages/billing.php:195 pages/checkout.php:443 pages/billing.php:182
4957
  #: pages/billing.php:186 pages/billing.php:195 pages/checkout.php:422
4958
  #: pages/checkout.php:424 pages/checkout.php:426 pages/checkout.php:435
4959
+ #: pages/checkout.php:438 pages/checkout.php:441 pages/checkout.php:443
4960
+ #: pages/checkout.php:445
4961
  msgid "Phone"
4962
  msgstr ""
4963
 
4964
+ #: pages/billing.php:206 pages/checkout.php:220 pages/checkout.php:457
4965
  #: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
4966
  #: pages/checkout.php:204 pages/checkout.php:207 pages/checkout.php:209
4967
+ #: pages/checkout.php:216 pages/checkout.php:218 pages/checkout.php:220
4968
+ #: pages/checkout.php:436 pages/checkout.php:438 pages/checkout.php:440
4969
+ #: pages/checkout.php:449 pages/checkout.php:453 pages/checkout.php:455
4970
+ #: pages/checkout.php:457 pages/checkout.php:460
4971
  msgid "E-mail Address"
4972
  msgstr ""
4973
 
4974
+ #: pages/billing.php:210 pages/checkout.php:466 pages/billing.php:197
4975
  #: pages/billing.php:201 pages/billing.php:210 pages/checkout.php:445
4976
  #: pages/checkout.php:447 pages/checkout.php:449 pages/checkout.php:458
4977
+ #: pages/checkout.php:462 pages/checkout.php:464 pages/checkout.php:466
4978
+ #: pages/checkout.php:469
4979
  msgid "Confirm E-mail"
4980
  msgstr ""
4981
 
4982
  #: pages/billing.php:231 pages/billing.php:217 pages/billing.php:221
4983
+ #: pages/billing.php:230 pages/billing.php:231
4984
  msgid "Credit Card Information"
4985
  msgstr ""
4986
 
4987
  #: pages/billing.php:232 pages/billing.php:217 pages/billing.php:221
4988
+ #: pages/billing.php:230 pages/billing.php:232
4989
  #, php-format
4990
  msgid "We accept %s"
4991
  msgstr ""
4992
 
4993
+ #: pages/billing.php:360 pages/billing.php:309 pages/billing.php:313
4994
+ #: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
4995
+ #: pages/billing.php:360
4996
  msgid ""
4997
  "This subscription is not recurring. So you don't need to update your billing "
4998
  "information."
5036
  msgstr ""
5037
 
5038
  #: pages/checkout.php:43 pages/checkout.php:33 pages/checkout.php:34
5039
+ #: pages/checkout.php:35 pages/checkout.php:42 pages/checkout.php:43
5040
  msgid "change"
5041
  msgstr ""
5042
 
5043
  #: pages/checkout.php:51 pages/checkout.php:41 pages/checkout.php:42
5044
+ #: pages/checkout.php:43 pages/checkout.php:50 pages/checkout.php:51
5045
  #, php-format
5046
  msgid "You have selected the <strong>%s</strong> membership level."
5047
  msgstr ""
5048
 
5049
  #: pages/checkout.php:61 pages/checkout.php:51 pages/checkout.php:53
5050
+ #: pages/checkout.php:60 pages/checkout.php:61
5051
  #, php-format
5052
  msgid ""
5053
  "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has "
5056
 
5057
  #: pages/checkout.php:72 services/applydiscountcode.php:89
5058
  #: pages/checkout.php:62 pages/checkout.php:63 pages/checkout.php:64
5059
+ #: pages/checkout.php:71 pages/checkout.php:72
5060
+ #: services/applydiscountcode.php:74 services/applydiscountcode.php:75
5061
+ #: services/applydiscountcode.php:78 services/applydiscountcode.php:89
5062
  msgid "Click here to change your discount code"
5063
  msgstr ""
5064
 
5065
  #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
5066
+ #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
5067
  msgid "Click here to enter your discount code"
5068
  msgstr ""
5069
 
5070
  #: pages/checkout.php:74 pages/checkout.php:64 pages/checkout.php:65
5071
+ #: pages/checkout.php:66 pages/checkout.php:73 pages/checkout.php:74
5072
  msgid "Do you have a discount code?"
5073
  msgstr ""
5074
 
5075
+ #: pages/checkout.php:175 pages/checkout.php:160 pages/checkout.php:163
5076
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:173
5077
+ #: pages/checkout.php:175
5078
  msgid "Account Information"
5079
  msgstr ""
5080
 
5081
+ #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
5082
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
5083
+ #: pages/checkout.php:176
5084
  msgid "Already have an account?"
5085
  msgstr ""
5086
 
5087
+ #: pages/checkout.php:176 pages/checkout.php:160 pages/checkout.php:163
5088
+ #: pages/checkout.php:165 pages/checkout.php:172 pages/checkout.php:174
5089
+ #: pages/checkout.php:176
5090
  msgid "Log in here"
5091
  msgstr ""
5092
 
5093
+ #: pages/checkout.php:202 pages/checkout.php:186 pages/checkout.php:189
5094
+ #: pages/checkout.php:191 pages/checkout.php:198 pages/checkout.php:200
5095
+ #: pages/checkout.php:202
5096
  msgid "Confirm Password"
5097
  msgstr ""
5098
 
5099
+ #: pages/checkout.php:229 pages/checkout.php:213 pages/checkout.php:216
5100
+ #: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
5101
+ #: pages/checkout.php:229
5102
  msgid "Confirm E-mail Address"
5103
  msgstr ""
5104
 
5105
+ #: pages/checkout.php:248 pages/checkout.php:232 pages/checkout.php:235
5106
+ #: pages/checkout.php:237 pages/checkout.php:244 pages/checkout.php:246
5107
+ #: pages/checkout.php:248
5108
  msgid "Full Name"
5109
  msgstr ""
5110
 
5111
+ #: pages/checkout.php:249 pages/checkout.php:233 pages/checkout.php:236
5112
+ #: pages/checkout.php:238 pages/checkout.php:245 pages/checkout.php:247
5113
+ #: pages/checkout.php:249
5114
  msgid "LEAVE THIS BLANK"
5115
  msgstr ""
5116
 
5117
+ #: pages/checkout.php:273 pages/checkout.php:257 pages/checkout.php:260
5118
+ #: pages/checkout.php:262 pages/checkout.php:269 pages/checkout.php:271
5119
+ #: pages/checkout.php:273
5120
  #, php-format
5121
  msgid ""
5122
  "You are logged in as <strong>%s</strong>. If you would like to use a "
5123
  "different account for this membership, <a href=\"%s\">log out now</a>."
5124
  msgstr ""
5125
 
5126
+ #: pages/checkout.php:289 pages/checkout.php:276 pages/checkout.php:278
5127
+ #: pages/checkout.php:285 pages/checkout.php:287 pages/checkout.php:289
5128
+ #: pages/checkout.php:292 pages/checkout.php:299
5129
  msgid "Choose your Payment Method"
5130
  msgstr ""
5131
 
5132
+ #: pages/checkout.php:298 pages/checkout.php:284 pages/checkout.php:286
5133
+ #: pages/checkout.php:293 pages/checkout.php:296 pages/checkout.php:298
5134
+ #: pages/checkout.php:300 pages/checkout.php:307
5135
  msgid "Check Out with a Credit Card Here"
5136
  msgstr ""
5137
 
5138
+ #: pages/checkout.php:696 pages/checkout.php:277 pages/checkout.php:284
5139
  #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
5140
+ #: pages/checkout.php:681 pages/checkout.php:690 pages/checkout.php:696
5141
  #, php-format
5142
  msgid "I agree to the %s"
5143
  msgstr ""
5144
 
5145
+ #: pages/checkout.php:716 pages/checkout.php:667 pages/checkout.php:674
5146
  #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
5147
+ #: pages/checkout.php:701 pages/checkout.php:710 pages/checkout.php:716
5148
  msgid "Complete Payment"
5149
  msgstr ""
5150
 
5151
+ #: pages/checkout.php:738 pages/checkout.php:687 pages/checkout.php:694
5152
  #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
5153
+ #: pages/checkout.php:723 pages/checkout.php:732 pages/checkout.php:738
5154
  msgid "Processing..."
5155
  msgstr ""
5156
 
5255
  msgstr ""
5256
 
5257
  #: pages/levels.php:55 pages/levels.php:33 pages/levels.php:43
5258
+ #: pages/levels.php:55
5259
  msgid "Free"
5260
  msgstr ""
5261
 
5262
  #: pages/levels.php:69 pages/levels.php:71 pages/levels.php:47
5263
+ #: pages/levels.php:49 pages/levels.php:69 pages/levels.php:71
5264
+ #: pages/levels.php:113 pages/levels.php:115
5265
  msgid "Select"
5266
  msgstr ""
5267
 
5268
  #: pages/levels.php:78 shortcodes/pmpro_account.php:61 pages/account.php:33
5269
+ #: pages/levels.php:57 pages/levels.php:78 pages/levels.php:123
5270
+ #: shortcodes/pmpro_account.php:59 shortcodes/pmpro_account.php:61
5271
  msgid "Renew"
5272
  msgstr ""
5273
 
5274
+ #: pages/levels.php:82 pages/levels.php:63 pages/levels.php:82
5275
+ #: pages/levels.php:117 pages/levels.php:129
5276
  msgid "Your&nbsp;Level"
5277
  msgstr ""
5278
 
5279
+ #: pages/levels.php:98 pages/levels.php:79 pages/levels.php:98
5280
+ #: pages/levels.php:129 pages/levels.php:145
5281
  msgid "&larr; Return to Your Account"
5282
  msgstr ""
5283
 
5284
+ #: pages/levels.php:100 pages/levels.php:81 pages/levels.php:100
5285
+ #: pages/levels.php:131 pages/levels.php:147
5286
  msgid "&larr; Return to Home"
5287
  msgstr ""
5288
 
5289
+ #: paid-memberships-pro.php:125 adminpages/orders.php:398
5290
  #: adminpages/orders.php:448 paid-memberships-pro.php:115
5291
  #: paid-memberships-pro.php:116 paid-memberships-pro.php:123
5292
+ #: paid-memberships-pro.php:124 paid-memberships-pro.php:125
5293
  msgid "Testing Only"
5294
  msgstr ""
5295
 
5296
+ #: paid-memberships-pro.php:130 paid-memberships-pro.php:120
5297
  #: paid-memberships-pro.php:121 paid-memberships-pro.php:128
5298
+ #: paid-memberships-pro.php:129 paid-memberships-pro.php:130
5299
  msgid "PayPal Payflow Pro/PayPal Pro"
5300
  msgstr ""
5301
 
5302
+ #: paid-memberships-pro.php:135 paid-memberships-pro.php:125
5303
  #: paid-memberships-pro.php:126 paid-memberships-pro.php:133
5304
+ #: paid-memberships-pro.php:134 paid-memberships-pro.php:135
5305
  msgid "Cybersource"
5306
  msgstr ""
5307
 
5323
  #: preheaders/billing.php:258 preheaders/billing.php:265
5324
  #: preheaders/billing.php:266 preheaders/billing.php:270
5325
  #: preheaders/billing.php:279 preheaders/checkout.php:332
5326
+ #: preheaders/checkout.php:336 preheaders/checkout.php:458
5327
+ #: preheaders/checkout.php:464 preheaders/checkout.php:465
5328
+ #: preheaders/checkout.php:470 preheaders/checkout.php:481
5329
+ #: preheaders/checkout.php:482
5330
  msgid "Please complete all required fields."
5331
  msgstr ""
5332
 
5334
  #: preheaders/billing.php:263 preheaders/billing.php:268
5335
  #: preheaders/billing.php:269 preheaders/billing.php:273
5336
  #: preheaders/billing.php:284 preheaders/checkout.php:340
5337
+ #: preheaders/checkout.php:344 preheaders/checkout.php:466
5338
+ #: preheaders/checkout.php:473 preheaders/checkout.php:474
5339
+ #: preheaders/checkout.php:478 preheaders/checkout.php:491
5340
+ #: preheaders/checkout.php:492
5341
  msgid "Your email addresses do not match. Please try again."
5342
  msgstr ""
5343
 
5345
  #: preheaders/billing.php:268 preheaders/billing.php:271
5346
  #: preheaders/billing.php:272 preheaders/billing.php:276
5347
  #: preheaders/billing.php:289 preheaders/checkout.php:345
5348
+ #: preheaders/checkout.php:349 preheaders/checkout.php:471
5349
+ #: preheaders/checkout.php:478 preheaders/checkout.php:480
5350
+ #: preheaders/checkout.php:483 preheaders/checkout.php:497
5351
+ #: preheaders/checkout.php:498
5352
  msgid "The email address entered is in an invalid format. Please try again."
5353
  msgstr ""
5354
 
5380
  #: preheaders/checkout.php:32 preheaders/checkout.php:358
5381
  #: preheaders/checkout.php:28 preheaders/checkout.php:30
5382
  #: preheaders/checkout.php:31 preheaders/checkout.php:32
5383
+ #: preheaders/checkout.php:354 preheaders/checkout.php:358
5384
+ #: preheaders/checkout.php:480 preheaders/checkout.php:487
5385
+ #: preheaders/checkout.php:491 preheaders/checkout.php:492
5386
+ #: preheaders/checkout.php:508 preheaders/checkout.php:509
5387
  msgid "Invalid gateway."
5388
  msgstr ""
5389
 
5398
  msgstr ""
5399
 
5400
  #: preheaders/checkout.php:304 preheaders/checkout.php:300
5401
+ #: preheaders/checkout.php:304 preheaders/checkout.php:416
5402
+ #: preheaders/checkout.php:421
5403
  msgid "There are JavaScript errors on the page. Please contact the webmaster."
5404
  msgstr ""
5405
 
5406
  #: preheaders/checkout.php:339 preheaders/checkout.php:335
5407
+ #: preheaders/checkout.php:339 preheaders/checkout.php:461
5408
+ #: preheaders/checkout.php:468 preheaders/checkout.php:473
5409
+ #: preheaders/checkout.php:485 preheaders/checkout.php:486
5410
  msgid "Your passwords do not match. Please try again."
5411
  msgstr ""
5412
 
5413
  #: preheaders/checkout.php:354 preheaders/checkout.php:350
5414
+ #: preheaders/checkout.php:354 preheaders/checkout.php:476
5415
+ #: preheaders/checkout.php:483 preheaders/checkout.php:486
5416
+ #: preheaders/checkout.php:488 preheaders/checkout.php:503
5417
+ #: preheaders/checkout.php:504
5418
  #, php-format
5419
  msgid "Please check the box to agree to the %s."
5420
  msgstr ""
5421
 
5422
  #: preheaders/checkout.php:361 preheaders/checkout.php:357
5423
+ #: preheaders/checkout.php:361 preheaders/checkout.php:483
5424
+ #: preheaders/checkout.php:490 preheaders/checkout.php:495
5425
+ #: preheaders/checkout.php:512 preheaders/checkout.php:513
5426
  msgid "Are you a spammer?"
5427
  msgstr ""
5428
 
5429
  #: preheaders/checkout.php:381 preheaders/checkout.php:377
5430
+ #: preheaders/checkout.php:381 preheaders/checkout.php:503
5431
+ #: preheaders/checkout.php:510 preheaders/checkout.php:515
5432
+ #: preheaders/checkout.php:518 preheaders/checkout.php:535
5433
+ #: preheaders/checkout.php:536
5434
  msgid "That username is already taken. Please try another."
5435
  msgstr ""
5436
 
5437
  #: preheaders/checkout.php:386 preheaders/checkout.php:382
5438
+ #: preheaders/checkout.php:386 preheaders/checkout.php:508
5439
+ #: preheaders/checkout.php:515 preheaders/checkout.php:520
5440
+ #: preheaders/checkout.php:524 preheaders/checkout.php:541
5441
+ #: preheaders/checkout.php:542
5442
  msgid "That email address is already taken. Please try another."
5443
  msgstr ""
5444
 
5445
  #: preheaders/checkout.php:420 preheaders/checkout.php:397
5446
  #: preheaders/checkout.php:399 preheaders/checkout.php:416
5447
+ #: preheaders/checkout.php:420 preheaders/checkout.php:525
5448
+ #: preheaders/checkout.php:532 preheaders/checkout.php:537
5449
+ #: preheaders/checkout.php:544 preheaders/checkout.php:561
5450
+ #: preheaders/checkout.php:562
5451
  #, php-format
5452
  msgid "reCAPTCHA failed. (%s) Please try again."
5453
  msgstr ""
5454
 
5455
  #: preheaders/checkout.php:505 preheaders/checkout.php:482
5456
  #: preheaders/checkout.php:484 preheaders/checkout.php:501
5457
+ #: preheaders/checkout.php:505 preheaders/checkout.php:647
5458
+ #: preheaders/checkout.php:654 preheaders/checkout.php:659
5459
+ #: preheaders/checkout.php:683 preheaders/checkout.php:701
5460
+ #: preheaders/checkout.php:702
5461
  msgid "Payment accepted."
5462
  msgstr ""
5463
 
5464
  #: preheaders/checkout.php:513 preheaders/checkout.php:490
5465
  #: preheaders/checkout.php:492 preheaders/checkout.php:509
5466
+ #: preheaders/checkout.php:513 preheaders/checkout.php:653
5467
+ #: preheaders/checkout.php:660 preheaders/checkout.php:665
5468
+ #: preheaders/checkout.php:691 preheaders/checkout.php:709
5469
+ #: preheaders/checkout.php:710
5470
  msgid ""
5471
  "Unknown error generating account. Please contact us to set up your "
5472
  "membership."
5474
 
5475
  #: preheaders/checkout.php:575 preheaders/checkout.php:550
5476
  #: preheaders/checkout.php:552 preheaders/checkout.php:569
5477
+ #: preheaders/checkout.php:571 preheaders/checkout.php:575
5478
+ #: preheaders/checkout.php:785 preheaders/checkout.php:792
5479
+ #: preheaders/checkout.php:797 preheaders/checkout.php:825
5480
+ #: preheaders/checkout.php:844 preheaders/checkout.php:859
5481
+ #: preheaders/checkout.php:860
5482
  msgid ""
5483
  "Your payment was accepted, but there was an error setting up your account. "
5484
  "Please contact us."
5486
 
5487
  #: preheaders/checkout.php:722 preheaders/checkout.php:691
5488
  #: preheaders/checkout.php:693 preheaders/checkout.php:710
5489
+ #: preheaders/checkout.php:712 preheaders/checkout.php:722
5490
+ #: preheaders/checkout.php:953 preheaders/checkout.php:960
5491
+ #: preheaders/checkout.php:970 preheaders/checkout.php:983
5492
+ #: preheaders/checkout.php:1030 preheaders/checkout.php:1045
5493
+ #: preheaders/checkout.php:1046
5494
  msgid ""
5495
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5496
  "authorized, but we cancelled the order immediately. You should not try to "
5499
 
5500
  #: preheaders/checkout.php:725 preheaders/checkout.php:694
5501
  #: preheaders/checkout.php:696 preheaders/checkout.php:713
5502
+ #: preheaders/checkout.php:715 preheaders/checkout.php:725
5503
+ #: preheaders/checkout.php:956 preheaders/checkout.php:963
5504
+ #: preheaders/checkout.php:973 preheaders/checkout.php:988
5505
+ #: preheaders/checkout.php:1035 preheaders/checkout.php:1050
5506
+ #: preheaders/checkout.php:1051
5507
  msgid ""
5508
  "IMPORTANT: Something went wrong during membership creation. Your credit card "
5509
  "was charged, but we couldn't assign your membership. You should not submit "
5512
 
5513
  #: preheaders/checkout.php:736 preheaders/checkout.php:705
5514
  #: preheaders/checkout.php:707 preheaders/checkout.php:724
5515
+ #: preheaders/checkout.php:726 preheaders/checkout.php:736
5516
+ #: preheaders/checkout.php:967 preheaders/checkout.php:974
5517
+ #: preheaders/checkout.php:984 preheaders/checkout.php:1001
5518
+ #: preheaders/checkout.php:1048 preheaders/checkout.php:1063
5519
+ #: preheaders/checkout.php:1064
5520
  #, php-format
5521
  msgid ""
5522
  "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
5525
 
5526
  #: preheaders/checkout.php:738 preheaders/checkout.php:707
5527
  #: preheaders/checkout.php:709 preheaders/checkout.php:726
5528
+ #: preheaders/checkout.php:728 preheaders/checkout.php:738
5529
+ #: preheaders/checkout.php:969 preheaders/checkout.php:976
5530
+ #: preheaders/checkout.php:986 preheaders/checkout.php:1003
5531
+ #: preheaders/checkout.php:1050 preheaders/checkout.php:1065
5532
+ #: preheaders/checkout.php:1066
5533
  msgid "A Payment Gateway must be set up before any payments will be processed."
5534
  msgstr ""
5535
 
5536
  #: scheduled/crons.php:39 scheduled/crons.php:31 scheduled/crons.php:34
5537
+ #: scheduled/crons.php:38 scheduled/crons.php:39 scheduled/crons.php:61
5538
  #, php-format
5539
  msgid "Membership expired email sent to %s. "
5540
  msgstr ""
5541
 
5542
  #: scheduled/crons.php:88 scheduled/crons.php:27 scheduled/crons.php:74
5543
+ #: scheduled/crons.php:80 scheduled/crons.php:84 scheduled/crons.php:88
5544
  #, php-format
5545
  msgid "Membership expiring email sent to %s. "
5546
  msgstr ""
5547
 
5548
  #: scheduled/crons.php:164 scheduled/crons.php:143 scheduled/crons.php:152
5549
+ #: scheduled/crons.php:157 scheduled/crons.php:164
5550
  #, php-format
5551
  msgid "Credit card expiring email sent to %s. "
5552
  msgstr ""
5553
 
5554
  #: scheduled/crons.php:220 scheduled/crons.php:104 scheduled/crons.php:196
5555
+ #: scheduled/crons.php:208 scheduled/crons.php:210 scheduled/crons.php:220
5556
  #, php-format
5557
  msgid "Trial ending email sent to %s. "
5558
  msgstr ""
5570
  msgid "The <strong>%s</strong> code has been applied to your order."
5571
  msgstr ""
5572
 
5573
+ #: services/authnet-silent-post.php:144 services/authnet-silent-post.php:133
5574
  #: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
5575
+ #: services/authnet-silent-post.php:144
5576
  msgid ""
5577
  "<p>A payment is being held for review within Authorize.net.</p><p>Payment "
5578
  "Information From Authorize.net"
5579
  msgstr ""
5580
 
5581
+ #: services/stripe-webhook.php:272 services/stripe-webhook.php:176
5582
  #: services/stripe-webhook.php:194 services/stripe-webhook.php:270
5583
+ #: services/stripe-webhook.php:271 services/stripe-webhook.php:272
5584
  #, php-format
5585
  msgid ""
5586
  "%s has had their payment subscription cancelled by Stripe. Please check that "
5593
  msgstr ""
5594
 
5595
  #: shortcodes/pmpro_account.php:65 pages/account.php:36
5596
+ #: shortcodes/pmpro_account.php:62 shortcodes/pmpro_account.php:65
5597
  msgid "Update Billing Info"
5598
  msgstr ""
5599
 
5600
  #: shortcodes/pmpro_account.php:71 pages/account.php:42
5601
+ #: shortcodes/pmpro_account.php:68 shortcodes/pmpro_account.php:71
5602
  msgid "Change"
5603
  msgstr ""
5604
 
5605
  #: shortcodes/pmpro_account.php:93 pages/account.php:64
5606
+ #: shortcodes/pmpro_account.php:90 shortcodes/pmpro_account.php:93
5607
  msgid "View all Membership Options"
5608
  msgstr ""
5609
 
5610
  #: shortcodes/pmpro_account.php:102 pages/account.php:46 pages/account.php:50
5611
  #: pages/account.php:71 shortcodes/pmpro_account.php:99
5612
+ #: shortcodes/pmpro_account.php:102
5613
  msgid "My Account"
5614
  msgstr ""
5615
 
5616
  #: shortcodes/pmpro_account.php:113 pages/account.php:55 pages/account.php:59
5617
  #: pages/account.php:80 shortcodes/pmpro_account.php:110
5618
+ #: shortcodes/pmpro_account.php:113
5619
  msgid "Edit Profile"
5620
  msgstr ""
5621
 
5622
  #: shortcodes/pmpro_account.php:114 pages/account.php:56 pages/account.php:60
5623
  #: pages/account.php:81 shortcodes/pmpro_account.php:111
5624
+ #: shortcodes/pmpro_account.php:114
5625
  msgid "Change Password"
5626
  msgstr ""
5627
 
5628
  #: shortcodes/pmpro_account.php:121 pages/account.php:87 pages/account.php:125
5629
  #: pages/account.php:129 shortcodes/pmpro_account.php:118
5630
+ #: shortcodes/pmpro_account.php:121
5631
  msgid "Past Invoices"
5632
  msgstr ""
5633
 
5634
  #: shortcodes/pmpro_account.php:127 pages/account.php:93
5635
+ #: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:127
5636
  msgid "Amount"
5637
  msgstr ""
5638
 
5639
  #: shortcodes/pmpro_account.php:155 pages/account.php:121
5640
  #: pages/account.php:140 pages/account.php:144
5641
+ #: shortcodes/pmpro_account.php:152 shortcodes/pmpro_account.php:155
5642
  msgid "View All Invoices"
5643
  msgstr ""
5644
 
5645
  #: shortcodes/pmpro_account.php:162 pages/account.php:128
5646
  #: pages/account.php:146 pages/account.php:150
5647
+ #: shortcodes/pmpro_account.php:159 shortcodes/pmpro_account.php:162
5648
  msgid "Member Links"
5649
  msgstr ""
5650
 
5776
  msgid "Logins All Time"
5777
  msgstr ""
5778
 
5779
+ #: adminpages/reports/memberships.php:38 adminpages/reports/memberships.php:67
5780
+ msgid "Cancellations"
5781
+ msgstr ""
5782
+
5783
  #: adminpages/reports/memberships.php:86
5784
  msgid "Other Stats"
5785
  msgstr ""
5796
  msgid "Lifetime Value (LTV)"
5797
  msgstr ""
5798
 
5799
+ #: classes/class.pmproemail.php:342 classes/class.pmproemail.php:345
5800
+ #: classes/class.pmproemail.php:363 classes/class.pmproemail.php:366
5801
+ #: classes/class.pmproemail.php:375
5802
+ #, php-format
5803
+ msgid "Your billing information has been udpated at %s"
5804
+ msgstr ""
5805
+
5806
+ #: classes/class.pmproemail.php:386 classes/class.pmproemail.php:390
5807
+ #: classes/class.pmproemail.php:416 classes/class.pmproemail.php:419
5808
+ #: classes/class.pmproemail.php:428
5809
+ #, php-format
5810
+ msgid "Billing information has been udpated for %s at %s"
5811
+ msgstr ""
5812
+
5813
  #: classes/class.pmproemail.php:685 classes/class.pmproemail.php:734
5814
  #: classes/class.pmproemail.php:799
5815
  msgid "membership has been cancelled"
5816
  msgstr ""
5817
 
5818
+ #: classes/gateways/class.pmprogateway_twocheckout.php:139
5819
+ msgid "API Private Key"
5820
+ msgstr ""
5821
+
5822
+ #: classes/gateways/class.pmprogateway_twocheckout.php:143
5823
+ msgid ""
5824
+ "Go to API in 2Checkout and generate a new key pair. Paste the Private Key "
5825
+ "here."
5826
+ msgstr ""
5827
+
5828
  #: includes/currencies.php:11
5829
  msgid "Brazilian Real (&#36;)"
5830
  msgstr ""
pages/cancel.php CHANGED
@@ -62,7 +62,7 @@
62
  <td class="pmpro_cancel-membership-expiration">
63
  <?php
64
  if($current_user->membership_level->enddate)
65
- echo date(get_option('date_format'), $current_user->membership_level->enddate);
66
  else
67
  echo "---";
68
  ?>
62
  <td class="pmpro_cancel-membership-expiration">
63
  <?php
64
  if($current_user->membership_level->enddate)
65
+ echo date_i18n(get_option('date_format'), $current_user->membership_level->enddate);
66
  else
67
  echo "---";
68
  ?>
pages/confirmation.php CHANGED
@@ -46,7 +46,7 @@
46
  <li><strong><?php _e('Account', 'pmpro');?>:</strong> <?php echo $current_user->display_name?> (<?php echo $current_user->user_email?>)</li>
47
  <li><strong><?php _e('Membership Level', 'pmpro');?>:</strong> <?php echo $current_user->membership_level->name?></li>
48
  <?php if($current_user->membership_level->enddate) { ?>
49
- <li><strong><?php _e('Membership Expires', 'pmpro');?>:</strong> <?php echo date(get_option('date_format'), $current_user->membership_level->enddate)?></li>
50
  <?php } ?>
51
  <?php if($pmpro_invoice->getDiscountCode()) { ?>
52
  <li><strong><?php _e('Discount Code', 'pmpro');?>:</strong> <?php echo $pmpro_invoice->discount_code->code?></li>
46
  <li><strong><?php _e('Account', 'pmpro');?>:</strong> <?php echo $current_user->display_name?> (<?php echo $current_user->user_email?>)</li>
47
  <li><strong><?php _e('Membership Level', 'pmpro');?>:</strong> <?php echo $current_user->membership_level->name?></li>
48
  <?php if($current_user->membership_level->enddate) { ?>
49
+ <li><strong><?php _e('Membership Expires', 'pmpro');?>:</strong> <?php echo date_i18n(get_option('date_format'), $current_user->membership_level->enddate)?></li>
50
  <?php } ?>
51
  <?php if($pmpro_invoice->getDiscountCode()) { ?>
52
  <li><strong><?php _e('Discount Code', 'pmpro');?>:</strong> <?php echo $pmpro_invoice->discount_code->code?></li>
pages/invoice.php CHANGED
@@ -27,7 +27,7 @@
27
  <li><strong><?php _e('Account', 'pmpro');?>:</strong> <?php echo $pmpro_invoice->user->display_name?> (<?php echo $pmpro_invoice->user->user_email?>)</li>
28
  <li><strong><?php _e('Membership Level', 'pmpro');?>:</strong> <?php echo $current_user->membership_level->name?></li>
29
  <?php if($current_user->membership_level->enddate) { ?>
30
- <li><strong><?php _e('Membership Expires', 'pmpro');?>:</strong> <?php echo date(get_option('date_format'), $current_user->membership_level->enddate)?></li>
31
  <?php } ?>
32
  <?php if($pmpro_invoice->getDiscountCode()) { ?>
33
  <li><strong><?php _e('Discount Code', 'pmpro');?>:</strong> <?php echo $pmpro_invoice->discount_code->code?></li>
@@ -116,7 +116,7 @@
116
  {
117
  ?>
118
  <tr>
119
- <td><a href="<?php echo pmpro_url("invoice", "?invoice=" . $invoice->code)?>"><?php echo date(get_option("date_format"), $invoice->timestamp)?></a></td>
120
  <td><a href="<?php echo pmpro_url("invoice", "?invoice=" . $invoice->code)?>"><?php echo $invoice->code; ?></a></td>
121
  <td><?php echo $invoice->membership_level_name;?></td>
122
  <td><?php echo pmpro_formatPrice($invoice->total);?></td>
27
  <li><strong><?php _e('Account', 'pmpro');?>:</strong> <?php echo $pmpro_invoice->user->display_name?> (<?php echo $pmpro_invoice->user->user_email?>)</li>
28
  <li><strong><?php _e('Membership Level', 'pmpro');?>:</strong> <?php echo $current_user->membership_level->name?></li>
29
  <?php if($current_user->membership_level->enddate) { ?>
30
+ <li><strong><?php _e('Membership Expires', 'pmpro');?>:</strong> <?php echo date_i18n(get_option('date_format'), $current_user->membership_level->enddate)?></li>
31
  <?php } ?>
32
  <?php if($pmpro_invoice->getDiscountCode()) { ?>
33
  <li><strong><?php _e('Discount Code', 'pmpro');?>:</strong> <?php echo $pmpro_invoice->discount_code->code?></li>
116
  {
117
  ?>
118
  <tr>
119
+ <td><a href="<?php echo pmpro_url("invoice", "?invoice=" . $invoice->code)?>"><?php echo date_i18n(get_option("date_format"), $invoice->timestamp)?></a></td>
120
  <td><a href="<?php echo pmpro_url("invoice", "?invoice=" . $invoice->code)?>"><?php echo $invoice->code; ?></a></td>
121
  <td><?php echo $invoice->membership_level_name;?></td>
122
  <td><?php echo pmpro_formatPrice($invoice->total);?></td>
pages/levels.php CHANGED
@@ -52,7 +52,7 @@ if($pmpro_msg)
52
  <td>
53
  <?php
54
  if(pmpro_isLevelFree($level))
55
- $cost_text = "<strong>" . _e("Free", "pmpro") . "</strong>";
56
  else
57
  $cost_text = pmpro_getLevelCost($level, true, true);
58
  $expiration_text = pmpro_getLevelExpiration($level);
52
  <td>
53
  <?php
54
  if(pmpro_isLevelFree($level))
55
+ $cost_text = "<strong>" . __("Free", "pmpro") . "</strong>";
56
  else
57
  $cost_text = pmpro_getLevelCost($level, true, true);
58
  $expiration_text = pmpro_getLevelExpiration($level);
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.6.8.1
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.6.8.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)
@@ -41,6 +41,7 @@ define("PMPRO_DIR", dirname(__FILE__));
41
  require_once(PMPRO_DIR . "/includes/localization.php"); //localization functions
42
  require_once(PMPRO_DIR . "/includes/lib/name-parser.php"); //parses "Jason Coleman" into firstname=>Jason, lastname=>Coleman
43
  require_once(PMPRO_DIR . "/includes/functions.php"); //misc functions used by the plugin
 
44
  require_once(PMPRO_DIR . "/includes/upgradecheck.php"); //database and other updates
45
 
46
  if(!defined('PMPRO_LICENSE_SERVER'))
@@ -172,6 +173,7 @@ function pmpro_activation()
172
  $role->add_cap( 'pmpro_orders' );
173
  $role->add_cap( 'pmpro_orderscsv' );
174
  $role->add_cap( 'pmpro_discountcodes' );
 
175
 
176
  do_action('pmpro_activation');
177
  }
@@ -199,6 +201,7 @@ function pmpro_deactivation()
199
  $role->remove_cap( 'pmpro_orders' );
200
  $role->remove_cap( 'pmpro_orderscsv' );
201
  $role->remove_cap( 'pmpro_discountcodes' );
 
202
 
203
  do_action('pmpro_deactivation');
204
  }
3
  Plugin Name: Paid Memberships Pro
4
  Plugin URI: http://www.paidmembershipspro.com
5
  Description: Plugin to Handle Memberships
6
+ Version: 1.8.7.2
7
  Author: Stranger Studios
8
  Author URI: http://www.strangerstudios.com
9
  */
13
  */
14
 
15
  //version constant
16
+ define("PMPRO_VERSION", "1.8.7.2");
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)
41
  require_once(PMPRO_DIR . "/includes/localization.php"); //localization functions
42
  require_once(PMPRO_DIR . "/includes/lib/name-parser.php"); //parses "Jason Coleman" into firstname=>Jason, lastname=>Coleman
43
  require_once(PMPRO_DIR . "/includes/functions.php"); //misc functions used by the plugin
44
+ require_once(PMPRO_DIR . "/includes/updates.php"); //database and other updates
45
  require_once(PMPRO_DIR . "/includes/upgradecheck.php"); //database and other updates
46
 
47
  if(!defined('PMPRO_LICENSE_SERVER'))
173
  $role->add_cap( 'pmpro_orders' );
174
  $role->add_cap( 'pmpro_orderscsv' );
175
  $role->add_cap( 'pmpro_discountcodes' );
176
+ $role->add_cap( 'pmpro_updates' );
177
 
178
  do_action('pmpro_activation');
179
  }
201
  $role->remove_cap( 'pmpro_orders' );
202
  $role->remove_cap( 'pmpro_orderscsv' );
203
  $role->remove_cap( 'pmpro_discountcodes' );
204
+ $role->remove_cap( 'pmpro_updates' );
205
 
206
  do_action('pmpro_deactivation');
207
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ 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.4
6
- Stable tag: 1.8.6.8.1
7
 
8
  A revenue-generating machine for membership sites. Unlimited levels with recurring payment, protected content and member management.
9
 
@@ -115,6 +115,25 @@ Not sure? You can find out by doing a bit a research.
115
  [View All Screenshots](http://www.paidmembershipspro.com/features/screenshots/)
116
 
117
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
118
  = 1.8.6.8.1 =
119
  * BUG: Fixed bug in the Payflow gateway class that was breaking API calls and checkout.
120
 
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.4
6
+ Stable tag: 1.8.7.2
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.7.2 =
119
+ * BUG: Fixed bug where pmpro_activation() was firing on every page load. (Thanks, Tigertech and MegaZ on WordPress.org)
120
+ * BUG: Fixed bugs with internationalized date formats in a few places.
121
+
122
+ = 1.8.7.1 =
123
+ * BUG: Added missing files via svn.
124
+
125
+ = 1.8.7 =
126
+ * BUG: Fixed bug where recurring Stripe orders were saving the customer ID in the subscription_transaction_id instead of the subscription ID. This was causing issues with plugins like AffiliateWP that tried to track recurring orders. After upgrading to 1.8.7, a script will run on your database to fix old recurring orders.
127
+ * BUG: Fixed bug where cancellations weren't showing up in the chart views of the membership stats reports.
128
+ * BUG/ENHANCEMENT: The IPN service will now look for the payment_date parameter to set the timestamp of the recurring order/etc when processing IPN requests.
129
+ * ENHANCEMENT: Added tools to run large database updates (e.g. Stripe fix above) over AJAX to avoid timeouts.
130
+ * ENHANCEMENT: MemberOrder class will now insert/update the timestamp if a ->timestamp or ->datetime variable is set on the object.
131
+ * ENHANCEMENT: Updated the Norwegian translation. (Thanks, Thomas Sjolshagen)
132
+ * ENHANCEMENT: Added Argentine Peso (ARS) as a currency.
133
+ * ENHANCEMENT: Added Nigerian Naira as a currency option. (Thanks, Maria)
134
+ * ENHANCEMENT: Added a second option $conjunction parameter to the pmpro_implodeToEnglish() function. So you can use pmpro_implodeToEnglish($array, 'or') to change the 'and' in the text to 'or' or something different.
135
+ * ENHANCEMENT: The "Sales" numbers on the sales and revenue reports now only includes orders with totals > $0. (More reports updates in the works.)
136
+
137
  = 1.8.6.8.1 =
138
  * BUG: Fixed bug in the Payflow gateway class that was breaking API calls and checkout.
139
 
services/applydiscountcode.php CHANGED
@@ -1,14 +1,14 @@
1
  <?php
2
  global $isapage;
3
- $isapage = true;
4
-
5
  //in case the file is loaded directly
6
- if(!defined("WP_USE_THEMES"))
7
  {
8
  define('WP_USE_THEMES', false);
9
  require_once(dirname(__FILE__) . '/../../../../wp-load.php');
10
  }
11
-
12
  //vars
13
  global $wpdb;
14
  if(!empty($_REQUEST['code']))
@@ -21,17 +21,17 @@
21
  $discount_code = "";
22
  $discount_code_id = "";
23
  }
24
-
25
  if(!empty($_REQUEST['level']))
26
  $level_id = (int)$_REQUEST['level'];
27
  else
28
  $level_id = NULL;
29
-
30
  if(!empty($_REQUEST['msgfield']))
31
  $msgfield = preg_replace("/[^A-Za-z0-9\_\-]/", "", $_REQUEST['msgfield']);
32
  else
33
- $msgfield = NULL;
34
-
35
  //check that the code is valid
36
  $codecheck = pmpro_checkDiscountCode($discount_code, $level_id, true);
37
  if($codecheck[0] == false)
@@ -39,36 +39,36 @@
39
  //uh oh. show code error
40
  echo pmpro_no_quotes($codecheck[1]);
41
  ?>
42
- <script>
43
  jQuery('#<?php echo $msgfield?>').show();
44
  jQuery('#<?php echo $msgfield?>').removeClass('pmpro_success');
45
  jQuery('#<?php echo $msgfield?>').addClass('pmpro_error');
46
  jQuery('#<?php echo $msgfield?>').addClass('pmpro_discount_code_msg');
47
-
48
  //filter to insert your own code
49
  <?php do_action('pmpro_applydiscountcode_return_js', $discount_code, $discount_code_id, $level_id, false); ?>
50
  </script>
51
  <?php
52
-
53
  exit(0);
54
- }
55
-
56
  //okay, send back new price info
57
- $sqlQuery = "SELECT l.id, cl.*, l.name, l.description, l.allow_signups FROM $wpdb->pmpro_discount_codes_levels cl LEFT JOIN $wpdb->pmpro_membership_levels l ON cl.level_id = l.id LEFT JOIN $wpdb->pmpro_discount_codes dc ON dc.id = cl.code_id WHERE dc.code = '" . $discount_code . "' AND cl.level_id = '" . $level_id . "' LIMIT 1";
58
  $code_level = $wpdb->get_row($sqlQuery);
59
-
60
  //if the discount code doesn't adjust the level, let's just get the straight level
61
  if(empty($code_level))
62
  $code_level = $wpdb->get_row("SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . $level_id . "' LIMIT 1");
63
 
64
  //filter adjustments to the level
65
  $code_level = apply_filters("pmpro_discount_code_level", $code_level, $discount_code_id);
66
-
67
  printf(__("The %s code has been applied to your order. ", "pmpro"), $discount_code);
68
  ?>
69
- <script>
70
- var code_level = <?php echo json_encode($code_level); ?>;
71
-
72
  jQuery('#<?php echo $msgfield?>').show();
73
  jQuery('#<?php echo $msgfield?>').removeClass('pmpro_error');
74
  jQuery('#<?php echo $msgfield?>').addClass('pmpro_success');
@@ -84,18 +84,18 @@
84
  value: '<?php echo $discount_code?>'
85
  }).appendTo('#pmpro_form');
86
  }
87
-
88
  jQuery('#other_discount_code_tr').hide();
89
  jQuery('#other_discount_code_p').html('<a id="other_discount_code_a" href="javascript:void(0);"><?php _e('Click here to change your discount code', 'pmpro');?></a>.');
90
  jQuery('#other_discount_code_p').show();
91
-
92
  jQuery('#other_discount_code_a').click(function() {
93
  jQuery('#other_discount_code_tr').show();
94
- jQuery('#other_discount_code_p').hide();
95
  });
96
-
97
  jQuery('#pmpro_level_cost').html('<p><?php printf(__('The <strong>%s</strong> code has been applied to your order.', 'pmpro'), $discount_code);?></p><p><?php echo pmpro_no_quotes(pmpro_getLevelCost($code_level), array('"', "'", "\n", "\r"))?><?php echo pmpro_no_quotes(pmpro_getLevelExpiration($code_level), array('"', "'", "\n", "\r"))?></p>');
98
-
99
  <?php
100
  //tell gateway javascripts whether or not to fire (e.g. no Stripe on free levels)
101
  if(pmpro_isLevelFree($code_level))
@@ -103,49 +103,49 @@
103
  ?>
104
  pmpro_require_billing = false;
105
  <?php
106
- }
107
  else
108
  {
109
  ?>
110
  pmpro_require_billing = true;
111
  <?php
112
  }
113
-
114
  //hide/show billing
115
  if(pmpro_isLevelFree($code_level) || pmpro_getGateway() == "paypalexpress" || pmpro_getGateway() == "paypalstandard" || pmpro_getGateway() == 'check')
116
- {
117
  ?>
118
  jQuery('#pmpro_billing_address_fields').hide();
119
- jQuery('#pmpro_payment_information_fields').hide();
120
  <?php
121
  }
122
- else
123
  {
124
- ?>
125
  jQuery('#pmpro_billing_address_fields').show();
126
- jQuery('#pmpro_payment_information_fields').show();
127
  <?php
128
  }
129
-
130
  //hide/show paypal button
131
- if(pmpro_getGateway() == "paypalexpress" || pmpro_getGateway() == "paypalstandard")
132
  {
133
  if(pmpro_isLevelFree($code_level))
134
  {
135
- ?>
136
  jQuery('#pmpro_paypalexpress_checkout').hide();
137
  jQuery('#pmpro_submit_span').show();
138
  <?php
139
  }
140
  else
141
  {
142
- ?>
143
  jQuery('#pmpro_submit_span').hide();
144
- jQuery('#pmpro_paypalexpress_checkout').show();
145
  <?php
146
  }
147
  }
148
-
149
  //filter to insert your own code
150
  do_action('pmpro_applydiscountcode_return_js', $discount_code, $discount_code_id, $level_id, $code_level);
151
  ?>
1
  <?php
2
  global $isapage;
3
+ $isapage = true;
4
+
5
  //in case the file is loaded directly
6
+ if(!defined("ABSPATH"))
7
  {
8
  define('WP_USE_THEMES', false);
9
  require_once(dirname(__FILE__) . '/../../../../wp-load.php');
10
  }
11
+
12
  //vars
13
  global $wpdb;
14
  if(!empty($_REQUEST['code']))
21
  $discount_code = "";
22
  $discount_code_id = "";
23
  }
24
+
25
  if(!empty($_REQUEST['level']))
26
  $level_id = (int)$_REQUEST['level'];
27
  else
28
  $level_id = NULL;
29
+
30
  if(!empty($_REQUEST['msgfield']))
31
  $msgfield = preg_replace("/[^A-Za-z0-9\_\-]/", "", $_REQUEST['msgfield']);
32
  else
33
+ $msgfield = NULL;
34
+
35
  //check that the code is valid
36
  $codecheck = pmpro_checkDiscountCode($discount_code, $level_id, true);
37
  if($codecheck[0] == false)
39
  //uh oh. show code error
40
  echo pmpro_no_quotes($codecheck[1]);
41
  ?>
42
+ <script>
43
  jQuery('#<?php echo $msgfield?>').show();
44
  jQuery('#<?php echo $msgfield?>').removeClass('pmpro_success');
45
  jQuery('#<?php echo $msgfield?>').addClass('pmpro_error');
46
  jQuery('#<?php echo $msgfield?>').addClass('pmpro_discount_code_msg');
47
+
48
  //filter to insert your own code
49
  <?php do_action('pmpro_applydiscountcode_return_js', $discount_code, $discount_code_id, $level_id, false); ?>
50
  </script>
51
  <?php
52
+
53
  exit(0);
54
+ }
55
+
56
  //okay, send back new price info
57
+ $sqlQuery = "SELECT l.id, cl.*, l.name, l.description, l.allow_signups FROM $wpdb->pmpro_discount_codes_levels cl LEFT JOIN $wpdb->pmpro_membership_levels l ON cl.level_id = l.id LEFT JOIN $wpdb->pmpro_discount_codes dc ON dc.id = cl.code_id WHERE dc.code = '" . $discount_code . "' AND cl.level_id = '" . $level_id . "' LIMIT 1";
58
  $code_level = $wpdb->get_row($sqlQuery);
59
+
60
  //if the discount code doesn't adjust the level, let's just get the straight level
61
  if(empty($code_level))
62
  $code_level = $wpdb->get_row("SELECT * FROM $wpdb->pmpro_membership_levels WHERE id = '" . $level_id . "' LIMIT 1");
63
 
64
  //filter adjustments to the level
65
  $code_level = apply_filters("pmpro_discount_code_level", $code_level, $discount_code_id);
66
+
67
  printf(__("The %s code has been applied to your order. ", "pmpro"), $discount_code);
68
  ?>
69
+ <script>
70
+ var code_level = <?php echo json_encode($code_level); ?>;
71
+
72
  jQuery('#<?php echo $msgfield?>').show();
73
  jQuery('#<?php echo $msgfield?>').removeClass('pmpro_error');
74
  jQuery('#<?php echo $msgfield?>').addClass('pmpro_success');
84
  value: '<?php echo $discount_code?>'
85
  }).appendTo('#pmpro_form');
86
  }
87
+
88
  jQuery('#other_discount_code_tr').hide();
89
  jQuery('#other_discount_code_p').html('<a id="other_discount_code_a" href="javascript:void(0);"><?php _e('Click here to change your discount code', 'pmpro');?></a>.');
90
  jQuery('#other_discount_code_p').show();
91
+
92
  jQuery('#other_discount_code_a').click(function() {
93
  jQuery('#other_discount_code_tr').show();
94
+ jQuery('#other_discount_code_p').hide();
95
  });
96
+
97
  jQuery('#pmpro_level_cost').html('<p><?php printf(__('The <strong>%s</strong> code has been applied to your order.', 'pmpro'), $discount_code);?></p><p><?php echo pmpro_no_quotes(pmpro_getLevelCost($code_level), array('"', "'", "\n", "\r"))?><?php echo pmpro_no_quotes(pmpro_getLevelExpiration($code_level), array('"', "'", "\n", "\r"))?></p>');
98
+
99
  <?php
100
  //tell gateway javascripts whether or not to fire (e.g. no Stripe on free levels)
101
  if(pmpro_isLevelFree($code_level))
103
  ?>
104
  pmpro_require_billing = false;
105
  <?php
106
+ }
107
  else
108
  {
109
  ?>
110
  pmpro_require_billing = true;
111
  <?php
112
  }
113
+
114
  //hide/show billing
115
  if(pmpro_isLevelFree($code_level) || pmpro_getGateway() == "paypalexpress" || pmpro_getGateway() == "paypalstandard" || pmpro_getGateway() == 'check')
116
+ {
117
  ?>
118
  jQuery('#pmpro_billing_address_fields').hide();
119
+ jQuery('#pmpro_payment_information_fields').hide();
120
  <?php
121
  }
122
+ else
123
  {
124
+ ?>
125
  jQuery('#pmpro_billing_address_fields').show();
126
+ jQuery('#pmpro_payment_information_fields').show();
127
  <?php
128
  }
129
+
130
  //hide/show paypal button
131
+ if(pmpro_getGateway() == "paypalexpress" || pmpro_getGateway() == "paypalstandard")
132
  {
133
  if(pmpro_isLevelFree($code_level))
134
  {
135
+ ?>
136
  jQuery('#pmpro_paypalexpress_checkout').hide();
137
  jQuery('#pmpro_submit_span').show();
138
  <?php
139
  }
140
  else
141
  {
142
+ ?>
143
  jQuery('#pmpro_submit_span').hide();
144
+ jQuery('#pmpro_paypalexpress_checkout').show();
145
  <?php
146
  }
147
  }
148
+
149
  //filter to insert your own code
150
  do_action('pmpro_applydiscountcode_return_js', $discount_code, $discount_code_id, $level_id, $code_level);
151
  ?>
services/authnet-silent-post.php CHANGED
@@ -6,7 +6,7 @@
6
  $logstr = "";
7
 
8
  //in case the file is loaded directly
9
- if(!defined("WP_USE_THEMES"))
10
  {
11
  define('WP_USE_THEMES', false);
12
  require_once(dirname(__FILE__) . '/../../../../wp-load.php');
@@ -55,6 +55,9 @@
55
  {
56
  //should we check for a dupe x_trans_id?
57
 
 
 
 
58
  //alright. create a new order/invoice
59
  $morder = new MemberOrder();
60
  $morder->user_id = $old_order->user_id;
6
  $logstr = "";
7
 
8
  //in case the file is loaded directly
9
+ if(!defined("ABSPATH"))
10
  {
11
  define('WP_USE_THEMES', false);
12
  require_once(dirname(__FILE__) . '/../../../../wp-load.php');
55
  {
56
  //should we check for a dupe x_trans_id?
57
 
58
+ //get the user's membership level info
59
+ $user->membership_level = pmpro_getMembershipLevelForUser($user_id);
60
+
61
  //alright. create a new order/invoice
62
  $morder = new MemberOrder();
63
  $morder->user_id = $old_order->user_id;
services/braintree-webhook.php CHANGED
@@ -11,7 +11,7 @@
11
  $logstr = "";
12
 
13
  //in case the file is loaded directly
14
- if(!defined("WP_USE_THEMES"))
15
  {
16
  define('WP_USE_THEMES', false);
17
  require_once(dirname(__FILE__) . '/../../../../wp-load.php');
@@ -403,4 +403,4 @@ function pmpro_braintreeWebhookExit()
403
  }
404
 
405
  exit;
406
- }
11
  $logstr = "";
12
 
13
  //in case the file is loaded directly
14
+ if(!defined("ABSPATH"))
15
  {
16
  define('WP_USE_THEMES', false);
17
  require_once(dirname(__FILE__) . '/../../../../wp-load.php');
403
  }
404
 
405
  exit;
406
+ }
services/ipnhandler.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  //in case the file is loaded directly
3
- if(!defined("WP_USE_THEMES"))
4
  {
5
  global $isapage;
6
  $isapage = true;
@@ -705,6 +705,10 @@
705
  $morder->ExpirationDate_YdashM = $morder->expirationyear . "-" . $morder->expirationmonth;
706
  }
707
 
 
 
 
 
708
  //save
709
  $morder->saveOrder();
710
  $morder->getMemberOrderByID($morder->id);
@@ -723,4 +727,3 @@
723
  return false;
724
  }
725
  }
726
-
1
  <?php
2
  //in case the file is loaded directly
3
+ if(!defined("ABSPATH"))
4
  {
5
  global $isapage;
6
  $isapage = true;
705
  $morder->ExpirationDate_YdashM = $morder->expirationyear . "-" . $morder->expirationmonth;
706
  }
707
 
708
+ //figure out timestamp or default to none (today)
709
+ if(!empty($_POST['payment_date']))
710
+ $morder->timestamp = strtotime($_POST['payment_date']);
711
+
712
  //save
713
  $morder->saveOrder();
714
  $morder->getMemberOrderByID($morder->id);
727
  return false;
728
  }
729
  }
 
services/stripe-webhook.php CHANGED
@@ -10,7 +10,7 @@
10
  define('PMPRO_STRIPE_WEBHOOK_DELAY', 2);
11
 
12
  //in case the file is loaded directly
13
- if(!defined("WP_USE_THEMES"))
14
  {
15
  define('WP_USE_THEMES', false);
16
  require_once(dirname(__FILE__) . '/../../../../wp-load.php');
@@ -58,17 +58,18 @@
58
  if(!empty($pmpro_stripe_event->id))
59
  {
60
  //check what kind of event it is
61
- if($pmpro_stripe_event->type == "charge.succeeded")
62
  {
63
  //do we have this order yet? (check status too)
64
  $order = getOrderFromInvoiceEvent($pmpro_stripe_event);
65
 
66
  //no? create it
67
  if(empty($order->id))
68
- {
69
- //last order for this subscription
70
- $old_order = getOldOrderFromInvoiceEvent($pmpro_stripe_event);
71
-
 
72
  if(empty($old_order))
73
  {
74
  $logstr .= "Couldn't find the original subscription.";
@@ -94,7 +95,7 @@
94
  $morder->InitialPayment = $invoice->amount / 100; //not the initial payment, but the class is expecting that
95
  $morder->PaymentAmount = $invoice->amount / 100;
96
  $morder->payment_transaction_id = $invoice->id;
97
- $morder->subscription_transaction_id = $invoice->customer;
98
 
99
  $morder->gateway = $old_order->gateway;
100
  $morder->gateway_environment = $old_order->gateway_environment;
@@ -425,4 +426,4 @@
425
  }
426
 
427
  exit;
428
- }
10
  define('PMPRO_STRIPE_WEBHOOK_DELAY', 2);
11
 
12
  //in case the file is loaded directly
13
+ if(!defined("ABSPATH"))
14
  {
15
  define('WP_USE_THEMES', false);
16
  require_once(dirname(__FILE__) . '/../../../../wp-load.php');
58
  if(!empty($pmpro_stripe_event->id))
59
  {
60
  //check what kind of event it is
61
+ if($pmpro_stripe_event->type == "invoice.payment_succeeded")
62
  {
63
  //do we have this order yet? (check status too)
64
  $order = getOrderFromInvoiceEvent($pmpro_stripe_event);
65
 
66
  //no? create it
67
  if(empty($order->id))
68
+ {
69
+ //last order for this subscription //getOldOrderFromInvoiceEvent($pmpro_stripe_event);
70
+ $old_order = new MemberOrder();
71
+ $old_order->getLastMemberOrderBySubscriptionTransactionID($pmpro_stripe_event->data->object->subscription);
72
+
73
  if(empty($old_order))
74
  {
75
  $logstr .= "Couldn't find the original subscription.";
95
  $morder->InitialPayment = $invoice->amount / 100; //not the initial payment, but the class is expecting that
96
  $morder->PaymentAmount = $invoice->amount / 100;
97
  $morder->payment_transaction_id = $invoice->id;
98
+ $morder->subscription_transaction_id = $invoice->subscription;
99
 
100
  $morder->gateway = $old_order->gateway;
101
  $morder->gateway_environment = $old_order->gateway_environment;
426
  }
427
 
428
  exit;
429
+ }
services/twocheckout-ins.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
  //set this in your wp-config.php for debugging
3
  //define('PMPRO_INS_DEBUG', true);
4
-
5
- //in case the file is loaded directly
6
- if(!defined("WP_USE_THEMES"))
7
  {
8
  global $isapage;
9
  $isapage = true;
10
-
11
  define('WP_USE_THEMES', false);
12
  require_once(dirname(__FILE__) . '/../../../../wp-load.php');
13
  }
@@ -15,16 +15,16 @@
15
  // Require TwoCheckout class
16
  if(!class_exists("Twocheckout"))
17
  require_once(PMPRO_DIR . "/includes/lib/Twocheckout/Twocheckout.php");
18
-
19
  //some globals
20
  global $wpdb, $gateway_environment, $logstr;
21
  $logstr = ""; //will put debug info here and write to inslog.txt
22
 
23
  //validate?
24
  if( ! pmpro_twocheckoutValidate() ) {
25
-
26
  inslog("(!!FAILED VALIDATION!!)");
27
-
28
  //validation failed
29
  pmpro_twocheckoutExit();
30
  }
@@ -51,9 +51,9 @@
51
  $morder = new MemberOrder( $order_id );
52
  $morder->getMembershipLevel();
53
  $morder->getUser();
54
-
55
  inslog("NO MESSAGE: ORDER: " . var_export($morder, true) . "\n---\n");
56
-
57
  //update membership
58
  if( ! empty ( $morder ) && ! empty ( $morder->status ) && $morder->status === 'success' ) {
59
  inslog( "Checkout was already processed (" . $morder->code . "). Ignoring this request." );
@@ -62,9 +62,9 @@
62
  inslog( "Checkout processed (" . $morder->code . ") success!" );
63
  }
64
  else {
65
- inslog( "ERROR: Couldn't change level for order (" . $morder->code . ")." );
66
  }
67
-
68
  pmpro_twocheckoutExit(pmpro_url("confirmation", "?level=" . $morder->membership_level->id));
69
  }
70
 
@@ -74,9 +74,9 @@
74
  $morder = new MemberOrder( $order_id );
75
  $morder->getMembershipLevel();
76
  $morder->getUser();
77
-
78
  inslog("ORDER_CREATED: ORDER: " . var_export($morder, true) . "\n---\n");
79
-
80
  //update membership
81
  if( ! empty ( $morder ) && ! empty ( $morder->status ) && $morder->status === 'success' ) {
82
  inslog( "Checkout was already processed (" . $morder->code . "). Ignoring this request." );
@@ -85,9 +85,9 @@
85
  inslog( "Checkout processed (" . $morder->code . ") success!" );
86
  }
87
  else {
88
- inslog( "ERROR: Couldn't change level for order (" . $morder->code . ")." );
89
  }
90
-
91
  pmpro_twocheckoutExit(pmpro_url("confirmation", "?level=" . $morder->membership_level->id));
92
  }
93
 
@@ -96,17 +96,17 @@
96
  //is this a first payment?
97
  $last_subscr_order = new MemberOrder();
98
  if( $last_subscr_order->getLastMemberOrderBySubscriptionTransactionID( $txn_id ) == false) {
99
- //first payment, get order
100
- $morder = new MemberOrder( $order_id );
101
  $morder->getMembershipLevel();
102
  $morder->getUser();
103
 
104
  //update membership
105
- if( pmpro_insChangeMembershipLevel( $txn_id, $morder ) ) {
106
- inslog( "Checkout processed (" . $morder->code . ") success!" );
107
  }
108
  else {
109
- inslog( "ERROR: Couldn't change level for order (" . $morder->code . ")." );
110
  }
111
  }
112
  else {
@@ -126,7 +126,7 @@
126
  pmpro_twocheckoutExit();
127
  }
128
 
129
-
130
  /*
131
  // Recurring Payment Stopped (recurring stopped and recurring is true)
132
  if( $message_type == 'RECURRING_STOPPED' && $recurring ) {
@@ -140,13 +140,13 @@
140
  inslog( "Recurring stopped for order (" . $morder->code . ")!" );
141
  }
142
  else {
143
- inslog( "Recurring NOT stopped for order (" . $morder->code . ")!" );
144
- }
145
-
146
  pmpro_twocheckoutExit();
147
  }
148
 
149
-
150
  // Recurring Payment Restarted (recurring restarted and recurring is true)
151
  if( $message_type == 'RECURRING_RESTART' && $recurring ) {
152
  //initial payment, get the order
@@ -159,27 +159,27 @@
159
  inslog( "Recurring restarted for order (" . $morder->code . ")!" );
160
  }
161
  else {
162
- inslog( "Recurring NOT restarted for order (" . $morder->code . ")!" );
163
- }
164
-
165
  pmpro_twocheckoutExit();
166
  }
167
  */
168
-
169
  //Other
170
  //if we got here, this is a different kind of txn
171
- inslog("The PMPro INS handler does not process this type of message. message_type = " . $message_type);
172
- pmpro_twocheckoutExit();
173
-
174
  /*
175
  Add message to inslog string
176
  */
177
  function inslog( $s )
178
- {
179
- global $logstr;
180
  $logstr .= "\t" . $s . "\n";
181
  }
182
-
183
  /*
184
  Output inslog and exit;
185
  */
@@ -187,31 +187,31 @@
187
  {
188
  global $logstr;
189
  //echo $logstr;
190
-
191
- $logstr = var_export($_REQUEST, true) . "Logged On: " . date("m/d/Y H:i:s") . "\n" . $logstr . "\n-------------\n";
192
-
193
  //log in file or email?
194
  if(defined('PMPRO_INS_DEBUG') && PMPRO_INS_DEBUG === "log")
195
- {
196
  //file
197
- $loghandle = fopen(dirname(__FILE__) . "/../logs/ipn.txt", "a+");
198
  fwrite($loghandle, $logstr);
199
  fclose($loghandle);
200
  }
201
  elseif(defined('PMPRO_INS_DEBUG'))
202
- {
203
  //email
204
  if(strpos(PMPRO_INS_DEBUG, "@"))
205
  $log_email = PMPRO_INS_DEBUG; //constant defines a specific email address
206
  else
207
  $log_email = get_option("admin_email");
208
-
209
  wp_mail($log_email, get_option("blogname") . " 2Checkout INS Log", nl2br($logstr));
210
- }
211
-
212
  if(!empty($redirect))
213
  wp_redirect($redirect);
214
-
215
  exit;
216
  }
217
 
@@ -222,17 +222,17 @@
222
  $params = array();
223
  foreach ( $_REQUEST as $k => $v )
224
  $params[$k] = $v;
225
-
226
  //2Checkout uses an order number of 1 in the hash for demo orders for some reason
227
  if(!empty($params['demo']) && $params['demo'] == 'Y')
228
  $params['order_number'] = 1;
229
-
230
  //is this a return call or notification
231
  if(empty($params['message_type']))
232
  $check = Twocheckout_Return::check( $params, pmpro_getOption( 'twocheckout_secretword' ), 'array' );
233
- else
234
- $check = Twocheckout_Notification::check( $params, pmpro_getOption( 'twocheckout_secretword' ), 'array' );
235
-
236
  if( empty ( $check ) )
237
  $r = false; //HTTP failure
238
  else if( empty ( $check['response_code'] ) )
@@ -252,18 +252,18 @@
252
 
253
  return $check['response_code'] === 'Success';
254
  }
255
-
256
  /*
257
  Change the membership level. We also update the membership order to include filtered valus.
258
  */
259
  function pmpro_insChangeMembershipLevel($txn_id, &$morder)
260
  {
261
  $recurring = pmpro_getParam( 'recurring', 'POST' );
262
-
263
  //filter for level
264
  $morder->membership_level = apply_filters("pmpro_inshandler_level", $morder->membership_level, $morder->user_id);
265
-
266
- //fix expiration date
267
  if(!empty($morder->membership_level->expiration_number))
268
  {
269
  $enddate = "'" . date("Y-m-d", strtotime("+ " . $morder->membership_level->expiration_number . " " . $morder->membership_level->expiration_period, current_time("timestamp"))) . "'";
@@ -272,21 +272,21 @@
272
  {
273
  $enddate = "NULL";
274
  }
275
-
276
  //get discount code
277
  $morder->getDiscountCode();
278
  if(!empty($morder->discount_code))
279
- {
280
  //update membership level
281
  $morder->getMembershipLevel(true);
282
  $discount_code_id = $morder->discount_code->id;
283
  }
284
  else
285
  $discount_code_id = "";
286
-
287
  //set the start date to current_time('mysql') but allow filters
288
  $startdate = apply_filters("pmpro_checkout_start_date", "'" . current_time('mysql') . "'", $morder->user_id, $morder->membership_level);
289
-
290
  //custom level to change user to
291
  $custom_level = array(
292
  'user_id' => $morder->user_id,
@@ -306,11 +306,11 @@
306
  if(!empty($pmpro_error))
307
  {
308
  echo $pmpro_error;
309
- inslog($pmpro_error);
310
  }
311
-
312
  if( pmpro_changeMembershipLevel($custom_level, $morder->user_id) !== false ) {
313
- //update order status and transaction ids
314
  $morder->status = "success";
315
  $morder->payment_transaction_id = $txn_id;
316
  if( $recurring )
@@ -318,13 +318,13 @@
318
  else
319
  $morder->subscription_transaction_id = '';
320
  $morder->saveOrder();
321
-
322
  //add discount code use
323
  if(!empty($discount_code) && !empty($use_discount_code))
324
  {
325
  $wpdb->query("INSERT INTO $wpdb->pmpro_discount_codes_uses (code_id, user_id, order_id, timestamp) VALUES('" . $discount_code_id . "', '" . $morder->user_id . "', '" . $morder->id . "', '" . current_time('mysql') . "')");
326
- }
327
-
328
  //save first and last name fields
329
  if(!empty($_POST['first_name']))
330
  {
@@ -338,103 +338,103 @@
338
  if(!empty($old_lastname))
339
  update_user_meta($morder->user_id, "last_name", $_POST['last_name']);
340
  }
341
-
342
  //hook
343
- do_action("pmpro_after_checkout", $morder->user_id);
344
-
345
  //setup some values for the emails
346
  if(!empty($morder))
347
- $invoice = new MemberOrder($morder->id);
348
  else
349
  $invoice = NULL;
350
-
351
  inslog("CHANGEMEMBERSHIPLEVEL: ORDER: " . var_export($morder, true) . "\n---\n");
352
-
353
- $user = get_userdata($morder->user_id);
354
  if(empty($user))
355
  return false;
356
-
357
  $user->membership_level = $morder->membership_level; //make sure they have the right level info
358
-
359
  //send email to member
360
- $pmproemail = new PMProEmail();
361
  $pmproemail->sendCheckoutEmail($user, $invoice);
362
-
363
  //send email to admin
364
  $pmproemail = new PMProEmail();
365
  $pmproemail->sendCheckoutAdminEmail($user, $invoice);
366
-
367
  return true;
368
  }
369
  else
370
  return false;
371
  }
372
-
373
  /*
374
  Send an email RE a failed payment.
375
  $last_order passed in is the previous order for this subscription.
376
  */
377
- function pmpro_insFailedPayment( $last_order ) {
378
- //hook to do other stuff when payments fail
379
- do_action("pmpro_subscription_payment_failed", $last_order);
380
-
381
- //create a blank order for the email
382
  $morder = new MemberOrder();
383
  $morder->user_id = $last_order->user_id;
384
-
385
- // Email the user and ask them to update their credit card information
386
- $pmproemail = new PMProEmail();
387
  $pmproemail->sendBillingFailureEmail($user, $morder);
388
-
389
  // Email admin so they are aware of the failure
390
- $pmproemail = new PMProEmail();
391
- $pmproemail->sendBillingFailureAdminEmail(get_bloginfo("admin_email"), $morder);
392
-
393
- inslog("Payment failed. Emails sent to " . $user->user_email . " and " . get_bloginfo("admin_email") . ".");
394
-
395
  return true;
396
  }
397
-
398
  /*
399
  Save a new order from IPN info.
400
  $last_order passed in is the previous order for this subscription.
401
  */
402
  function pmpro_insSaveOrder( $txn_id, $last_order ) {
403
  global $wpdb;
404
-
405
  //check that txn_id has not been previously processed
406
  $old_txn = $wpdb->get_var("SELECT payment_transaction_id FROM $wpdb->pmpro_membership_orders WHERE payment_transaction_id = '" . $txn_id . "' LIMIT 1");
407
-
408
- if( empty( $old_txn ) ) {
409
  //hook for successful subscription payments
410
  do_action("pmpro_subscription_payment_completed");
411
-
412
  //save order
413
  $morder = new MemberOrder();
414
  $morder->user_id = $last_order->user_id;
415
- $morder->membership_id = $last_order->membership_id;
416
  $morder->payment_transaction_id = $txn_id;
417
  $morder->subscription_transaction_id = $last_order->subscription_transaction_id;
418
  $morder->InitialPayment = $_POST['item_list_amount_1']; //not the initial payment, but the class is expecting that
419
  $morder->PaymentAmount = $_POST['item_list_amount_1'];
420
-
421
  $morder->FirstName = $_POST['customer_first_name'];
422
  $morder->LastName = $_POST['customer_last_name'];
423
  $morder->Email = $_POST['customer_email'];
424
-
425
  $morder->gateway = $last_order->gateway;
426
  $morder->gateway_environment = $last_order->gateway_environment;
427
-
428
  //save
429
  $morder->saveOrder();
430
  $morder->getMemberOrderByID( $morder->id );
431
-
432
- //email the user their invoice
433
- $pmproemail = new PMProEmail();
434
- $pmproemail->sendInvoiceEmail( get_userdata( $last_order->user_id ), $morder );
435
-
436
  inslog( "New order (" . $morder->code . ") created." );
437
-
438
  return true;
439
  }
440
  else {
@@ -442,8 +442,8 @@
442
  return false;
443
  }
444
  }
445
-
446
-
447
  /*
448
  Cancel a subscription and send an email RE a recurring.
449
  $morder passed in is the previous order for this subscription.
@@ -451,10 +451,10 @@
451
  function pmpro_insRecurringStopped( $morder ) {
452
  global $pmpro_error;
453
  //hook to do other stuff when payments stop
454
- do_action("pmpro_subscription_recuring_stopped", $last_order);
455
-
456
  $worked = pmpro_changeMembershipLevel( false, $morder->user->ID , 'inactive');
457
- if( $worked === true ) {
458
  //$pmpro_msg = __("Your membership has been cancelled.", 'pmpro');
459
  //$pmpro_msgt = "pmpro_success";
460
 
@@ -466,40 +466,40 @@
466
  $myemail = new PMProEmail();
467
  $myemail->sendCancelAdminEmail( $morder->user, $morder->membership_level->id );
468
 
469
- inslog("Subscription cancelled due to 'recurring stopped' INS notification.");
470
-
471
  return true;
472
  }
473
  else {
474
  return false;
475
  }
476
  }
477
-
478
-
479
  /*
480
  Restart a subscription and send an email RE a recurring.
481
  $morder passed in is the previous order for this subscription.
482
  */
483
  function pmpro_insRecurringRestarted( $morder ) {
484
  global $pmpro_error;
485
- //hook to do other stuff when payments restart
486
- do_action("pmpro_subscription_recuring_restarted", $last_order);
487
-
488
  $worked = pmpro_changeMembershipLevel( $morder->membership_level->id, $morder->user->ID );
489
- if( $worked === true ) {
490
  //$pmpro_msg = __("Your membership has been cancelled.", 'pmpro');
491
  //$pmpro_msgt = "pmpro_success";
492
 
493
  //send an email to the member
494
- $pmproemail = new PMProEmail();
495
  $pmproemail->sendCheckoutEmail( $morder->user, $morder );
496
 
497
  //send email to admin
498
  $pmproemail = new PMProEmail();
499
  $pmproemail->sendCheckoutAdminEmail( $morder->user, $morder );
500
 
501
- inslog("Subscription restarted due to 'recurring restarted' INS notification.");
502
-
503
  return true;
504
  }
505
  else {
1
  <?php
2
  //set this in your wp-config.php for debugging
3
  //define('PMPRO_INS_DEBUG', true);
4
+
5
+ //in case the file is loaded directly
6
+ if(!defined("ABSPATH"))
7
  {
8
  global $isapage;
9
  $isapage = true;
10
+
11
  define('WP_USE_THEMES', false);
12
  require_once(dirname(__FILE__) . '/../../../../wp-load.php');
13
  }
15
  // Require TwoCheckout class
16
  if(!class_exists("Twocheckout"))
17
  require_once(PMPRO_DIR . "/includes/lib/Twocheckout/Twocheckout.php");
18
+
19
  //some globals
20
  global $wpdb, $gateway_environment, $logstr;
21
  $logstr = ""; //will put debug info here and write to inslog.txt
22
 
23
  //validate?
24
  if( ! pmpro_twocheckoutValidate() ) {
25
+
26
  inslog("(!!FAILED VALIDATION!!)");
27
+
28
  //validation failed
29
  pmpro_twocheckoutExit();
30
  }
51
  $morder = new MemberOrder( $order_id );
52
  $morder->getMembershipLevel();
53
  $morder->getUser();
54
+
55
  inslog("NO MESSAGE: ORDER: " . var_export($morder, true) . "\n---\n");
56
+
57
  //update membership
58
  if( ! empty ( $morder ) && ! empty ( $morder->status ) && $morder->status === 'success' ) {
59
  inslog( "Checkout was already processed (" . $morder->code . "). Ignoring this request." );
62
  inslog( "Checkout processed (" . $morder->code . ") success!" );
63
  }
64
  else {
65
+ inslog( "ERROR: Couldn't change level for order (" . $morder->code . ")." );
66
  }
67
+
68
  pmpro_twocheckoutExit(pmpro_url("confirmation", "?level=" . $morder->membership_level->id));
69
  }
70
 
74
  $morder = new MemberOrder( $order_id );
75
  $morder->getMembershipLevel();
76
  $morder->getUser();
77
+
78
  inslog("ORDER_CREATED: ORDER: " . var_export($morder, true) . "\n---\n");
79
+
80
  //update membership
81
  if( ! empty ( $morder ) && ! empty ( $morder->status ) && $morder->status === 'success' ) {
82
  inslog( "Checkout was already processed (" . $morder->code . "). Ignoring this request." );
85
  inslog( "Checkout processed (" . $morder->code . ") success!" );
86
  }
87
  else {
88
+ inslog( "ERROR: Couldn't change level for order (" . $morder->code . ")." );
89
  }
90
+
91
  pmpro_twocheckoutExit(pmpro_url("confirmation", "?level=" . $morder->membership_level->id));
92
  }
93
 
96
  //is this a first payment?
97
  $last_subscr_order = new MemberOrder();
98
  if( $last_subscr_order->getLastMemberOrderBySubscriptionTransactionID( $txn_id ) == false) {
99
+ //first payment, get order
100
+ $morder = new MemberOrder( $order_id );
101
  $morder->getMembershipLevel();
102
  $morder->getUser();
103
 
104
  //update membership
105
+ if( pmpro_insChangeMembershipLevel( $txn_id, $morder ) ) {
106
+ inslog( "Checkout processed (" . $morder->code . ") success!" );
107
  }
108
  else {
109
+ inslog( "ERROR: Couldn't change level for order (" . $morder->code . ")." );
110
  }
111
  }
112
  else {
126
  pmpro_twocheckoutExit();
127
  }
128
 
129
+
130
  /*
131
  // Recurring Payment Stopped (recurring stopped and recurring is true)
132
  if( $message_type == 'RECURRING_STOPPED' && $recurring ) {
140
  inslog( "Recurring stopped for order (" . $morder->code . ")!" );
141
  }
142
  else {
143
+ inslog( "Recurring NOT stopped for order (" . $morder->code . ")!" );
144
+ }
145
+
146
  pmpro_twocheckoutExit();
147
  }
148
 
149
+
150
  // Recurring Payment Restarted (recurring restarted and recurring is true)
151
  if( $message_type == 'RECURRING_RESTART' && $recurring ) {
152
  //initial payment, get the order
159
  inslog( "Recurring restarted for order (" . $morder->code . ")!" );
160
  }
161
  else {
162
+ inslog( "Recurring NOT restarted for order (" . $morder->code . ")!" );
163
+ }
164
+
165
  pmpro_twocheckoutExit();
166
  }
167
  */
168
+
169
  //Other
170
  //if we got here, this is a different kind of txn
171
+ inslog("The PMPro INS handler does not process this type of message. message_type = " . $message_type);
172
+ pmpro_twocheckoutExit();
173
+
174
  /*
175
  Add message to inslog string
176
  */
177
  function inslog( $s )
178
+ {
179
+ global $logstr;
180
  $logstr .= "\t" . $s . "\n";
181
  }
182
+
183
  /*
184
  Output inslog and exit;
185
  */
187
  {
188
  global $logstr;
189
  //echo $logstr;
190
+
191
+ $logstr = var_export($_REQUEST, true) . "Logged On: " . date("m/d/Y H:i:s") . "\n" . $logstr . "\n-------------\n";
192
+
193
  //log in file or email?
194
  if(defined('PMPRO_INS_DEBUG') && PMPRO_INS_DEBUG === "log")
195
+ {
196
  //file
197
+ $loghandle = fopen(dirname(__FILE__) . "/../logs/ipn.txt", "a+");
198
  fwrite($loghandle, $logstr);
199
  fclose($loghandle);
200
  }
201
  elseif(defined('PMPRO_INS_DEBUG'))
202
+ {
203
  //email
204
  if(strpos(PMPRO_INS_DEBUG, "@"))
205
  $log_email = PMPRO_INS_DEBUG; //constant defines a specific email address
206
  else
207
  $log_email = get_option("admin_email");
208
+
209
  wp_mail($log_email, get_option("blogname") . " 2Checkout INS Log", nl2br($logstr));
210
+ }
211
+
212
  if(!empty($redirect))
213
  wp_redirect($redirect);
214
+
215
  exit;
216
  }
217
 
222
  $params = array();
223
  foreach ( $_REQUEST as $k => $v )
224
  $params[$k] = $v;
225
+
226
  //2Checkout uses an order number of 1 in the hash for demo orders for some reason
227
  if(!empty($params['demo']) && $params['demo'] == 'Y')
228
  $params['order_number'] = 1;
229
+
230
  //is this a return call or notification
231
  if(empty($params['message_type']))
232
  $check = Twocheckout_Return::check( $params, pmpro_getOption( 'twocheckout_secretword' ), 'array' );
233
+ else
234
+ $check = Twocheckout_Notification::check( $params, pmpro_getOption( 'twocheckout_secretword' ), 'array' );
235
+
236
  if( empty ( $check ) )
237
  $r = false; //HTTP failure
238
  else if( empty ( $check['response_code'] ) )
252
 
253
  return $check['response_code'] === 'Success';
254
  }
255
+
256
  /*
257
  Change the membership level. We also update the membership order to include filtered valus.
258
  */
259
  function pmpro_insChangeMembershipLevel($txn_id, &$morder)
260
  {
261
  $recurring = pmpro_getParam( 'recurring', 'POST' );
262
+
263
  //filter for level
264
  $morder->membership_level = apply_filters("pmpro_inshandler_level", $morder->membership_level, $morder->user_id);
265
+
266
+ //fix expiration date
267
  if(!empty($morder->membership_level->expiration_number))
268
  {
269
  $enddate = "'" . date("Y-m-d", strtotime("+ " . $morder->membership_level->expiration_number . " " . $morder->membership_level->expiration_period, current_time("timestamp"))) . "'";
272
  {
273
  $enddate = "NULL";
274
  }
275
+
276
  //get discount code
277
  $morder->getDiscountCode();
278
  if(!empty($morder->discount_code))
279
+ {
280
  //update membership level
281
  $morder->getMembershipLevel(true);
282
  $discount_code_id = $morder->discount_code->id;
283
  }
284
  else
285
  $discount_code_id = "";
286
+
287
  //set the start date to current_time('mysql') but allow filters
288
  $startdate = apply_filters("pmpro_checkout_start_date", "'" . current_time('mysql') . "'", $morder->user_id, $morder->membership_level);
289
+
290
  //custom level to change user to
291
  $custom_level = array(
292
  'user_id' => $morder->user_id,
306
  if(!empty($pmpro_error))
307
  {
308
  echo $pmpro_error;
309
+ inslog($pmpro_error);
310
  }
311
+
312
  if( pmpro_changeMembershipLevel($custom_level, $morder->user_id) !== false ) {
313
+ //update order status and transaction ids
314
  $morder->status = "success";
315
  $morder->payment_transaction_id = $txn_id;
316
  if( $recurring )
318
  else
319
  $morder->subscription_transaction_id = '';
320
  $morder->saveOrder();
321
+
322
  //add discount code use
323
  if(!empty($discount_code) && !empty($use_discount_code))
324
  {
325
  $wpdb->query("INSERT INTO $wpdb->pmpro_discount_codes_uses (code_id, user_id, order_id, timestamp) VALUES('" . $discount_code_id . "', '" . $morder->user_id . "', '" . $morder->id . "', '" . current_time('mysql') . "')");
326
+ }
327
+
328
  //save first and last name fields
329
  if(!empty($_POST['first_name']))
330
  {
338
  if(!empty($old_lastname))
339
  update_user_meta($morder->user_id, "last_name", $_POST['last_name']);
340
  }
341
+
342
  //hook
343
+ do_action("pmpro_after_checkout", $morder->user_id);
344
+
345
  //setup some values for the emails
346
  if(!empty($morder))
347
+ $invoice = new MemberOrder($morder->id);
348
  else
349
  $invoice = NULL;
350
+
351
  inslog("CHANGEMEMBERSHIPLEVEL: ORDER: " . var_export($morder, true) . "\n---\n");
352
+
353
+ $user = get_userdata($morder->user_id);
354
  if(empty($user))
355
  return false;
356
+
357
  $user->membership_level = $morder->membership_level; //make sure they have the right level info
358
+
359
  //send email to member
360
+ $pmproemail = new PMProEmail();
361
  $pmproemail->sendCheckoutEmail($user, $invoice);
362
+
363
  //send email to admin
364
  $pmproemail = new PMProEmail();
365
  $pmproemail->sendCheckoutAdminEmail($user, $invoice);
366
+
367
  return true;
368
  }
369
  else
370
  return false;
371
  }
372
+
373
  /*
374
  Send an email RE a failed payment.
375
  $last_order passed in is the previous order for this subscription.
376
  */
377
+ function pmpro_insFailedPayment( $last_order ) {
378
+ //hook to do other stuff when payments fail
379
+ do_action("pmpro_subscription_payment_failed", $last_order);
380
+
381
+ //create a blank order for the email
382
  $morder = new MemberOrder();
383
  $morder->user_id = $last_order->user_id;
384
+
385
+ // Email the user and ask them to update their credit card information
386
+ $pmproemail = new PMProEmail();
387
  $pmproemail->sendBillingFailureEmail($user, $morder);
388
+
389
  // Email admin so they are aware of the failure
390
+ $pmproemail = new PMProEmail();
391
+ $pmproemail->sendBillingFailureAdminEmail(get_bloginfo("admin_email"), $morder);
392
+
393
+ inslog("Payment failed. Emails sent to " . $user->user_email . " and " . get_bloginfo("admin_email") . ".");
394
+
395
  return true;
396
  }
397
+
398
  /*
399
  Save a new order from IPN info.
400
  $last_order passed in is the previous order for this subscription.
401
  */
402
  function pmpro_insSaveOrder( $txn_id, $last_order ) {
403
  global $wpdb;
404
+
405
  //check that txn_id has not been previously processed
406
  $old_txn = $wpdb->get_var("SELECT payment_transaction_id FROM $wpdb->pmpro_membership_orders WHERE payment_transaction_id = '" . $txn_id . "' LIMIT 1");
407
+
408
+ if( empty( $old_txn ) ) {
409
  //hook for successful subscription payments
410
  do_action("pmpro_subscription_payment_completed");
411
+
412
  //save order
413
  $morder = new MemberOrder();
414
  $morder->user_id = $last_order->user_id;
415
+ $morder->membership_id = $last_order->membership_id;
416
  $morder->payment_transaction_id = $txn_id;
417
  $morder->subscription_transaction_id = $last_order->subscription_transaction_id;
418
  $morder->InitialPayment = $_POST['item_list_amount_1']; //not the initial payment, but the class is expecting that
419
  $morder->PaymentAmount = $_POST['item_list_amount_1'];
420
+
421
  $morder->FirstName = $_POST['customer_first_name'];
422
  $morder->LastName = $_POST['customer_last_name'];
423
  $morder->Email = $_POST['customer_email'];
424
+
425
  $morder->gateway = $last_order->gateway;
426
  $morder->gateway_environment = $last_order->gateway_environment;
427
+
428
  //save
429
  $morder->saveOrder();
430
  $morder->getMemberOrderByID( $morder->id );
431
+
432
+ //email the user their invoice
433
+ $pmproemail = new PMProEmail();
434
+ $pmproemail->sendInvoiceEmail( get_userdata( $last_order->user_id ), $morder );
435
+
436
  inslog( "New order (" . $morder->code . ") created." );
437
+
438
  return true;
439
  }
440
  else {
442
  return false;
443
  }
444
  }
445
+
446
+
447
  /*
448
  Cancel a subscription and send an email RE a recurring.
449
  $morder passed in is the previous order for this subscription.
451
  function pmpro_insRecurringStopped( $morder ) {
452
  global $pmpro_error;
453
  //hook to do other stuff when payments stop
454
+ do_action("pmpro_subscription_recuring_stopped", $last_order);
455
+
456
  $worked = pmpro_changeMembershipLevel( false, $morder->user->ID , 'inactive');
457
+ if( $worked === true ) {
458
  //$pmpro_msg = __("Your membership has been cancelled.", 'pmpro');
459
  //$pmpro_msgt = "pmpro_success";
460
 
466
  $myemail = new PMProEmail();
467
  $myemail->sendCancelAdminEmail( $morder->user, $morder->membership_level->id );
468
 
469
+ inslog("Subscription cancelled due to 'recurring stopped' INS notification.");
470
+
471
  return true;
472
  }
473
  else {
474
  return false;
475
  }
476
  }
477
+
478
+
479
  /*
480
  Restart a subscription and send an email RE a recurring.
481
  $morder passed in is the previous order for this subscription.
482
  */
483
  function pmpro_insRecurringRestarted( $morder ) {
484
  global $pmpro_error;
485
+ //hook to do other stuff when payments restart
486
+ do_action("pmpro_subscription_recuring_restarted", $last_order);
487
+
488
  $worked = pmpro_changeMembershipLevel( $morder->membership_level->id, $morder->user->ID );
489
+ if( $worked === true ) {
490
  //$pmpro_msg = __("Your membership has been cancelled.", 'pmpro');
491
  //$pmpro_msgt = "pmpro_success";
492
 
493
  //send an email to the member
494
+ $pmproemail = new PMProEmail();
495
  $pmproemail->sendCheckoutEmail( $morder->user, $morder );
496
 
497
  //send email to admin
498
  $pmproemail = new PMProEmail();
499
  $pmproemail->sendCheckoutAdminEmail( $morder->user, $morder );
500
 
501
+ inslog("Subscription restarted due to 'recurring restarted' INS notification.");
502
+
503
  return true;
504
  }
505
  else {