Paid Memberships Pro - Version 1.8.6

Version Description

  • BUG: The pmpro_membership_level_profile_fields_update() function now only fires on the personal_options_update and edit_user_profile_update hooks instead of the profile_update hook since this function expects to be called from the your-profile or edit-user page.
  • FEATURE: Added the ability to print invoices/orders from the Memberships -> Orders page in the dashboard. (Thanks, AgResources)
  • FEATURE: Added the ability to email invoices/orders from the Memberships -> Orders page in the dashboard. (Thanks, AgResources)
  • ENHANCEMENT: Added pmpro_before_change_membership_level action. Runs before the subscriptions are cancelled and before the SQL executes to change a user's level. Passes $level_id and $user_id.
  • ENHANCEMENT: Updated Stripe Web Hook handler to save event into global $pmpro_stripe_event so filters can act on it.
  • ENHANCEMENT: Added $pmpro_level as a second parameter for the pmpro_setup_new_user filter. (Thanks, David Crabill)
  • ENHANCEMENT: Added Vietnamese language pack. (Thanks, Alex Training Center)
Download this release

Release Info

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

Code changes from version 1.8.5.5 to 1.8.6

Files changed (48) hide show
  1. adminpages/orders-print.php +39 -0
  2. adminpages/orders.php +149 -87
  3. adminpages/templates/orders-print.php +71 -0
  4. classes/class.pmproemail.php +51 -0
  5. classes/gateways/class.pmprogateway_payflowpro.php +42 -0
  6. classes/gateways/class.pmprogateway_stripe.php +8 -4
  7. css/frontend.css +1 -4
  8. email/billable_invoice.html +6 -0
  9. includes/currencies.php +11 -1
  10. includes/functions.php +72 -17
  11. includes/profile.php +2 -1
  12. includes/services.php +24 -0
  13. languages/email/vi_VN/admin_change.html +7 -0
  14. languages/email/vi_VN/admin_change_admin.html +5 -0
  15. languages/email/vi_VN/billing.html +16 -0
  16. languages/email/vi_VN/billing_admin.html +17 -0
  17. languages/email/vi_VN/billing_failure.html +11 -0
  18. languages/email/vi_VN/billing_failure_admin.html +11 -0
  19. languages/email/vi_VN/cancel.html +3 -0
  20. languages/email/vi_VN/cancel_admin.html +8 -0
  21. languages/email/vi_VN/checkout_check.html +17 -0
  22. languages/email/vi_VN/checkout_check_admin.html +17 -0
  23. languages/email/vi_VN/checkout_express.html +14 -0
  24. languages/email/vi_VN/checkout_express_admin.html +14 -0
  25. languages/email/vi_VN/checkout_free.html +8 -0
  26. languages/email/vi_VN/checkout_free_admin.html +8 -0
  27. languages/email/vi_VN/checkout_freetrial.html +19 -0
  28. languages/email/vi_VN/checkout_freetrial_admin.html +19 -0
  29. languages/email/vi_VN/checkout_paid.html +23 -0
  30. languages/email/vi_VN/checkout_paid_admin.html +23 -0
  31. languages/email/vi_VN/checkout_trial.html +23 -0
  32. languages/email/vi_VN/checkout_trial_admin.html +23 -0
  33. languages/email/vi_VN/credit_card_expiring.html +13 -0
  34. languages/email/vi_VN/default.html +1 -0
  35. languages/email/vi_VN/footer.html +4 -0
  36. languages/email/vi_VN/header.html +1 -0
  37. languages/email/vi_VN/invoice.html +19 -0
  38. languages/email/vi_VN/membership_expired.html +7 -0
  39. languages/email/vi_VN/membership_expiring.html +6 -0
  40. languages/email/vi_VN/trial_ending.html +8 -0
  41. languages/pmpro-vi_VN.mo +0 -0
  42. languages/pmpro-vi_VN.po +4556 -0
  43. pages/checkout.php +8 -4
  44. paid-memberships-pro.php +2 -2
  45. preheaders/checkout.php +1 -1
  46. readme.txt +22 -2
  47. services/ipnhandler.php +1 -1
  48. services/stripe-webhook.php +32 -31
adminpages/orders-print.php ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Order - Print View
4
+ *
5
+ * Gets the order and displays the print view template.
6
+ *
7
+ * @since 1.8.6
8
+ */
9
+
10
+ //only admins can get this
11
+ if ( ! function_exists( "current_user_can" ) || ( ! current_user_can( "manage_options" ) && ! current_user_can( "pmpro_ordersprint" ) ) ) {
12
+ die( __( "You do not have permissions to perform this action.", "pmpro" ) );
13
+ }
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
+
21
+ // Get order and membership level.
22
+ $order = new MemberOrder($_REQUEST['order']);
23
+ $level = pmpro_getLevel($order->membership_id);
24
+
25
+ // Load template
26
+ if ( file_exists( get_stylesheet_directory() . '/paid-memberships-pro/pages/orders-print.php' ) ) {
27
+ $template = get_stylesheet_directory() . '/paid-memberships-pro/pages/orders-print.php';
28
+ } elseif ( file_exists( get_template_directory() . '/paid-memberships-pro/pages/orders-print.php' ) ) {
29
+ $template = get_template_directory() . '/paid-memberships-pro/pages/orders-print.php';
30
+ } else {
31
+ $template = PMPRO_DIR . '/adminpages/templates/orders-print.php';
32
+ }
33
+
34
+ require_once( $template );
35
+ ?>
36
+ <script>
37
+ window.print();
38
+ </script>
39
+
adminpages/orders.php CHANGED
@@ -57,6 +57,109 @@
57
  else
58
  $status = "";
59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
 
61
  //deleting?
62
  if(!empty($_REQUEST['delete']))
@@ -81,8 +184,6 @@
81
 
82
  $thisyear = date("Y");
83
 
84
-
85
-
86
  //this array stores fields that should be read only
87
  $read_only_fields = apply_filters("pmpro_orders_read_only_fields", array("code", "payment_transaction_id", "subscription_transaction_id"));
88
 
@@ -564,7 +665,42 @@
564
  </form>
565
 
566
  <?php } else { ?>
567
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
568
  <form id="posts-filter" method="get" action="">
569
  <h2>
570
  <?php _e('Orders', 'pmpro');?>
@@ -646,8 +782,7 @@
646
 
647
  <?php
648
  //Note: only orders belonging to current levels can be filtered. There is no option for orders belonging to deleted levels
649
- $levels = pmpro_getAllLevels();
650
-
651
  ?>
652
  <select id="l" name="l">
653
  <?php foreach($levels as $level) { ?>
@@ -781,85 +916,6 @@
781
  </p>
782
 
783
  <?php
784
- //some vars for the search
785
- if(isset($_REQUEST['pn']))
786
- $pn = intval($_REQUEST['pn']);
787
- else
788
- $pn = 1;
789
-
790
- if(isset($_REQUEST['limit']))
791
- $limit = intval($_REQUEST['limit']);
792
- else
793
- {
794
- /**
795
- * Filter to set the default number of items to show per page
796
- * on the Orders page in the admin.
797
- *
798
- * @since 1.8.4.5
799
- *
800
- * @param int $limit The number of items to show per page.
801
- */
802
- $limit = apply_filters('pmpro_orders_per_page', 15);
803
- }
804
-
805
- $end = $pn * $limit;
806
- $start = $end - $limit;
807
-
808
- //filters
809
- if($filter == "all" || !$filter)
810
- $condition = "1=1";
811
- elseif($filter == "within-a-date-range")
812
- {
813
- $start_date = $start_year."-".$start_month."-".$start_day;
814
- $end_date = $end_year."-".$end_month."-".$end_day;
815
-
816
- //add times to dates
817
- $start_date = $start_date . " 00:00:00";
818
- $end_date = $end_date . " 23:59:59";
819
-
820
- $condition = "timestamp BETWEEN '".esc_sql($start_date)."' AND '".esc_sql($end_date)."'";
821
- }
822
- elseif($filter == "predefined-date-range")
823
- {
824
- if($predefined_date == "Last Month")
825
- {
826
- $start_date = date("Y-m-d", strtotime("first day of last month", current_time("timestamp")));
827
- $end_date = date("Y-m-d", strtotime("last day of last month", current_time("timestamp")));
828
- }
829
- elseif($predefined_date == "This Month")
830
- {
831
- $start_date = date("Y-m-d", strtotime("first day of this month", current_time("timestamp")));
832
- $end_date = date("Y-m-d", strtotime("last day of this month", current_time("timestamp")));
833
- }
834
- elseif($predefined_date == "This Year")
835
- {
836
- $year = date('Y');
837
- $start_date = date("Y-m-d", strtotime("first day of January $year", current_time("timestamp")));
838
- $end_date = date("Y-m-d", strtotime("last day of December $year", current_time("timestamp")));
839
- }
840
-
841
- elseif($predefined_date == "Last Year")
842
- {
843
- $year = date('Y') - 1;
844
- $start_date = date("Y-m-d", strtotime("first day of January $year", current_time("timestamp")));
845
- $end_date = date("Y-m-d", strtotime("last day of December $year", current_time("timestamp")));
846
- }
847
-
848
- //add times to dates
849
- $start_date = $start_date . " 00:00:00";
850
- $end_date = $end_date . " 23:59:59";
851
-
852
- $condition = "timestamp BETWEEN '".esc_sql($start_date)."' AND '".esc_sql($end_date)."'";
853
- }
854
- elseif($filter == "within-a-level")
855
- {
856
- $condition = "membership_id = " . esc_sql($l);
857
- }
858
- elseif($filter == "within-a-status")
859
- {
860
- $condition = "status = '" . esc_sql($status) . "' ";
861
- }
862
-
863
  //string search
864
  if($s)
865
  {
@@ -904,7 +960,7 @@
904
  <?php
905
  }
906
  ?>
907
- <table class="widefat">
908
  <thead>
909
  <tr class="thead">
910
  <th><?php _e('ID', 'pmpro');?></th>
@@ -921,6 +977,8 @@
921
  <th></th>
922
  <th></th>
923
  <th></th>
 
 
924
  </tr>
925
  </thead>
926
  <tbody id="orders" class="list:order orders-list">
@@ -997,6 +1055,12 @@
997
  <td align="center">
998
  <a href="javascript:askfirst('<?php echo str_replace("'", "\'", sprintf(__("Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?", "pmpro"), str_replace("'", "", $order->code)));?>', 'admin.php?page=pmpro-orders&delete=<?php echo $order->id;?>'); void(0);"><?php _e('delete', 'pmpro');?></a>
999
  </td>
 
 
 
 
 
 
1000
  </tr>
1001
  <?php
1002
  }
@@ -1013,7 +1077,6 @@
1013
  </tbody>
1014
  </table>
1015
  </form>
1016
-
1017
  <?php
1018
  //add normal args
1019
  $pagination_url = add_query_arg($url_params, get_admin_url(NULL, "/admin.php?page=pmpro-orders"));
@@ -1021,7 +1084,6 @@
1021
  ?>
1022
 
1023
  <?php } ?>
1024
-
1025
  <?php
1026
  require_once(dirname(__FILE__) . "/admin_footer.php");
1027
  ?>
57
  else
58
  $status = "";
59
 
60
+ //some vars for the search
61
+ if(isset($_REQUEST['pn']))
62
+ $pn = intval($_REQUEST['pn']);
63
+ else
64
+ $pn = 1;
65
+
66
+ if(isset($_REQUEST['limit']))
67
+ $limit = intval($_REQUEST['limit']);
68
+ else
69
+ {
70
+ /**
71
+ * Filter to set the default number of items to show per page
72
+ * on the Orders page in the admin.
73
+ *
74
+ * @since 1.8.4.5
75
+ *
76
+ * @param int $limit The number of items to show per page.
77
+ */
78
+ $limit = apply_filters('pmpro_orders_per_page', 15);
79
+ }
80
+
81
+ $end = $pn * $limit;
82
+ $start = $end - $limit;
83
+
84
+ //filters
85
+ if(empty($filter) || $filter === "all")
86
+ {
87
+ $condition = "1=1";
88
+ $filter = "all";
89
+ }
90
+ elseif($filter == "within-a-date-range")
91
+ {
92
+ $start_date = $start_year."-".$start_month."-".$start_day;
93
+ $end_date = $end_year."-".$end_month."-".$end_day;
94
+
95
+ //add times to dates
96
+ $start_date = $start_date . " 00:00:00";
97
+ $end_date = $end_date . " 23:59:59";
98
+
99
+ $condition = "timestamp BETWEEN '".esc_sql($start_date)."' AND '".esc_sql($end_date)."'";
100
+ }
101
+ elseif($filter == "predefined-date-range")
102
+ {
103
+ if($predefined_date == "Last Month")
104
+ {
105
+ $start_date = date("Y-m-d", strtotime("first day of last month", current_time("timestamp")));
106
+ $end_date = date("Y-m-d", strtotime("last day of last month", current_time("timestamp")));
107
+ }
108
+ elseif($predefined_date == "This Month")
109
+ {
110
+ $start_date = date("Y-m-d", strtotime("first day of this month", current_time("timestamp")));
111
+ $end_date = date("Y-m-d", strtotime("last day of this month", current_time("timestamp")));
112
+ }
113
+ elseif($predefined_date == "This Year")
114
+ {
115
+ $year = date('Y');
116
+ $start_date = date("Y-m-d", strtotime("first day of January $year", current_time("timestamp")));
117
+ $end_date = date("Y-m-d", strtotime("last day of December $year", current_time("timestamp")));
118
+ }
119
+
120
+ elseif($predefined_date == "Last Year")
121
+ {
122
+ $year = date('Y') - 1;
123
+ $start_date = date("Y-m-d", strtotime("first day of January $year", current_time("timestamp")));
124
+ $end_date = date("Y-m-d", strtotime("last day of December $year", current_time("timestamp")));
125
+ }
126
+
127
+ //add times to dates
128
+ $start_date = $start_date . " 00:00:00";
129
+ $end_date = $end_date . " 23:59:59";
130
+
131
+ $condition = "timestamp BETWEEN '".esc_sql($start_date)."' AND '".esc_sql($end_date)."'";
132
+ }
133
+ elseif($filter == "within-a-level")
134
+ {
135
+ $condition = "membership_id = " . esc_sql($l);
136
+ }
137
+ elseif($filter == "within-a-status")
138
+ {
139
+ $condition = "status = '" . esc_sql($status) . "' ";
140
+ }
141
+
142
+ //emailing?
143
+ if(!empty($_REQUEST['email']) && !empty($_REQUEST['order']))
144
+ {
145
+ $email = new PMProEmail();
146
+ $user = get_user_by('email', $_REQUEST['email']);
147
+ $order = new MemberOrder($_REQUEST['order']);
148
+ if($email->sendBillableInvoiceEmail($user, $order))
149
+ {
150
+ $pmpro_msg = __("Invoice emailed successfully.", "pmpro");
151
+ $pmpro_msgt = "success";
152
+ }
153
+ else
154
+ {
155
+ $pmpro_msg = __("Error emailing invoice.", "pmpro");
156
+ $pmpro_msgt = "error";
157
+ }
158
+
159
+ //clean up so we stay on the orders list view
160
+ unset($_REQUEST['order']);
161
+ $order = NULL;
162
+ }
163
 
164
  //deleting?
165
  if(!empty($_REQUEST['delete']))
184
 
185
  $thisyear = date("Y");
186
 
 
 
187
  //this array stores fields that should be read only
188
  $read_only_fields = apply_filters("pmpro_orders_read_only_fields", array("code", "payment_transaction_id", "subscription_transaction_id"));
189
 
665
  </form>
666
 
667
  <?php } else { ?>
668
+ <?php
669
+ /**
670
+ * Code to handle emailing billable invoices.
671
+ *
672
+ * @since 1.8.6
673
+ */
674
+ ?>
675
+ <script>
676
+ // Update fields in email modal.
677
+ jQuery(document).ready(function($) {
678
+ var order, order_id;
679
+ $('.email_link').click(function() {
680
+ order_id = $(this).data('order');
681
+ $('input[name=order]').val(order_id);
682
+ // Get email address from order ID
683
+ data = {
684
+ action: 'pmpro_get_order_json',
685
+ order_id: order_id
686
+ };
687
+ $.post(ajaxurl, data, function(response) {
688
+ order = JSON.parse(response);
689
+ $('input[name=email]').val(order.Email);
690
+ });
691
+ });
692
+ });
693
+ </script>
694
+ <?php add_thickbox(); ?>
695
+ <div id="email_invoice" style="display:none;">
696
+ <h3><?php _e('Email Invoice', 'pmpro'); ?></h3>
697
+ <form method="post" action="">
698
+ <input type="hidden" name="order" value="" />
699
+ <?php _e('Send an invoice for this order to: ', 'pmpro'); ?>
700
+ <input type="text" value="" name="email" />
701
+ <button class="button button-primary alignright"><?php _e('Send Email', 'pmpro'); ?></button>
702
+ </form>
703
+ </div>
704
  <form id="posts-filter" method="get" action="">
705
  <h2>
706
  <?php _e('Orders', 'pmpro');?>
782
 
783
  <?php
784
  //Note: only orders belonging to current levels can be filtered. There is no option for orders belonging to deleted levels
785
+ $levels = pmpro_getAllLevels(true, true);
 
786
  ?>
787
  <select id="l" name="l">
788
  <?php foreach($levels as $level) { ?>
916
  </p>
917
 
918
  <?php
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
919
  //string search
920
  if($s)
921
  {
960
  <?php
961
  }
962
  ?>
963
+ <table class="widefat">
964
  <thead>
965
  <tr class="thead">
966
  <th><?php _e('ID', 'pmpro');?></th>
977
  <th></th>
978
  <th></th>
979
  <th></th>
980
+ <th></th>
981
+ <th></th>
982
  </tr>
983
  </thead>
984
  <tbody id="orders" class="list:order orders-list">
1055
  <td align="center">
1056
  <a href="javascript:askfirst('<?php echo str_replace("'", "\'", sprintf(__("Deleting orders is permanent and can affect active users. Are you sure you want to delete order %s?", "pmpro"), str_replace("'", "", $order->code)));?>', 'admin.php?page=pmpro-orders&delete=<?php echo $order->id;?>'); void(0);"><?php _e('delete', 'pmpro');?></a>
1057
  </td>
1058
+ <td align="center">
1059
+ <a href="admin-ajax.php?action=pmpro_orders_print_view&order=<?php echo $order->id; ?>" target="_blank"><?php _e('print', 'pmpro');?></a>
1060
+ </td>
1061
+ <td align="center">
1062
+ <a href="#TB_inline?width=600&height=200&inlineId=email_invoice" class="thickbox email_link" data-order="<?php echo $order->id; ?>"><?php _e('email', 'pmpro');?></a>
1063
+ </td>
1064
  </tr>
1065
  <?php
1066
  }
1077
  </tbody>
1078
  </table>
1079
  </form>
 
1080
  <?php
1081
  //add normal args
1082
  $pagination_url = add_query_arg($url_params, get_admin_url(NULL, "/admin.php?page=pmpro-orders"));
1084
  ?>
1085
 
1086
  <?php } ?>
 
1087
  <?php
1088
  require_once(dirname(__FILE__) . "/admin_footer.php");
1089
  ?>
adminpages/templates/orders-print.php ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Template for Order Print Views
4
+ *
5
+ * @since 1.8.6
6
+ */
7
+ ?>
8
+ <table style="width:600px;margin-left:auto;margin-right:auto;">
9
+ <thead>
10
+ <tr>
11
+ <td rowspan="2" style="width:80%;">
12
+ <h2><?php bloginfo( 'sitename' ); ?></h2>
13
+ </td>
14
+ <td><?php echo __('Invoice #: ', 'pmpro') . '&nbsp;' . $order->code; ?></td>
15
+ </tr>
16
+ <tr>
17
+ <td>
18
+ <?php echo __( 'Date:', 'pmpro' ) . '&nbsp;' . date( 'Y-m-d', $order->timestamp ) ?>
19
+ </td>
20
+ </tr>
21
+ <?php if(!empty($order->billing->name)): ?>
22
+ <tr>
23
+ <td>
24
+ <strong><?php _e( 'Bill to:', 'pmpro' ); ?></strong><br>
25
+ <?php
26
+ echo pmpro_formatAddress(
27
+ $order->billing->name,
28
+ $order->billing->street,
29
+ "",
30
+ $order->billing->city,
31
+ $order->billing->state,
32
+ $order->billing->zip,
33
+ $order->billing->country,
34
+ $order->billing->phone
35
+ );
36
+ ?>
37
+ <?php endif; ?>
38
+ </td>
39
+ </tr>
40
+ </thead>
41
+ <tbody>
42
+ <tr>
43
+ <td colspan="2">
44
+ <table style="width:100%;border-width:1px;border-style:solid;border-collapse:collapse;">
45
+ <tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
46
+ <th style="text-align:center;border-width:1px;border-style:solid;border-collapse:collapse;"><?php _e('ID', 'pmpro'); ?></th>
47
+ <th style="border-width:1px;border-style:solid;border-collapse:collapse;"><?php _e('Item', 'pmpro'); ?></th>
48
+ <th style="border-width:1px;border-style:solid;border-collapse:collapse;"><?php _e('Price', 'pmpro'); ?></th>
49
+ </tr>
50
+ <tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
51
+ <td style="text-align:center;border-width:1px;border-style:solid;border-collapse:collapse;"><?php echo $level->id; ?></td>
52
+ <td style="border-width:1px;border-style:solid;border-collapse:collapse;"><?php echo $level->name; ?></td>
53
+ <td style="text-align:right;"><?php echo $order->subtotal; ?></td>
54
+ </tr>
55
+ <tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
56
+ <th colspan="2" style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;"><?php _e('Subtotal', 'pmpro'); ?></th>
57
+ <td style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;"><?php echo $order->subtotal; ?></td>
58
+ </tr>
59
+ <tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
60
+ <th colspan="2" style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;"><?php _e('Tax', 'pmpro'); ?></th>
61
+ <td style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;"><?php echo $order->tax; ?></td>
62
+ </tr>
63
+ <tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
64
+ <th colspan="2" style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;"><?php _e('Total', 'pmpro'); ?></th>
65
+ <th style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;"><?php echo pmpro_formatPrice($order->total); ?></th>
66
+ </tr>
67
+ </table>
68
+ </td>
69
+ </tr>
70
+ </tbody>
71
+ </table>
classes/class.pmproemail.php CHANGED
@@ -821,4 +821,55 @@
821
 
822
  return $this->sendEmail();
823
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
824
  }
821
 
822
  return $this->sendEmail();
823
  }
824
+
825
+ /**
826
+ * Send billable invoice email.
827
+ *
828
+ * @since 1.8.6
829
+ *
830
+ * @param WP_User $user
831
+ * @param MemberOrder $order
832
+ *
833
+ * @return bool Whether the email was sent successfully.
834
+ */
835
+ function sendBillableInvoiceEmail($user = NULL, $order = NULL)
836
+ {
837
+ global $current_user;
838
+
839
+ if(!$user)
840
+ $user = $current_user;
841
+
842
+ if(!$user || !$order)
843
+ return false;
844
+
845
+ $level = pmpro_getLevel($order->membership_id);
846
+
847
+ $this->email = $user->user_email;
848
+ $this->subject = __('Invoice for Order #: ', 'pmpro') . $order->code;
849
+ $this->template = "billable_invoice";
850
+
851
+ // Load invoice template
852
+ if ( file_exists( get_stylesheet_directory() . '/paid-memberships-pro/pages/orders-print.php' ) ) {
853
+ $template = get_stylesheet_directory() . '/paid-memberships-pro/pages/orders-print.php';
854
+ } elseif ( file_exists( get_template_directory() . '/paid-memberships-pro/pages/orders-print.php' ) ) {
855
+ $template = get_template_directory() . '/paid-memberships-pro/pages/orders-print.php';
856
+ } else {
857
+ $template = PMPRO_DIR . '/adminpages/templates/orders-print.php';
858
+ }
859
+
860
+ ob_start();
861
+ require_once( $template );
862
+
863
+ $invoice = ob_get_contents();
864
+ ob_end_clean();
865
+
866
+ $this->data = array(
867
+ 'order_code' => $order->code,
868
+ 'login_link' => wp_login_url(pmpro_url("account")),
869
+ 'invoice_link' => wp_login_url(pmpro_url("invoice", "?invoice=" . $order->code)),
870
+ 'invoice' => $invoice
871
+ );
872
+
873
+ return $this->sendEmail();
874
+ }
875
  }
classes/gateways/class.pmprogateway_payflowpro.php CHANGED
@@ -242,6 +242,13 @@
242
  $nvpStr .= "&CITY=" . $order->billing->city . "&STATE=" . $order->billing->state . "&BILLTOCOUNTRY=" . $order->billing->country . "&ZIP=" . $order->billing->zip . "&PHONENUM=" . $order->billing->phone;
243
  }
244
 
 
 
 
 
 
 
 
245
  //for debugging, let's attach this to the class object
246
  $this->nvpStr = $nvpStr;
247
 
@@ -268,6 +275,13 @@
268
  //paypal profile stuff
269
  $nvpStr="&ORIGID=" . $authorization_id;
270
 
 
 
 
 
 
 
 
271
  $this->httpParsedResponseAr = $this->PPHttpPost('V', $nvpStr);
272
 
273
  if("0" == strtoupper($this->httpParsedResponseAr["RESULT"])) {
@@ -316,6 +330,13 @@
316
  $nvpStr .= "&CITY=" . $order->billing->city . "&STATE=" . $order->billing->state . "&BILLTOCOUNTRY=" . $order->billing->country . "&ZIP=" . $order->billing->zip . "&PHONENUM=" . $order->billing->phone;
317
  }
318
 
 
 
 
 
 
 
 
319
  $this->nvpStr = $nvpStr;
320
  $this->httpParsedResponseAr = $this->PPHttpPost('S', $nvpStr);
321
 
@@ -432,6 +453,13 @@
432
  $nvpStr .= "&CITY=" . $order->billing->city . "&STATE=" . $order->billing->state . "&BILLTOCOUNTRY=" . $order->billing->country . "&ZIP=" . $order->billing->zip . "&PHONENUM=" . $order->billing->phone;
433
  }
434
 
 
 
 
 
 
 
 
435
  $this->nvpStr = $nvpStr;
436
  $this->httpParsedResponseAr = $this->PPHttpPost('R', $nvpStr);
437
 
@@ -474,6 +502,13 @@
474
  $nvpStr .= "&CITY=" . $order->billing->city . "&STATE=" . $order->billing->state . "&BILLTOCOUNTRY=" . $order->billing->country . "&ZIP=" . $order->billing->zip . "&PHONENUM=" . $order->billing->phone;
475
  }
476
 
 
 
 
 
 
 
 
477
  $this->nvpStr = $nvpStr;
478
  $this->httpParsedResponseAr = $this->PPHttpPost('R', $nvpStr);
479
 
@@ -499,6 +534,13 @@
499
  //paypal profile stuff
500
  $nvpStr = "&ORIGPROFILEID=" . $order->subscription_transaction_id . "&ACTION=C";
501
 
 
 
 
 
 
 
 
502
  $this->nvpStr = $nvpStr;
503
  $this->httpParsedResponseAr = $this->PPHttpPost('R', $nvpStr);
504
 
242
  $nvpStr .= "&CITY=" . $order->billing->city . "&STATE=" . $order->billing->state . "&BILLTOCOUNTRY=" . $order->billing->country . "&ZIP=" . $order->billing->zip . "&PHONENUM=" . $order->billing->phone;
243
  }
244
 
245
+ /**
246
+ * Filter NVP string
247
+ *
248
+ * @since 1.8.5.6
249
+ */
250
+ $nvpStr = apply_filters('pmpro_payflow_authorize_nvpstr', $nvpStr, $this);
251
+
252
  //for debugging, let's attach this to the class object
253
  $this->nvpStr = $nvpStr;
254
 
275
  //paypal profile stuff
276
  $nvpStr="&ORIGID=" . $authorization_id;
277
 
278
+ /**
279
+ * Filter NVP string
280
+ *
281
+ * @since 1.8.5.6
282
+ */
283
+ $nvpStr = apply_filters('pmpro_payflow_void_nvpstr', $nvpStr, $this);
284
+
285
  $this->httpParsedResponseAr = $this->PPHttpPost('V', $nvpStr);
286
 
287
  if("0" == strtoupper($this->httpParsedResponseAr["RESULT"])) {
330
  $nvpStr .= "&CITY=" . $order->billing->city . "&STATE=" . $order->billing->state . "&BILLTOCOUNTRY=" . $order->billing->country . "&ZIP=" . $order->billing->zip . "&PHONENUM=" . $order->billing->phone;
331
  }
332
 
333
+ /**
334
+ * Filter NVP string
335
+ *
336
+ * @since 1.8.5.6
337
+ */
338
+ $nvpStr = apply_filters('pmpro_payflow_charge_nvpstr', $nvpStr, $this);
339
+
340
  $this->nvpStr = $nvpStr;
341
  $this->httpParsedResponseAr = $this->PPHttpPost('S', $nvpStr);
342
 
453
  $nvpStr .= "&CITY=" . $order->billing->city . "&STATE=" . $order->billing->state . "&BILLTOCOUNTRY=" . $order->billing->country . "&ZIP=" . $order->billing->zip . "&PHONENUM=" . $order->billing->phone;
454
  }
455
 
456
+ /**
457
+ * Filter NVP string
458
+ *
459
+ * @since 1.8.5.6
460
+ */
461
+ $nvpStr = apply_filters('pmpro_payflow_subscribe_nvpstr', $nvpStr, $this);
462
+
463
  $this->nvpStr = $nvpStr;
464
  $this->httpParsedResponseAr = $this->PPHttpPost('R', $nvpStr);
465
 
502
  $nvpStr .= "&CITY=" . $order->billing->city . "&STATE=" . $order->billing->state . "&BILLTOCOUNTRY=" . $order->billing->country . "&ZIP=" . $order->billing->zip . "&PHONENUM=" . $order->billing->phone;
503
  }
504
 
505
+ /**
506
+ * Filter NVP string
507
+ *
508
+ * @since 1.8.5.6
509
+ */
510
+ $nvpStr = apply_filters('pmpro_payflow_update_nvpstr', $nvpStr, $this);
511
+
512
  $this->nvpStr = $nvpStr;
513
  $this->httpParsedResponseAr = $this->PPHttpPost('R', $nvpStr);
514
 
534
  //paypal profile stuff
535
  $nvpStr = "&ORIGPROFILEID=" . $order->subscription_transaction_id . "&ACTION=C";
536
 
537
+ /**
538
+ * Filter NVP string
539
+ *
540
+ * @since 1.8.5.6
541
+ */
542
+ $nvpStr = apply_filters('pmpro_payflow_cancel_nvpstr', $nvpStr, $this);
543
+
544
  $this->nvpStr = $nvpStr;
545
  $this->httpParsedResponseAr = $this->PPHttpPost('R', $nvpStr);
546
 
classes/gateways/class.pmprogateway_stripe.php CHANGED
@@ -231,8 +231,7 @@
231
  {
232
  //build array for creating token
233
  var args = {
234
- number: jQuery('#AccountNumber').val(),
235
- cvc: jQuery('#CVV').val(),
236
  exp_month: jQuery('#ExpirationMonth').val(),
237
  exp_year: jQuery('#ExpirationYear').val()
238
  <?php
@@ -251,6 +250,11 @@
251
  ?>
252
  };
253
 
 
 
 
 
 
254
  if (jQuery('#bfirstname').length && jQuery('#blastname').length)
255
  args['name'] = jQuery.trim(jQuery('#bfirstname').val() + ' ' + jQuery('#blastname').val());
256
 
@@ -283,7 +287,7 @@
283
  // insert the token into the form so it gets submitted to the server
284
  form$.append("<input type='hidden' name='stripeToken' value='" + token + "'/>");
285
 
286
- console.log(response);
287
 
288
  //insert fields for other card fields
289
  if(jQuery('#CardType[name=CardType]').length)
@@ -1268,7 +1272,7 @@
1268
  }
1269
  catch (Exception $e)
1270
  {
1271
- $order->error = __("Error creating plan with Stripe:", "pmpro") . $e->getMessage();
1272
  $order->shorterror = $order->error;
1273
  return false;
1274
  }
231
  {
232
  //build array for creating token
233
  var args = {
234
+ number: jQuery('#AccountNumber').val(),
 
235
  exp_month: jQuery('#ExpirationMonth').val(),
236
  exp_year: jQuery('#ExpirationYear').val()
237
  <?php
250
  ?>
251
  };
252
 
253
+ //add CVC if not blank
254
+ if(jQuery('#CVV').val().length)
255
+ args['cvc'] = jQuery('#CVV').val();
256
+
257
+ //add first and last name if not blank
258
  if (jQuery('#bfirstname').length && jQuery('#blastname').length)
259
  args['name'] = jQuery.trim(jQuery('#bfirstname').val() + ' ' + jQuery('#blastname').val());
260
 
287
  // insert the token into the form so it gets submitted to the server
288
  form$.append("<input type='hidden' name='stripeToken' value='" + token + "'/>");
289
 
290
+ //console.log(response);
291
 
292
  //insert fields for other card fields
293
  if(jQuery('#CardType[name=CardType]').length)
1272
  }
1273
  catch (Exception $e)
1274
  {
1275
+ $order->error = __("Error getting subscription with Stripe:", "pmpro") . $e->getMessage();
1276
  $order->shorterror = $order->error;
1277
  return false;
1278
  }
css/frontend.css CHANGED
@@ -67,7 +67,7 @@ form.pmpro_form label {float: left; margin: 3px 10px 0 0; width: 200px; font-wei
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, .input, 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; }
@@ -177,9 +177,6 @@ li.pmpro_more {list-style-type: none; text-align: center; margin-left: -20px; pa
177
 
178
  .pmpro_small {font-size: .8em;}
179
 
180
- /* Fixes for Twentyfiften and other themes. */
181
- #your-profile input {display: inline-block; width: auto; } /* front end profile via Theme My Login */
182
-
183
  @media (max-width:768px){
184
  #pmpro_levels_table {border: none; }
185
  #pmpro_levels_table th {display: none; }
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; }
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; }
email/billable_invoice.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <p>Thank you for your membership to !!sitename!!. Below is your invoice for order #: !!order_code!!</p>
2
+
3
+ !!invoice!!
4
+
5
+ <p>Log in to your membership account here: !!login_link!!</p>
6
+ <p>To view an online version of this invoice, click here: !!invoice_link!!</p>
includes/currencies.php CHANGED
@@ -3,12 +3,22 @@
3
  global $pmpro_currencies, $pmpro_default_currency;
4
  $pmpro_default_currency = apply_filters("pmpro_default_currency", "USD");
5
 
 
 
 
 
 
 
 
 
 
 
6
  $pmpro_currencies = array(
7
  'USD' => __('US Dollars (&#36;)', 'pmpro'),
8
  'EUR' => array(
9
  'name' => __('Euros (&euro;)', 'pmpro'),
10
  'symbol' => '&euro;',
11
- 'position' => 'right'
12
  ),
13
  'GBP' => array(
14
  'name' => __('Pounds Sterling (&pound;)', 'pmpro'),
3
  global $pmpro_currencies, $pmpro_default_currency;
4
  $pmpro_default_currency = apply_filters("pmpro_default_currency", "USD");
5
 
6
+ function pmpro_euro_position_from_locale($position = 'right')
7
+ {
8
+ $locale = get_locale();
9
+ if(strpos($locale, 'en_') === 0)
10
+ {
11
+ $position = 'left';
12
+ }
13
+ return $position;
14
+ }
15
+
16
  $pmpro_currencies = array(
17
  'USD' => __('US Dollars (&#36;)', 'pmpro'),
18
  'EUR' => array(
19
  'name' => __('Euros (&euro;)', 'pmpro'),
20
  'symbol' => '&euro;',
21
+ 'position' => apply_filters("pmpro_euro_position", pmpro_euro_position_from_locale())
22
  ),
23
  'GBP' => array(
24
  'name' => __('Pounds Sterling (&pound;)', 'pmpro'),
includes/functions.php CHANGED
@@ -486,18 +486,28 @@ function pmpro_showRequiresMembershipMessage()
486
  }
487
  }
488
 
489
- /* pmpro_hasMembershipLevel() checks if the passed user is a member of the passed level
 
490
  *
 
491
  * $level may either be the ID or name of the desired membership_level. (or an array of such)
492
  * If $user_id is omitted, the value will be retrieved from $current_user.
493
  *
494
- * Return values:
495
- * Success returns boolean true.
496
- * Failure returns a string containing the error message.
 
 
 
 
 
 
 
 
497
  */
498
  function pmpro_hasMembershipLevel($levels = NULL, $user_id = NULL)
499
  {
500
- global $current_user, $all_membership_levels, $wpdb;
501
 
502
  $return = false;
503
 
@@ -530,13 +540,18 @@ function pmpro_hasMembershipLevel($levels = NULL, $user_id = NULL)
530
 
531
  if(empty($membership_levels))
532
  {
533
- //user has no levels just check if 0, L, or -L was sent in one of the levels
534
  if(in_array(0, $levels, true) || in_array("0", $levels))
535
  $return = true;
536
  elseif(in_array("L", $levels) || in_array("l", $levels))
537
  $return = (!empty($user_id) && $user_id == $current_user->ID);
538
  elseif(in_array("-L", $levels) || in_array("-l", $levels))
539
- $return = (empty($user_id) || $user_id != $current_user->ID);
 
 
 
 
 
540
  }
541
  else
542
  {
@@ -554,9 +569,9 @@ function pmpro_hasMembershipLevel($levels = NULL, $user_id = NULL)
554
  if(empty($user_id) || $user_id != $current_user->ID)
555
  $return = true;
556
  }
557
- elseif($level == "0")
558
  {
559
- continue; //user with levels so not a "non-member"
560
  }
561
  else
562
  {
@@ -667,6 +682,20 @@ function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status
667
  }
668
  }
669
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
670
  //should we cancel their gateway subscriptions?
671
  $pmpro_cancel_previous_subscriptions = true;
672
  if(isset($_REQUEST['cancel_membership']) && $_REQUEST['cancel_membership'] == false)
@@ -749,19 +778,20 @@ function pmpro_changeMembershipLevel($level, $user_id = NULL, $old_level_status
749
  }
750
  }
751
 
752
- //get level id
753
- if(is_array($level))
754
- $level_id = $level['membership_id']; //custom level
755
- else
756
- $level_id = $level; //just id
757
-
758
  //remove cached level
759
  global $all_membership_levels;
760
  unset($all_membership_levels[$user_id]);
761
 
762
  //update user data and call action
763
  pmpro_set_current_user();
764
- do_action("pmpro_after_change_membership_level", $level_id, $user_id); //$level is the $level_id here
 
 
 
 
 
 
 
765
  return true;
766
  }
767
 
@@ -1367,6 +1397,18 @@ function pmpro_getMembershipLevelForUser($user_id = NULL, $force = false)
1367
  JOIN {$wpdb->pmpro_memberships_users} AS mu ON (l.id = mu.membership_id)
1368
  WHERE mu.user_id = $user_id AND mu.status = 'active'
1369
  LIMIT 1");
 
 
 
 
 
 
 
 
 
 
 
 
1370
  return $all_membership_levels[$user_id];
1371
  }
1372
  }
@@ -1397,7 +1439,8 @@ function pmpro_getMembershipLevelsForUser($user_id = NULL, $include_inactive = f
1397
  $user_id = intval($user_id);
1398
 
1399
  global $wpdb;
1400
- return $wpdb->get_results("SELECT
 
1401
  l.id AS ID,
1402
  l.id as id,
1403
  mu.id as subscription_id,
@@ -1418,6 +1461,18 @@ function pmpro_getMembershipLevelsForUser($user_id = NULL, $include_inactive = f
1418
  FROM {$wpdb->pmpro_membership_levels} AS l
1419
  JOIN {$wpdb->pmpro_memberships_users} AS mu ON (l.id = mu.membership_id)
1420
  WHERE mu.user_id = $user_id".($include_inactive?"":" AND mu.status = 'active'"));
 
 
 
 
 
 
 
 
 
 
 
 
1421
  }
1422
 
1423
  /* pmpro_getLevel() returns the level object for a level
486
  }
487
  }
488
 
489
+ /**
490
+ * Function to check if a user has specified membership levels.
491
  *
492
+ * pmpro_hasMembershipLevel() checks if the passed user is a member of the passed level
493
  * $level may either be the ID or name of the desired membership_level. (or an array of such)
494
  * If $user_id is omitted, the value will be retrieved from $current_user.
495
  *
496
+ * Return values:
497
+ * * Success returns boolean true.
498
+ * * Failure returns a string containing the error message.
499
+ *
500
+ * @since 1.8.5 Added 'e' option for expired members.
501
+ * @since 1.0.0
502
+ *
503
+ * @param mixed $levels The levels to check.
504
+ * @param int $user_id The user ID to check.
505
+ *
506
+ * @return bool Result of membership query.
507
  */
508
  function pmpro_hasMembershipLevel($levels = NULL, $user_id = NULL)
509
  {
510
+ global $current_user, $wpdb;
511
 
512
  $return = false;
513
 
540
 
541
  if(empty($membership_levels))
542
  {
543
+ //user has no levels just check if 0, L, -1, or e was sent in one of the levels
544
  if(in_array(0, $levels, true) || in_array("0", $levels))
545
  $return = true;
546
  elseif(in_array("L", $levels) || in_array("l", $levels))
547
  $return = (!empty($user_id) && $user_id == $current_user->ID);
548
  elseif(in_array("-L", $levels) || in_array("-l", $levels))
549
+ $return = (empty($user_id) || $user_id != $current_user->ID);
550
+ elseif(in_array("E", $levels) || in_array("e", $levels)) {
551
+ $sql = "SELECT id FROM $wpdb->pmpro_memberships_users WHERE user_id=$user_id AND status='expired' LIMIT 1";
552
+ $expired = $wpdb->get_var($sql);
553
+ return !empty($expired);
554
+ }
555
  }
556
  else
557
  {
569
  if(empty($user_id) || $user_id != $current_user->ID)
570
  $return = true;
571
  }
572
+ elseif($level == "0" || strtoupper($level) == "E")
573
  {
574
+ continue; //user with levels so not a "non-member" or expired
575
  }
576
  else
577
  {
682
  }
683
  }
684
 
685
+ //get level id
686
+ if(is_array($level))
687
+ $level_id = $level['membership_id']; //custom level
688
+ else
689
+ $level_id = $level; //just id
690
+
691
+ /**
692
+ * Action to run before the membership level changes.
693
+ *
694
+ * @param int $level_id ID of the level changed to.
695
+ * @param int $user_id ID of the user changed.
696
+ */
697
+ do_action("pmpro_before_change_membership_level", $level_id, $user_id);
698
+
699
  //should we cancel their gateway subscriptions?
700
  $pmpro_cancel_previous_subscriptions = true;
701
  if(isset($_REQUEST['cancel_membership']) && $_REQUEST['cancel_membership'] == false)
778
  }
779
  }
780
 
 
 
 
 
 
 
781
  //remove cached level
782
  global $all_membership_levels;
783
  unset($all_membership_levels[$user_id]);
784
 
785
  //update user data and call action
786
  pmpro_set_current_user();
787
+
788
+ /**
789
+ * Action to run after the membership level changes.
790
+ *
791
+ * @param int $level_id ID of the level changed to.
792
+ * @param int $user_id ID of the user changed.
793
+ */
794
+ do_action("pmpro_after_change_membership_level", $level_id, $user_id);
795
  return true;
796
  }
797
 
1397
  JOIN {$wpdb->pmpro_memberships_users} AS mu ON (l.id = mu.membership_id)
1398
  WHERE mu.user_id = $user_id AND mu.status = 'active'
1399
  LIMIT 1");
1400
+
1401
+ /**
1402
+ * pmpro_get_membership_level_for_user filter.
1403
+ *
1404
+ * Filters the returned level.
1405
+ *
1406
+ * @since 1.8.5.4
1407
+ *
1408
+ * @param object $level Level object.
1409
+ */
1410
+ $all_membership_levels[$user_id] = apply_filters('pmpro_get_membership_level_for_user', $all_membership_levels[$user_id]);
1411
+
1412
  return $all_membership_levels[$user_id];
1413
  }
1414
  }
1439
  $user_id = intval($user_id);
1440
 
1441
  global $wpdb;
1442
+
1443
+ $levels = $wpdb->get_results("SELECT
1444
  l.id AS ID,
1445
  l.id as id,
1446
  mu.id as subscription_id,
1461
  FROM {$wpdb->pmpro_membership_levels} AS l
1462
  JOIN {$wpdb->pmpro_memberships_users} AS mu ON (l.id = mu.membership_id)
1463
  WHERE mu.user_id = $user_id".($include_inactive?"":" AND mu.status = 'active'"));
1464
+ /**
1465
+ * pmpro_get_membership_levels_for_user filter.
1466
+ *
1467
+ * Filters the returned levels.
1468
+ *
1469
+ * @since 1.8.5.4
1470
+ *
1471
+ * @param array $levels Array of level objects.
1472
+ */
1473
+ $levels = apply_filters('pmpro_get_membership_levels_for_user', $levels);
1474
+
1475
+ return $levels;
1476
  }
1477
 
1478
  /* pmpro_getLevel() returns the level object for a level
includes/profile.php CHANGED
@@ -344,4 +344,5 @@ function pmpro_membership_level_profile_fields_update()
344
  }
345
  add_action( 'show_user_profile', 'pmpro_membership_level_profile_fields' );
346
  add_action( 'edit_user_profile', 'pmpro_membership_level_profile_fields' );
347
- add_action( 'profile_update', 'pmpro_membership_level_profile_fields_update' );
 
344
  }
345
  add_action( 'show_user_profile', 'pmpro_membership_level_profile_fields' );
346
  add_action( 'edit_user_profile', 'pmpro_membership_level_profile_fields' );
347
+ add_action( 'personal_options_update', 'pmpro_membership_level_profile_fields_update' );
348
+ add_action( 'edit_user_profile_update', 'pmpro_membership_level_profile_fields_update' );
includes/services.php CHANGED
@@ -69,6 +69,30 @@ function pmpro_wp_ajax_orders_csv()
69
  }
70
  add_action('wp_ajax_orders_csv', 'pmpro_wp_ajax_orders_csv');
71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  function pmpro_update_level_order() {
73
  echo pmpro_setOption('level_order');
74
  exit;
69
  }
70
  add_action('wp_ajax_orders_csv', 'pmpro_wp_ajax_orders_csv');
71
 
72
+ /**
73
+ * Load the Orders print view.
74
+ *
75
+ * @since 1.8.6
76
+ */
77
+ function pmpro_orders_print_view() {
78
+ require_once(dirname(__FILE__) . "/../adminpages/orders-print.php");
79
+ exit;
80
+ }
81
+ add_action('wp_ajax_pmpro_orders_print_view', 'pmpro_orders_print_view');
82
+
83
+ /**
84
+ * Get order JSON.
85
+ *
86
+ * @since 1.8.6
87
+ */
88
+ function pmpro_get_order_json() {
89
+ $order_id = $_REQUEST['order_id'];
90
+ $order = new MemberOrder($order_id);
91
+ echo json_encode($order);
92
+ exit;
93
+ }
94
+ add_action('wp_ajax_pmpro_get_order_json', 'pmpro_get_order_json');
95
+
96
  function pmpro_update_level_order() {
97
  echo pmpro_setOption('level_order');
98
  exit;
languages/email/vi_VN/admin_change.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <p>Admin của !!sitename!! đã thay đổi kiểu thành viên của bạn.</p>
2
+
3
+ <p>!!membership_change!!.</p>
4
+
5
+ <p>Nếu bạn không yêu cầu thay đổi kiểu thành viên và muốn biết thêm thông tin xin vui lòng liên hệ với chúng tôi tại !!siteemail!!</p>
6
+
7
+ <p>Đăng nhập vào tài khoản thành viên của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/admin_change_admin.html ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <p>Admin của !!sitename!! đã thay đổi kiểu thành viên cho !!name!!.</p>
2
+
3
+ <p>!!membership_change!!.</p>
4
+
5
+ <p>Đăng nhập với WordPress admin ở đây: !!login_link!!</p>
languages/email/vi_VN/billing.html ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Thông tin thanh toán của bạn tại !!sitename!! đã thay đổi.</p>
2
+
3
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Thông tin thanh toán:<br />
6
+ !!billing_address!!
7
+ </p>
8
+
9
+ <p>
10
+ !!cardtype!!: !!accountnumber!!<br />
11
+ Hết hạn: !!expirationmonth!!/!!expirationyear!!
12
+ </p>
13
+
14
+ <p>Nếu bạn không yêu cầu thay đổi thông tin thanh toán xin vui lòng liên hệ với chúng tôi tại !!siteemail!!</p>
15
+
16
+ <p>Đăng nhập vào tài khoản thành viên của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/billing_admin.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p> cho !!display_name!! tại !!sitename!! đã thay đổi.</p>
2
+
3
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Thông tin thanh toán:<br />
6
+ !!billing_name!!<br />
7
+ !!billing_street!!<br />
8
+ !!billing_city!!, !!billing_state!! !!billing_zip!! !!billing_country!!
9
+ !!billing_phone!!
10
+ </p>
11
+
12
+ <p>
13
+ !!cardtype!!: !!accountnumber!!<br />
14
+ Hết hạn: !!expirationmonth!!/!!expirationyear!!
15
+ </p>
16
+
17
+ <p>Đăng nhập vào bảng điều khiển WordPressZ ở đây: !!login_link!!</p>
languages/email/vi_VN/billing_failure.html ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Việc thanh toán tiền cho đăng ký học này tại !!sitename!! đã thất bại. <strong> Vui lòng click vào link dưới đây để đăng nhập và cập nhật thông tin thanh toán để tránh bị ngừng tài khoản. !!login_link!!</strong></p>
2
+
3
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
4
+ <p>Các thông tin tài khoản gần đây nhất mà chúng tôi có trong hồ sơ là:</p>
5
+
6
+ <p>!!billing_address!!</p>
7
+
8
+ <p>
9
+ !!cardtype!!: !!accountnumber!!<br />
10
+ Hết hạn: !!expirationmonth!!/!!expirationyear!!
11
+ </p>
languages/email/vi_VN/billing_failure_admin.html ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Thanh toán thất bại</p>
2
+
3
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
4
+ <p>Các thông tin tài khoản gần đây nhất mà chúng tôi có trong hồ sơ là is:</p>
5
+
6
+ <p>!!billing_address!!</p>
7
+
8
+ <p>
9
+ !!cardtype!!: !!accountnumber!!<br />
10
+ Hết hạn: !!expirationmonth!!/!!expirationyear!!
11
+ </p>
languages/email/vi_VN/cancel.html ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <p>Quyền thành viên của bạn !!sitename!! đã bị hủy bỏ.</p>
2
+
3
+ <p>Nếu bạn không yêu cầu hủy bỏ và muốn biết thêm thông tin xin vui lòng liên hệ với chúng tôi tại !!siteemail!!</p>
languages/email/vi_VN/cancel_admin.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Quyên thành viên của !!user_login!! tại !!sitename!! đã bi hủy.</p>
2
+
3
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
4
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
5
+ <p>Ngày bắt đầu: !!startdate!!</p>
6
+ <p>Ngày hủy bỏ: !!enddate!!</p>
7
+
8
+ <p>Đăng nhập để vào phần quản trị của WordPress của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/checkout_check.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Cám ơn bạn đã đăng ký thành viên tại !!sitename!!. Tài khoản thành viên của bạn được kích hoạt ngay bây giờ.</p>
2
+
3
+ !!instructions!!
4
+
5
+ <p>Dưới đây là chi tiết về tài khoản thành viên của bạn và biên nhận của hóa đơn cho việc tạo thành viên lần đầu của bạn.</p>
6
+
7
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
8
+ <p>Kiểu thành viên !!membership_level_name!!</p>
9
+ <p>Phí thành viên: !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Hóa đơn số!!invoice_id!! on !!invoice_date!!<br />
14
+ Hóa Đơn Tổng: !!invoice_total!!
15
+ </p>
16
+
17
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/checkout_check_admin.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Có một thành viên mới thanh toán tại !!sitename!!.</p>
2
+
3
+ <p><strong>Họ đã chọn thanh toán bằng đánh dấu vào.</strong></p>
4
+
5
+ <p>Dưới đây là chi tiết về tài khoản của thành viên mới và biên nhận cho hóa đơn thành viên lần đầu.</p>
6
+
7
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
8
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
9
+ <p>Phí thành viên: !!membership_cost!!</p>
10
+ !!membership_expiration!! !!discount_code!!
11
+
12
+ <p>
13
+ Số hóa đơn!!invoice_id!! on !!invoice_date!!<br />
14
+ Hóa đơn tổng: $!!invoice_total!!
15
+ </p>
16
+
17
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/checkout_express.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Cảm ơn bạn đã đang ký thành viên tại !!sitename!!. Tài kh oản than9hf viên của bạn sẽ được kishs hoạt ngay.</p>
2
+ <p>Dưới đây là chi tiết về tài khoản thành viên của bạn và biên nhận cho hóa đơn cho thành viên lần đầu của bạn.</p>
3
+
4
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
5
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
6
+ <p>Phí thành viên: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Số hóa đơn!!invoice_id!! on !!invoice_date!!<br />
11
+ Hóa đơn tổng: !!invoice_total!!
12
+ </p>
13
+
14
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/checkout_express_admin.html ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Có một thành viên mới thanh toán tại !!sitename!!.</p>
2
+ <p>Dưới đây là chi tiết về tài khoản thành viên của bạn và biên nhận cho hóa đơn cho thành viên lần đầu của bạn.</p>
3
+
4
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
5
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
6
+ <p>Phí thành viên: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Số hóa đơn!!invoice_id!! on !!invoice_date!!<br />
11
+ Hóa đơn tổng: !!invoice_total!!
12
+ </p>
13
+
14
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/checkout_free.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Cảm ơn bạn đã đang ký thành viên tại !!sitename!!. Tài khoản thành viên của bạn sẽ được kích hoạt ngay.</p>
2
+ <p>Below are details about your membership Tài khoản.</p>
3
+
4
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
5
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
6
+ !!membership_expiration!! !!discount_code!!
7
+
8
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/checkout_free_admin.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Có một thành viên mới thanh toán tại !!sitename!!.</p>
2
+ <p>Dưới đây là chi tiết về tài khoản thành viên của bạn.</p>
3
+
4
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
5
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
6
+ !!membership_expiration!! !!discount_code!!
7
+
8
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/checkout_freetrial.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Cảm ơn bạn đã đang ký thành viên tại !!sitename!!. Tài kh oản thành viên của bạn sẽ được kích hoạt ngay.</p>
2
+ <p>Dưới đây là chi tiết về tài khoản thành viên của bạn.</p>
3
+
4
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
5
+ <p>Kiểu thành viên !!membership_level_name!!</p>
6
+ <p>Phí thành viên: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Thông t in thanh toán trong hồ sơ:<br />
11
+ !!billing_address!!
12
+ </p>
13
+
14
+ <p>
15
+ !!cardtype!!: !!accountnumber!!<br />
16
+ Hết hạn: !!expirationmonth!!/!!expirationyear!!
17
+ </p>
18
+
19
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/checkout_freetrial_admin.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Có một thành viên mới thanh toán tại !!sitename!!.</p>
2
+ <p>Dưới đây là chi tiết về tài khoản thành viên của bạn và biên nhận cho hóa đơn cho thành viên lần đầu của bạn.</p>
3
+
4
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
5
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
6
+ <p>Phí thành viên: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Thông t in thanh toán trong hồ sơ:<br />
11
+ !!billing_address!!
12
+ </p>
13
+
14
+ <p>
15
+ !!cardtype!!: !!accountnumber!!<br />
16
+ Hết hạn: !!expirationmonth!!/!!expirationyear!!
17
+ </p>
18
+
19
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/checkout_paid.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Cảm ơn bạn đã đang ký thành viên tại !!sitename!!. Tài kh oản thành viên của bạn sẽ được kích hoạt ngay.</p>
2
+ <p>Dưới đây là chi tiết về tài khoản thành viên của bạn và biên nhận cho hóa đơn cho thành viên lần đầu của bạn.</p>
3
+
4
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
5
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
6
+ <p>Phí thành viên: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Số hóa đơn!!invoice_id!! trong !!invoice_date!!<br />
11
+ Hóa đơn tổng: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Thông t in thanh toán:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Expires: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/checkout_paid_admin.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Có một thành viên mới thanh toán tại !!sitename!!.</p>
2
+ <p>Dưới đây là chi tiết về tài khoản thành viên của bạn và biên nhận cho hóa đơn cho thành viên lần đầu của bạn.</p>
3
+
4
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
5
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
6
+ <p>Phí thành viên: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Số hóa đơn!!invoice_id!! trong !!invoice_date!!<br />
11
+ Hóa đơn tổng: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Thông tin thanh toán:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Hết hạn: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/checkout_trial.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 7<p>Cảm ơn bạn đã đang ký thành viên tại !!sitename!!. Tài kh oản thành viên của bạn sẽ được kích hoạt ngay.</p>
2
+ <p>Dưới đây là chi tiết về tài khoản thành viên của bạn và biên nhận cho hóa đơn cho thành viên lần đầu của bạn.</p>
3
+
4
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
5
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
6
+ <p>Phí thành viên: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Số hóa đơn!!invoice_id!! trong !!invoice_date!!<br />
11
+ Hóa đơn tổng: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Thông tin thanh toán:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Hết hạn: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Log in to your membership account here: !!login_link!!</p>
languages/email/vi_VN/checkout_trial_admin.html ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Có một thành viên mới thanh toán tại !!sitename!!.</p>
2
+ <p>Dưới đây là chi tiết về tài khoản thành viên của bạn và biên nhận cho hóa đơn cho thành viên lần đầu của bạn.</p>
3
+
4
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
5
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
6
+ <p>Phí thành viên: !!membership_cost!!</p>
7
+ !!membership_expiration!! !!discount_code!!
8
+
9
+ <p>
10
+ Số hóa đơn!!invoice_id!! on !!invoice_date!!<br />
11
+ Hóa đơn tổng: !!invoice_total!!
12
+ </p>
13
+ <p>
14
+ Thông tin thanh toán:<br />
15
+ !!billing_address!!
16
+ </p>
17
+
18
+ <p>
19
+ !!cardtype!!: !!accountnumber!!<br />
20
+ Hết hạn: !!expirationmonth!!/!!expirationyear!!
21
+ </p>
22
+
23
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/credit_card_expiring.html ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Phương thức thanh toán cho tài khoản thành viên tại !!sitename!! sẽ sớm hết hạn. <strong>Vui lòng click vào link dưới đây để đăng nhập và cập nhật thông tin thanh toán của bạn để tránh bị ngừng tài khoản. !!login_link!!</strong></p>
2
+
3
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
4
+ <p>Các thông tin tài khoản gần đây nhất mà chúng tôi có trong hồ sơ is:</p>
5
+
6
+ <p>!!billing_name!!</br />
7
+ !!billing_address!!
8
+ </p>
9
+
10
+ <p>
11
+ !!cardtype!!: !!accountnumber!!<br />
12
+ Hết hạn: !!expirationmonth!!/!!expirationyear!!
13
+ </p>
languages/email/vi_VN/default.html ADDED
@@ -0,0 +1 @@
 
1
+ !!body!!
languages/email/vi_VN/footer.html ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ <p>
2
+ Trân trọng,<br />
3
+ !!sitename!!
4
+ </p>
languages/email/vi_VN/header.html ADDED
@@ -0,0 +1 @@
 
1
+ <p>Kính gửi !!name!!,</p>
languages/email/vi_VN/invoice.html ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <p>Cảm ơn bạn đã đang ký thành viên tại !!sitename!!. Dưới đây là hóa đơn cho đăng ký loại thành viên gần đây nhất của bạn.</p>
2
+
3
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
4
+ <p>
5
+ Số hóa đơn!!invoice_id!! trong !!invoice_date!!<br />
6
+ Hóa đơn tổng: !!invoice_total!!
7
+ </p>
8
+ <p>
9
+ Thông tin thanh toán:<br />
10
+ !!billing_address!!
11
+ </p>
12
+
13
+ <p>
14
+ !!cardtype!!: !!accountnumber!!<br />
15
+ Hết hạn: !!expirationmonth!!/!!expirationyear!!
16
+ </p>
17
+
18
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
19
+ <p>Để xem một phiên bản trực tuyến của hoá đơn này, click vào đây: !!invoice_link!!</p>
languages/email/vi_VN/membership_expired.html ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <p>Quyền thành viên tại !!sitename!! đã hết hạn.</p>
2
+
3
+ <p>Cám ơn bạn đã ủng hộ.</p>
4
+
5
+ <p>Xem các loại hội viên hiện tại của chúng tôi tại đây: !!levels_link!!</p>
6
+
7
+ <p>Đăng nhập để quản lý tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/membership_expiring.html ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <p>Cảm ơn bạn đã đang ký thành viên tại !!sitename!!. Đây chỉ là nhắc nhở rằng quyền thành viên của bạn sẽ kết thúc vào ngày !!enddate!!.</p>
2
+
3
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
4
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
5
+
6
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/email/vi_VN/trial_ending.html ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <p>Cảm ơn bạn đã đang ký thành viên tại !!sitename!!. Thời gian dùng thử của bạn đang kết thucd !!trial_end!!.</p>
2
+
3
+ <p>Tài khoản: !!display_name!! (!!user_email!!)</p>
4
+ <p>Kiểu thành viên: !!membership_level_name!!</p>
5
+
6
+ <p>Lệ phí của bạn sẽ được thay đổi từ !!trial_amount!! tới !!billing_amount!! mỗi !!cycle_number!! !!cycle_period!!(s).</p>
7
+
8
+ <p>Đăng nhập để vào tài khoản của bạn ở đây: !!login_link!!</p>
languages/pmpro-vi_VN.mo ADDED
Binary file
languages/pmpro-vi_VN.po ADDED
@@ -0,0 +1,4556 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-08-04 10:23-0400\n"
9
+ "PO-Revision-Date: 2015-09-08 12:20+0700\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"
15
+ "Language: vi\n"
16
+ "X-Generator: Poedit 1.8.4\n"
17
+
18
+ #: adminpages/addons.php:21 adminpages/advancedsettings.php:5
19
+ #: adminpages/discountcodes.php:5 adminpages/emailsettings.php:5
20
+ #: adminpages/membershiplevels.php:5 adminpages/memberslist-csv.php:5
21
+ #: adminpages/memberslist.php:5 adminpages/orders-csv.php:5 adminpages/orders.php:5
22
+ #: adminpages/pagesettings.php:5 adminpages/paymentsettings.php:5
23
+ #: includes/license.php:36 adminpages/addons.php:5
24
+ msgid "You do not have permissions to perform this action."
25
+ msgstr ""
26
+
27
+ #: adminpages/addons.php:80 adminpages/admin_header.php:170 includes/adminpages.php:52
28
+ #: includes/adminpages.php:146 adminpages/admin_header.php:133
29
+ #: adminpages/admin_header.php:154 includes/adminpages.php:14 includes/adminpages.php:69
30
+ #: includes/adminpages.php:135 includes/adminpages.php:142
31
+ msgid "Add Ons"
32
+ msgstr ""
33
+
34
+ #: adminpages/addons.php:87
35
+ #, php-format
36
+ msgid "Last checked on %s at %s."
37
+ msgstr ""
38
+
39
+ #: adminpages/addons.php:88
40
+ msgid "Check Again"
41
+ msgstr ""
42
+
43
+ #: adminpages/addons.php:92 adminpages/orders.php:605
44
+ msgid "All"
45
+ msgstr ""
46
+
47
+ #: adminpages/addons.php:93
48
+ msgid "Active"
49
+ msgstr ""
50
+
51
+ #: adminpages/addons.php:94
52
+ msgid "Inactive"
53
+ msgstr ""
54
+
55
+ #: adminpages/addons.php:95
56
+ msgid "Update Available"
57
+ msgstr ""
58
+
59
+ #: adminpages/addons.php:96
60
+ msgid "Not Installed"
61
+ msgstr ""
62
+
63
+ #: adminpages/addons.php:109
64
+ msgid "Add On Name"
65
+ msgstr ""
66
+
67
+ #: adminpages/addons.php:110
68
+ msgid "Type"
69
+ msgstr ""
70
+
71
+ #: adminpages/addons.php:111 adminpages/membershiplevels.php:300
72
+ #: adminpages/membershiplevels.php:296 adminpages/membershiplevels.php:298
73
+ msgid "Description"
74
+ msgstr ""
75
+
76
+ #: adminpages/addons.php:134
77
+ msgid "No Add Ons found."
78
+ msgstr ""
79
+
80
+ #: adminpages/addons.php:195 adminpages/addons.php:200 adminpages/addons.php:212
81
+ msgid "Install Now"
82
+ msgstr ""
83
+
84
+ #: adminpages/addons.php:201 adminpages/addons.php:207 adminpages/addons.php:213
85
+ #: adminpages/addons.php:219
86
+ msgid "Download"
87
+ msgstr ""
88
+
89
+ #: adminpages/addons.php:206 adminpages/addons.php:218
90
+ msgid "Update License"
91
+ msgstr ""
92
+
93
+ #: adminpages/addons.php:224
94
+ msgid "Deactivate"
95
+ msgstr ""
96
+
97
+ #: adminpages/addons.php:224
98
+ #, php-format
99
+ msgid "Deactivate %s"
100
+ msgstr ""
101
+
102
+ #: adminpages/addons.php:228
103
+ msgid "Activate"
104
+ msgstr ""
105
+
106
+ #: adminpages/addons.php:228
107
+ #, php-format
108
+ msgid "Activate %s"
109
+ msgstr ""
110
+
111
+ #: adminpages/addons.php:229
112
+ msgid "Delete"
113
+ msgstr ""
114
+
115
+ #: adminpages/addons.php:229
116
+ #, php-format
117
+ msgid "Delete %s"
118
+ msgstr ""
119
+
120
+ #: adminpages/addons.php:239
121
+ msgid "PMPro Free"
122
+ msgstr ""
123
+
124
+ #: adminpages/addons.php:241
125
+ msgid "PMPro Core"
126
+ msgstr ""
127
+
128
+ #: adminpages/addons.php:243
129
+ msgid "PMPro Plus"
130
+ msgstr ""
131
+
132
+ #: adminpages/addons.php:245
133
+ msgid "WordPress.org"
134
+ msgstr ""
135
+
136
+ #: adminpages/addons.php:247
137
+ msgid "N/A"
138
+ msgstr ""
139
+
140
+ #: adminpages/addons.php:256
141
+ #, php-format
142
+ msgid "Version %s"
143
+ msgstr ""
144
+
145
+ #: adminpages/addons.php:261
146
+ #, php-format
147
+ msgid "By %s"
148
+ msgstr ""
149
+
150
+ #: adminpages/addons.php:268
151
+ #, php-format
152
+ msgid "More information about %s"
153
+ msgstr ""
154
+
155
+ #: adminpages/addons.php:270
156
+ msgid "View details"
157
+ msgstr ""
158
+
159
+ #: adminpages/addons.php:275
160
+ msgid "Visit plugin site"
161
+ msgstr ""
162
+
163
+ #: adminpages/admin_header.php:25
164
+ msgid "Add a membership level to get started."
165
+ msgstr ""
166
+
167
+ #: adminpages/admin_header.php:27
168
+ msgid "Set up the membership pages"
169
+ msgstr ""
170
+
171
+ #: adminpages/admin_header.php:29
172
+ msgid "Set up your SSL certificate and payment gateway"
173
+ msgstr ""
174
+
175
+ #: adminpages/admin_header.php:38
176
+ msgid ""
177
+ "The billing details for some of your membership levels is not supported by Stripe."
178
+ msgstr ""
179
+
180
+ #: adminpages/admin_header.php:46
181
+ msgid ""
182
+ "The billing details for this level are not supported by Stripe. Please review the "
183
+ "notes in the Billing Details section below."
184
+ msgstr ""
185
+
186
+ #: adminpages/admin_header.php:50 adminpages/admin_header.php:70
187
+ #: adminpages/admin_header.php:90 adminpages/admin_header.php:111
188
+ msgid "The levels with issues are highlighted below."
189
+ msgstr ""
190
+
191
+ #: adminpages/admin_header.php:52 adminpages/admin_header.php:72
192
+ #: adminpages/admin_header.php:92 adminpages/admin_header.php:113
193
+ msgid "Please edit your levels"
194
+ msgstr ""
195
+
196
+ #: adminpages/admin_header.php:58
197
+ msgid ""
198
+ "The billing details for some of your membership levels is not supported by Payflow."
199
+ msgstr ""
200
+
201
+ #: adminpages/admin_header.php:66
202
+ msgid ""
203
+ "The billing details for this level are not supported by Payflow. Please review the "
204
+ "notes in the Billing Details section below."
205
+ msgstr ""
206
+
207
+ #: adminpages/admin_header.php:78
208
+ msgid ""
209
+ "The billing details for some of your membership levels is not supported by Braintree."
210
+ msgstr ""
211
+
212
+ #: adminpages/admin_header.php:86
213
+ msgid ""
214
+ "The billing details for this level are not supported by Braintree. Please review the "
215
+ "notes in the Billing Details section below."
216
+ msgstr ""
217
+
218
+ #: adminpages/admin_header.php:98
219
+ msgid ""
220
+ "The billing details for some of your membership levels is not supported by "
221
+ "TwoCheckout."
222
+ msgstr ""
223
+
224
+ #: adminpages/admin_header.php:107
225
+ msgid ""
226
+ "The billing details for this level are not supported by 2Checkout. Please review the "
227
+ "notes in the Billing Details section below."
228
+ msgstr ""
229
+
230
+ #: adminpages/admin_header.php:127 adminpages/admin_header.php:106
231
+ msgid "Plugin Support"
232
+ msgstr ""
233
+
234
+ #: adminpages/admin_header.php:127 adminpages/admin_header.php:106
235
+ msgid "User Forum"
236
+ msgstr ""
237
+
238
+ #: adminpages/admin_header.php:150 adminpages/membershiplevels.php:619
239
+ #: adminpages/pagesettings.php:69 includes/adminpages.php:64 includes/adminpages.php:65
240
+ #: includes/adminpages.php:111 adminpages/admin_header.php:128
241
+ #: adminpages/admin_header.php:149 adminpages/membershiplevels.php:490
242
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
243
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
244
+ #: adminpages/membershiplevels.php:569 includes/adminpages.php:44
245
+ #: includes/adminpages.php:100 includes/adminpages.php:107
246
+ msgid "Membership Levels"
247
+ msgstr ""
248
+
249
+ #: adminpages/admin_header.php:154 adminpages/pagesettings.php:120
250
+ #: adminpages/admin_header.php:129 adminpages/admin_header.php:150
251
+ #: adminpages/pagesettings.php:92
252
+ msgid "Pages"
253
+ msgstr ""
254
+
255
+ #: adminpages/admin_header.php:158 adminpages/admin_header.php:130
256
+ #: adminpages/admin_header.php:151
257
+ msgid "Payment Gateway &amp; SSL"
258
+ msgstr ""
259
+
260
+ #: adminpages/admin_header.php:162 adminpages/memberslist.php:168
261
+ #: shortcodes/pmpro_account.php:106 adminpages/admin_header.php:131
262
+ #: adminpages/admin_header.php:152 adminpages/memberslist.php:115
263
+ #: adminpages/memberslist.php:148 adminpages/memberslist.php:158 pages/account.php:52
264
+ #: pages/account.php:56 pages/account.php:77
265
+ msgid "Email"
266
+ msgstr ""
267
+
268
+ #: adminpages/admin_header.php:166 adminpages/admin_header.php:132
269
+ #: adminpages/admin_header.php:153
270
+ msgid "Advanced"
271
+ msgstr ""
272
+
273
+ #: adminpages/advancedsettings.php:43 adminpages/advancedsettings.php:35
274
+ #: adminpages/advancedsettings.php:42
275
+ msgid "Your advanced settings have been updated."
276
+ msgstr ""
277
+
278
+ #: adminpages/advancedsettings.php:68 adminpages/advancedsettings.php:66
279
+ #, php-format
280
+ msgid "This content is for !!levels!! members only. <a href=\"%s\">Register here</a>."
281
+ msgstr ""
282
+
283
+ #: adminpages/advancedsettings.php:73 adminpages/advancedsettings.php:71
284
+ #, php-format
285
+ msgid ""
286
+ "Please <a href=\"%s\">login</a> to view this content. (<a href=\"%s\">Register here</"
287
+ "a>.)"
288
+ msgstr ""
289
+
290
+ #: adminpages/advancedsettings.php:78 adminpages/advancedsettings.php:76
291
+ msgid "This content is for members only. Visit the site and log in/register to read."
292
+ msgstr ""
293
+
294
+ #: adminpages/advancedsettings.php:88 includes/adminpages.php:51
295
+ #: includes/adminpages.php:139 adminpages/advancedsettings.php:79
296
+ #: adminpages/advancedsettings.php:86 includes/adminpages.php:13
297
+ #: includes/adminpages.php:64 includes/adminpages.php:128 includes/adminpages.php:135
298
+ msgid "Advanced Settings"
299
+ msgstr ""
300
+
301
+ #: adminpages/advancedsettings.php:94 adminpages/advancedsettings.php:85
302
+ #: adminpages/advancedsettings.php:92
303
+ msgid "Message for Logged-in Non-members"
304
+ msgstr ""
305
+
306
+ #: adminpages/advancedsettings.php:98 adminpages/advancedsettings.php:89
307
+ #: adminpages/advancedsettings.php:96
308
+ msgid "This message replaces the post content for non-members. Available variables"
309
+ msgstr ""
310
+
311
+ #: adminpages/advancedsettings.php:103 adminpages/advancedsettings.php:94
312
+ #: adminpages/advancedsettings.php:101
313
+ msgid "Message for Logged-out Users"
314
+ msgstr ""
315
+
316
+ #: adminpages/advancedsettings.php:107 adminpages/advancedsettings.php:98
317
+ #: adminpages/advancedsettings.php:105
318
+ msgid "This message replaces the post content for logged-out visitors."
319
+ msgstr ""
320
+
321
+ #: adminpages/advancedsettings.php:112 adminpages/advancedsettings.php:103
322
+ #: adminpages/advancedsettings.php:110
323
+ msgid "Message for RSS Feed"
324
+ msgstr ""
325
+
326
+ #: adminpages/advancedsettings.php:116 adminpages/advancedsettings.php:107
327
+ #: adminpages/advancedsettings.php:114
328
+ msgid "This message replaces the post content in RSS feeds."
329
+ msgstr ""
330
+
331
+ #: adminpages/advancedsettings.php:122
332
+ msgid "Filter searches and archives?"
333
+ msgstr ""
334
+
335
+ #: adminpages/advancedsettings.php:126
336
+ msgid "No - Non-members will see restricted posts/pages in searches and archives."
337
+ msgstr ""
338
+
339
+ #: adminpages/advancedsettings.php:127
340
+ msgid "Yes - Only members will see restricted posts/pages in searches and archives."
341
+ msgstr ""
342
+
343
+ #: adminpages/advancedsettings.php:133 adminpages/advancedsettings.php:113
344
+ #: adminpages/advancedsettings.php:120
345
+ msgid "Show Excerpts to Non-Members?"
346
+ msgstr ""
347
+
348
+ #: adminpages/advancedsettings.php:137 adminpages/advancedsettings.php:117
349
+ #: adminpages/advancedsettings.php:124
350
+ msgid "No - Hide excerpts."
351
+ msgstr ""
352
+
353
+ #: adminpages/advancedsettings.php:138 adminpages/advancedsettings.php:118
354
+ #: adminpages/advancedsettings.php:125
355
+ msgid "Yes - Show excerpts."
356
+ msgstr ""
357
+
358
+ #: adminpages/advancedsettings.php:144
359
+ msgid "Hide Ads From Members?"
360
+ msgstr ""
361
+
362
+ #: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
363
+ #: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:668
364
+ #: adminpages/paymentsettings.php:210 classes/gateways/class.pmprogateway_stripe.php:174
365
+ #: includes/profile.php:105 adminpages/advancedsettings.php:128
366
+ #: adminpages/advancedsettings.php:135 adminpages/advancedsettings.php:187
367
+ #: adminpages/advancedsettings.php:194 adminpages/advancedsettings.php:199
368
+ #: adminpages/advancedsettings.php:206 adminpages/membershiplevels.php:563
369
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
370
+ #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
371
+ #: adminpages/membershiplevels.php:658 adminpages/paymentsettings.php:414
372
+ #: adminpages/paymentsettings.php:429 adminpages/paymentsettings.php:434
373
+ #: adminpages/paymentsettings.php:436 adminpages/paymentsettings.php:454
374
+ #: adminpages/paymentsettings.php:459 adminpages/paymentsettings.php:461
375
+ #: classes/gateways/class.pmprogateway_stripe.php:173 includes/profile.php:101
376
+ #: includes/profile.php:121 includes/profile.php:123
377
+ msgid "No"
378
+ msgstr ""
379
+
380
+ #: adminpages/advancedsettings.php:149 adminpages/advancedsettings.php:129
381
+ #: adminpages/advancedsettings.php:136
382
+ msgid "Hide Ads From All Members"
383
+ msgstr ""
384
+
385
+ #: adminpages/advancedsettings.php:150 adminpages/advancedsettings.php:130
386
+ #: adminpages/advancedsettings.php:137
387
+ msgid "Hide Ads From Certain Members"
388
+ msgstr ""
389
+
390
+ #: adminpages/advancedsettings.php:157 adminpages/advancedsettings.php:137
391
+ #: adminpages/advancedsettings.php:144
392
+ msgid "Ads from the following plugins will be automatically turned off"
393
+ msgstr ""
394
+
395
+ #: adminpages/advancedsettings.php:158 adminpages/advancedsettings.php:138
396
+ #: adminpages/advancedsettings.php:145
397
+ msgid "To hide ads in your template code, use code like the following"
398
+ msgstr ""
399
+
400
+ #: adminpages/advancedsettings.php:169 adminpages/advancedsettings.php:149
401
+ #: adminpages/advancedsettings.php:156
402
+ msgid "Choose Levels to Hide Ads From"
403
+ msgstr ""
404
+
405
+ #: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
406
+ #: adminpages/advancedsettings.php:190
407
+ msgid "Redirect all traffic from registration page to /susbcription/?"
408
+ msgstr ""
409
+
410
+ #: adminpages/advancedsettings.php:203 adminpages/advancedsettings.php:183
411
+ #: adminpages/advancedsettings.php:190
412
+ msgid "multisite only"
413
+ msgstr ""
414
+
415
+ #: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:668
416
+ #: adminpages/paymentsettings.php:211 classes/gateways/class.pmprogateway_stripe.php:175
417
+ #: includes/profile.php:106 adminpages/advancedsettings.php:188
418
+ #: adminpages/advancedsettings.php:195 adminpages/membershiplevels.php:563
419
+ #: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:571
420
+ #: adminpages/membershiplevels.php:578 adminpages/membershiplevels.php:598
421
+ #: adminpages/membershiplevels.php:658 adminpages/paymentsettings.php:415
422
+ #: adminpages/paymentsettings.php:424 adminpages/paymentsettings.php:430
423
+ #: adminpages/paymentsettings.php:435 adminpages/paymentsettings.php:437
424
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:460
425
+ #: adminpages/paymentsettings.php:462 classes/gateways/class.pmprogateway_stripe.php:174
426
+ #: includes/profile.php:102 includes/profile.php:122 includes/profile.php:124
427
+ msgid "Yes"
428
+ msgstr ""
429
+
430
+ #: adminpages/advancedsettings.php:215 adminpages/advancedsettings.php:195
431
+ #: adminpages/advancedsettings.php:202
432
+ msgid "Use reCAPTCHA?"
433
+ msgstr ""
434
+
435
+ #: adminpages/advancedsettings.php:220 adminpages/advancedsettings.php:200
436
+ #: adminpages/advancedsettings.php:207
437
+ msgid "Yes - Free memberships only."
438
+ msgstr ""
439
+
440
+ #: adminpages/advancedsettings.php:221 adminpages/advancedsettings.php:201
441
+ #: adminpages/advancedsettings.php:208
442
+ msgid "Yes - All memberships."
443
+ msgstr ""
444
+
445
+ #: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
446
+ #: adminpages/advancedsettings.php:210
447
+ msgid "A free reCAPTCHA key is required."
448
+ msgstr ""
449
+
450
+ #: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:203
451
+ #: adminpages/advancedsettings.php:210
452
+ msgid "Click here to signup for reCAPTCHA"
453
+ msgstr ""
454
+
455
+ #: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:209
456
+ #: adminpages/advancedsettings.php:216
457
+ msgid "reCAPTCHA Public Key"
458
+ msgstr ""
459
+
460
+ #: adminpages/advancedsettings.php:232 adminpages/advancedsettings.php:212
461
+ #: adminpages/advancedsettings.php:219
462
+ msgid "reCAPTCHA Private Key"
463
+ msgstr ""
464
+
465
+ #: adminpages/advancedsettings.php:238 adminpages/advancedsettings.php:218
466
+ #: adminpages/advancedsettings.php:225
467
+ msgid "Require Terms of Service on signups?"
468
+ msgstr ""
469
+
470
+ #: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:225
471
+ #: adminpages/advancedsettings.php:232
472
+ msgid ""
473
+ "If yes, create a WordPress page containing your TOS agreement and assign it using the "
474
+ "dropdown above."
475
+ msgstr ""
476
+
477
+ #: adminpages/advancedsettings.php:285 adminpages/advancedsettings.php:272
478
+ msgid "selected"
479
+ msgstr ""
480
+
481
+ #: adminpages/advancedsettings.php:368 adminpages/pagesettings.php:251
482
+ #: adminpages/paymentsettings.php:238 adminpages/advancedsettings.php:284
483
+ #: adminpages/advancedsettings.php:355 adminpages/pagesettings.php:209
484
+ #: adminpages/pagesettings.php:223 adminpages/pagesettings.php:254
485
+ #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:526
486
+ #: adminpages/paymentsettings.php:532 adminpages/paymentsettings.php:534
487
+ msgid "Save Settings"
488
+ msgstr ""
489
+
490
+ #: adminpages/discountcodes.php:48
491
+ msgid "Discount code updated successfully."
492
+ msgstr ""
493
+
494
+ #: adminpages/discountcodes.php:55
495
+ msgid "Error updating discount code. That code may already be in use."
496
+ msgstr ""
497
+
498
+ #: adminpages/discountcodes.php:64
499
+ msgid "Discount code added successfully."
500
+ msgstr ""
501
+
502
+ #: adminpages/discountcodes.php:72 adminpages/discountcodes.php:71
503
+ msgid "Error adding discount code. That code may already be in use."
504
+ msgstr ""
505
+
506
+ #: adminpages/discountcodes.php:197 adminpages/discountcodes.php:196
507
+ #, php-format
508
+ msgid "Error saving values for the %s level."
509
+ msgstr ""
510
+
511
+ #: adminpages/discountcodes.php:205 adminpages/discountcodes.php:204
512
+ msgid "There were errors updating the level values: "
513
+ msgstr ""
514
+
515
+ #: adminpages/discountcodes.php:238 adminpages/discountcodes.php:234
516
+ #: adminpages/discountcodes.php:237
517
+ #, php-format
518
+ msgid "Code %s deleted successfully."
519
+ msgstr ""
520
+
521
+ #: adminpages/discountcodes.php:243 adminpages/discountcodes.php:239
522
+ #: adminpages/discountcodes.php:242
523
+ msgid ""
524
+ "Error deleting discount code. The code was only partially deleted. Please try again."
525
+ msgstr ""
526
+
527
+ #: adminpages/discountcodes.php:249 adminpages/discountcodes.php:245
528
+ #: adminpages/discountcodes.php:248
529
+ msgid "Error deleting code. Please try again."
530
+ msgstr ""
531
+
532
+ #: adminpages/discountcodes.php:255 adminpages/discountcodes.php:251
533
+ #: adminpages/discountcodes.php:254
534
+ msgid "Code not found."
535
+ msgstr ""
536
+
537
+ #: adminpages/discountcodes.php:268 adminpages/discountcodes.php:264
538
+ #: adminpages/discountcodes.php:267
539
+ msgid "Edit Discount Code"
540
+ msgstr ""
541
+
542
+ #: adminpages/discountcodes.php:270 adminpages/discountcodes.php:558
543
+ #: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
544
+ #: adminpages/discountcodes.php:526 adminpages/discountcodes.php:529
545
+ #: adminpages/discountcodes.php:557
546
+ msgid "Add New Discount Code"
547
+ msgstr ""
548
+
549
+ #: adminpages/discountcodes.php:310 adminpages/discountcodes.php:586
550
+ #: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:637
551
+ #: adminpages/memberslist.php:164 adminpages/orders.php:910
552
+ #: adminpages/reports/login.php:142 adminpages/discountcodes.php:306
553
+ #: adminpages/discountcodes.php:309 adminpages/discountcodes.php:547
554
+ #: adminpages/discountcodes.php:557 adminpages/discountcodes.php:585
555
+ #: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
556
+ #: adminpages/membershiplevels.php:505 adminpages/membershiplevels.php:511
557
+ #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:540
558
+ #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:583
559
+ #: adminpages/memberslist.php:111 adminpages/memberslist.php:144
560
+ #: adminpages/memberslist.php:154 adminpages/orders.php:597 adminpages/orders.php:900
561
+ #: adminpages/reports/login.php:140
562
+ msgid "ID"
563
+ msgstr ""
564
+
565
+ #: adminpages/discountcodes.php:311 adminpages/orders.php:261
566
+ #: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
567
+ #: adminpages/orders.php:211
568
+ msgid "This will be generated when you save."
569
+ msgstr ""
570
+
571
+ #: adminpages/discountcodes.php:315 adminpages/discountcodes.php:587
572
+ #: adminpages/orders.php:265 adminpages/orders.php:911 adminpages/discountcodes.php:311
573
+ #: adminpages/discountcodes.php:314 adminpages/discountcodes.php:548
574
+ #: adminpages/discountcodes.php:558 adminpages/discountcodes.php:586
575
+ #: adminpages/orders.php:215 adminpages/orders.php:598 adminpages/orders.php:901
576
+ msgid "Code"
577
+ msgstr ""
578
+
579
+ #: adminpages/discountcodes.php:353 adminpages/discountcodes.php:349
580
+ #: adminpages/discountcodes.php:352
581
+ msgid "Start Date"
582
+ msgstr ""
583
+
584
+ #: adminpages/discountcodes.php:371
585
+ #: classes/gateways/class.pmprogateway_braintree.php:321
586
+ #: classes/gateways/class.pmprogateway_stripe.php:455 pages/billing.php:262
587
+ #: pages/checkout.php:562 adminpages/discountcodes.php:367
588
+ #: adminpages/discountcodes.php:370
589
+ #: classes/gateways/class.pmprogateway_braintree.php:308
590
+ #: classes/gateways/class.pmprogateway_stripe.php:454 pages/billing.php:249
591
+ #: pages/billing.php:253 pages/checkout.php:508 pages/checkout.php:524
592
+ #: pages/checkout.php:525 pages/checkout.php:532 pages/checkout.php:553
593
+ msgid "Expiration Date"
594
+ msgstr ""
595
+
596
+ #: adminpages/discountcodes.php:389 adminpages/discountcodes.php:590
597
+ #: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
598
+ #: adminpages/discountcodes.php:551 adminpages/discountcodes.php:561
599
+ #: adminpages/discountcodes.php:589
600
+ msgid "Uses"
601
+ msgstr ""
602
+
603
+ #: adminpages/discountcodes.php:392 adminpages/discountcodes.php:388
604
+ #: adminpages/discountcodes.php:391
605
+ msgid "Leave blank for unlimited uses."
606
+ msgstr ""
607
+
608
+ #: adminpages/discountcodes.php:401 adminpages/discountcodes.php:400
609
+ msgid "Which Levels Will This Code Apply To?"
610
+ msgstr ""
611
+
612
+ #: adminpages/discountcodes.php:431 adminpages/membershiplevels.php:342
613
+ #: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
614
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:339
615
+ #: adminpages/membershiplevels.php:341 adminpages/membershiplevels.php:507
616
+ #: adminpages/membershiplevels.php:513 adminpages/membershiplevels.php:515
617
+ #: adminpages/membershiplevels.php:542 pages/levels.php:14
618
+ msgid "Initial Payment"
619
+ msgstr ""
620
+
621
+ #: adminpages/discountcodes.php:442 adminpages/membershiplevels.php:353
622
+ #: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
623
+ #: adminpages/discountcodes.php:441 adminpages/membershiplevels.php:338
624
+ #: adminpages/membershiplevels.php:340 adminpages/membershiplevels.php:350
625
+ #: adminpages/membershiplevels.php:352
626
+ msgid "The initial amount collected at registration."
627
+ msgstr ""
628
+
629
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:357
630
+ #: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
631
+ #: adminpages/discountcodes.php:446 adminpages/membershiplevels.php:342
632
+ #: adminpages/membershiplevels.php:344 adminpages/membershiplevels.php:354
633
+ #: adminpages/membershiplevels.php:356
634
+ msgid "Recurring Subscription"
635
+ msgstr ""
636
+
637
+ #: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:358
638
+ #: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
639
+ #: adminpages/discountcodes.php:447 adminpages/membershiplevels.php:343
640
+ #: adminpages/membershiplevels.php:345 adminpages/membershiplevels.php:355
641
+ #: adminpages/membershiplevels.php:357
642
+ msgid "Check if this level has a recurring subscription payment."
643
+ msgstr ""
644
+
645
+ #: adminpages/discountcodes.php:452 adminpages/membershiplevels.php:362
646
+ #: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
647
+ #: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:349
648
+ #: adminpages/membershiplevels.php:359 adminpages/membershiplevels.php:361
649
+ msgid "Billing Amount"
650
+ msgstr ""
651
+
652
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
653
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:480
654
+ #: classes/gateways/class.pmprogateway_stripe.php:522 adminpages/discountcodes.php:446
655
+ #: adminpages/discountcodes.php:466 adminpages/discountcodes.php:492
656
+ #: adminpages/discountcodes.php:520 adminpages/membershiplevels.php:353
657
+ #: adminpages/membershiplevels.php:355 adminpages/membershiplevels.php:374
658
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:449
659
+ #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
660
+ #: adminpages/membershiplevels.php:479
661
+ #: classes/gateways/class.pmprogateway_stripe.php:521
662
+ msgid "Day(s)"
663
+ msgstr ""
664
+
665
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
666
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:480
667
+ #: classes/gateways/class.pmprogateway_stripe.php:522 adminpages/discountcodes.php:446
668
+ #: adminpages/discountcodes.php:466 adminpages/discountcodes.php:492
669
+ #: adminpages/discountcodes.php:520 adminpages/membershiplevels.php:353
670
+ #: adminpages/membershiplevels.php:355 adminpages/membershiplevels.php:374
671
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:449
672
+ #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
673
+ #: adminpages/membershiplevels.php:479
674
+ #: classes/gateways/class.pmprogateway_stripe.php:521
675
+ msgid "Month(s)"
676
+ msgstr ""
677
+
678
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
679
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:480
680
+ #: classes/gateways/class.pmprogateway_stripe.php:522 adminpages/discountcodes.php:446
681
+ #: adminpages/discountcodes.php:466 adminpages/discountcodes.php:492
682
+ #: adminpages/discountcodes.php:520 adminpages/membershiplevels.php:353
683
+ #: adminpages/membershiplevels.php:355 adminpages/membershiplevels.php:374
684
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:449
685
+ #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
686
+ #: adminpages/membershiplevels.php:479
687
+ #: classes/gateways/class.pmprogateway_stripe.php:521
688
+ msgid "Week(s)"
689
+ msgstr ""
690
+
691
+ #: adminpages/discountcodes.php:467 adminpages/discountcodes.php:521
692
+ #: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:480
693
+ #: classes/gateways/class.pmprogateway_stripe.php:522 adminpages/discountcodes.php:446
694
+ #: adminpages/discountcodes.php:466 adminpages/discountcodes.php:492
695
+ #: adminpages/discountcodes.php:520 adminpages/membershiplevels.php:353
696
+ #: adminpages/membershiplevels.php:355 adminpages/membershiplevels.php:374
697
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:449
698
+ #: adminpages/membershiplevels.php:476 adminpages/membershiplevels.php:477
699
+ #: adminpages/membershiplevels.php:479
700
+ #: classes/gateways/class.pmprogateway_stripe.php:521
701
+ msgid "Year(s)"
702
+ msgstr ""
703
+
704
+ #: adminpages/discountcodes.php:475 adminpages/membershiplevels.php:386
705
+ #: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
706
+ #: adminpages/discountcodes.php:474 adminpages/membershiplevels.php:362
707
+ #: adminpages/membershiplevels.php:364 adminpages/membershiplevels.php:383
708
+ #: adminpages/membershiplevels.php:385
709
+ msgid "The amount to be billed one cycle after the initial payment."
710
+ msgstr ""
711
+
712
+ #: adminpages/discountcodes.php:480 adminpages/membershiplevels.php:404
713
+ #: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
714
+ #: adminpages/discountcodes.php:479 adminpages/membershiplevels.php:380
715
+ #: adminpages/membershiplevels.php:382 adminpages/membershiplevels.php:401
716
+ #: adminpages/membershiplevels.php:403
717
+ msgid "Billing Cycle Limit"
718
+ msgstr ""
719
+
720
+ #: adminpages/discountcodes.php:483 adminpages/membershiplevels.php:408
721
+ #: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
722
+ #: adminpages/discountcodes.php:482 adminpages/membershiplevels.php:384
723
+ #: adminpages/membershiplevels.php:386 adminpages/membershiplevels.php:405
724
+ #: adminpages/membershiplevels.php:407
725
+ msgid ""
726
+ "The <strong>total</strong> number of recurring billing cycles for this level, "
727
+ "including the trial period (if applicable) but not including the initial payment. Set "
728
+ "to zero if membership is indefinite."
729
+ msgstr ""
730
+
731
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:417
732
+ #: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
733
+ #: adminpages/discountcodes.php:487 adminpages/membershiplevels.php:393
734
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:414
735
+ #: adminpages/membershiplevels.php:416
736
+ msgid "Custom Trial"
737
+ msgstr ""
738
+
739
+ #: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:419
740
+ #: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
741
+ #: adminpages/discountcodes.php:488 adminpages/membershiplevels.php:394
742
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
743
+ #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
744
+ msgid "Check to add a custom trial period."
745
+ msgstr ""
746
+
747
+ #: adminpages/discountcodes.php:493 adminpages/membershiplevels.php:428
748
+ #: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
749
+ #: adminpages/discountcodes.php:492 adminpages/membershiplevels.php:398
750
+ #: adminpages/membershiplevels.php:404 adminpages/membershiplevels.php:406
751
+ #: adminpages/membershiplevels.php:425 adminpages/membershiplevels.php:427
752
+ msgid "Trial Billing Amount"
753
+ msgstr ""
754
+
755
+ #: adminpages/discountcodes.php:504 adminpages/membershiplevels.php:439
756
+ #: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
757
+ #: adminpages/discountcodes.php:503 adminpages/membershiplevels.php:401
758
+ #: adminpages/membershiplevels.php:407 adminpages/membershiplevels.php:409
759
+ #: adminpages/membershiplevels.php:436 adminpages/membershiplevels.php:438
760
+ msgid "for the first"
761
+ msgstr ""
762
+
763
+ #: adminpages/discountcodes.php:506 adminpages/membershiplevels.php:441
764
+ #: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
765
+ #: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:403
766
+ #: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:411
767
+ #: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:440
768
+ msgid "subscription payments"
769
+ msgstr ""
770
+
771
+ #: adminpages/discountcodes.php:511 adminpages/membershiplevels.php:470
772
+ #: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
773
+ #: adminpages/discountcodes.php:510 adminpages/membershiplevels.php:431
774
+ #: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:439
775
+ #: adminpages/membershiplevels.php:466 adminpages/membershiplevels.php:467
776
+ #: adminpages/membershiplevels.php:469
777
+ msgid "Membership Expiration"
778
+ msgstr ""
779
+
780
+ #: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:471
781
+ #: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
782
+ #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:438
783
+ #: adminpages/membershiplevels.php:440 adminpages/membershiplevels.php:467
784
+ #: adminpages/membershiplevels.php:468 adminpages/membershiplevels.php:470
785
+ msgid "Check this to set when membership access expires."
786
+ msgstr ""
787
+
788
+ #: adminpages/discountcodes.php:516 adminpages/membershiplevels.php:475
789
+ #: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
790
+ #: adminpages/discountcodes.php:515 adminpages/membershiplevels.php:436
791
+ #: adminpages/membershiplevels.php:442 adminpages/membershiplevels.php:444
792
+ #: adminpages/membershiplevels.php:471 adminpages/membershiplevels.php:472
793
+ #: adminpages/membershiplevels.php:474
794
+ msgid "Expires In"
795
+ msgstr ""
796
+
797
+ #: adminpages/discountcodes.php:529 adminpages/membershiplevels.php:488
798
+ #: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
799
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:455
800
+ #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:484
801
+ #: adminpages/membershiplevels.php:485 adminpages/membershiplevels.php:487
802
+ msgid ""
803
+ "Set the duration of membership access. Note that the any future payments (recurring "
804
+ "subscription, if any) will be cancelled when the membership expires."
805
+ msgstr ""
806
+
807
+ #: adminpages/discountcodes.php:557 adminpages/discountcodes.php:525
808
+ #: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
809
+ msgid "Memberships Discount Codes"
810
+ msgstr ""
811
+
812
+ #: adminpages/discountcodes.php:567 adminpages/discountcodes.php:535
813
+ #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
814
+ msgid "Search Discount Codes"
815
+ msgstr ""
816
+
817
+ #: adminpages/discountcodes.php:570 adminpages/reports/login.php:83
818
+ #: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
819
+ #: adminpages/discountcodes.php:569 adminpages/reports/login.php:81
820
+ msgid "Search"
821
+ msgstr ""
822
+
823
+ #: adminpages/discountcodes.php:588 adminpages/discountcodes.php:549
824
+ #: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
825
+ msgid "Starts"
826
+ msgstr ""
827
+
828
+ #: adminpages/discountcodes.php:589 adminpages/memberslist.php:179
829
+ #: adminpages/reports/login.php:147 includes/profile.php:102
830
+ #: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
831
+ #: adminpages/discountcodes.php:588 adminpages/memberslist.php:121
832
+ #: adminpages/memberslist.php:159 adminpages/memberslist.php:169
833
+ #: adminpages/reports/login.php:145 includes/profile.php:98 includes/profile.php:118
834
+ #: includes/profile.php:120
835
+ msgid "Expires"
836
+ msgstr ""
837
+
838
+ #: adminpages/discountcodes.php:591 adminpages/discountcodes.php:552
839
+ #: adminpages/discountcodes.php:562 adminpages/discountcodes.php:590
840
+ msgid "Levels"
841
+ msgstr ""
842
+
843
+ #: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
844
+ #: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
845
+ msgid "Create your first discount code now"
846
+ msgstr ""
847
+
848
+ #: adminpages/discountcodes.php:603 adminpages/discountcodes.php:570
849
+ #: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
850
+ msgid ""
851
+ "Discount codes allow you to offer your memberships at discounted prices to select "
852
+ "customers."
853
+ msgstr ""
854
+
855
+ #: adminpages/discountcodes.php:649 adminpages/membershiplevels.php:670
856
+ #: adminpages/orders.php:992 adminpages/discountcodes.php:614
857
+ #: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
858
+ #: adminpages/discountcodes.php:648 adminpages/membershiplevels.php:564
859
+ #: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
860
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
861
+ #: adminpages/membershiplevels.php:660 adminpages/orders.php:658
862
+ #: adminpages/orders.php:961 adminpages/orders.php:979 adminpages/orders.php:989
863
+ msgid "edit"
864
+ msgstr ""
865
+
866
+ #: adminpages/discountcodes.php:652 adminpages/discountcodes.php:617
867
+ #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
868
+ #: adminpages/discountcodes.php:651
869
+ #, php-format
870
+ msgid ""
871
+ "Are you sure you want to delete the %s discount code? The subscriptions for existing "
872
+ "users will not change, but new users will not be able to use this code anymore."
873
+ msgstr ""
874
+
875
+ #: adminpages/discountcodes.php:652 adminpages/membershiplevels.php:670
876
+ #: adminpages/orders.php:998 adminpages/discountcodes.php:617
877
+ #: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
878
+ #: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:566
879
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
880
+ #: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
881
+ #: adminpages/membershiplevels.php:660 adminpages/orders.php:664
882
+ #: adminpages/orders.php:967 adminpages/orders.php:985 adminpages/orders.php:995
883
+ msgid "delete"
884
+ msgstr ""
885
+
886
+ #: adminpages/emailsettings.php:69 includes/adminpages.php:50
887
+ #: includes/adminpages.php:132 adminpages/emailsettings.php:60
888
+ #: includes/adminpages.php:12 includes/adminpages.php:59 includes/adminpages.php:121
889
+ #: includes/adminpages.php:128
890
+ msgid "Email Settings"
891
+ msgstr ""
892
+
893
+ #: adminpages/emailsettings.php:70 adminpages/emailsettings.php:61
894
+ msgid ""
895
+ "By default, system generated emails are sent from <em><strong>wordpress@yourdomain."
896
+ "com</strong></em>. You can update this from address using the fields below."
897
+ msgstr ""
898
+
899
+ #: adminpages/emailsettings.php:72 adminpages/emailsettings.php:63
900
+ msgid ""
901
+ "To modify the appearance of system generated emails, add the files <em>email_header."
902
+ "html</em> and <em>email_footer.html</em> to your theme's directory. This will modify "
903
+ "both the WordPress default messages as well as messages generated by Paid Memberships "
904
+ "Pro. <a title=\"Paid Memberships Pro - Member Communications\" target=\"_blank\" href="
905
+ "\"http://www.paidmembershipspro.com/documentation/member-communications/\">Click here "
906
+ "to learn more about Paid Memberships Pro emails</a>."
907
+ msgstr ""
908
+
909
+ #: adminpages/emailsettings.php:78 adminpages/emailsettings.php:69
910
+ msgid "From Email"
911
+ msgstr ""
912
+
913
+ #: adminpages/emailsettings.php:86 adminpages/emailsettings.php:77
914
+ msgid "From Name"
915
+ msgstr ""
916
+
917
+ #: adminpages/emailsettings.php:94
918
+ msgid "Only Filter PMPro Emails?"
919
+ msgstr ""
920
+
921
+ #: adminpages/emailsettings.php:98
922
+ msgid "If unchecked, all emails from \"WordPress &lt;"
923
+ msgstr ""
924
+
925
+ #: adminpages/emailsettings.php:115 adminpages/emailsettings.php:86
926
+ #: adminpages/emailsettings.php:104
927
+ msgid "Send the site admin emails"
928
+ msgstr ""
929
+
930
+ #: adminpages/emailsettings.php:121 adminpages/emailsettings.php:92
931
+ #: adminpages/emailsettings.php:110
932
+ msgid "Checkout"
933
+ msgstr ""
934
+
935
+ #: adminpages/emailsettings.php:125 adminpages/emailsettings.php:96
936
+ #: adminpages/emailsettings.php:114
937
+ msgid "when a member checks out."
938
+ msgstr ""
939
+
940
+ #: adminpages/emailsettings.php:130 adminpages/emailsettings.php:101
941
+ #: adminpages/emailsettings.php:119
942
+ msgid "Admin Changes"
943
+ msgstr ""
944
+
945
+ #: adminpages/emailsettings.php:134 adminpages/emailsettings.php:105
946
+ #: adminpages/emailsettings.php:123
947
+ msgid "when an admin changes a user's membership level through the dashboard."
948
+ msgstr ""
949
+
950
+ #: adminpages/emailsettings.php:139 adminpages/emailsettings.php:110
951
+ #: adminpages/emailsettings.php:128
952
+ msgid "Cancellation"
953
+ msgstr ""
954
+
955
+ #: adminpages/emailsettings.php:143 adminpages/emailsettings.php:114
956
+ #: adminpages/emailsettings.php:132
957
+ msgid "when a user cancels his or her account."
958
+ msgstr ""
959
+
960
+ #: adminpages/emailsettings.php:148 adminpages/emailsettings.php:119
961
+ #: adminpages/emailsettings.php:137
962
+ msgid "Bill Updates"
963
+ msgstr ""
964
+
965
+ #: adminpages/emailsettings.php:152 adminpages/emailsettings.php:123
966
+ #: adminpages/emailsettings.php:141
967
+ msgid "when a user updates his or her billing information."
968
+ msgstr ""
969
+
970
+ #: adminpages/emailsettings.php:158 adminpages/emailsettings.php:129
971
+ #: adminpages/emailsettings.php:147
972
+ msgid "Send members emails"
973
+ msgstr ""
974
+
975
+ #: adminpages/emailsettings.php:164 adminpages/emailsettings.php:135
976
+ #: adminpages/emailsettings.php:153
977
+ msgid "New Users"
978
+ msgstr ""
979
+
980
+ #: adminpages/emailsettings.php:168 adminpages/emailsettings.php:139
981
+ #: adminpages/emailsettings.php:157
982
+ msgid ""
983
+ "Default WP notification email. (Recommended: Leave unchecked. Members will still get "
984
+ "an email confirmation from PMPro after checkout.)"
985
+ msgstr ""
986
+
987
+ #: adminpages/membershiplevels.php:120 adminpages/membershiplevels.php:118
988
+ msgid "Membership level updated successfully."
989
+ msgstr ""
990
+
991
+ #: adminpages/membershiplevels.php:126 adminpages/membershiplevels.php:124
992
+ msgid "Error updating membership level."
993
+ msgstr ""
994
+
995
+ #: adminpages/membershiplevels.php:143 adminpages/membershiplevels.php:141
996
+ msgid "Membership level added successfully."
997
+ msgstr ""
998
+
999
+ #: adminpages/membershiplevels.php:148 adminpages/membershiplevels.php:146
1000
+ msgid "Error adding membership level."
1001
+ msgstr ""
1002
+
1003
+ #: adminpages/membershiplevels.php:183 adminpages/membershiplevels.php:179
1004
+ #: adminpages/membershiplevels.php:181
1005
+ #, php-format
1006
+ msgid ""
1007
+ "There was an error canceling the subscription for user with ID=%d. You will want to "
1008
+ "check your payment gateway to see if their subscription is still active."
1009
+ msgstr ""
1010
+
1011
+ #: adminpages/membershiplevels.php:186 adminpages/membershiplevels.php:182
1012
+ #: adminpages/membershiplevels.php:184
1013
+ msgid "Last Invoice"
1014
+ msgstr ""
1015
+
1016
+ #: adminpages/membershiplevels.php:200 adminpages/membershiplevels.php:196
1017
+ #: adminpages/membershiplevels.php:198
1018
+ msgid "Membership level deleted successfully."
1019
+ msgstr ""
1020
+
1021
+ #: adminpages/membershiplevels.php:205 adminpages/membershiplevels.php:211
1022
+ #: adminpages/membershiplevels.php:201 adminpages/membershiplevels.php:203
1023
+ #: adminpages/membershiplevels.php:207 adminpages/membershiplevels.php:209
1024
+ msgid "Error deleting membership level."
1025
+ msgstr ""
1026
+
1027
+ #: adminpages/membershiplevels.php:226 adminpages/membershiplevels.php:222
1028
+ #: adminpages/membershiplevels.php:224
1029
+ msgid "Edit Membership Level"
1030
+ msgstr ""
1031
+
1032
+ #: adminpages/membershiplevels.php:228 adminpages/membershiplevels.php:224
1033
+ #: adminpages/membershiplevels.php:226
1034
+ msgid "Add New Membership Level"
1035
+ msgstr ""
1036
+
1037
+ #: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:638
1038
+ #: adminpages/reports/login.php:144 adminpages/membershiplevels.php:291
1039
+ #: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:506
1040
+ #: adminpages/membershiplevels.php:512 adminpages/membershiplevels.php:514
1041
+ #: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:542
1042
+ #: adminpages/membershiplevels.php:584 adminpages/reports/login.php:142
1043
+ msgid "Name"
1044
+ msgstr ""
1045
+
1046
+ #: adminpages/membershiplevels.php:318 adminpages/membershiplevels.php:314
1047
+ #: adminpages/membershiplevels.php:316
1048
+ msgid "Confirmation Message"
1049
+ msgstr ""
1050
+
1051
+ #: adminpages/membershiplevels.php:338 adminpages/membershiplevels.php:639
1052
+ #: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
1053
+ #: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:543
1054
+ #: adminpages/membershiplevels.php:585
1055
+ msgid "Billing Details"
1056
+ msgstr ""
1057
+
1058
+ #: adminpages/membershiplevels.php:373
1059
+ #: classes/gateways/class.pmprogateway_stripe.php:620
1060
+ #: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
1061
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
1062
+ #: classes/gateways/class.pmprogateway_stripe.php:619
1063
+ msgid "per"
1064
+ msgstr ""
1065
+
1066
+ #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:366
1067
+ #: adminpages/membershiplevels.php:385 adminpages/membershiplevels.php:387
1068
+ msgid ""
1069
+ "Stripe integration currently only supports billing periods of \"Week\", \"Month\" or "
1070
+ "\"Year\"."
1071
+ msgstr ""
1072
+
1073
+ #: adminpages/membershiplevels.php:390 adminpages/membershiplevels.php:366
1074
+ #: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
1075
+ #: adminpages/membershiplevels.php:389
1076
+ msgid ""
1077
+ "Braintree integration currently only supports billing periods of \"Month\" or \"Year"
1078
+ "\"."
1079
+ msgstr ""
1080
+
1081
+ #: adminpages/membershiplevels.php:392 adminpages/membershiplevels.php:368
1082
+ #: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:389
1083
+ #: adminpages/membershiplevels.php:391
1084
+ msgid ""
1085
+ "Payflow integration currently only supports billing frequencies of 1 and billing "
1086
+ "periods of \"Week\", \"Month\" or \"Year\"."
1087
+ msgstr ""
1088
+
1089
+ #: adminpages/membershiplevels.php:396 adminpages/membershiplevels.php:372
1090
+ #: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:393
1091
+ #: adminpages/membershiplevels.php:395
1092
+ msgid ""
1093
+ "After saving this level, make note of the ID and create a \"Plan\" in your Braintree "
1094
+ "dashboard with the same settings and the \"Plan ID\" set to <em>pmpro_#</em>, where # "
1095
+ "is the level ID."
1096
+ msgstr ""
1097
+
1098
+ #: adminpages/membershiplevels.php:396 adminpages/membershiplevels.php:398
1099
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
1100
+ #: classes/gateways/class.pmprogateway_paypal.php:118
1101
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
1102
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
1103
+ #: adminpages/membershiplevels.php:372 adminpages/membershiplevels.php:374
1104
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:393
1105
+ #: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
1106
+ #: adminpages/paymentsettings.php:170 adminpages/paymentsettings.php:174
1107
+ #: adminpages/paymentsettings.php:179
1108
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
1109
+ msgid "Note"
1110
+ msgstr ""
1111
+
1112
+ #: adminpages/membershiplevels.php:398 adminpages/membershiplevels.php:374
1113
+ #: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:395
1114
+ #: adminpages/membershiplevels.php:397
1115
+ msgid ""
1116
+ "You will need to create a \"Plan\" in your Braintree dashboard with the same settings "
1117
+ "and the \"Plan ID\" set to"
1118
+ msgstr ""
1119
+
1120
+ #: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:386
1121
+ #: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
1122
+ #: adminpages/membershiplevels.php:409
1123
+ msgid ""
1124
+ "Stripe integration currently does not support billing limits. You can still set an "
1125
+ "expiration date below."
1126
+ msgstr ""
1127
+
1128
+ #: adminpages/membershiplevels.php:422 adminpages/membershiplevels.php:398
1129
+ #: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
1130
+ #: adminpages/membershiplevels.php:421
1131
+ msgid ""
1132
+ "2Checkout integration does not support custom trials. You can do one period trials by "
1133
+ "setting an initial payment different from the billing amount."
1134
+ msgstr ""
1135
+
1136
+ #: adminpages/membershiplevels.php:444 adminpages/membershiplevels.php:406
1137
+ #: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
1138
+ #: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:443
1139
+ msgid "Stripe integration currently does not support trial amounts greater than $0."
1140
+ msgstr ""
1141
+
1142
+ #: adminpages/membershiplevels.php:448 adminpages/membershiplevels.php:410
1143
+ #: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
1144
+ #: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:447
1145
+ msgid "Braintree integration currently does not support trial amounts greater than $0."
1146
+ msgstr ""
1147
+
1148
+ #: adminpages/membershiplevels.php:452 adminpages/membershiplevels.php:414
1149
+ #: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
1150
+ #: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:451
1151
+ msgid "Payflow integration currently does not support trial amounts greater than $0."
1152
+ msgstr ""
1153
+
1154
+ #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:422
1155
+ #: adminpages/membershiplevels.php:428 adminpages/membershiplevels.php:430
1156
+ #: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:458
1157
+ #: adminpages/membershiplevels.php:460
1158
+ msgid "Other Settings"
1159
+ msgstr ""
1160
+
1161
+ #: adminpages/membershiplevels.php:465 adminpages/membershiplevels.php:426
1162
+ #: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:434
1163
+ #: adminpages/membershiplevels.php:461 adminpages/membershiplevels.php:462
1164
+ #: adminpages/membershiplevels.php:464
1165
+ msgid "Disable New Signups"
1166
+ msgstr ""
1167
+
1168
+ #: adminpages/membershiplevels.php:466 adminpages/membershiplevels.php:427
1169
+ #: adminpages/membershiplevels.php:433 adminpages/membershiplevels.php:435
1170
+ #: adminpages/membershiplevels.php:462 adminpages/membershiplevels.php:463
1171
+ #: adminpages/membershiplevels.php:465
1172
+ msgid ""
1173
+ "Check to hide this level from the membership levels page and disable registration."
1174
+ msgstr ""
1175
+
1176
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:457
1177
+ #: adminpages/membershiplevels.php:463 adminpages/membershiplevels.php:465
1178
+ #: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:493
1179
+ #: adminpages/membershiplevels.php:495
1180
+ msgid "Content Settings"
1181
+ msgstr ""
1182
+
1183
+ #: adminpages/membershiplevels.php:500 adminpages/membershiplevels.php:461
1184
+ #: adminpages/membershiplevels.php:467 adminpages/membershiplevels.php:469
1185
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:497
1186
+ #: adminpages/membershiplevels.php:499
1187
+ msgid "Categories"
1188
+ msgstr ""
1189
+
1190
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:516
1191
+ msgid "Save Level"
1192
+ msgstr ""
1193
+
1194
+ #: adminpages/membershiplevels.php:518 adminpages/orders.php:561 pages/billing.php:339
1195
+ #: pages/cancel.php:71 shortcodes/pmpro_account.php:70
1196
+ #: adminpages/membershiplevels.php:517 adminpages/orders.php:511 pages/account.php:44
1197
+ #: pages/billing.php:295 pages/billing.php:299 pages/billing.php:330
1198
+ msgid "Cancel"
1199
+ msgstr ""
1200
+
1201
+ #: adminpages/membershiplevels.php:619 adminpages/membershiplevels.php:490
1202
+ #: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
1203
+ #: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
1204
+ #: adminpages/membershiplevels.php:569
1205
+ msgid "Add New Level"
1206
+ msgstr ""
1207
+
1208
+ #: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
1209
+ #: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
1210
+ #: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
1211
+ #: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
1212
+ #: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:529
1213
+ #: adminpages/membershiplevels.php:531 adminpages/membershiplevels.php:532
1214
+ #: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:575
1215
+ msgid "Search Levels"
1216
+ msgstr ""
1217
+
1218
+ #: adminpages/membershiplevels.php:631 adminpages/membershiplevels.php:579
1219
+ msgid "Drag and drop membership levels to reorder them on the Levels page."
1220
+ msgstr ""
1221
+
1222
+ #: adminpages/membershiplevels.php:640 pages/cancel.php:53 pages/confirmation.php:83
1223
+ #: pages/invoice.php:70 shortcodes/pmpro_account.php:46
1224
+ #: adminpages/membershiplevels.php:510 adminpages/membershiplevels.php:516
1225
+ #: adminpages/membershiplevels.php:518 adminpages/membershiplevels.php:544
1226
+ #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:586
1227
+ #: pages/account.php:20 pages/confirmation.php:81 pages/invoice.php:68
1228
+ msgid "Expiration"
1229
+ msgstr ""
1230
+
1231
+ #: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:511
1232
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
1233
+ #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
1234
+ #: adminpages/membershiplevels.php:587
1235
+ msgid "Allow Signups"
1236
+ msgstr ""
1237
+
1238
+ #: adminpages/membershiplevels.php:656 adminpages/membershiplevels.php:534
1239
+ #: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
1240
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
1241
+ #: adminpages/membershiplevels.php:646
1242
+ msgid "FREE"
1243
+ msgstr ""
1244
+
1245
+ #: adminpages/membershiplevels.php:665 adminpages/membershiplevels.php:560
1246
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
1247
+ #: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
1248
+ #: adminpages/membershiplevels.php:655
1249
+ msgid "After"
1250
+ msgstr ""
1251
+
1252
+ #: adminpages/membershiplevels.php:670 adminpages/orders.php:995
1253
+ #: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
1254
+ #: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
1255
+ #: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
1256
+ #: adminpages/orders.php:661 adminpages/orders.php:964 adminpages/orders.php:982
1257
+ #: adminpages/orders.php:992
1258
+ msgid "copy"
1259
+ msgstr ""
1260
+
1261
+ #: adminpages/memberslist.php:25 includes/adminpages.php:53 includes/adminpages.php:153
1262
+ #: includes/adminpages.php:15 includes/adminpages.php:74 includes/adminpages.php:142
1263
+ #: includes/adminpages.php:149
1264
+ msgid "Members List"
1265
+ msgstr ""
1266
+
1267
+ #: adminpages/memberslist.php:26 adminpages/orders.php:591 adminpages/orders.php:522
1268
+ msgid "Export to CSV"
1269
+ msgstr ""
1270
+
1271
+ #: adminpages/memberslist.php:30 adminpages/orders.php:603
1272
+ #: adminpages/reports/login.php:67 adminpages/reports/memberships.php:292
1273
+ #: adminpages/reports/sales.php:193 adminpages/reports/login.php:65
1274
+ #: adminpages/reports/sales.php:185 adminpages/reports/sales.php:194
1275
+ msgid "Show"
1276
+ msgstr ""
1277
+
1278
+ #: adminpages/memberslist.php:32 adminpages/reports/login.php:69
1279
+ #: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:216
1280
+ #: adminpages/reports/login.php:67 adminpages/reports/sales.php:208
1281
+ #: adminpages/reports/sales.php:217
1282
+ msgid "All Levels"
1283
+ msgstr ""
1284
+
1285
+ #: adminpages/memberslist.php:42
1286
+ msgid "Cancelled Members"
1287
+ msgstr ""
1288
+
1289
+ #: adminpages/memberslist.php:43
1290
+ msgid "Expired Members"
1291
+ msgstr ""
1292
+
1293
+ #: adminpages/memberslist.php:44 adminpages/memberslist.php:42
1294
+ msgid "Old Members"
1295
+ msgstr ""
1296
+
1297
+ #: adminpages/memberslist.php:49 adminpages/memberslist.php:52
1298
+ #: adminpages/memberslist.php:46 adminpages/memberslist.php:47
1299
+ #: adminpages/memberslist.php:50
1300
+ msgid "Search Members"
1301
+ msgstr ""
1302
+
1303
+ #: adminpages/memberslist.php:156 adminpages/memberslist.php:103
1304
+ #: adminpages/memberslist.php:136 adminpages/memberslist.php:146
1305
+ #, php-format
1306
+ msgid "%d members found."
1307
+ msgstr ""
1308
+
1309
+ #: adminpages/memberslist.php:165 pages/checkout.php:180
1310
+ #: shortcodes/pmpro_account.php:105 adminpages/memberslist.php:112
1311
+ #: adminpages/memberslist.php:145 adminpages/memberslist.php:155 pages/account.php:51
1312
+ #: pages/account.php:55 pages/account.php:76 pages/checkout.php:168
1313
+ #: pages/checkout.php:171 pages/checkout.php:173
1314
+ msgid "Username"
1315
+ msgstr ""
1316
+
1317
+ #: adminpages/memberslist.php:166 adminpages/memberslist.php:113
1318
+ #: adminpages/memberslist.php:146 adminpages/memberslist.php:156
1319
+ msgid "First&nbsp;Name"
1320
+ msgstr ""
1321
+
1322
+ #: adminpages/memberslist.php:167 adminpages/memberslist.php:114
1323
+ #: adminpages/memberslist.php:147 adminpages/memberslist.php:157
1324
+ msgid "Last&nbsp;Name"
1325
+ msgstr ""
1326
+
1327
+ #: adminpages/memberslist.php:170 pages/billing.php:71 pages/checkout.php:311
1328
+ #: pages/confirmation.php:61 pages/invoice.php:48 adminpages/memberslist.php:117
1329
+ #: adminpages/memberslist.php:150 adminpages/memberslist.php:160 pages/account.php:90
1330
+ #: pages/account.php:94 pages/billing.php:58 pages/billing.php:62 pages/checkout.php:298
1331
+ #: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:314
1332
+ #: pages/checkout.php:321 pages/confirmation.php:59 pages/invoice.php:46
1333
+ msgid "Billing Address"
1334
+ msgstr ""
1335
+
1336
+ #: adminpages/memberslist.php:171 adminpages/reports/login.php:145
1337
+ #: classes/gateways/class.pmprogateway_authorizenet.php:303
1338
+ #: adminpages/memberslist.php:118 adminpages/memberslist.php:151
1339
+ #: adminpages/memberslist.php:161 adminpages/pagesettings.php:51
1340
+ #: adminpages/reports/login.php:143
1341
+ #: classes/gateways/class.pmprogateway_authorizenet.php:187
1342
+ msgid "Membership"
1343
+ msgstr ""
1344
+
1345
+ #: adminpages/memberslist.php:172 adminpages/memberslist.php:119
1346
+ #: adminpages/memberslist.php:152 adminpages/memberslist.php:162
1347
+ msgid "Fee"
1348
+ msgstr ""
1349
+
1350
+ #: adminpages/memberslist.php:173 adminpages/reports/login.php:146
1351
+ #: adminpages/memberslist.php:120 adminpages/memberslist.php:153
1352
+ #: adminpages/memberslist.php:163 adminpages/reports/login.php:144
1353
+ msgid "Joined"
1354
+ msgstr ""
1355
+
1356
+ #: adminpages/memberslist.php:177 adminpages/memberslist.php:157
1357
+ #: adminpages/memberslist.php:167
1358
+ msgid "Ended"
1359
+ msgstr ""
1360
+
1361
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:212
1362
+ #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1363
+ #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1364
+ msgid "No members found."
1365
+ msgstr ""
1366
+
1367
+ #: adminpages/memberslist.php:261 adminpages/reports/login.php:212
1368
+ #: adminpages/memberslist.php:195 adminpages/memberslist.php:223
1369
+ #: adminpages/memberslist.php:251 adminpages/reports/login.php:210
1370
+ msgid "Search all levels"
1371
+ msgstr ""
1372
+
1373
+ #: adminpages/orders.php:67 adminpages/orders.php:26
1374
+ msgid "Order deleted successfully."
1375
+ msgstr ""
1376
+
1377
+ #: adminpages/orders.php:72 adminpages/orders.php:31
1378
+ msgid "Error deleting order."
1379
+ msgstr ""
1380
+
1381
+ #: adminpages/orders.php:169 adminpages/orders.php:119
1382
+ msgid "Order saved successfully."
1383
+ msgstr ""
1384
+
1385
+ #: adminpages/orders.php:174 adminpages/orders.php:124
1386
+ msgid "Error updating order timestamp."
1387
+ msgstr ""
1388
+
1389
+ #: adminpages/orders.php:180 adminpages/orders.php:130
1390
+ msgid "Error saving order."
1391
+ msgstr ""
1392
+
1393
+ #: adminpages/orders.php:245 adminpages/orders.php:195
1394
+ msgid "Order"
1395
+ msgstr ""
1396
+
1397
+ #: adminpages/orders.php:247 adminpages/orders.php:197
1398
+ msgid "New Order"
1399
+ msgstr ""
1400
+
1401
+ #: adminpages/orders.php:270 adminpages/orders.php:220
1402
+ msgid "Randomly generated for you."
1403
+ msgstr ""
1404
+
1405
+ #: adminpages/orders.php:275 adminpages/orders.php:225
1406
+ msgid "User ID"
1407
+ msgstr ""
1408
+
1409
+ #: adminpages/orders.php:284 adminpages/orders.php:234
1410
+ msgid "Membership Level ID"
1411
+ msgstr ""
1412
+
1413
+ #: adminpages/orders.php:293 adminpages/orders.php:243
1414
+ msgid "Billing Name"
1415
+ msgstr ""
1416
+
1417
+ #: adminpages/orders.php:301 adminpages/orders.php:251
1418
+ msgid "Billing Street"
1419
+ msgstr ""
1420
+
1421
+ #: adminpages/orders.php:308 adminpages/orders.php:258
1422
+ msgid "Billing City"
1423
+ msgstr ""
1424
+
1425
+ #: adminpages/orders.php:315 adminpages/orders.php:265
1426
+ msgid "Billing State"
1427
+ msgstr ""
1428
+
1429
+ #: adminpages/orders.php:322 adminpages/orders.php:272
1430
+ msgid "Billing Postal Code"
1431
+ msgstr ""
1432
+
1433
+ #: adminpages/orders.php:329 adminpages/orders.php:279
1434
+ msgid "Billing Country"
1435
+ msgstr ""
1436
+
1437
+ #: adminpages/orders.php:337 adminpages/orders.php:287
1438
+ msgid "Billing Phone"
1439
+ msgstr ""
1440
+
1441
+ #: adminpages/orders.php:346 adminpages/orders.php:296
1442
+ msgid "Sub Total"
1443
+ msgstr ""
1444
+
1445
+ #: adminpages/orders.php:354 pages/invoice.php:80 adminpages/orders.php:304
1446
+ #: pages/invoice.php:78
1447
+ msgid "Tax"
1448
+ msgstr ""
1449
+
1450
+ #: adminpages/orders.php:362 adminpages/orders.php:312
1451
+ msgid "Coupon Amount"
1452
+ msgstr ""
1453
+
1454
+ #: adminpages/orders.php:370 adminpages/orders.php:915 pages/invoice.php:84
1455
+ #: adminpages/orders.php:320 adminpages/orders.php:602 adminpages/orders.php:905
1456
+ #: pages/invoice.php:82
1457
+ msgid "Total"
1458
+ msgstr ""
1459
+
1460
+ #: adminpages/orders.php:375 adminpages/orders.php:325
1461
+ msgid "Should be subtotal + tax - couponamount."
1462
+ msgstr ""
1463
+
1464
+ #: adminpages/orders.php:380 adminpages/orders.php:330
1465
+ msgid "Payment Type"
1466
+ msgstr ""
1467
+
1468
+ #: adminpages/orders.php:385 adminpages/orders.php:335
1469
+ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
1470
+ msgstr ""
1471
+
1472
+ #: adminpages/orders.php:389 classes/gateways/class.pmprogateway_braintree.php:304
1473
+ #: classes/gateways/class.pmprogateway_stripe.php:409 pages/billing.php:247
1474
+ #: pages/checkout.php:516 adminpages/orders.php:339
1475
+ #: classes/gateways/class.pmprogateway_braintree.php:291
1476
+ #: classes/gateways/class.pmprogateway_stripe.php:408 pages/billing.php:234
1477
+ #: pages/billing.php:238 pages/checkout.php:493 pages/checkout.php:507
1478
+ #: pages/checkout.php:510 pages/checkout.php:517
1479
+ msgid "Card Type"
1480
+ msgstr ""
1481
+
1482
+ #: adminpages/orders.php:394 adminpages/orders.php:344
1483
+ msgid "e.g. Visa, MasterCard, AMEX, etc"
1484
+ msgstr ""
1485
+
1486
+ #: adminpages/orders.php:398 classes/gateways/class.pmprogateway_twocheckout.php:148
1487
+ #: adminpages/orders.php:348 adminpages/paymentsettings.php:347
1488
+ #: adminpages/paymentsettings.php:352
1489
+ #: classes/gateways/class.pmprogateway_twocheckout.php:129
1490
+ msgid "Account Number"
1491
+ msgstr ""
1492
+
1493
+ #: adminpages/orders.php:403 adminpages/orders.php:353
1494
+ msgid "Obscure all but last 4 digits."
1495
+ msgstr ""
1496
+
1497
+ #: adminpages/orders.php:408 adminpages/orders.php:358
1498
+ msgid "Expiration Month"
1499
+ msgstr ""
1500
+
1501
+ #: adminpages/orders.php:415 adminpages/orders.php:365
1502
+ msgid "Expiration Year"
1503
+ msgstr ""
1504
+
1505
+ #: adminpages/orders.php:423 adminpages/orders.php:919 adminpages/orders.php:373
1506
+ #: adminpages/orders.php:606 adminpages/orders.php:909
1507
+ msgid "Status"
1508
+ msgstr ""
1509
+
1510
+ #: adminpages/orders.php:444 adminpages/orders.php:917 adminpages/orders.php:394
1511
+ #: adminpages/orders.php:604 adminpages/orders.php:907
1512
+ msgid "Gateway"
1513
+ msgstr ""
1514
+
1515
+ #: adminpages/orders.php:462 adminpages/paymentsettings.php:124
1516
+ #: adminpages/orders.php:411 adminpages/orders.php:461
1517
+ #: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
1518
+ #: adminpages/paymentsettings.php:184
1519
+ msgid "Gateway Environment"
1520
+ msgstr ""
1521
+
1522
+ #: adminpages/orders.php:466 adminpages/paymentsettings.php:128
1523
+ #: adminpages/orders.php:415 adminpages/orders.php:465
1524
+ #: adminpages/paymentsettings.php:179 adminpages/paymentsettings.php:183
1525
+ #: adminpages/paymentsettings.php:188
1526
+ msgid "Sandbox/Testing"
1527
+ msgstr ""
1528
+
1529
+ #: adminpages/orders.php:467 adminpages/paymentsettings.php:129
1530
+ #: adminpages/orders.php:416 adminpages/orders.php:466
1531
+ #: adminpages/paymentsettings.php:180 adminpages/paymentsettings.php:184
1532
+ #: adminpages/paymentsettings.php:189
1533
+ msgid "Live/Production"
1534
+ msgstr ""
1535
+
1536
+ #: adminpages/orders.php:474 adminpages/orders.php:423 adminpages/orders.php:473
1537
+ msgid "Payment Transaction ID"
1538
+ msgstr ""
1539
+
1540
+ #: adminpages/orders.php:479 adminpages/orders.php:428 adminpages/orders.php:478
1541
+ msgid "Generated by the gateway. Useful to cross reference orders."
1542
+ msgstr ""
1543
+
1544
+ #: adminpages/orders.php:483 adminpages/orders.php:432 adminpages/orders.php:482
1545
+ msgid "Subscription Transaction ID"
1546
+ msgstr ""
1547
+
1548
+ #: adminpages/orders.php:488 adminpages/orders.php:437 adminpages/orders.php:487
1549
+ msgid "Generated by the gateway. Useful to cross reference subscriptions."
1550
+ msgstr ""
1551
+
1552
+ #: adminpages/orders.php:493 adminpages/orders.php:920 pages/invoice.php:107
1553
+ #: shortcodes/pmpro_account.php:122 adminpages/orders.php:442 adminpages/orders.php:492
1554
+ #: adminpages/orders.php:607 adminpages/orders.php:910 pages/account.php:91
1555
+ #: pages/invoice.php:105
1556
+ msgid "Date"
1557
+ msgstr ""
1558
+
1559
+ #: adminpages/orders.php:527 adminpages/orders.php:477
1560
+ msgid "Affiliate ID"
1561
+ msgstr ""
1562
+
1563
+ #: adminpages/orders.php:535 adminpages/orders.php:485
1564
+ msgid "Affiliate SubID"
1565
+ msgstr ""
1566
+
1567
+ #: adminpages/orders.php:545 adminpages/orders.php:495
1568
+ msgid "Notes"
1569
+ msgstr ""
1570
+
1571
+ #: adminpages/orders.php:560 adminpages/orders.php:510
1572
+ msgid "Save Order"
1573
+ msgstr ""
1574
+
1575
+ #: adminpages/orders.php:570 includes/adminpages.php:55 includes/adminpages.php:167
1576
+ #: adminpages/orders.php:520 includes/adminpages.php:17 includes/adminpages.php:84
1577
+ #: includes/adminpages.php:156 includes/adminpages.php:163
1578
+ msgid "Orders"
1579
+ msgstr ""
1580
+
1581
+ #: adminpages/orders.php:571 adminpages/orders.php:521
1582
+ msgid "Add New Order"
1583
+ msgstr ""
1584
+
1585
+ #: adminpages/orders.php:606
1586
+ msgid "Within a Date Range"
1587
+ msgstr ""
1588
+
1589
+ #: adminpages/orders.php:607
1590
+ msgid "Predefined Date Range"
1591
+ msgstr ""
1592
+
1593
+ #: adminpages/orders.php:608
1594
+ msgid "Within a Level"
1595
+ msgstr ""
1596
+
1597
+ #: adminpages/orders.php:609
1598
+ msgid "Within a Status"
1599
+ msgstr ""
1600
+
1601
+ #: adminpages/orders.php:612
1602
+ msgid "From"
1603
+ msgstr ""
1604
+
1605
+ #: adminpages/orders.php:624
1606
+ msgid "To"
1607
+ msgstr ""
1608
+
1609
+ #: adminpages/orders.php:636
1610
+ msgid "filter by "
1611
+ msgstr ""
1612
+
1613
+ #: adminpages/orders.php:674
1614
+ msgid "Filter"
1615
+ msgstr ""
1616
+
1617
+ #: adminpages/orders.php:777 adminpages/orders.php:780 adminpages/orders.php:535
1618
+ #: adminpages/orders.php:538
1619
+ msgid "Search Orders"
1620
+ msgstr ""
1621
+
1622
+ #: adminpages/orders.php:903 adminpages/orders.php:590 adminpages/orders.php:893
1623
+ #, php-format
1624
+ msgid "%d orders found."
1625
+ msgstr ""
1626
+
1627
+ #: adminpages/orders.php:912 adminpages/reports/login.php:143
1628
+ #: classes/gateways/class.pmprogateway_payflowpro.php:116 adminpages/orders.php:599
1629
+ #: adminpages/orders.php:902 adminpages/paymentsettings.php:211
1630
+ #: adminpages/paymentsettings.php:215 adminpages/paymentsettings.php:220
1631
+ #: adminpages/reports/login.php:141
1632
+ msgid "User"
1633
+ msgstr ""
1634
+
1635
+ #: adminpages/orders.php:914 includes/init.php:222 includes/profile.php:27
1636
+ #: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
1637
+ #: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
1638
+ #: adminpages/orders.php:601 adminpages/orders.php:904 includes/init.php:214
1639
+ #: includes/init.php:217 includes/init.php:218 includes/init.php:220
1640
+ #: includes/profile.php:25 pages/checkout.php:33 pages/checkout.php:34
1641
+ #: pages/checkout.php:35 pages/confirmation.php:46 pages/confirmation.php:62
1642
+ #: pages/confirmation.php:103 pages/invoice.php:27 pages/invoice.php:49
1643
+ msgid "Membership Level"
1644
+ msgstr ""
1645
+
1646
+ #: adminpages/orders.php:916 adminpages/orders.php:982 adminpages/orders.php:603
1647
+ #: adminpages/orders.php:651 adminpages/orders.php:906 adminpages/orders.php:954
1648
+ #: adminpages/orders.php:972
1649
+ msgid "Payment"
1650
+ msgstr ""
1651
+
1652
+ #: adminpages/orders.php:918 adminpages/orders.php:605 adminpages/orders.php:908
1653
+ msgid "Transaction IDs"
1654
+ msgstr ""
1655
+
1656
+ #: adminpages/orders.php:943 adminpages/orders.php:630 adminpages/orders.php:933
1657
+ msgid "deleted"
1658
+ msgstr ""
1659
+
1660
+ #: adminpages/orders.php:984 adminpages/orders.php:653 adminpages/orders.php:956
1661
+ #: adminpages/orders.php:974
1662
+ msgid "Subscription"
1663
+ msgstr ""
1664
+
1665
+ #: adminpages/orders.php:998 adminpages/orders.php:664 adminpages/orders.php:967
1666
+ #: adminpages/orders.php:985 adminpages/orders.php:995
1667
+ #, php-format
1668
+ msgid ""
1669
+ "Deleting orders is permanent and can affect active users. Are you sure you want to "
1670
+ "delete order %s?"
1671
+ msgstr ""
1672
+
1673
+ #: adminpages/orders.php:1008 adminpages/orders.php:674 adminpages/orders.php:977
1674
+ #: adminpages/orders.php:995 adminpages/orders.php:1005
1675
+ msgid "No orders found."
1676
+ msgstr ""
1677
+
1678
+ #: adminpages/pagesettings.php:51
1679
+ msgid "Membership Account"
1680
+ msgstr ""
1681
+
1682
+ #: adminpages/pagesettings.php:54
1683
+ msgid "Membership Billing"
1684
+ msgstr ""
1685
+
1686
+ #: adminpages/pagesettings.php:57
1687
+ msgid "Membership Cancel"
1688
+ msgstr ""
1689
+
1690
+ #: adminpages/pagesettings.php:60
1691
+ msgid "Membership Checkout"
1692
+ msgstr ""
1693
+
1694
+ #: adminpages/pagesettings.php:63
1695
+ msgid "Membership Confirmation"
1696
+ msgstr ""
1697
+
1698
+ #: adminpages/pagesettings.php:66
1699
+ msgid "Membership Invoice"
1700
+ msgstr ""
1701
+
1702
+ #: adminpages/pagesettings.php:73
1703
+ #, php-format
1704
+ msgid "Membership %s"
1705
+ msgstr ""
1706
+
1707
+ #: adminpages/pagesettings.php:111 adminpages/pagesettings.php:83
1708
+ msgid "The following pages have been created for you"
1709
+ msgstr ""
1710
+
1711
+ #: adminpages/pagesettings.php:126 adminpages/pagesettings.php:98
1712
+ msgid "Manage the WordPress pages assigned to each required Paid Memberships Pro page."
1713
+ msgstr ""
1714
+
1715
+ #: adminpages/pagesettings.php:132 adminpages/pagesettings.php:104
1716
+ msgid "Assign the WordPress pages for each required Paid Memberships Pro page or"
1717
+ msgstr ""
1718
+
1719
+ #: adminpages/pagesettings.php:132 adminpages/pagesettings.php:104
1720
+ msgid "click here to let us generate them for you"
1721
+ msgstr ""
1722
+
1723
+ #: adminpages/pagesettings.php:140 adminpages/pagesettings.php:112
1724
+ msgid "Account Page"
1725
+ msgstr ""
1726
+
1727
+ #: adminpages/pagesettings.php:144 adminpages/pagesettings.php:159
1728
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:190
1729
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:222
1730
+ #: adminpages/pagesettings.php:238 adminpages/pagesettings.php:147
1731
+ #: adminpages/pagesettings.php:162 adminpages/pagesettings.php:177
1732
+ #: adminpages/pagesettings.php:193 adminpages/pagesettings.php:209
1733
+ #: adminpages/pagesettings.php:225 adminpages/pagesettings.php:241
1734
+ msgid "Choose One"
1735
+ msgstr ""
1736
+
1737
+ #: adminpages/pagesettings.php:147 adminpages/pagesettings.php:162
1738
+ #: adminpages/pagesettings.php:177 adminpages/pagesettings.php:193
1739
+ #: adminpages/pagesettings.php:209 adminpages/pagesettings.php:225
1740
+ #: adminpages/pagesettings.php:241 adminpages/pagesettings.php:119
1741
+ #: adminpages/pagesettings.php:132 adminpages/pagesettings.php:134
1742
+ #: adminpages/pagesettings.php:145 adminpages/pagesettings.php:149
1743
+ #: adminpages/pagesettings.php:150 adminpages/pagesettings.php:159
1744
+ #: adminpages/pagesettings.php:165 adminpages/pagesettings.php:173
1745
+ #: adminpages/pagesettings.php:180 adminpages/pagesettings.php:181
1746
+ #: adminpages/pagesettings.php:187 adminpages/pagesettings.php:196
1747
+ #: adminpages/pagesettings.php:197 adminpages/pagesettings.php:201
1748
+ #: adminpages/pagesettings.php:212 adminpages/pagesettings.php:213
1749
+ #: adminpages/pagesettings.php:228 adminpages/pagesettings.php:244
1750
+ msgid "edit page"
1751
+ msgstr ""
1752
+
1753
+ #: adminpages/pagesettings.php:149 adminpages/pagesettings.php:164
1754
+ #: adminpages/pagesettings.php:179 adminpages/pagesettings.php:195
1755
+ #: adminpages/pagesettings.php:211 adminpages/pagesettings.php:227
1756
+ #: adminpages/pagesettings.php:243 adminpages/pagesettings.php:121
1757
+ #: adminpages/pagesettings.php:136 adminpages/pagesettings.php:151
1758
+ #: adminpages/pagesettings.php:152 adminpages/pagesettings.php:167
1759
+ #: adminpages/pagesettings.php:182 adminpages/pagesettings.php:183
1760
+ #: adminpages/pagesettings.php:198 adminpages/pagesettings.php:199
1761
+ #: adminpages/pagesettings.php:214 adminpages/pagesettings.php:215
1762
+ #: adminpages/pagesettings.php:230 adminpages/pagesettings.php:246
1763
+ msgid "view page"
1764
+ msgstr ""
1765
+
1766
+ #: adminpages/pagesettings.php:151 adminpages/pagesettings.php:166
1767
+ #: adminpages/pagesettings.php:181 adminpages/pagesettings.php:197
1768
+ #: adminpages/pagesettings.php:213 adminpages/pagesettings.php:229
1769
+ #: adminpages/pagesettings.php:245 adminpages/pagesettings.php:121
1770
+ #: adminpages/pagesettings.php:123 adminpages/pagesettings.php:134
1771
+ #: adminpages/pagesettings.php:138 adminpages/pagesettings.php:147
1772
+ #: adminpages/pagesettings.php:153 adminpages/pagesettings.php:154
1773
+ #: adminpages/pagesettings.php:161 adminpages/pagesettings.php:169
1774
+ #: adminpages/pagesettings.php:175 adminpages/pagesettings.php:184
1775
+ #: adminpages/pagesettings.php:185 adminpages/pagesettings.php:189
1776
+ #: adminpages/pagesettings.php:200 adminpages/pagesettings.php:201
1777
+ #: adminpages/pagesettings.php:203 adminpages/pagesettings.php:216
1778
+ #: adminpages/pagesettings.php:217 adminpages/pagesettings.php:232
1779
+ #: adminpages/pagesettings.php:248
1780
+ msgid "Include the shortcode"
1781
+ msgstr ""
1782
+
1783
+ #: adminpages/pagesettings.php:155 adminpages/pagesettings.php:125
1784
+ #: adminpages/pagesettings.php:127 adminpages/pagesettings.php:158
1785
+ msgid "Billing Information Page"
1786
+ msgstr ""
1787
+
1788
+ #: adminpages/pagesettings.php:170 adminpages/pagesettings.php:138
1789
+ #: adminpages/pagesettings.php:142 adminpages/pagesettings.php:173
1790
+ msgid "Cancel Page"
1791
+ msgstr ""
1792
+
1793
+ #: adminpages/pagesettings.php:186 adminpages/pagesettings.php:152
1794
+ #: adminpages/pagesettings.php:158 adminpages/pagesettings.php:189
1795
+ msgid "Checkout Page"
1796
+ msgstr ""
1797
+
1798
+ #: adminpages/pagesettings.php:202 adminpages/pagesettings.php:166
1799
+ #: adminpages/pagesettings.php:174 adminpages/pagesettings.php:205
1800
+ msgid "Confirmation Page"
1801
+ msgstr ""
1802
+
1803
+ #: adminpages/pagesettings.php:218 adminpages/pagesettings.php:180
1804
+ #: adminpages/pagesettings.php:190 adminpages/pagesettings.php:221
1805
+ msgid "Invoice Page"
1806
+ msgstr ""
1807
+
1808
+ #: adminpages/pagesettings.php:234 adminpages/pagesettings.php:194
1809
+ #: adminpages/pagesettings.php:206 adminpages/pagesettings.php:237
1810
+ msgid "Levels Page"
1811
+ msgstr ""
1812
+
1813
+ #: adminpages/paymentsettings.php:49 adminpages/paymentsettings.php:77
1814
+ #: adminpages/paymentsettings.php:82
1815
+ msgid "Your payment settings have been updated."
1816
+ msgstr ""
1817
+
1818
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:106
1819
+ #: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:146
1820
+ #: adminpages/paymentsettings.php:152 adminpages/paymentsettings.php:154
1821
+ msgid "Payment Gateway"
1822
+ msgstr ""
1823
+
1824
+ #: adminpages/paymentsettings.php:93 adminpages/paymentsettings.php:144
1825
+ #: adminpages/paymentsettings.php:146
1826
+ msgid "SSL Settings"
1827
+ msgstr ""
1828
+
1829
+ #: adminpages/paymentsettings.php:95 adminpages/paymentsettings.php:148
1830
+ msgid ""
1831
+ "Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target=\"_blank\" "
1832
+ "href=\"http://www.paidmembershipspro.com/support/initial-plugin-setup/ssl/\">SSL</a> "
1833
+ "or <a title=\"Paid Memberships Pro - Payment Gateway Settings\" target=\"_blank\" "
1834
+ "href=\"http://www.paidmembershipspro.com/support/initial-plugin-setup/payment-gateway/"
1835
+ "\">Payment Gateway Settings</a>."
1836
+ msgstr ""
1837
+
1838
+ #: adminpages/paymentsettings.php:153 adminpages/paymentsettings.php:327
1839
+ #: adminpages/paymentsettings.php:337 adminpages/paymentsettings.php:356
1840
+ #: adminpages/paymentsettings.php:381 adminpages/paymentsettings.php:386
1841
+ msgid "Currency"
1842
+ msgstr ""
1843
+
1844
+ #: adminpages/paymentsettings.php:169 adminpages/paymentsettings.php:400
1845
+ #: adminpages/paymentsettings.php:402
1846
+ msgid ""
1847
+ "Not all currencies will be supported by every gateway. Please check with your gateway."
1848
+ msgstr ""
1849
+
1850
+ #: adminpages/paymentsettings.php:174 adminpages/paymentsettings.php:375
1851
+ #: adminpages/paymentsettings.php:401 adminpages/paymentsettings.php:406
1852
+ #: adminpages/paymentsettings.php:408
1853
+ msgid "Accepted Credit Card Types"
1854
+ msgstr ""
1855
+
1856
+ #: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
1857
+ #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
1858
+ #: adminpages/paymentsettings.php:445
1859
+ msgid "Sales Tax"
1860
+ msgstr ""
1861
+
1862
+ #: adminpages/paymentsettings.php:188 pages/billing.php:91
1863
+ #: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
1864
+ #: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
1865
+ #: pages/billing.php:78 pages/billing.php:82
1866
+ msgid "optional"
1867
+ msgstr ""
1868
+
1869
+ #: adminpages/paymentsettings.php:191 adminpages/paymentsettings.php:401
1870
+ #: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:446
1871
+ #: adminpages/paymentsettings.php:448
1872
+ msgid "Tax State"
1873
+ msgstr ""
1874
+
1875
+ #: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:402
1876
+ #: adminpages/paymentsettings.php:442 adminpages/paymentsettings.php:447
1877
+ #: adminpages/paymentsettings.php:449
1878
+ msgid "abbreviation, e.g. \"PA\""
1879
+ msgstr ""
1880
+
1881
+ #: adminpages/paymentsettings.php:194 adminpages/paymentsettings.php:404
1882
+ #: adminpages/paymentsettings.php:444 adminpages/paymentsettings.php:449
1883
+ #: adminpages/paymentsettings.php:451
1884
+ msgid "decimal, e.g. \"0.06\""
1885
+ msgstr ""
1886
+
1887
+ #: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:450
1888
+ #: adminpages/paymentsettings.php:452
1889
+ msgid ""
1890
+ "US only. If values are given, tax will be applied for any members ordering from the "
1891
+ "selected state.<br />For non-US or more complex tax rules, use the <a target=\"_blank"
1892
+ "\" href=\"http://www.paidmembershipspro.com/2013/10/non-us-taxes-paid-memberships-pro/"
1893
+ "\">pmpro_tax filter</a>."
1894
+ msgstr ""
1895
+
1896
+ #: adminpages/paymentsettings.php:206 adminpages/paymentsettings.php:450
1897
+ #: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:457
1898
+ msgid "Force SSL"
1899
+ msgstr ""
1900
+
1901
+ #: adminpages/paymentsettings.php:212 adminpages/paymentsettings.php:456
1902
+ #: adminpages/paymentsettings.php:461 adminpages/paymentsettings.php:463
1903
+ msgid "Yes (with JavaScript redirects)"
1904
+ msgstr ""
1905
+
1906
+ #: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:430
1907
+ #: adminpages/paymentsettings.php:463 adminpages/paymentsettings.php:468
1908
+ #: adminpages/paymentsettings.php:470
1909
+ msgid "SSL Seal Code"
1910
+ msgstr ""
1911
+
1912
+ #: adminpages/paymentsettings.php:228
1913
+ msgid "Extra HTTPS URL Filter"
1914
+ msgstr ""
1915
+
1916
+ #: adminpages/paymentsettings.php:231
1917
+ msgid ""
1918
+ "Pass all generated HTML through a URL filter to add HTTPS to URLs used on secure "
1919
+ "pages. Check this if you are using SSL and have warnings on your checkout pages."
1920
+ msgstr ""
1921
+
1922
+ #: adminpages/reports.php:40 adminpages/reports.php:26 adminpages/reports.php:37
1923
+ msgid "Details"
1924
+ msgstr ""
1925
+
1926
+ #: adminpages/reports/login.php:16
1927
+ msgid "Visits, Views, and Logins"
1928
+ msgstr ""
1929
+
1930
+ #: adminpages/reports/login.php:27 adminpages/reports/login.php:26
1931
+ msgid "Visits Today"
1932
+ msgstr ""
1933
+
1934
+ #: adminpages/reports/login.php:28 adminpages/reports/login.php:149
1935
+ #: adminpages/reports/login.php:27 adminpages/reports/login.php:147
1936
+ msgid "Visits This Month"
1937
+ msgstr ""
1938
+
1939
+ #: adminpages/reports/login.php:29 adminpages/reports/login.php:28
1940
+ msgid "Visits All Time"
1941
+ msgstr ""
1942
+
1943
+ #: adminpages/reports/login.php:32 adminpages/reports/login.php:31
1944
+ msgid "Views Today"
1945
+ msgstr ""
1946
+
1947
+ #: adminpages/reports/login.php:33 adminpages/reports/login.php:151
1948
+ #: adminpages/reports/login.php:32 adminpages/reports/login.php:149
1949
+ msgid "Views This Month"
1950
+ msgstr ""
1951
+
1952
+ #: adminpages/reports/login.php:34 adminpages/reports/login.php:33
1953
+ msgid "Views All Time"
1954
+ msgstr ""
1955
+
1956
+ #: adminpages/reports/login.php:37 adminpages/reports/login.php:36
1957
+ msgid "Logins Today"
1958
+ msgstr ""
1959
+
1960
+ #: adminpages/reports/login.php:38 adminpages/reports/login.php:154
1961
+ #: adminpages/reports/login.php:37 adminpages/reports/login.php:152
1962
+ msgid "Logins This Month"
1963
+ msgstr ""
1964
+
1965
+ #: adminpages/reports/login.php:39 adminpages/reports/login.php:38
1966
+ msgid "Logins All Time"
1967
+ msgstr ""
1968
+
1969
+ #: adminpages/reports/login.php:63 adminpages/reports/login.php:61
1970
+ msgid "Visits, Views, and Logins Report"
1971
+ msgstr ""
1972
+
1973
+ #: adminpages/reports/login.php:68 adminpages/reports/login.php:66
1974
+ msgid "All Users"
1975
+ msgstr ""
1976
+
1977
+ #: adminpages/reports/login.php:148 adminpages/reports/login.php:146
1978
+ msgid "Last Visit"
1979
+ msgstr ""
1980
+
1981
+ #: adminpages/reports/login.php:150 adminpages/reports/login.php:148
1982
+ msgid "Total Visits"
1983
+ msgstr ""
1984
+
1985
+ #: adminpages/reports/login.php:152 adminpages/reports/login.php:150
1986
+ msgid "Total Views"
1987
+ msgstr ""
1988
+
1989
+ #: adminpages/reports/login.php:153 adminpages/reports/login.php:151
1990
+ msgid "Last Login"
1991
+ msgstr ""
1992
+
1993
+ #: adminpages/reports/login.php:155 adminpages/reports/login.php:153
1994
+ msgid "Total Logins"
1995
+ msgstr ""
1996
+
1997
+ #: adminpages/reports/memberships.php:18 adminpages/reports/memberships.php:288
1998
+ msgid "Membership Stats"
1999
+ msgstr ""
2000
+
2001
+ #: adminpages/reports/memberships.php:48
2002
+ msgid "Signups"
2003
+ msgstr ""
2004
+
2005
+ #: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:69
2006
+ msgid "All Time"
2007
+ msgstr ""
2008
+
2009
+ #: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:73
2010
+ msgid "This Year"
2011
+ msgstr ""
2012
+
2013
+ #: adminpages/reports/memberships.php:58 adminpages/reports/memberships.php:77
2014
+ msgid "This Month"
2015
+ msgstr ""
2016
+
2017
+ #: adminpages/reports/memberships.php:62 adminpages/reports/memberships.php:81
2018
+ msgid "Today"
2019
+ msgstr ""
2020
+
2021
+ #: adminpages/reports/memberships.php:67
2022
+ msgid "Cancellations"
2023
+ msgstr ""
2024
+
2025
+ #: adminpages/reports/memberships.php:86
2026
+ msgid "Other Stats"
2027
+ msgstr ""
2028
+
2029
+ #: adminpages/reports/memberships.php:88
2030
+ msgid "Monthly Recurring Revenue (MRR)"
2031
+ msgstr ""
2032
+
2033
+ #: adminpages/reports/memberships.php:92
2034
+ msgid "Cancellation Rate"
2035
+ msgstr ""
2036
+
2037
+ #: adminpages/reports/memberships.php:96
2038
+ msgid "Lifetime Value (LTV)"
2039
+ msgstr ""
2040
+
2041
+ #: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:195
2042
+ #: adminpages/reports/sales.php:187 adminpages/reports/sales.php:196
2043
+ msgid "Daily"
2044
+ msgstr ""
2045
+
2046
+ #: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:196
2047
+ #: adminpages/reports/sales.php:188 adminpages/reports/sales.php:197
2048
+ msgid "Monthly"
2049
+ msgstr ""
2050
+
2051
+ #: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:197
2052
+ #: adminpages/reports/sales.php:189 adminpages/reports/sales.php:198
2053
+ msgid "Annual"
2054
+ msgstr ""
2055
+
2056
+ #: adminpages/reports/memberships.php:299
2057
+ msgid "Signups vs. Cancellations"
2058
+ msgstr ""
2059
+
2060
+ #: adminpages/reports/memberships.php:304 adminpages/reports/memberships.php:315
2061
+ #: adminpages/reports/sales.php:203 adminpages/reports/sales.php:214
2062
+ #: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:551
2063
+ #: adminpages/membershiplevels.php:553 adminpages/membershiplevels.php:559
2064
+ #: adminpages/membershiplevels.php:561 adminpages/membershiplevels.php:580
2065
+ #: adminpages/membershiplevels.php:588 adminpages/reports/sales.php:195
2066
+ #: adminpages/reports/sales.php:204 adminpages/reports/sales.php:206
2067
+ #: adminpages/reports/sales.php:215
2068
+ msgid "for"
2069
+ msgstr ""
2070
+
2071
+ #: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:230
2072
+ #: adminpages/reports/sales.php:222 adminpages/reports/sales.php:231
2073
+ msgid "Generate Report"
2074
+ msgstr ""
2075
+
2076
+ #: adminpages/reports/sales.php:18
2077
+ msgid "Sales and Revenue (Testing/Sandbox)"
2078
+ msgstr ""
2079
+
2080
+ #: adminpages/reports/sales.php:20 adminpages/reports/sales.php:189
2081
+ #: adminpages/reports/sales.php:180
2082
+ msgid "Sales and Revenue"
2083
+ msgstr ""
2084
+
2085
+ #: adminpages/reports/sales.php:200 adminpages/reports/sales.php:192
2086
+ #: adminpages/reports/sales.php:201
2087
+ msgid "Revenue"
2088
+ msgstr ""
2089
+
2090
+ #: adminpages/reports/sales.php:201 adminpages/reports/sales.php:193
2091
+ #: adminpages/reports/sales.php:202
2092
+ msgid "Sales"
2093
+ msgstr ""
2094
+
2095
+ #: classes/class.memberorder.php:644 classes/class.memberorder.php:553
2096
+ #: classes/class.memberorder.php:561 classes/class.memberorder.php:564
2097
+ #: classes/class.memberorder.php:573 includes/cleanup.php:24
2098
+ #, php-format
2099
+ msgid ""
2100
+ "There was an error canceling the subscription for user with ID=%s. You will want to "
2101
+ "check your payment gateway to see if their subscription is still active."
2102
+ msgstr ""
2103
+
2104
+ #: classes/class.pmproemail.php:37
2105
+ #, php-format
2106
+ msgid "An Email From %s"
2107
+ msgstr ""
2108
+
2109
+ #: classes/class.pmproemail.php:134 classes/class.pmproemail.php:120
2110
+ #: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
2111
+ #, php-format
2112
+ msgid "Your membership at %s has been CANCELLED"
2113
+ msgstr ""
2114
+
2115
+ #: classes/class.pmproemail.php:156 classes/class.pmproemail.php:142
2116
+ #: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
2117
+ #, php-format
2118
+ msgid "Membership for %s at %s has been CANCELLED"
2119
+ msgstr ""
2120
+
2121
+ #: classes/class.pmproemail.php:187 classes/class.pmproemail.php:172
2122
+ #: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
2123
+ #: classes/class.pmproemail.php:178
2124
+ #, php-format
2125
+ msgid "Your membership confirmation for %s"
2126
+ msgstr ""
2127
+
2128
+ #: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
2129
+ #: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
2130
+ #: classes/class.pmproemail.php:346 classes/class.pmproemail.php:657
2131
+ #: classes/gateways/class.pmprogateway_braintree.php:362
2132
+ #: classes/gateways/class.pmprogateway_stripe.php:496 pages/checkout.php:75
2133
+ #: pages/checkout.php:85 pages/checkout.php:603 pages/confirmation.php:52
2134
+ #: pages/invoice.php:33 classes/class.pmproemail.php:216
2135
+ #: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
2136
+ #: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
2137
+ #: classes/class.pmproemail.php:231 classes/class.pmproemail.php:234
2138
+ #: classes/class.pmproemail.php:236 classes/class.pmproemail.php:237
2139
+ #: classes/class.pmproemail.php:246 classes/class.pmproemail.php:304
2140
+ #: classes/class.pmproemail.php:307 classes/class.pmproemail.php:313
2141
+ #: classes/class.pmproemail.php:316 classes/class.pmproemail.php:325
2142
+ #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:334
2143
+ #: classes/class.pmproemail.php:532 classes/class.pmproemail.php:580
2144
+ #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:648
2145
+ #: classes/gateways/class.pmprogateway_braintree.php:349
2146
+ #: classes/gateways/class.pmprogateway_stripe.php:495 pages/checkout.php:66
2147
+ #: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:76
2148
+ #: pages/checkout.php:77 pages/checkout.php:78 pages/checkout.php:549
2149
+ #: pages/checkout.php:565 pages/checkout.php:566 pages/checkout.php:573
2150
+ #: pages/checkout.php:594 pages/confirmation.php:51 pages/invoice.php:32
2151
+ msgid "Discount Code"
2152
+ msgstr ""
2153
+
2154
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
2155
+ #: classes/class.pmproemail.php:663 classes/class.pmproemail.php:241
2156
+ #: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
2157
+ #: classes/class.pmproemail.php:256 classes/class.pmproemail.php:325
2158
+ #: classes/class.pmproemail.php:328 classes/class.pmproemail.php:346
2159
+ #: classes/class.pmproemail.php:349 classes/class.pmproemail.php:538
2160
+ #: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
2161
+ #: classes/class.pmproemail.php:654
2162
+ #, php-format
2163
+ msgid "This membership will expire on %s."
2164
+ msgstr ""
2165
+
2166
+ #: classes/class.pmproemail.php:287 classes/class.pmproemail.php:263
2167
+ #: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
2168
+ #: classes/class.pmproemail.php:278
2169
+ #, php-format
2170
+ msgid "Member Checkout for %s at %s"
2171
+ msgstr ""
2172
+
2173
+ #: classes/class.pmproemail.php:375 classes/class.pmproemail.php:342
2174
+ #: classes/class.pmproemail.php:345 classes/class.pmproemail.php:363
2175
+ #: classes/class.pmproemail.php:366
2176
+ #, php-format
2177
+ msgid "Your billing information has been udpated at %s"
2178
+ msgstr ""
2179
+
2180
+ #: classes/class.pmproemail.php:428 classes/class.pmproemail.php:386
2181
+ #: classes/class.pmproemail.php:390 classes/class.pmproemail.php:416
2182
+ #: classes/class.pmproemail.php:419
2183
+ #, php-format
2184
+ msgid "Billing information has been udpated for %s at %s"
2185
+ msgstr ""
2186
+
2187
+ #: classes/class.pmproemail.php:476 classes/class.pmproemail.php:425
2188
+ #: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
2189
+ #: classes/class.pmproemail.php:467
2190
+ #, php-format
2191
+ msgid "Membership Payment Failed at %s"
2192
+ msgstr ""
2193
+
2194
+ #: classes/class.pmproemail.php:522 classes/class.pmproemail.php:462
2195
+ #: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
2196
+ #: classes/class.pmproemail.php:513
2197
+ #, php-format
2198
+ msgid "Membership Payment Failed For %s at %s"
2199
+ msgstr ""
2200
+
2201
+ #: classes/class.pmproemail.php:569 classes/class.pmproemail.php:508
2202
+ #: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
2203
+ #, php-format
2204
+ msgid "Credit Card on File Expiring Soon at %s"
2205
+ msgstr ""
2206
+
2207
+ #: classes/class.pmproemail.php:617 classes/class.pmproemail.php:501
2208
+ #: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
2209
+ #: classes/class.pmproemail.php:608
2210
+ #, php-format
2211
+ msgid "INVOICE for %s membership"
2212
+ msgstr ""
2213
+
2214
+ #: classes/class.pmproemail.php:688 classes/class.pmproemail.php:563
2215
+ #: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
2216
+ #: classes/class.pmproemail.php:679
2217
+ #, php-format
2218
+ msgid "Your trial at %s is ending soon"
2219
+ msgstr ""
2220
+
2221
+ #: classes/class.pmproemail.php:722 classes/class.pmproemail.php:596
2222
+ #: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
2223
+ #: classes/class.pmproemail.php:713
2224
+ #, php-format
2225
+ msgid "Your membership at %s has ended"
2226
+ msgstr ""
2227
+
2228
+ #: classes/class.pmproemail.php:747 classes/class.pmproemail.php:621
2229
+ #: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
2230
+ #: classes/class.pmproemail.php:738
2231
+ #, php-format
2232
+ msgid "Your membership at %s will end soon"
2233
+ msgstr ""
2234
+
2235
+ #: classes/class.pmproemail.php:767 classes/class.pmproemail.php:641
2236
+ #: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
2237
+ #: classes/class.pmproemail.php:758
2238
+ #, php-format
2239
+ msgid "Your membership at %s has been changed"
2240
+ msgstr ""
2241
+
2242
+ #: classes/class.pmproemail.php:771 classes/class.pmproemail.php:809
2243
+ #: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
2244
+ #: classes/class.pmproemail.php:800
2245
+ #, php-format
2246
+ msgid "The new level is %s"
2247
+ msgstr ""
2248
+
2249
+ #: classes/class.pmproemail.php:773 classes/class.pmproemail.php:647
2250
+ #: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
2251
+ #: classes/class.pmproemail.php:764
2252
+ msgid "Your membership has been cancelled"
2253
+ msgstr ""
2254
+
2255
+ #: classes/class.pmproemail.php:777 classes/class.pmproemail.php:815
2256
+ #: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
2257
+ #: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
2258
+ #: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
2259
+ #: classes/class.pmproemail.php:803 classes/class.pmproemail.php:806
2260
+ #, php-format
2261
+ msgid "This membership will expire on %s"
2262
+ msgstr ""
2263
+
2264
+ #: classes/class.pmproemail.php:781 classes/class.pmproemail.php:819
2265
+ #: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
2266
+ #: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
2267
+ #: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
2268
+ #: classes/class.pmproemail.php:807 classes/class.pmproemail.php:810
2269
+ msgid "This membership does not expire"
2270
+ msgstr ""
2271
+
2272
+ #: classes/class.pmproemail.php:805 classes/class.pmproemail.php:679
2273
+ #: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
2274
+ #: classes/class.pmproemail.php:796
2275
+ #, php-format
2276
+ msgid "Membership for %s at %s has been changed"
2277
+ msgstr ""
2278
+
2279
+ #: classes/class.pmproemail.php:811 classes/class.pmproemail.php:799
2280
+ #: classes/class.pmproemail.php:802
2281
+ msgid "Membership has been cancelled"
2282
+ msgstr ""
2283
+
2284
+ #: classes/gateways/class.pmprogateway.php:55
2285
+ #: classes/gateways/class.pmprogateway_authorizenet.php:171
2286
+ #: classes/gateways/class.pmprogateway_check.php:193
2287
+ #: classes/gateways/class.pmprogateway_cybersource.php:171
2288
+ #: classes/gateways/class.pmprogateway_payflowpro.php:164
2289
+ #: classes/gateways/class.pmprogateway_paypal.php:247
2290
+ #: classes/gateways/class.pmprogateway_authorizenet.php:55
2291
+ #: classes/gateways/class.pmprogateway_check.php:60
2292
+ #: classes/gateways/class.pmprogateway_cybersource.php:57
2293
+ #: classes/gateways/class.pmprogateway_payflowpro.php:27
2294
+ #: classes/gateways/class.pmprogateway_paypal.php:27
2295
+ msgid "Unknown error: Authorization failed."
2296
+ msgstr ""
2297
+
2298
+ #: classes/gateways/class.pmprogateway.php:106
2299
+ #: classes/gateways/class.pmprogateway.php:111
2300
+ #: classes/gateways/class.pmprogateway.php:129
2301
+ #: classes/gateways/class.pmprogateway_authorizenet.php:222
2302
+ #: classes/gateways/class.pmprogateway_authorizenet.php:227
2303
+ #: classes/gateways/class.pmprogateway_authorizenet.php:244
2304
+ #: classes/gateways/class.pmprogateway_check.php:244
2305
+ #: classes/gateways/class.pmprogateway_check.php:249
2306
+ #: classes/gateways/class.pmprogateway_check.php:267
2307
+ #: classes/gateways/class.pmprogateway_cybersource.php:222
2308
+ #: classes/gateways/class.pmprogateway_cybersource.php:227
2309
+ #: classes/gateways/class.pmprogateway_cybersource.php:245
2310
+ #: classes/gateways/class.pmprogateway_payflowpro.php:187
2311
+ #: classes/gateways/class.pmprogateway_payflowpro.php:192
2312
+ #: classes/gateways/class.pmprogateway_paypal.php:270
2313
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2314
+ #: classes/gateways/class.pmprogateway_authorizenet.php:111
2315
+ #: classes/gateways/class.pmprogateway_authorizenet.php:128
2316
+ #: classes/gateways/class.pmprogateway_check.php:111
2317
+ #: classes/gateways/class.pmprogateway_check.php:116
2318
+ #: classes/gateways/class.pmprogateway_check.php:134
2319
+ #: classes/gateways/class.pmprogateway_cybersource.php:108
2320
+ #: classes/gateways/class.pmprogateway_cybersource.php:113
2321
+ #: classes/gateways/class.pmprogateway_cybersource.php:131
2322
+ #: classes/gateways/class.pmprogateway_payflowpro.php:50
2323
+ #: classes/gateways/class.pmprogateway_payflowpro.php:55
2324
+ #: classes/gateways/class.pmprogateway_paypal.php:50
2325
+ msgid "Unknown error: Payment failed."
2326
+ msgstr ""
2327
+
2328
+ #: classes/gateways/class.pmprogateway.php:113
2329
+ #: classes/gateways/class.pmprogateway_authorizenet.php:228
2330
+ #: classes/gateways/class.pmprogateway_check.php:251
2331
+ #: classes/gateways/class.pmprogateway_cybersource.php:229
2332
+ #: classes/gateways/class.pmprogateway_authorizenet.php:112
2333
+ #: classes/gateways/class.pmprogateway_check.php:118
2334
+ #: classes/gateways/class.pmprogateway_cybersource.php:115
2335
+ msgid ""
2336
+ "A partial payment was made that we could not void. Please contact the site owner "
2337
+ "immediately to correct this."
2338
+ msgstr ""
2339
+
2340
+ #: classes/gateways/class.pmprogateway_authorizenet.php:39 paid-memberships-pro.php:130
2341
+ #: paid-memberships-pro.php:122 paid-memberships-pro.php:123
2342
+ msgid "Authorize.net"
2343
+ msgstr ""
2344
+
2345
+ #: classes/gateways/class.pmprogateway_authorizenet.php:93
2346
+ msgid "Authorize.net Settings"
2347
+ msgstr ""
2348
+
2349
+ #: classes/gateways/class.pmprogateway_authorizenet.php:98
2350
+ #: adminpages/paymentsettings.php:260 adminpages/paymentsettings.php:264
2351
+ #: adminpages/paymentsettings.php:269
2352
+ msgid "Login Name"
2353
+ msgstr ""
2354
+
2355
+ #: classes/gateways/class.pmprogateway_authorizenet.php:106
2356
+ #: adminpages/paymentsettings.php:268 adminpages/paymentsettings.php:272
2357
+ #: adminpages/paymentsettings.php:277
2358
+ msgid "Transaction Key"
2359
+ msgstr ""
2360
+
2361
+ #: classes/gateways/class.pmprogateway_authorizenet.php:114
2362
+ #: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:495
2363
+ #: adminpages/paymentsettings.php:501 adminpages/paymentsettings.php:503
2364
+ msgid "Silent Post URL"
2365
+ msgstr ""
2366
+
2367
+ #: classes/gateways/class.pmprogateway_authorizenet.php:117
2368
+ #: adminpages/paymentsettings.php:457 adminpages/paymentsettings.php:498
2369
+ #: adminpages/paymentsettings.php:504 adminpages/paymentsettings.php:506
2370
+ msgid "To fully integrate with Authorize.net, be sure to set your Silent Post URL to"
2371
+ msgstr ""
2372
+
2373
+ #: classes/gateways/class.pmprogateway_authorizenet.php:908
2374
+ #: classes/gateways/class.pmprogateway_authorizenet.php:909
2375
+ #: classes/gateways/class.pmprogateway_authorizenet.php:787
2376
+ #: classes/gateways/class.pmprogateway_authorizenet.php:788
2377
+ #: classes/gateways/class.pmprogateway_authorizenet.php:789
2378
+ #: classes/gateways/class.pmprogateway_authorizenet.php:792
2379
+ #: classes/gateways/class.pmprogateway_authorizenet.php:793
2380
+ msgid "Could not connect to Authorize.net"
2381
+ msgstr ""
2382
+
2383
+ #: classes/gateways/class.pmprogateway_braintree.php:76 paid-memberships-pro.php:131
2384
+ #: classes/gateways/class.pmprogateway_braintree.php:63 paid-memberships-pro.php:123
2385
+ #: paid-memberships-pro.php:124
2386
+ msgid "Braintree Payments"
2387
+ msgstr ""
2388
+
2389
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2390
+ #: classes/gateways/class.pmprogateway_braintree.php:119
2391
+ msgid "Braintree Settings"
2392
+ msgstr ""
2393
+
2394
+ #: classes/gateways/class.pmprogateway_braintree.php:137
2395
+ #: classes/gateways/class.pmprogateway_cybersource.php:106
2396
+ #: adminpages/paymentsettings.php:294 adminpages/paymentsettings.php:298
2397
+ #: adminpages/paymentsettings.php:303 adminpages/paymentsettings.php:364
2398
+ #: adminpages/paymentsettings.php:369
2399
+ #: classes/gateways/class.pmprogateway_braintree.php:124
2400
+ msgid "Merchant ID"
2401
+ msgstr ""
2402
+
2403
+ #: classes/gateways/class.pmprogateway_braintree.php:145
2404
+ #: adminpages/paymentsettings.php:302 adminpages/paymentsettings.php:306
2405
+ #: adminpages/paymentsettings.php:311
2406
+ #: classes/gateways/class.pmprogateway_braintree.php:132
2407
+ msgid "Public Key"
2408
+ msgstr ""
2409
+
2410
+ #: classes/gateways/class.pmprogateway_braintree.php:153
2411
+ #: adminpages/paymentsettings.php:310 adminpages/paymentsettings.php:314
2412
+ #: adminpages/paymentsettings.php:319
2413
+ #: classes/gateways/class.pmprogateway_braintree.php:140
2414
+ msgid "Private Key"
2415
+ msgstr ""
2416
+
2417
+ #: classes/gateways/class.pmprogateway_braintree.php:161
2418
+ #: adminpages/paymentsettings.php:318 adminpages/paymentsettings.php:322
2419
+ #: adminpages/paymentsettings.php:327
2420
+ #: classes/gateways/class.pmprogateway_braintree.php:148
2421
+ msgid "Client-Side Encryption Key"
2422
+ msgstr ""
2423
+
2424
+ #: classes/gateways/class.pmprogateway_braintree.php:169
2425
+ #: classes/gateways/class.pmprogateway_stripe.php:182 adminpages/paymentsettings.php:462
2426
+ #: adminpages/paymentsettings.php:470 adminpages/paymentsettings.php:503
2427
+ #: adminpages/paymentsettings.php:509 adminpages/paymentsettings.php:511
2428
+ #: adminpages/paymentsettings.php:517 adminpages/paymentsettings.php:519
2429
+ #: classes/gateways/class.pmprogateway_braintree.php:156
2430
+ #: classes/gateways/class.pmprogateway_stripe.php:181
2431
+ msgid "Web Hook URL"
2432
+ msgstr ""
2433
+
2434
+ #: classes/gateways/class.pmprogateway_braintree.php:173
2435
+ #: adminpages/paymentsettings.php:474 adminpages/paymentsettings.php:515
2436
+ #: adminpages/paymentsettings.php:521 adminpages/paymentsettings.php:523
2437
+ #: classes/gateways/class.pmprogateway_braintree.php:160
2438
+ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
2439
+ msgstr ""
2440
+
2441
+ #: classes/gateways/class.pmprogateway_braintree.php:283
2442
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:494
2443
+ #: classes/gateways/class.pmprogateway_braintree.php:270
2444
+ #: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
2445
+ #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2446
+ #: pages/checkout.php:500
2447
+ msgid "Payment Information"
2448
+ msgstr ""
2449
+
2450
+ #: classes/gateways/class.pmprogateway_braintree.php:283
2451
+ #: classes/gateways/class.pmprogateway_stripe.php:388 pages/checkout.php:494
2452
+ #: classes/gateways/class.pmprogateway_braintree.php:270
2453
+ #: classes/gateways/class.pmprogateway_stripe.php:387 pages/checkout.php:476
2454
+ #: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
2455
+ #: pages/checkout.php:500
2456
+ #, php-format
2457
+ msgid "We Accept %s"
2458
+ msgstr ""
2459
+
2460
+ #: classes/gateways/class.pmprogateway_braintree.php:316
2461
+ #: classes/gateways/class.pmprogateway_stripe.php:450 pages/billing.php:257
2462
+ #: pages/checkout.php:557 classes/gateways/class.pmprogateway_braintree.php:303
2463
+ #: classes/gateways/class.pmprogateway_stripe.php:449 pages/billing.php:244
2464
+ #: pages/billing.php:248 pages/checkout.php:503 pages/checkout.php:519
2465
+ #: pages/checkout.php:520 pages/checkout.php:527 pages/checkout.php:548
2466
+ msgid "Card Number"
2467
+ msgstr ""
2468
+
2469
+ #: classes/gateways/class.pmprogateway_braintree.php:353
2470
+ #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:294
2471
+ #: pages/checkout.php:594 classes/gateways/class.pmprogateway_braintree.php:340
2472
+ #: classes/gateways/class.pmprogateway_stripe.php:486 pages/billing.php:281
2473
+ #: pages/billing.php:285 pages/checkout.php:540 pages/checkout.php:556
2474
+ #: pages/checkout.php:557 pages/checkout.php:564 pages/checkout.php:585
2475
+ msgid "CVV"
2476
+ msgstr ""
2477
+
2478
+ #: classes/gateways/class.pmprogateway_braintree.php:354
2479
+ #: classes/gateways/class.pmprogateway_stripe.php:488 pages/billing.php:295
2480
+ #: pages/checkout.php:595 classes/gateways/class.pmprogateway_braintree.php:341
2481
+ #: classes/gateways/class.pmprogateway_stripe.php:487 pages/billing.php:282
2482
+ #: pages/billing.php:286 pages/checkout.php:541 pages/checkout.php:557
2483
+ #: pages/checkout.php:558 pages/checkout.php:565 pages/checkout.php:586
2484
+ msgid "what's this?"
2485
+ msgstr ""
2486
+
2487
+ #: classes/gateways/class.pmprogateway_braintree.php:364
2488
+ #: classes/gateways/class.pmprogateway_stripe.php:498 pages/checkout.php:87
2489
+ #: pages/checkout.php:605 classes/gateways/class.pmprogateway_braintree.php:351
2490
+ #: classes/gateways/class.pmprogateway_stripe.php:497 pages/checkout.php:78
2491
+ #: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:551
2492
+ #: pages/checkout.php:567 pages/checkout.php:568 pages/checkout.php:575
2493
+ #: pages/checkout.php:596
2494
+ msgid "Apply"
2495
+ msgstr ""
2496
+
2497
+ #: classes/gateways/class.pmprogateway_braintree.php:419
2498
+ #: classes/gateways/class.pmprogateway_stripe.php:1026
2499
+ #: classes/gateways/class.pmprogateway_braintree.php:61
2500
+ #: classes/gateways/class.pmprogateway_braintree.php:406
2501
+ #: classes/gateways/class.pmprogateway_stripe.php:53
2502
+ #: classes/gateways/class.pmprogateway_stripe.php:1011
2503
+ #: classes/gateways/class.pmprogateway_stripe.php:1025
2504
+ msgid "Unknown error: Initial payment failed."
2505
+ msgstr ""
2506
+
2507
+ #: classes/gateways/class.pmprogateway_braintree.php:478
2508
+ #: classes/gateways/class.pmprogateway_braintree.php:120
2509
+ #: classes/gateways/class.pmprogateway_braintree.php:465
2510
+ msgid "Error during settlement:"
2511
+ msgstr ""
2512
+
2513
+ #: classes/gateways/class.pmprogateway_braintree.php:487
2514
+ #: classes/gateways/class.pmprogateway_braintree.php:129
2515
+ #: classes/gateways/class.pmprogateway_braintree.php:474
2516
+ msgid "Error during charge:"
2517
+ msgstr ""
2518
+
2519
+ #: classes/gateways/class.pmprogateway_braintree.php:579
2520
+ #: classes/gateways/class.pmprogateway_braintree.php:198
2521
+ #: classes/gateways/class.pmprogateway_braintree.php:221
2522
+ #: classes/gateways/class.pmprogateway_braintree.php:566
2523
+ msgid "Failed to update customer."
2524
+ msgstr ""
2525
+
2526
+ #: classes/gateways/class.pmprogateway_braintree.php:627
2527
+ #: classes/gateways/class.pmprogateway_braintree.php:246
2528
+ #: classes/gateways/class.pmprogateway_braintree.php:269
2529
+ #: classes/gateways/class.pmprogateway_braintree.php:614
2530
+ msgid "Failed to create customer."
2531
+ msgstr ""
2532
+
2533
+ #: classes/gateways/class.pmprogateway_braintree.php:634
2534
+ #: classes/gateways/class.pmprogateway_braintree.php:253
2535
+ #: classes/gateways/class.pmprogateway_braintree.php:276
2536
+ #: classes/gateways/class.pmprogateway_braintree.php:621
2537
+ msgid "Error creating customer record with Braintree:"
2538
+ msgstr ""
2539
+
2540
+ #: classes/gateways/class.pmprogateway_braintree.php:734
2541
+ #: classes/gateways/class.pmprogateway_braintree.php:344
2542
+ #: classes/gateways/class.pmprogateway_braintree.php:345
2543
+ #: classes/gateways/class.pmprogateway_braintree.php:376
2544
+ #: classes/gateways/class.pmprogateway_braintree.php:721
2545
+ msgid "Error subscribing customer to plan with Braintree:"
2546
+ msgstr ""
2547
+
2548
+ #: classes/gateways/class.pmprogateway_braintree.php:749
2549
+ #: classes/gateways/class.pmprogateway_braintree.php:359
2550
+ #: classes/gateways/class.pmprogateway_braintree.php:360
2551
+ #: classes/gateways/class.pmprogateway_braintree.php:391
2552
+ #: classes/gateways/class.pmprogateway_braintree.php:736
2553
+ msgid "Failed to subscribe with Braintree:"
2554
+ msgstr ""
2555
+
2556
+ #: classes/gateways/class.pmprogateway_braintree.php:787
2557
+ #: classes/gateways/class.pmprogateway_braintree.php:800
2558
+ #: classes/gateways/class.pmprogateway_braintree.php:807
2559
+ #: classes/gateways/class.pmprogateway_braintree.php:397
2560
+ #: classes/gateways/class.pmprogateway_braintree.php:398
2561
+ #: classes/gateways/class.pmprogateway_braintree.php:410
2562
+ #: classes/gateways/class.pmprogateway_braintree.php:411
2563
+ #: classes/gateways/class.pmprogateway_braintree.php:417
2564
+ #: classes/gateways/class.pmprogateway_braintree.php:418
2565
+ #: classes/gateways/class.pmprogateway_braintree.php:429
2566
+ #: classes/gateways/class.pmprogateway_braintree.php:442
2567
+ #: classes/gateways/class.pmprogateway_braintree.php:449
2568
+ #: classes/gateways/class.pmprogateway_braintree.php:774
2569
+ #: classes/gateways/class.pmprogateway_braintree.php:794
2570
+ #: classes/gateways/class.pmprogateway_stripe.php:343
2571
+ #: classes/gateways/class.pmprogateway_stripe.php:344
2572
+ #: classes/gateways/class.pmprogateway_stripe.php:351
2573
+ #: classes/gateways/class.pmprogateway_stripe.php:353
2574
+ #: classes/gateways/class.pmprogateway_stripe.php:354
2575
+ #: classes/gateways/class.pmprogateway_stripe.php:361
2576
+ #: classes/gateways/class.pmprogateway_stripe.php:396
2577
+ #: classes/gateways/class.pmprogateway_stripe.php:402
2578
+ #: classes/gateways/class.pmprogateway_stripe.php:423
2579
+ msgid "Could not find the subscription."
2580
+ msgstr ""
2581
+
2582
+ #: classes/gateways/class.pmprogateway_check.php:48 paid-memberships-pro.php:124
2583
+ #: adminpages/orders.php:399 adminpages/orders.php:449
2584
+ #: adminpages/paymentsettings.php:157 adminpages/paymentsettings.php:159
2585
+ #: paid-memberships-pro.php:116 paid-memberships-pro.php:117
2586
+ msgid "Pay by Check"
2587
+ msgstr ""
2588
+
2589
+ #: classes/gateways/class.pmprogateway_check.php:100
2590
+ msgid "Pay by Check Settings"
2591
+ msgstr ""
2592
+
2593
+ #: classes/gateways/class.pmprogateway_check.php:105 adminpages/paymentsettings.php:389
2594
+ #: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:420
2595
+ #: adminpages/paymentsettings.php:422
2596
+ msgid "Instructions"
2597
+ msgstr ""
2598
+
2599
+ #: classes/gateways/class.pmprogateway_check.php:109 adminpages/paymentsettings.php:393
2600
+ #: adminpages/paymentsettings.php:419 adminpages/paymentsettings.php:424
2601
+ #: adminpages/paymentsettings.php:426
2602
+ msgid ""
2603
+ "Who to write the check out to. Where to mail it. Shown on checkout, confirmation, and "
2604
+ "invoice pages."
2605
+ msgstr ""
2606
+
2607
+ #: classes/gateways/class.pmprogateway_cybersource.php:42
2608
+ msgid "CyberSource"
2609
+ msgstr ""
2610
+
2611
+ #: classes/gateways/class.pmprogateway_cybersource.php:96
2612
+ msgid "CyberSource Settings"
2613
+ msgstr ""
2614
+
2615
+ #: classes/gateways/class.pmprogateway_cybersource.php:101
2616
+ #: adminpages/paymentsettings.php:174
2617
+ msgid ""
2618
+ "This gateway option is in beta. Some functionality may not be available. Please "
2619
+ "contact Paid Memberships Pro with any issues you run into. <strong>Please be sure to "
2620
+ "upgrade Paid Memberships Pro to the latest versions when available.</strong>"
2621
+ msgstr ""
2622
+
2623
+ #: classes/gateways/class.pmprogateway_cybersource.php:114
2624
+ #: adminpages/paymentsettings.php:372 adminpages/paymentsettings.php:377
2625
+ msgid "Transaction Security Key"
2626
+ msgstr ""
2627
+
2628
+ #: classes/gateways/class.pmprogateway_payflowpro.php:39
2629
+ msgid "Payflow Pro/PayPal Pro"
2630
+ msgstr ""
2631
+
2632
+ #: classes/gateways/class.pmprogateway_payflowpro.php:95
2633
+ msgid "Payflow Pro Settings"
2634
+ msgstr ""
2635
+
2636
+ #: classes/gateways/class.pmprogateway_payflowpro.php:100
2637
+ #: adminpages/paymentsettings.php:195 adminpages/paymentsettings.php:199
2638
+ #: adminpages/paymentsettings.php:204
2639
+ msgid "Partner"
2640
+ msgstr ""
2641
+
2642
+ #: classes/gateways/class.pmprogateway_payflowpro.php:108
2643
+ #: adminpages/paymentsettings.php:203 adminpages/paymentsettings.php:207
2644
+ #: adminpages/paymentsettings.php:212
2645
+ msgid "Vendor"
2646
+ msgstr ""
2647
+
2648
+ #: classes/gateways/class.pmprogateway_payflowpro.php:124 pages/checkout.php:189
2649
+ #: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:223
2650
+ #: adminpages/paymentsettings.php:228 pages/checkout.php:177 pages/checkout.php:180
2651
+ #: pages/checkout.php:182
2652
+ msgid "Password"
2653
+ msgstr ""
2654
+
2655
+ #: classes/gateways/class.pmprogateway_payflowpro.php:132
2656
+ msgid "IPN Handler"
2657
+ msgstr ""
2658
+
2659
+ #: classes/gateways/class.pmprogateway_payflowpro.php:137
2660
+ #, php-format
2661
+ msgid ""
2662
+ "Payflow does not use IPN. To sync recurring subscriptions, please see <a target="
2663
+ "\"_blank\" href=\"%s\">this addon</a>."
2664
+ msgstr ""
2665
+
2666
+ #: classes/gateways/class.pmprogateway_payflowpro.php:194
2667
+ #: classes/gateways/class.pmprogateway_paypal.php:277
2668
+ #: classes/gateways/class.pmprogateway_payflowpro.php:57
2669
+ #: classes/gateways/class.pmprogateway_paypal.php:57
2670
+ msgid ""
2671
+ "A partial payment was made that we could not refund. Please contact the site owner "
2672
+ "immediately to correct this."
2673
+ msgstr ""
2674
+
2675
+ #: classes/gateways/class.pmprogateway_paypal.php:57 paid-memberships-pro.php:127
2676
+ #: paid-memberships-pro.php:119 paid-memberships-pro.php:120
2677
+ msgid "PayPal Website Payments Pro"
2678
+ msgstr ""
2679
+
2680
+ #: classes/gateways/class.pmprogateway_paypal.php:113
2681
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
2682
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:112
2683
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:118
2684
+ msgid "PayPal Settings"
2685
+ msgstr ""
2686
+
2687
+ #: classes/gateways/class.pmprogateway_paypal.php:118
2688
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:133
2689
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:117
2690
+ #: adminpages/paymentsettings.php:179
2691
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:123
2692
+ msgid ""
2693
+ "We do not recommend using PayPal Standard. We suggest using PayPal Express, Website "
2694
+ "Payments Pro (Legacy), or PayPal Pro (Payflow Pro). <a target=\"_blank\" href="
2695
+ "\"http://www.paidmembershipspro.com/2013/09/read-using-paypal-standard-paid-"
2696
+ "memberships-pro/\">More information on why can be found here.</a>"
2697
+ msgstr ""
2698
+
2699
+ #: classes/gateways/class.pmprogateway_paypal.php:123
2700
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:138
2701
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:122
2702
+ #: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:231
2703
+ #: adminpages/paymentsettings.php:236
2704
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:128
2705
+ msgid "Gateway Account Email"
2706
+ msgstr ""
2707
+
2708
+ #: classes/gateways/class.pmprogateway_paypal.php:131
2709
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:146
2710
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:130
2711
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
2712
+ #: adminpages/paymentsettings.php:235 adminpages/paymentsettings.php:239
2713
+ #: adminpages/paymentsettings.php:244 adminpages/paymentsettings.php:331
2714
+ #: adminpages/paymentsettings.php:336
2715
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:136
2716
+ #: classes/gateways/class.pmprogateway_twocheckout.php:113
2717
+ msgid "API Username"
2718
+ msgstr ""
2719
+
2720
+ #: classes/gateways/class.pmprogateway_paypal.php:139
2721
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:154
2722
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:138
2723
+ #: classes/gateways/class.pmprogateway_twocheckout.php:130
2724
+ #: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:247
2725
+ #: adminpages/paymentsettings.php:252 adminpages/paymentsettings.php:339
2726
+ #: adminpages/paymentsettings.php:344
2727
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:144
2728
+ #: classes/gateways/class.pmprogateway_twocheckout.php:121
2729
+ msgid "API Password"
2730
+ msgstr ""
2731
+
2732
+ #: classes/gateways/class.pmprogateway_paypal.php:147
2733
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:162
2734
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:146
2735
+ #: adminpages/paymentsettings.php:251 adminpages/paymentsettings.php:255
2736
+ #: adminpages/paymentsettings.php:260
2737
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:152
2738
+ msgid "API Signature"
2739
+ msgstr ""
2740
+
2741
+ #: classes/gateways/class.pmprogateway_paypal.php:155
2742
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:170
2743
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:154
2744
+ #: adminpages/paymentsettings.php:446 adminpages/paymentsettings.php:479
2745
+ #: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:487
2746
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:160
2747
+ msgid "IPN Handler URL"
2748
+ msgstr ""
2749
+
2750
+ #: classes/gateways/class.pmprogateway_paypal.php:158
2751
+ msgid ""
2752
+ "This URL is passed to PayPal for all new charges and subscriptions. You SHOULD NOT "
2753
+ "set this in your PayPal account settings."
2754
+ msgstr ""
2755
+
2756
+ #: classes/gateways/class.pmprogateway_paypal.php:178
2757
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:412
2758
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:202 pages/checkout.php:295
2759
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:402 pages/checkout.php:286
2760
+ #: pages/checkout.php:288 pages/checkout.php:302 pages/checkout.php:309
2761
+ #: pages/checkout.php:675 pages/checkout.php:682 pages/checkout.php:685
2762
+ #: pages/checkout.php:701
2763
+ msgid "Check Out with PayPal"
2764
+ msgstr ""
2765
+
2766
+ #: classes/gateways/class.pmprogateway_paypal.php:184
2767
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
2768
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208 pages/checkout.php:713
2769
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408 pages/checkout.php:681
2770
+ #: pages/checkout.php:688 pages/checkout.php:691 pages/checkout.php:704
2771
+ #: pages/checkout.php:707
2772
+ msgid "Submit and Check Out"
2773
+ msgstr ""
2774
+
2775
+ #: classes/gateways/class.pmprogateway_paypal.php:184
2776
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:418
2777
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:208
2778
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214 pages/checkout.php:713
2779
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:408
2780
+ #: classes/gateways/class.pmprogateway_twocheckout.php:192 pages/checkout.php:681
2781
+ #: pages/checkout.php:688 pages/checkout.php:691 pages/checkout.php:704
2782
+ #: pages/checkout.php:707
2783
+ msgid "Submit and Confirm"
2784
+ msgstr ""
2785
+
2786
+ #: classes/gateways/class.pmprogateway_paypal.php:605
2787
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:750
2788
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:466
2789
+ #: classes/gateways/class.pmprogateway_paypal.php:385
2790
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:301
2791
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:303
2792
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:305
2793
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:731
2794
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:740
2795
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:216
2796
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:220
2797
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:230
2798
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:231
2799
+ msgid ""
2800
+ "Please contact the site owner or cancel your subscription from within PayPal to make "
2801
+ "sure you are not charged going forward."
2802
+ msgstr ""
2803
+
2804
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:73 paid-memberships-pro.php:126
2805
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:63 paid-memberships-pro.php:118
2806
+ #: paid-memberships-pro.php:119
2807
+ msgid "PayPal Express"
2808
+ msgstr ""
2809
+
2810
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:173
2811
+ #: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
2812
+ #: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
2813
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:163
2814
+ msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
2815
+ msgstr ""
2816
+
2817
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:278
2818
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:330
2819
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:268
2820
+ #: classes/gateways/class.pmprogateway_paypalexpress.php:320 preheaders/checkout.php:690
2821
+ #: preheaders/checkout.php:697 preheaders/checkout.php:702 preheaders/checkout.php:735
2822
+ #: preheaders/checkout.php:750 preheaders/checkout.php:753 preheaders/checkout.php:754
2823
+ #: preheaders/checkout.php:757 preheaders/checkout.php:762 preheaders/checkout.php:803
2824
+ #: preheaders/checkout.php:822 preheaders/checkout.php:823
2825
+ msgid "The PayPal Token was lost."
2826
+ msgstr ""
2827
+
2828
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:60
2829
+ #: paid-memberships-pro.php:129 paid-memberships-pro.php:121
2830
+ #: paid-memberships-pro.php:122
2831
+ msgid "PayPal Standard"
2832
+ msgstr ""
2833
+
2834
+ #: classes/gateways/class.pmprogateway_paypalstandard.php:157
2835
+ msgid ""
2836
+ "Here is your IPN URL for reference. You SHOULD NOT set this in your PayPal settings."
2837
+ msgstr ""
2838
+
2839
+ #: classes/gateways/class.pmprogateway_stripe.php:94 paid-memberships-pro.php:125
2840
+ #: classes/gateways/class.pmprogateway_stripe.php:93 paid-memberships-pro.php:117
2841
+ #: paid-memberships-pro.php:118
2842
+ msgid "Stripe"
2843
+ msgstr ""
2844
+
2845
+ #: classes/gateways/class.pmprogateway_stripe.php:149
2846
+ #: classes/gateways/class.pmprogateway_stripe.php:148
2847
+ msgid "Stripe Settings"
2848
+ msgstr ""
2849
+
2850
+ #: classes/gateways/class.pmprogateway_stripe.php:154 adminpages/paymentsettings.php:277
2851
+ #: adminpages/paymentsettings.php:281 adminpages/paymentsettings.php:286
2852
+ #: classes/gateways/class.pmprogateway_stripe.php:153
2853
+ msgid "Secret Key"
2854
+ msgstr ""
2855
+
2856
+ #: classes/gateways/class.pmprogateway_stripe.php:162 adminpages/paymentsettings.php:285
2857
+ #: adminpages/paymentsettings.php:289 adminpages/paymentsettings.php:294
2858
+ #: classes/gateways/class.pmprogateway_stripe.php:161
2859
+ msgid "Publishable Key"
2860
+ msgstr ""
2861
+
2862
+ #: classes/gateways/class.pmprogateway_stripe.php:170 adminpages/paymentsettings.php:425
2863
+ #: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:432
2864
+ #: classes/gateways/class.pmprogateway_stripe.php:169
2865
+ msgid "Show Billing Address Fields"
2866
+ msgstr ""
2867
+
2868
+ #: classes/gateways/class.pmprogateway_stripe.php:177 adminpages/paymentsettings.php:437
2869
+ #: adminpages/paymentsettings.php:439 classes/gateways/class.pmprogateway_stripe.php:176
2870
+ msgid ""
2871
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on the "
2872
+ "checkout page.<br /><strong>If No, make sure you disable address verification in the "
2873
+ "Stripe dashboard settings.</strong>"
2874
+ msgstr ""
2875
+
2876
+ #: classes/gateways/class.pmprogateway_stripe.php:185 adminpages/paymentsettings.php:465
2877
+ #: adminpages/paymentsettings.php:506 adminpages/paymentsettings.php:512
2878
+ #: adminpages/paymentsettings.php:514 classes/gateways/class.pmprogateway_stripe.php:184
2879
+ msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
2880
+ msgstr ""
2881
+
2882
+ #: classes/gateways/class.pmprogateway_stripe.php:568
2883
+ #: classes/gateways/class.pmprogateway_stripe.php:567
2884
+ msgid "Subscription Updates"
2885
+ msgstr ""
2886
+
2887
+ #: classes/gateways/class.pmprogateway_stripe.php:572
2888
+ #: classes/gateways/class.pmprogateway_stripe.php:571
2889
+ msgid ""
2890
+ "Subscription updates, allow you to change the member's subscription values at "
2891
+ "predefined times. Be sure to click Update Profile after making changes."
2892
+ msgstr ""
2893
+
2894
+ #: classes/gateways/class.pmprogateway_stripe.php:574
2895
+ #: classes/gateways/class.pmprogateway_stripe.php:573
2896
+ msgid ""
2897
+ "Subscription updates, allow you to change the member's subscription values at "
2898
+ "predefined times. Be sure to click Update User after making changes."
2899
+ msgstr ""
2900
+
2901
+ #: classes/gateways/class.pmprogateway_stripe.php:579 pages/billing.php:338
2902
+ #: classes/gateways/class.pmprogateway_stripe.php:578 pages/billing.php:294
2903
+ #: pages/billing.php:298 pages/billing.php:329
2904
+ msgid "Update"
2905
+ msgstr ""
2906
+
2907
+ #: classes/gateways/class.pmprogateway_stripe.php:770
2908
+ #: classes/gateways/class.pmprogateway_stripe.php:769
2909
+ msgid "Could not cancel the old subscription. Updates have not been processed."
2910
+ msgstr ""
2911
+
2912
+ #: classes/gateways/class.pmprogateway_stripe.php:1204
2913
+ #: classes/gateways/class.pmprogateway_stripe.php:190
2914
+ #: classes/gateways/class.pmprogateway_stripe.php:192
2915
+ #: classes/gateways/class.pmprogateway_stripe.php:199
2916
+ #: classes/gateways/class.pmprogateway_stripe.php:201
2917
+ #: classes/gateways/class.pmprogateway_stripe.php:1187
2918
+ #: classes/gateways/class.pmprogateway_stripe.php:1188
2919
+ #: classes/gateways/class.pmprogateway_stripe.php:1202
2920
+ #: classes/gateways/class.pmprogateway_stripe.php:1203
2921
+ msgid "Error creating customer record with Stripe:"
2922
+ msgstr ""
2923
+
2924
+ #: classes/gateways/class.pmprogateway_stripe.php:1261
2925
+ #: classes/gateways/class.pmprogateway_stripe.php:1411
2926
+ #: classes/gateways/class.pmprogateway_stripe.php:278
2927
+ #: classes/gateways/class.pmprogateway_stripe.php:279
2928
+ #: classes/gateways/class.pmprogateway_stripe.php:286
2929
+ #: classes/gateways/class.pmprogateway_stripe.php:302
2930
+ #: classes/gateways/class.pmprogateway_stripe.php:308
2931
+ #: classes/gateways/class.pmprogateway_stripe.php:311
2932
+ #: classes/gateways/class.pmprogateway_stripe.php:1244
2933
+ #: classes/gateways/class.pmprogateway_stripe.php:1245
2934
+ #: classes/gateways/class.pmprogateway_stripe.php:1259
2935
+ #: classes/gateways/class.pmprogateway_stripe.php:1260
2936
+ #: classes/gateways/class.pmprogateway_stripe.php:1390
2937
+ #: classes/gateways/class.pmprogateway_stripe.php:1391
2938
+ #: classes/gateways/class.pmprogateway_stripe.php:1409
2939
+ #: classes/gateways/class.pmprogateway_stripe.php:1410
2940
+ msgid "Error creating plan with Stripe:"
2941
+ msgstr ""
2942
+
2943
+ #: classes/gateways/class.pmprogateway_stripe.php:1442
2944
+ #: classes/gateways/class.pmprogateway_stripe.php:294
2945
+ #: classes/gateways/class.pmprogateway_stripe.php:295
2946
+ #: classes/gateways/class.pmprogateway_stripe.php:302
2947
+ #: classes/gateways/class.pmprogateway_stripe.php:318
2948
+ #: classes/gateways/class.pmprogateway_stripe.php:324
2949
+ #: classes/gateways/class.pmprogateway_stripe.php:330
2950
+ #: classes/gateways/class.pmprogateway_stripe.php:1420
2951
+ #: classes/gateways/class.pmprogateway_stripe.php:1421
2952
+ #: classes/gateways/class.pmprogateway_stripe.php:1422
2953
+ #: classes/gateways/class.pmprogateway_stripe.php:1440
2954
+ #: classes/gateways/class.pmprogateway_stripe.php:1441
2955
+ msgid "Error subscribing customer to plan with Stripe:"
2956
+ msgstr ""
2957
+
2958
+ #: classes/gateways/class.pmprogateway_stripe.php:1538
2959
+ #: classes/gateways/class.pmprogateway_stripe.php:383
2960
+ #: classes/gateways/class.pmprogateway_stripe.php:389
2961
+ #: classes/gateways/class.pmprogateway_stripe.php:410
2962
+ #: classes/gateways/class.pmprogateway_stripe.php:1516
2963
+ #: classes/gateways/class.pmprogateway_stripe.php:1517
2964
+ #: classes/gateways/class.pmprogateway_stripe.php:1518
2965
+ #: classes/gateways/class.pmprogateway_stripe.php:1536
2966
+ #: classes/gateways/class.pmprogateway_stripe.php:1537
2967
+ msgid "Could not cancel old subscription."
2968
+ msgstr ""
2969
+
2970
+ #: classes/gateways/class.pmprogateway_stripe.php:1555
2971
+ #: classes/gateways/class.pmprogateway_stripe.php:1533
2972
+ #: classes/gateways/class.pmprogateway_stripe.php:1534
2973
+ #: classes/gateways/class.pmprogateway_stripe.php:1535
2974
+ #: classes/gateways/class.pmprogateway_stripe.php:1553
2975
+ #: classes/gateways/class.pmprogateway_stripe.php:1554
2976
+ msgid "Could not find the customer."
2977
+ msgstr ""
2978
+
2979
+ #: classes/gateways/class.pmprogateway_twocheckout.php:60 paid-memberships-pro.php:132
2980
+ #: classes/gateways/class.pmprogateway_twocheckout.php:53 paid-memberships-pro.php:124
2981
+ #: paid-memberships-pro.php:125
2982
+ msgid "2Checkout"
2983
+ msgstr ""
2984
+
2985
+ #: classes/gateways/class.pmprogateway_twocheckout.php:116
2986
+ #: classes/gateways/class.pmprogateway_twocheckout.php:108
2987
+ msgid "2Checkout Settings"
2988
+ msgstr ""
2989
+
2990
+ #: classes/gateways/class.pmprogateway_twocheckout.php:125
2991
+ msgid ""
2992
+ "Go to Account &raquo; User Management in 2Checkout and create a user with API Access "
2993
+ "and API Updating."
2994
+ msgstr ""
2995
+
2996
+ #: classes/gateways/class.pmprogateway_twocheckout.php:134
2997
+ msgid "Password for the API user created."
2998
+ msgstr ""
2999
+
3000
+ #: classes/gateways/class.pmprogateway_twocheckout.php:139
3001
+ msgid "API Private Key"
3002
+ msgstr ""
3003
+
3004
+ #: classes/gateways/class.pmprogateway_twocheckout.php:143
3005
+ msgid "Go to API in 2Checkout and generate a new key pair. Paste the Private Key here."
3006
+ msgstr ""
3007
+
3008
+ #: classes/gateways/class.pmprogateway_twocheckout.php:152
3009
+ msgid "Click on the profile icon in 2Checkout to find your Account Number."
3010
+ msgstr ""
3011
+
3012
+ #: classes/gateways/class.pmprogateway_twocheckout.php:157
3013
+ #: adminpages/paymentsettings.php:355 adminpages/paymentsettings.php:360
3014
+ #: classes/gateways/class.pmprogateway_twocheckout.php:137
3015
+ msgid "Secret Word"
3016
+ msgstr ""
3017
+
3018
+ #: classes/gateways/class.pmprogateway_twocheckout.php:161
3019
+ msgid ""
3020
+ "Go to Account &raquo; Site Management. Look under Checkout Options to find the Secret "
3021
+ "Word."
3022
+ msgstr ""
3023
+
3024
+ #: classes/gateways/class.pmprogateway_twocheckout.php:166
3025
+ #: adminpages/paymentsettings.php:487 adminpages/paymentsettings.php:493
3026
+ #: adminpages/paymentsettings.php:495
3027
+ #: classes/gateways/class.pmprogateway_twocheckout.php:145
3028
+ msgid "TwoCheckout INS URL"
3029
+ msgstr ""
3030
+
3031
+ #: classes/gateways/class.pmprogateway_twocheckout.php:169
3032
+ msgid ""
3033
+ "To fully integrate with 2Checkout, be sure to use the following for your INS URL and "
3034
+ "Approved URL"
3035
+ msgstr ""
3036
+
3037
+ #: classes/gateways/class.pmprogateway_twocheckout.php:214
3038
+ #: classes/gateways/class.pmprogateway_twocheckout.php:192
3039
+ msgid "Check Out with 2Checkout"
3040
+ msgstr ""
3041
+
3042
+ #: includes/adminpages.php:47 includes/adminpages.php:9 includes/adminpages.php:39
3043
+ #: includes/adminpages.php:93 includes/adminpages.php:100
3044
+ msgid "Memberships"
3045
+ msgstr ""
3046
+
3047
+ #: includes/adminpages.php:48 includes/adminpages.php:118 includes/adminpages.php:10
3048
+ #: includes/adminpages.php:49 includes/adminpages.php:107 includes/adminpages.php:114
3049
+ msgid "Page Settings"
3050
+ msgstr ""
3051
+
3052
+ #: includes/adminpages.php:49 includes/adminpages.php:125 includes/adminpages.php:11
3053
+ #: includes/adminpages.php:54 includes/adminpages.php:114 includes/adminpages.php:121
3054
+ msgid "Payment Settings"
3055
+ msgstr ""
3056
+
3057
+ #: includes/adminpages.php:54 includes/adminpages.php:160 includes/adminpages.php:16
3058
+ #: includes/adminpages.php:79 includes/adminpages.php:149 includes/adminpages.php:156
3059
+ msgid "Reports"
3060
+ msgstr ""
3061
+
3062
+ #: includes/adminpages.php:56 includes/adminpages.php:174 includes/adminpages.php:18
3063
+ #: includes/adminpages.php:89 includes/adminpages.php:163 includes/adminpages.php:170
3064
+ msgid "Discount Codes"
3065
+ msgstr "Các Mã Giảm Giá"
3066
+
3067
+ #: includes/adminpages.php:104 includes/adminpages.php:100
3068
+ msgid "<span class=\"ab-icon\"></span>Memberships"
3069
+ msgstr ""
3070
+
3071
+ #: includes/adminpages.php:265 includes/adminpages.php:261
3072
+ msgid "Docs"
3073
+ msgstr ""
3074
+
3075
+ #: includes/adminpages.php:265 includes/adminpages.php:261
3076
+ msgid "View PMPro Documentation"
3077
+ msgstr ""
3078
+
3079
+ #: includes/adminpages.php:266 includes/adminpages.php:262
3080
+ msgid "Support"
3081
+ msgstr "Hỗ trợ"
3082
+
3083
+ #: includes/adminpages.php:266 includes/adminpages.php:262
3084
+ msgid "Visit Customer Support Forum"
3085
+ msgstr "Xem Diên Dàn Hỗ Trợ"
3086
+
3087
+ #: includes/currencies.php:7 includes/currencies.php:75 includes/currencies.php:37
3088
+ #: includes/currencies.php:44 includes/currencies.php:64 includes/currencies.php:68
3089
+ msgid "US Dollars (&#36;)"
3090
+ msgstr ""
3091
+
3092
+ #: includes/currencies.php:9 includes/currencies.php:78 includes/currencies.php:8
3093
+ #: includes/currencies.php:40 includes/currencies.php:47 includes/currencies.php:67
3094
+ #: includes/currencies.php:71
3095
+ msgid "Euros (&euro;)"
3096
+ msgstr ""
3097
+
3098
+ #: includes/currencies.php:14 includes/currencies.php:77 includes/currencies.php:9
3099
+ #: includes/currencies.php:39 includes/currencies.php:46 includes/currencies.php:66
3100
+ #: includes/currencies.php:70
3101
+ msgid "Pounds Sterling (&pound;)"
3102
+ msgstr ""
3103
+
3104
+ #: includes/currencies.php:18 includes/currencies.php:10
3105
+ msgid "Australian Dollars (&#36;)"
3106
+ msgstr ""
3107
+
3108
+ #: includes/currencies.php:20
3109
+ msgid "Brazilian Real (R&#36;)"
3110
+ msgstr ""
3111
+
3112
+ #: includes/currencies.php:24 includes/currencies.php:76 includes/currencies.php:12
3113
+ #: includes/currencies.php:38 includes/currencies.php:45 includes/currencies.php:65
3114
+ #: includes/currencies.php:69
3115
+ msgid "Canadian Dollars (&#36;)"
3116
+ msgstr ""
3117
+
3118
+ #: includes/currencies.php:25 includes/currencies.php:13
3119
+ msgid "Chinese Yuan"
3120
+ msgstr ""
3121
+
3122
+ #: includes/currencies.php:27 includes/currencies.php:13 includes/currencies.php:14
3123
+ #: includes/currencies.php:26
3124
+ msgid "Czech Koruna"
3125
+ msgstr ""
3126
+
3127
+ #: includes/currencies.php:34 includes/currencies.php:14 includes/currencies.php:15
3128
+ #: includes/currencies.php:27
3129
+ msgid "Danish Krone"
3130
+ msgstr ""
3131
+
3132
+ #: includes/currencies.php:35 includes/currencies.php:15 includes/currencies.php:16
3133
+ #: includes/currencies.php:28
3134
+ msgid "Hong Kong Dollar (&#36;)"
3135
+ msgstr ""
3136
+
3137
+ #: includes/currencies.php:36 includes/currencies.php:16 includes/currencies.php:17
3138
+ #: includes/currencies.php:29
3139
+ msgid "Hungarian Forint"
3140
+ msgstr ""
3141
+
3142
+ #: includes/currencies.php:37 includes/currencies.php:18 includes/currencies.php:30
3143
+ msgid "Indian Rupee"
3144
+ msgstr ""
3145
+
3146
+ #: includes/currencies.php:38 includes/currencies.php:19 includes/currencies.php:31
3147
+ msgid "Indonesia Rupiah"
3148
+ msgstr ""
3149
+
3150
+ #: includes/currencies.php:39 includes/currencies.php:17 includes/currencies.php:20
3151
+ #: includes/currencies.php:32
3152
+ msgid "Israeli Shekel"
3153
+ msgstr ""
3154
+
3155
+ #: includes/currencies.php:41 includes/currencies.php:18 includes/currencies.php:21
3156
+ #: includes/currencies.php:34
3157
+ msgid "Japanese Yen (&yen;)"
3158
+ msgstr ""
3159
+
3160
+ #: includes/currencies.php:45 includes/currencies.php:19 includes/currencies.php:22
3161
+ #: includes/currencies.php:38
3162
+ msgid "Malaysian Ringgits"
3163
+ msgstr ""
3164
+
3165
+ #: includes/currencies.php:46 includes/currencies.php:20 includes/currencies.php:23
3166
+ #: includes/currencies.php:39
3167
+ msgid "Mexican Peso (&#36;)"
3168
+ msgstr ""
3169
+
3170
+ #: includes/currencies.php:47 includes/currencies.php:21 includes/currencies.php:24
3171
+ #: includes/currencies.php:40
3172
+ msgid "New Zealand Dollar (&#36;)"
3173
+ msgstr "New Zealand Dollar (&#36;)"
3174
+
3175
+ #: includes/currencies.php:48 includes/currencies.php:22 includes/currencies.php:25
3176
+ #: includes/currencies.php:41
3177
+ msgid "Norwegian Krone"
3178
+ msgstr "Norwegian Krone"
3179
+
3180
+ #: includes/currencies.php:49 includes/currencies.php:23 includes/currencies.php:26
3181
+ #: includes/currencies.php:42
3182
+ msgid "Philippine Pesos"
3183
+ msgstr "Philippine Pesos"
3184
+
3185
+ #: includes/currencies.php:50 includes/currencies.php:24 includes/currencies.php:27
3186
+ #: includes/currencies.php:43
3187
+ msgid "Polish Zloty"
3188
+ msgstr "Polish Zloty"
3189
+
3190
+ #: includes/currencies.php:52 includes/currencies.php:25 includes/currencies.php:28
3191
+ #: includes/currencies.php:45
3192
+ msgid "Singapore Dollar (&#36;)"
3193
+ msgstr "Singapore Dollar (&#36;)"
3194
+
3195
+ #: includes/currencies.php:57 includes/currencies.php:50
3196
+ msgid "South African Rand (R)"
3197
+ msgstr "South African Rand (R)"
3198
+
3199
+ #: includes/currencies.php:61 includes/currencies.php:30 includes/currencies.php:50
3200
+ #: includes/currencies.php:54
3201
+ msgid "South Korean Won"
3202
+ msgstr "South Korean Won"
3203
+
3204
+ #: includes/currencies.php:62 includes/currencies.php:26 includes/currencies.php:31
3205
+ #: includes/currencies.php:51 includes/currencies.php:55
3206
+ msgid "Swedish Krona"
3207
+ msgstr "Swedish Krona"
3208
+
3209
+ #: includes/currencies.php:63 includes/currencies.php:27 includes/currencies.php:32
3210
+ #: includes/currencies.php:52 includes/currencies.php:56
3211
+ msgid "Swiss Franc"
3212
+ msgstr "Swiss Franc"
3213
+
3214
+ #: includes/currencies.php:64 includes/currencies.php:28 includes/currencies.php:33
3215
+ #: includes/currencies.php:53 includes/currencies.php:57
3216
+ msgid "Taiwan New Dollars"
3217
+ msgstr "Taiwan New Dollars"
3218
+
3219
+ #: includes/currencies.php:65 includes/currencies.php:29 includes/currencies.php:34
3220
+ #: includes/currencies.php:54 includes/currencies.php:58
3221
+ msgid "Thai Baht"
3222
+ msgstr "Thai Baht"
3223
+
3224
+ #: includes/currencies.php:66 includes/currencies.php:35 includes/currencies.php:55
3225
+ #: includes/currencies.php:59
3226
+ msgid "Turkish Lira"
3227
+ msgstr "Turkish Lira"
3228
+
3229
+ #: includes/currencies.php:67 includes/currencies.php:36 includes/currencies.php:56
3230
+ #: includes/currencies.php:60
3231
+ msgid "Vietnamese Dong"
3232
+ msgstr "VND"
3233
+
3234
+ #: includes/functions.php:200 includes/functions.php:160 includes/functions.php:196
3235
+ #: includes/functions.php:202 includes/functions.php:203 includes/functions.php:204
3236
+ #: includes/functions.php:207
3237
+ #, php-format
3238
+ msgid "The price for membership is <strong>%s</strong> now"
3239
+ msgstr "Giá cho thành viên là <strong>%s </strong>"
3240
+
3241
+ #: includes/functions.php:202 includes/functions.php:204 includes/functions.php:205
3242
+ #: includes/functions.php:206 includes/functions.php:209
3243
+ #, php-format
3244
+ msgid "<strong>%s</strong> now"
3245
+ msgstr "<strong>%s</strong>"
3246
+
3247
+ #: includes/functions.php:211 includes/functions.php:169 includes/functions.php:205
3248
+ #: includes/functions.php:213 includes/functions.php:214 includes/functions.php:215
3249
+ #: includes/functions.php:218
3250
+ #, php-format
3251
+ msgid " and then <strong>%s per %s for %d more %s</strong>."
3252
+ msgstr "và tiếp theo <strong>%s mỗi %s cho %d thêm %s</strong>."
3253
+
3254
+ #: includes/functions.php:215 includes/functions.php:173 includes/functions.php:209
3255
+ #: includes/functions.php:217 includes/functions.php:218 includes/functions.php:219
3256
+ #: includes/functions.php:222
3257
+ #, php-format
3258
+ msgid " and then <strong>%s every %d %s for %d more %s</strong>."
3259
+ msgstr "và tiếp theo <strong>%s mọi %d %s cho %d thêm %s</strong>,"
3260
+
3261
+ #: includes/functions.php:220 includes/functions.php:178 includes/functions.php:214
3262
+ #: includes/functions.php:222 includes/functions.php:223 includes/functions.php:224
3263
+ #: includes/functions.php:227
3264
+ #, php-format
3265
+ msgid " and then <strong>%s after %d %s</strong>."
3266
+ msgstr "và tiếp theo <strong>%s sau %d %s</strong>."
3267
+
3268
+ #: includes/functions.php:228 includes/functions.php:229 includes/functions.php:230
3269
+ #: includes/functions.php:231 includes/functions.php:235
3270
+ #, php-format
3271
+ msgid "The price for membership is <strong>%s per %s</strong>."
3272
+ msgstr "Giá cho thành viên là <strong>%s cho mỗi %s </strong>."
3273
+
3274
+ #: includes/functions.php:230 includes/functions.php:233 includes/functions.php:237
3275
+ #, php-format
3276
+ msgid "<strong>%s per %s</strong>."
3277
+ msgstr "<strong>%s cho mỗi %s</strong>."
3278
+
3279
+ #: includes/functions.php:235 includes/functions.php:233 includes/functions.php:234
3280
+ #: includes/functions.php:238 includes/functions.php:242
3281
+ #, php-format
3282
+ msgid "The price for membership is <strong>%s every %d %s</strong>."
3283
+ msgstr "Giá cho thành viên là <strong>%s mọin %d %s </strong>."
3284
+
3285
+ #: includes/functions.php:237 includes/functions.php:240 includes/functions.php:244
3286
+ #, php-format
3287
+ msgid "<strong>%s every %d %s</strong>."
3288
+ msgstr "<strong>%s mọi %d %s</strong>."
3289
+
3290
+ #: includes/functions.php:242 includes/functions.php:184 includes/functions.php:220
3291
+ #: includes/functions.php:228 includes/functions.php:238 includes/functions.php:239
3292
+ #: includes/functions.php:240 includes/functions.php:245 includes/functions.php:249
3293
+ #, php-format
3294
+ msgid " and then <strong>%s per %s</strong>."
3295
+ msgstr "và tiếp theo <strong>%s mỗi %s</strong>."
3296
+
3297
+ #: includes/functions.php:246 includes/functions.php:188 includes/functions.php:224
3298
+ #: includes/functions.php:232 includes/functions.php:242 includes/functions.php:243
3299
+ #: includes/functions.php:244 includes/functions.php:249 includes/functions.php:253
3300
+ #, php-format
3301
+ msgid " and then <strong>%s every %d %s</strong>."
3302
+ msgstr "và tiếp theo <strong>%s các %d %s</strong>."
3303
+
3304
+ #: includes/functions.php:264 includes/functions.php:202 includes/functions.php:238
3305
+ #: includes/functions.php:249 includes/functions.php:260 includes/functions.php:261
3306
+ #: includes/functions.php:262 includes/functions.php:267 includes/functions.php:271
3307
+ #: pages/levels.php:82
3308
+ msgid "After your initial payment, your first payment is Free."
3309
+ msgstr "Sau khi thanh toán ban đầu, thanh toán lần đầu của bạn là miễn phí."
3310
+
3311
+ #: includes/functions.php:268 includes/functions.php:206 includes/functions.php:242
3312
+ #: includes/functions.php:253 includes/functions.php:264 includes/functions.php:265
3313
+ #: includes/functions.php:266 includes/functions.php:271 includes/functions.php:275
3314
+ #: pages/levels.php:86
3315
+ #, php-format
3316
+ msgid "After your initial payment, your first %d payments are Free."
3317
+ msgstr "Sau khi thanh toán ban đầu, thanh toán lần đầu %d là miễn phí."
3318
+
3319
+ #: includes/functions.php:275 includes/functions.php:213 includes/functions.php:249
3320
+ #: includes/functions.php:260 includes/functions.php:271 includes/functions.php:272
3321
+ #: includes/functions.php:273 includes/functions.php:278 includes/functions.php:282
3322
+ #: pages/levels.php:93
3323
+ #, php-format
3324
+ msgid "After your initial payment, your first payment will cost %s."
3325
+ msgstr " Sau khi thanh toán ban đầu, thanh toán lần đầu là %s"
3326
+
3327
+ #: includes/functions.php:279 includes/functions.php:217 includes/functions.php:253
3328
+ #: includes/functions.php:264 includes/functions.php:275 includes/functions.php:276
3329
+ #: includes/functions.php:277 includes/functions.php:282 includes/functions.php:286
3330
+ #: pages/levels.php:97
3331
+ #, php-format
3332
+ msgid "After your initial payment, your first %d payments will cost %s."
3333
+ msgstr "Sau khi thanh toán ban đầu, thanh toán lần đầu của %d là %s"
3334
+
3335
+ #: includes/functions.php:290 includes/functions.php:228 includes/functions.php:264
3336
+ #: includes/functions.php:275 includes/functions.php:286 includes/functions.php:287
3337
+ #: includes/functions.php:288 includes/functions.php:293 includes/functions.php:297
3338
+ #, php-format
3339
+ msgid "Customers in %s will be charged %s%% tax."
3340
+ msgstr "Khách hang %s sẽ nộp %s%% thuế"
3341
+
3342
+ #: includes/functions.php:304 includes/functions.php:242 includes/functions.php:278
3343
+ #: includes/functions.php:289 includes/functions.php:300 includes/functions.php:301
3344
+ #: includes/functions.php:302 includes/functions.php:307 includes/functions.php:311
3345
+ #, php-format
3346
+ msgid "Membership expires after %d %s."
3347
+ msgstr "Quyền thành viên hết hạn sau %d %s."
3348
+
3349
+ #: includes/functions.php:615 includes/functions.php:491 includes/functions.php:514
3350
+ #: includes/functions.php:525 includes/functions.php:536 includes/functions.php:537
3351
+ #: includes/functions.php:538 includes/functions.php:545 includes/functions.php:569
3352
+ #: includes/functions.php:570 includes/functions.php:576 includes/functions.php:592
3353
+ msgid "User ID not found."
3354
+ msgstr "Mã thành viên không tìm thấy"
3355
+
3356
+ #: includes/functions.php:635 includes/functions.php:508 includes/functions.php:531
3357
+ #: includes/functions.php:542 includes/functions.php:553 includes/functions.php:554
3358
+ #: includes/functions.php:555 includes/functions.php:562 includes/functions.php:586
3359
+ #: includes/functions.php:587 includes/functions.php:589 includes/functions.php:596
3360
+ #: includes/functions.php:612
3361
+ msgid "Invalid level."
3362
+ msgstr "Kiểu thành viên không hợp lệ"
3363
+
3364
+ #: includes/functions.php:646 includes/functions.php:520 includes/functions.php:542
3365
+ #: includes/functions.php:553 includes/functions.php:564 includes/functions.php:565
3366
+ #: includes/functions.php:566 includes/functions.php:573 includes/functions.php:597
3367
+ #: includes/functions.php:598 includes/functions.php:600 includes/functions.php:607
3368
+ #: includes/functions.php:623
3369
+ msgid "not changing?"
3370
+ msgstr "không thay đổi?"
3371
+
3372
+ #: includes/functions.php:663 includes/functions.php:722 includes/functions.php:746
3373
+ #: includes/functions.php:537 includes/functions.php:559 includes/functions.php:570
3374
+ #: includes/functions.php:581 includes/functions.php:582 includes/functions.php:583
3375
+ #: includes/functions.php:590 includes/functions.php:592 includes/functions.php:605
3376
+ #: includes/functions.php:614 includes/functions.php:615 includes/functions.php:617
3377
+ #: includes/functions.php:624 includes/functions.php:626 includes/functions.php:628
3378
+ #: includes/functions.php:631 includes/functions.php:632 includes/functions.php:633
3379
+ #: includes/functions.php:637 includes/functions.php:640 includes/functions.php:649
3380
+ #: includes/functions.php:656 includes/functions.php:657 includes/functions.php:673
3381
+ #: includes/functions.php:674 includes/functions.php:676 includes/functions.php:683
3382
+ #: includes/functions.php:697 includes/functions.php:698 includes/functions.php:699
3383
+ #: includes/functions.php:700 includes/functions.php:707 includes/functions.php:723
3384
+ msgid "Error interacting with database"
3385
+ msgstr "Lỗi tương tác với cơ sở dữ liệu"
3386
+
3387
+ #: includes/functions.php:787 includes/functions.php:826 includes/functions.php:629
3388
+ #: includes/functions.php:651 includes/functions.php:667 includes/functions.php:668
3389
+ #: includes/functions.php:678 includes/functions.php:681 includes/functions.php:690
3390
+ #: includes/functions.php:697 includes/functions.php:698 includes/functions.php:706
3391
+ #: includes/functions.php:714 includes/functions.php:717 includes/functions.php:720
3392
+ #: includes/functions.php:736 includes/functions.php:737 includes/functions.php:738
3393
+ #: includes/functions.php:739 includes/functions.php:741 includes/functions.php:748
3394
+ #: includes/functions.php:753 includes/functions.php:764 includes/functions.php:777
3395
+ #: includes/functions.php:778 includes/functions.php:780 includes/functions.php:803
3396
+ msgid "Membership level not found."
3397
+ msgstr "Kiểu thành viên không có"
3398
+
3399
+ #: includes/functions.php:1196 includes/functions.php:1100 includes/functions.php:1101
3400
+ #: includes/functions.php:1118 includes/functions.php:1142 includes/functions.php:1143
3401
+ #: includes/functions.php:1150 includes/functions.php:1157 includes/functions.php:1173
3402
+ msgid "No code was given to check."
3403
+ msgstr "Không có mã đã được đưa ra để kiểm tra."
3404
+
3405
+ #: includes/functions.php:1205 includes/functions.php:1050 includes/functions.php:1072
3406
+ #: includes/functions.php:1088 includes/functions.php:1099 includes/functions.php:1102
3407
+ #: includes/functions.php:1109 includes/functions.php:1110 includes/functions.php:1112
3408
+ #: includes/functions.php:1113 includes/functions.php:1127 includes/functions.php:1151
3409
+ #: includes/functions.php:1152 includes/functions.php:1159 includes/functions.php:1166
3410
+ #: includes/functions.php:1182
3411
+ msgid "The discount code could not be found."
3412
+ msgstr "Mã giảm giá không có hoặc hết hạn."
3413
+
3414
+ #: includes/functions.php:1220 includes/functions.php:1066 includes/functions.php:1088
3415
+ #: includes/functions.php:1104 includes/functions.php:1115 includes/functions.php:1118
3416
+ #: includes/functions.php:1124 includes/functions.php:1125 includes/functions.php:1128
3417
+ #: includes/functions.php:1129 includes/functions.php:1142 includes/functions.php:1166
3418
+ #: includes/functions.php:1167 includes/functions.php:1174 includes/functions.php:1181
3419
+ #: includes/functions.php:1197
3420
+ #, php-format
3421
+ msgid "This discount code goes into effect on %s."
3422
+ msgstr "Mã giảm giá này sẽ có hiệu lực đến %s."
3423
+
3424
+ #: includes/functions.php:1227 includes/functions.php:1075 includes/functions.php:1097
3425
+ #: includes/functions.php:1113 includes/functions.php:1124 includes/functions.php:1127
3426
+ #: includes/functions.php:1131 includes/functions.php:1132 includes/functions.php:1137
3427
+ #: includes/functions.php:1138 includes/functions.php:1149 includes/functions.php:1173
3428
+ #: includes/functions.php:1174 includes/functions.php:1181 includes/functions.php:1188
3429
+ #: includes/functions.php:1204
3430
+ #, php-format
3431
+ msgid "This discount code expired on %s."
3432
+ msgstr "Mã giảm giá này sẽ hết hiệu lực vào %s."
3433
+
3434
+ #: includes/functions.php:1237 includes/functions.php:1087 includes/functions.php:1109
3435
+ #: includes/functions.php:1125 includes/functions.php:1136 includes/functions.php:1139
3436
+ #: includes/functions.php:1141 includes/functions.php:1142 includes/functions.php:1149
3437
+ #: includes/functions.php:1150 includes/functions.php:1159 includes/functions.php:1183
3438
+ #: includes/functions.php:1184 includes/functions.php:1191 includes/functions.php:1198
3439
+ #: includes/functions.php:1214
3440
+ msgid "This discount code is no longer valid."
3441
+ msgstr "Mã giảm giá này đã hết hạn"
3442
+
3443
+ #: includes/functions.php:1250 includes/functions.php:1102 includes/functions.php:1124
3444
+ #: includes/functions.php:1140 includes/functions.php:1151 includes/functions.php:1154
3445
+ #: includes/functions.php:1155 includes/functions.php:1164 includes/functions.php:1165
3446
+ #: includes/functions.php:1172 includes/functions.php:1196 includes/functions.php:1197
3447
+ #: includes/functions.php:1204 includes/functions.php:1211 includes/functions.php:1227
3448
+ msgid "This discount code does not apply to this membership level."
3449
+ msgstr "9Mã giảm giá này không áp dung cho kiểu thành viên này"
3450
+
3451
+ #: includes/functions.php:1276 includes/functions.php:1110 includes/functions.php:1132
3452
+ #: includes/functions.php:1148 includes/functions.php:1159 includes/functions.php:1162
3453
+ #: includes/functions.php:1172 includes/functions.php:1180 includes/functions.php:1181
3454
+ #: includes/functions.php:1182 includes/functions.php:1198 includes/functions.php:1222
3455
+ #: includes/functions.php:1223 includes/functions.php:1230 includes/functions.php:1237
3456
+ #: includes/functions.php:1253
3457
+ msgid "This discount code is okay."
3458
+ msgstr "Mã giảm giá này có hiệu lực"
3459
+
3460
+ #: includes/functions.php:1301 includes/functions.php:1134 includes/functions.php:1156
3461
+ #: includes/functions.php:1172 includes/functions.php:1183 includes/functions.php:1186
3462
+ #: includes/functions.php:1196 includes/functions.php:1205 includes/functions.php:1206
3463
+ #: includes/functions.php:1223 includes/functions.php:1247 includes/functions.php:1248
3464
+ #: includes/functions.php:1255 includes/functions.php:1262 includes/functions.php:1278
3465
+ msgid "and"
3466
+ msgstr "và"
3467
+
3468
+ #: includes/functions.php:1496 includes/functions.php:1319 includes/functions.php:1341
3469
+ #: includes/functions.php:1361 includes/functions.php:1372 includes/functions.php:1375
3470
+ #: includes/functions.php:1385 includes/functions.php:1394 includes/functions.php:1395
3471
+ #: includes/functions.php:1412 includes/functions.php:1436 includes/functions.php:1437
3472
+ #: includes/functions.php:1450 includes/functions.php:1457 includes/functions.php:1473
3473
+ msgid "Sign Up for !!name!! Now"
3474
+ msgstr "Đăng ký ngay cho !!name!!"
3475
+
3476
+ #: includes/functions.php:1502 includes/functions.php:1325 includes/functions.php:1347
3477
+ #: includes/functions.php:1367 includes/functions.php:1378 includes/functions.php:1381
3478
+ #: includes/functions.php:1391 includes/functions.php:1400 includes/functions.php:1401
3479
+ #: includes/functions.php:1418 includes/functions.php:1442 includes/functions.php:1443
3480
+ #: includes/functions.php:1456 includes/functions.php:1463 includes/functions.php:1479
3481
+ msgid "Please specify a level id."
3482
+ msgstr "Hay chỉ rõ kiểu thành viên7"
3483
+
3484
+ #: includes/init.php:237 includes/profile.php:39 includes/init.php:229
3485
+ #: includes/init.php:232 includes/init.php:233 includes/init.php:235
3486
+ #: includes/profile.php:37
3487
+ msgid "None"
3488
+ msgstr "Không"
3489
+
3490
+ #: includes/license.php:51
3491
+ msgid "Your license key has been validated."
3492
+ msgstr ""
3493
+
3494
+ #: includes/license.php:81
3495
+ msgid "Paid Memberships Pro Support License"
3496
+ msgstr ""
3497
+
3498
+ #: includes/license.php:86
3499
+ msgid "License Key"
3500
+ msgstr ""
3501
+
3502
+ #: includes/license.php:89
3503
+ msgid ""
3504
+ "Enter your support license key.</strong> Your license key can be found in your "
3505
+ "membership email receipt or in your <a href=\"http://www.paidmembershipspro.com/"
3506
+ "login/?redirect_to=/membership-account/\" target=\"_blank\">Membership Account</a>."
3507
+ msgstr ""
3508
+
3509
+ #: includes/license.php:91
3510
+ msgid ""
3511
+ "Visit the PMPro <a href=\"http://www.paidmembershipspro.com/login/?redirect_to=/"
3512
+ "membership-account/\" target=\"_blank\">Membership Account</a> page to confirm that "
3513
+ "your account is active and to find your license key."
3514
+ msgstr ""
3515
+
3516
+ #: includes/license.php:91
3517
+ msgid "Your license is invalid or expired."
3518
+ msgstr ""
3519
+
3520
+ #: includes/license.php:93
3521
+ #, php-format
3522
+ msgid ""
3523
+ "<p><strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used "
3524
+ "to activate your support license on this site.</p>"
3525
+ msgstr ""
3526
+
3527
+ #: includes/license.php:100
3528
+ msgid "Enter license key here..."
3529
+ msgstr ""
3530
+
3531
+ #: includes/license.php:102
3532
+ msgid "Verify Key"
3533
+ msgstr ""
3534
+
3535
+ #: includes/license.php:273
3536
+ msgid ""
3537
+ "If you're running Paid Memberships Pro on a production website, we recommend an "
3538
+ "annual support license."
3539
+ msgstr ""
3540
+
3541
+ #: includes/license.php:273
3542
+ msgid "Invalid PMPro License Key."
3543
+ msgstr ""
3544
+
3545
+ #: includes/license.php:274
3546
+ msgid "Dismiss"
3547
+ msgstr "Bỏ qua"
3548
+
3549
+ #: includes/license.php:274
3550
+ msgid "More Info"
3551
+ msgstr "Thêm thông tin"
3552
+
3553
+ #: includes/localization.php:26 includes/localization.php:23
3554
+ msgid "Day"
3555
+ msgstr "Ngày"
3556
+
3557
+ #: includes/localization.php:28 includes/localization.php:25
3558
+ msgid "Week"
3559
+ msgstr "Tuần"
3560
+
3561
+ #: includes/localization.php:30 includes/localization.php:27
3562
+ msgid "Month"
3563
+ msgstr "Tháng"
3564
+
3565
+ #: includes/localization.php:32 includes/localization.php:29
3566
+ msgid "Year"
3567
+ msgstr "Năm"
3568
+
3569
+ #: includes/localization.php:37
3570
+ msgid "Days"
3571
+ msgstr "Ngày"
3572
+
3573
+ #: includes/localization.php:39
3574
+ msgid "Weeks"
3575
+ msgstr "Tuần"
3576
+
3577
+ #: includes/localization.php:41
3578
+ msgid "Months"
3579
+ msgstr "Tháng"
3580
+
3581
+ #: includes/localization.php:43
3582
+ msgid "Years"
3583
+ msgstr "Năm"
3584
+
3585
+ #: includes/metaboxes.php:38
3586
+ msgid ""
3587
+ "This post is already protected for this level because it is within a category that "
3588
+ "requires membership."
3589
+ msgstr ""
3590
+ "Bài này đã được bảo vệ vì nó nằm trong thể loại đòi hỏi quyền thành viên truy cập8."
3591
+
3592
+ #: includes/metaboxes.php:99 includes/metaboxes.php:100
3593
+ msgid "Require Membership"
3594
+ msgstr "Đòi hỏi quyền thành viên"
3595
+
3596
+ #: includes/profile.php:36 includes/profile.php:34
3597
+ msgid "Current Level"
3598
+ msgstr "Kiểu Thành Viên Hiện Tại"
3599
+
3600
+ #: includes/profile.php:60 includes/profile.php:54
3601
+ msgid "Not paying."
3602
+ msgstr "Chưa trả phí."
3603
+
3604
+ #: includes/profile.php:68 includes/profile.php:64
3605
+ msgid ""
3606
+ "This will not change the subscription at the gateway unless the 'Cancel' checkbox is "
3607
+ "selected below."
3608
+ msgstr ""
3609
+ "Điều này sẽ không thay đổi đăng ký tại các cổng, trừ khi các hộp kiểm 'Hủy bỏ' được "
3610
+ "chọn dưới đây."
3611
+
3612
+ #: includes/upgradecheck.php:422 includes/upgradecheck.php:401
3613
+ #: includes/upgradecheck.php:410
3614
+ #, php-format
3615
+ msgid "This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
3616
+ msgstr "Nội dung này là dành cho các thành viên,<br /><a href=\"%s\">Đăng ký</a>"
3617
+
3618
+ #: includes/upgradecheck.php:425 includes/upgradecheck.php:404
3619
+ #: includes/upgradecheck.php:413
3620
+ #, php-format
3621
+ msgid ""
3622
+ "This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> <a href="
3623
+ "\"%s\">Register</a>"
3624
+ msgstr ""
3625
+ "Nội dung này là dành cho các thành viên !!levels!!.<br /><a href=\"%s\">Đăng nhập</a> "
3626
+ "<a href=\"%s\">Đăng ký</a>"
3627
+
3628
+ #: includes/upgradecheck.php:429 includes/upgradecheck.php:408
3629
+ #: includes/upgradecheck.php:417
3630
+ msgid ""
3631
+ "This content is for !!levels!! members only. Visit the site and log in/register to "
3632
+ "read."
3633
+ msgstr ""
3634
+ "Nội dung này là dành cho các thành viên !!levels!!. Truy cập và đăng nhập/đăng ký để "
3635
+ "tải"
3636
+
3637
+ #: pages/billing.php:23 pages/billing.php:14
3638
+ #, php-format
3639
+ msgid "Logged in as <strong>%s</strong>."
3640
+ msgstr "Đã đăng nhập là <strong>%s</strong>.b"
3641
+
3642
+ #: pages/billing.php:23 pages/billing.php:14
3643
+ msgid "logout"
3644
+ msgstr "đăng xuất"
3645
+
3646
+ #: pages/billing.php:25 pages/cancel.php:52 pages/invoice.php:109 pages/levels.php:13
3647
+ #: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123 pages/account.php:12
3648
+ #: pages/account.php:18 pages/account.php:92 pages/billing.php:16
3649
+ msgid "Level"
3650
+ msgstr "Kiểu/Cấp độ"
3651
+
3652
+ #: pages/billing.php:27 pages/account.php:14 pages/billing.php:18
3653
+ msgid "Membership Fee"
3654
+ msgstr "Phí thành viên"
3655
+
3656
+ #: pages/billing.php:31 pages/account.php:18 pages/billing.php:22 pages/levels.php:70
3657
+ #, php-format
3658
+ msgid "%s every %d %s."
3659
+ msgstr "%s mọi %d %s."
3660
+
3661
+ #: pages/billing.php:33 pages/account.php:20 pages/billing.php:24 pages/levels.php:66
3662
+ #, php-format
3663
+ msgid "%s per %s."
3664
+ msgstr "%s mỗi %s."
3665
+
3666
+ #: pages/billing.php:42 pages/account.php:25 pages/account.php:29 pages/billing.php:29
3667
+ #: pages/billing.php:33
3668
+ msgid "Duration"
3669
+ msgstr "Thời gian"
3670
+
3671
+ #: pages/billing.php:52 pages/billing.php:39 pages/billing.php:43
3672
+ msgid ""
3673
+ "Your payment subscription is managed by PayPal. Please <a href=\"http://www.paypal.com"
3674
+ "\">login to PayPal here</a> to update your billing information."
3675
+ msgstr ""
3676
+ "Đăng ký thanh toán của bạn được quản lý bằng PayPal. Hãy <a href=\"http://www.paypal."
3677
+ "com\"> đăng nhập vào PayPal tại đây </a> để cập nhật thông tin thanh toán của bạn."
3678
+
3679
+ #: pages/billing.php:78 pages/checkout.php:318 pages/billing.php:65 pages/billing.php:69
3680
+ #: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
3681
+ #: pages/checkout.php:321 pages/checkout.php:328
3682
+ msgid "First Name"
3683
+ msgstr "Tên"
3684
+
3685
+ #: pages/billing.php:82 pages/checkout.php:322 pages/billing.php:69 pages/billing.php:73
3686
+ #: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
3687
+ #: pages/checkout.php:325 pages/checkout.php:332
3688
+ msgid "Last Name"
3689
+ msgstr "Họ"
3690
+
3691
+ #: pages/billing.php:86 pages/checkout.php:326 pages/billing.php:73 pages/billing.php:77
3692
+ #: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
3693
+ #: pages/checkout.php:329 pages/checkout.php:336
3694
+ msgid "Address 1"
3695
+ msgstr "Địa chỉ 1"
3696
+
3697
+ #: pages/billing.php:90 pages/checkout.php:330 pages/billing.php:77 pages/billing.php:81
3698
+ #: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
3699
+ #: pages/checkout.php:333 pages/checkout.php:340
3700
+ msgid "Address 2"
3701
+ msgstr "Địa chỉ 2"
3702
+
3703
+ #: pages/billing.php:100 pages/checkout.php:340 pages/billing.php:87
3704
+ #: pages/billing.php:91 pages/checkout.php:327 pages/checkout.php:329
3705
+ #: pages/checkout.php:331 pages/checkout.php:343 pages/checkout.php:350
3706
+ msgid "City"
3707
+ msgstr "Thành phố"
3708
+
3709
+ #: pages/billing.php:104 pages/checkout.php:344 pages/billing.php:91
3710
+ #: pages/billing.php:95 pages/checkout.php:331 pages/checkout.php:333
3711
+ #: pages/checkout.php:335 pages/checkout.php:347 pages/checkout.php:354
3712
+ msgid "State"
3713
+ msgstr "Quận"
3714
+
3715
+ #: pages/billing.php:108 pages/checkout.php:348 pages/billing.php:95
3716
+ #: pages/billing.php:99 pages/checkout.php:335 pages/checkout.php:337
3717
+ #: pages/checkout.php:339 pages/checkout.php:351 pages/checkout.php:358
3718
+ msgid "Postal Code"
3719
+ msgstr "Mã vùng"
3720
+
3721
+ #: pages/billing.php:117 pages/checkout.php:357 pages/billing.php:104
3722
+ #: pages/billing.php:108 pages/checkout.php:344 pages/checkout.php:346
3723
+ #: pages/checkout.php:348 pages/checkout.php:360 pages/checkout.php:367
3724
+ msgid "City, State Zip"
3725
+ msgstr "Bang Hạt"
3726
+
3727
+ #: pages/billing.php:170 pages/checkout.php:410 pages/billing.php:157
3728
+ #: pages/billing.php:161 pages/checkout.php:397 pages/checkout.php:399
3729
+ #: pages/checkout.php:401 pages/checkout.php:413 pages/checkout.php:420
3730
+ msgid "Country"
3731
+ msgstr "Quốc gia"
3732
+
3733
+ #: pages/billing.php:195 pages/checkout.php:435 pages/billing.php:182
3734
+ #: pages/billing.php:186 pages/checkout.php:422 pages/checkout.php:424
3735
+ #: pages/checkout.php:426 pages/checkout.php:438 pages/checkout.php:445
3736
+ msgid "Phone"
3737
+ msgstr "Số điện thoại"
3738
+
3739
+ #: pages/billing.php:206 pages/checkout.php:216 pages/checkout.php:449
3740
+ #: pages/billing.php:193 pages/billing.php:197 pages/checkout.php:204
3741
+ #: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:436
3742
+ #: pages/checkout.php:438 pages/checkout.php:440 pages/checkout.php:453
3743
+ #: pages/checkout.php:460
3744
+ msgid "E-mail Address"
3745
+ msgstr "Địa chỉ Email"
3746
+
3747
+ #: pages/billing.php:210 pages/checkout.php:458 pages/billing.php:197
3748
+ #: pages/billing.php:201 pages/checkout.php:445 pages/checkout.php:447
3749
+ #: pages/checkout.php:449 pages/checkout.php:462 pages/checkout.php:469
3750
+ msgid "Confirm E-mail"
3751
+ msgstr "Xác nhận E-mail"
3752
+
3753
+ #: pages/billing.php:230 pages/billing.php:217 pages/billing.php:221
3754
+ msgid "Credit Card Information"
3755
+ msgstr "Thông tin thẻ tín dụng"
3756
+
3757
+ #: pages/billing.php:230 pages/billing.php:217 pages/billing.php:221
3758
+ #, php-format
3759
+ msgid "We accept %s"
3760
+ msgstr "Chúng tôi chap nhận %s"
3761
+
3762
+ #: pages/billing.php:353 pages/billing.php:309 pages/billing.php:313
3763
+ #: pages/billing.php:344
3764
+ msgid ""
3765
+ "This subscription is not recurring. So you don't need to update your billing "
3766
+ "information."
3767
+ msgstr ""
3768
+ "Đăng ký này không định kỳ. Vì vậy, bạn không cần phải cập nhật thông tin thanh toán "
3769
+ "của bạn."
3770
+
3771
+ #: pages/cancel.php:26 pages/cancel.php:14
3772
+ msgid "Are you sure you want to cancel your membership?"
3773
+ msgstr "Bạn có chắc chắn muốn hủy bỏ quyền thành viên của bạn?"
3774
+
3775
+ #: pages/cancel.php:32
3776
+ #, php-format
3777
+ msgid "Are you sure you want to cancel your %s membership?"
3778
+ msgstr "Bạn có chắc chắn muốn hủy bỏ quyền thành viên %s của bạn?"
3779
+
3780
+ #: pages/cancel.php:37 pages/cancel.php:17
3781
+ msgid "Yes, cancel my account"
3782
+ msgstr "Có, hủy bỏ tài khoản của tôi"
3783
+
3784
+ #: pages/cancel.php:38 pages/cancel.php:19
3785
+ msgid "No, keep my account"
3786
+ msgstr "Không, giữ lại tài khoản của tôi"
3787
+
3788
+ #: pages/cancel.php:48 shortcodes/pmpro_account.php:40 pages/account.php:14
3789
+ msgid "My Memberships"
3790
+ msgstr "Quyền Thành Viên Của Tôi"
3791
+
3792
+ #: pages/cancel.php:77
3793
+ msgid "Cancel All Memberships"
3794
+ msgstr "Hủy Bỏ Các Quyền Thành Viên"
3795
+
3796
+ #: pages/cancel.php:86 pages/cancel.php:22
3797
+ msgid "Click here to go to the home page."
3798
+ msgstr "Nhấn vào đây để tới trang chủ."
3799
+
3800
+ #: pages/checkout.php:35 pages/checkout.php:26 pages/checkout.php:27
3801
+ #: pages/checkout.php:28
3802
+ msgid ""
3803
+ "Almost done. Review the membership information and pricing below then <strong>click "
3804
+ "the \"Complete Payment\" button</strong> to finish your order."
3805
+ msgstr ""
3806
+ "Sắp xong. Xem lại các thông tin thành viên và giá cả dưới đây sau đó <strong> nhấn "
3807
+ "vào nút \"Hoàn thành thanh toán\" </ strong> để hoàn tất đơn đặt hàng của bạn."
3808
+
3809
+ #: pages/checkout.php:42 pages/checkout.php:33 pages/checkout.php:34
3810
+ #: pages/checkout.php:35
3811
+ msgid "change"
3812
+ msgstr "thay đổi"
3813
+
3814
+ #: pages/checkout.php:50 pages/checkout.php:41 pages/checkout.php:42
3815
+ #: pages/checkout.php:43
3816
+ #, php-format
3817
+ msgid "You have selected the <strong>%s</strong> membership level."
3818
+ msgstr "Bạn đã chọn kiểu thành viên là <strong>%s</strong>"
3819
+
3820
+ #: pages/checkout.php:60 pages/checkout.php:51 pages/checkout.php:53
3821
+ #, php-format
3822
+ msgid ""
3823
+ "<p class=\"pmpro_level_discount_applied\">The <strong>%s</strong> code has been "
3824
+ "applied to your order.</p>"
3825
+ msgstr ""
3826
+ "<p class=\"pmpro_level_discount_applied\">Mã <strong>%s</strong> đã đượcáp dung cho "
3827
+ "đơn hang của bạn.</p>"
3828
+
3829
+ #: pages/checkout.php:71 services/applydiscountcode.php:89 pages/checkout.php:62
3830
+ #: pages/checkout.php:63 pages/checkout.php:64 services/applydiscountcode.php:74
3831
+ #: services/applydiscountcode.php:75 services/applydiscountcode.php:78
3832
+ msgid "Click here to change your discount code"
3833
+ msgstr "Nhấn vào đây để thay đổi mã giảm giá của bạn"
3834
+
3835
+ #: pages/checkout.php:73 pages/checkout.php:64 pages/checkout.php:65
3836
+ #: pages/checkout.php:66
3837
+ msgid "Click here to enter your discount code"
3838
+ msgstr "Nhấn vào đây để nhập mã giảm giá của bạn"
3839
+
3840
+ #: pages/checkout.php:73 pages/checkout.php:64 pages/checkout.php:65
3841
+ #: pages/checkout.php:66
3842
+ msgid "Do you have a discount code?"
3843
+ msgstr "Bạn có một mã giảm giá không?"
3844
+
3845
+ #: pages/checkout.php:172 pages/checkout.php:160 pages/checkout.php:163
3846
+ #: pages/checkout.php:165
3847
+ msgid "Account Information"
3848
+ msgstr "Thông tin tài khoản"
3849
+
3850
+ #: pages/checkout.php:172 pages/checkout.php:160 pages/checkout.php:163
3851
+ #: pages/checkout.php:165
3852
+ msgid "Already have an account?"
3853
+ msgstr "Bạn đã có tài khoản?"
3854
+
3855
+ #: pages/checkout.php:172 pages/checkout.php:160 pages/checkout.php:163
3856
+ #: pages/checkout.php:165
3857
+ msgid "Log in here"
3858
+ msgstr "Đăng nhập ở đây"
3859
+
3860
+ #: pages/checkout.php:198 pages/checkout.php:186 pages/checkout.php:189
3861
+ #: pages/checkout.php:191
3862
+ msgid "Confirm Password"
3863
+ msgstr "Xác nhận mật khẩu"
3864
+
3865
+ #: pages/checkout.php:225 pages/checkout.php:213 pages/checkout.php:216
3866
+ #: pages/checkout.php:218
3867
+ msgid "Confirm E-mail Address"
3868
+ msgstr "Xác nhận địa chỉ E-mail"
3869
+
3870
+ #: pages/checkout.php:244 pages/checkout.php:232 pages/checkout.php:235
3871
+ #: pages/checkout.php:237
3872
+ msgid "Full Name"
3873
+ msgstr "Họ tên"
3874
+
3875
+ #: pages/checkout.php:245 pages/checkout.php:233 pages/checkout.php:236
3876
+ #: pages/checkout.php:238
3877
+ msgid "LEAVE THIS BLANK"
3878
+ msgstr "ĐỂ TRỐNG"
3879
+
3880
+ #: pages/checkout.php:269 pages/checkout.php:257 pages/checkout.php:260
3881
+ #: pages/checkout.php:262
3882
+ #, php-format
3883
+ msgid ""
3884
+ "You are logged in as <strong>%s</strong>. If you would like to use a different "
3885
+ "account for this membership, <a href=\"%s\">log out now</a>."
3886
+ msgstr ""
3887
+ "Bạn đã đăng nhập là d<strong>%s</strong>.Nếu bạn muốn sử dụng tài khoản khác cho "
3888
+ "thành viên này, <a href=\"%s\">Đăng xuất ngay</a>."
3889
+
3890
+ #: pages/checkout.php:285 pages/checkout.php:276 pages/checkout.php:278
3891
+ #: pages/checkout.php:292 pages/checkout.php:299
3892
+ msgid "Choose your Payment Method"
3893
+ msgstr "Chọn cách thanh toán của bạn"
3894
+
3895
+ #: pages/checkout.php:293 pages/checkout.php:284 pages/checkout.php:286
3896
+ #: pages/checkout.php:300 pages/checkout.php:307
3897
+ msgid "Check Out with a Credit Card Here"
3898
+ msgstr "Thanh toán với Thẻ tín dung ở đây"
3899
+
3900
+ #: pages/checkout.php:681 pages/checkout.php:277 pages/checkout.php:284
3901
+ #: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
3902
+ #, php-format
3903
+ msgid "I agree to the %s"
3904
+ msgstr "Tôi đồng ý với %s"
3905
+
3906
+ #: pages/checkout.php:701 pages/checkout.php:667 pages/checkout.php:674
3907
+ #: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
3908
+ msgid "Complete Payment"
3909
+ msgstr "Hoàn thành thanh toán"
3910
+
3911
+ #: pages/checkout.php:723 pages/checkout.php:687 pages/checkout.php:694
3912
+ #: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
3913
+ msgid "Processing..."
3914
+ msgstr "Đang xử lý..."
3915
+
3916
+ #: pages/confirmation.php:12
3917
+ msgid "Your payment has been submitted. Your membership will be activated shortly."
3918
+ msgstr ""
3919
+ "Thanh toán của bạn đã được gửi đi. Quyền thành viên của bạn sẽ được kích hoạt ngay"
3920
+
3921
+ #: pages/confirmation.php:14
3922
+ #, php-format
3923
+ msgid "Thank you for your membership to %s. Your %s membership is now active."
3924
+ msgstr ""
3925
+ "Cám ơn bạn đã đang ký thanh viên của %s. Tài khoản thành viên %s sẽ được kích hoạt "
3926
+ "ngay"
3927
+
3928
+ #: pages/confirmation.php:28
3929
+ #, php-format
3930
+ msgid ""
3931
+ "Below are details about your membership account and a receipt for your initial "
3932
+ "membership invoice. A welcome email with a copy of your initial membership invoice "
3933
+ "has been sent to %s."
3934
+ msgstr ""
3935
+ "Dưới đây là chi tiết về tài khoản thành viên của bạn và nhận được một hóa đơn cho "
3936
+ "thanh toán thành viên lần đầu của bạn. Một email chào đón với một bản sao của hóa đơn "
3937
+ "thành viên lần đầu của bạn đã được gửi đến %s."
3938
+
3939
+ #: pages/confirmation.php:41 pages/invoice.php:22
3940
+ #, php-format
3941
+ msgid "Invoice #%s on %s"
3942
+ msgstr "Hóa đơn số#%s trên %s"
3943
+
3944
+ #: pages/confirmation.php:43 pages/invoice.php:24
3945
+ msgid "Print"
3946
+ msgstr "In ấn"
3947
+
3948
+ #: pages/confirmation.php:46 pages/confirmation.php:104 pages/invoice.php:27
3949
+ #: pages/confirmation.php:45 pages/confirmation.php:102 pages/invoice.php:26
3950
+ msgid "Account"
3951
+ msgstr "Tài khoản"
3952
+
3953
+ #: pages/confirmation.php:49 pages/invoice.php:30 pages/account.php:29
3954
+ #: pages/account.php:33 pages/confirmation.php:48 pages/invoice.php:29
3955
+ msgid "Membership Expires"
3956
+ msgstr "Hết hạn"
3957
+
3958
+ #: pages/confirmation.php:63 pages/invoice.php:50 pages/account.php:105
3959
+ #: pages/account.php:109 pages/confirmation.php:61 pages/invoice.php:48
3960
+ msgid "Payment Method"
3961
+ msgstr "Phương thức thanh toán "
3962
+
3963
+ #: pages/confirmation.php:65 pages/invoice.php:52 pages/invoice.php:110
3964
+ #: pages/confirmation.php:63 pages/invoice.php:50 pages/invoice.php:107
3965
+ #: pages/invoice.php:109
3966
+ msgid "Total Billed"
3967
+ msgstr "Tổng thanh toán "
3968
+
3969
+ #: pages/confirmation.php:82 pages/invoice.php:69 pages/confirmation.php:80
3970
+ #: pages/invoice.php:67
3971
+ msgid "ending in"
3972
+ msgstr "kết thúc ở"
3973
+
3974
+ #: pages/confirmation.php:97
3975
+ #, php-format
3976
+ msgid ""
3977
+ "Below are details about your membership account. A welcome email has been sent to %s."
3978
+ msgstr ""
3979
+ "Dưới đây là chi tiết về tài khoản thành viên của bạn. Một email chào mừng đã được gửi "
3980
+ "đến %s."
3981
+
3982
+ #: pages/confirmation.php:105 pages/confirmation.php:103
3983
+ msgid "Pending"
3984
+ msgstr "Đang xử lý"
3985
+
3986
+ #: pages/confirmation.php:113 pages/invoice.php:141 pages/confirmation.php:111
3987
+ #: pages/invoice.php:139
3988
+ msgid "View Your Membership Account &rarr;"
3989
+ msgstr "Xem thông tin thành viên của bạn &rarr;"
3990
+
3991
+ #: pages/confirmation.php:115 pages/confirmation.php:113
3992
+ msgid ""
3993
+ "If your account is not activated within a few minutes, please contact the site owner."
3994
+ msgstr ""
3995
+ "Nếu tài khoản của bạn chưa được kích hoạt trong vòng một vài phút, hãy liên hệ với "
3996
+ "chủ sở hữu trang web."
3997
+
3998
+ #: pages/invoice.php:79 pages/invoice.php:77
3999
+ msgid "Subtotal"
4000
+ msgstr "Tổng phụ"
4001
+
4002
+ #: pages/invoice.php:82 pages/invoice.php:80
4003
+ msgid "Coupon"
4004
+ msgstr "Mã khuyến mại"
4005
+
4006
+ #: pages/invoice.php:108 pages/invoice.php:106
4007
+ msgid "Invoice #"
4008
+ msgstr "Hóa đơn số"
4009
+
4010
+ #: pages/invoice.php:134 pages/invoice.php:132
4011
+ msgid "No invoices found."
4012
+ msgstr "Không có hóa đơn "
4013
+
4014
+ #: pages/invoice.php:145 pages/invoice.php:143
4015
+ msgid "&larr; View All Invoices"
4016
+ msgstr "&larr; Xem các hóa đơn"
4017
+
4018
+ #: pages/levels.php:14
4019
+ msgid "Price"
4020
+ msgstr "Giá"
4021
+
4022
+ #: pages/levels.php:33 pages/levels.php:43
4023
+ msgid "Free"
4024
+ msgstr "Miễn phí"
4025
+
4026
+ #: pages/levels.php:47 pages/levels.php:49 pages/levels.php:113 pages/levels.php:115
4027
+ msgid "Select"
4028
+ msgstr "Chọn"
4029
+
4030
+ #: pages/levels.php:57 shortcodes/pmpro_account.php:59 pages/account.php:33
4031
+ #: pages/levels.php:123
4032
+ msgid "Renew"
4033
+ msgstr "Thiết lập lại"
4034
+
4035
+ #: pages/levels.php:63 pages/levels.php:117 pages/levels.php:129
4036
+ msgid "Your&nbsp;Level"
4037
+ msgstr "Loại tài khoản của bạn"
4038
+
4039
+ #: pages/levels.php:79 pages/levels.php:129 pages/levels.php:145
4040
+ msgid "&larr; Return to Your Account"
4041
+ msgstr "&larr; Quay về Tài khoản của bạn"
4042
+
4043
+ #: pages/levels.php:81 pages/levels.php:131 pages/levels.php:147
4044
+ msgid "&larr; Return to Home"
4045
+ msgstr "&larr; Trở lại trang chủ"
4046
+
4047
+ #: paid-memberships-pro.php:123 adminpages/orders.php:398 adminpages/orders.php:448
4048
+ #: paid-memberships-pro.php:115 paid-memberships-pro.php:116
4049
+ msgid "Testing Only"
4050
+ msgstr "Thủ nghiệm"
4051
+
4052
+ #: paid-memberships-pro.php:128 paid-memberships-pro.php:120
4053
+ #: paid-memberships-pro.php:121
4054
+ msgid "PayPal Payflow Pro/PayPal Pro"
4055
+ msgstr ""
4056
+
4057
+ #: paid-memberships-pro.php:133 paid-memberships-pro.php:125
4058
+ #: paid-memberships-pro.php:126
4059
+ msgid "Cybersource"
4060
+ msgstr ""
4061
+
4062
+ #: preheaders/account.php:10 preheaders/levels.php:22 preheaders/account.php:7
4063
+ #: preheaders/account.php:9 preheaders/levels.php:19 preheaders/levels.php:21
4064
+ msgid "Your membership status has been updated - Thank you!"
4065
+ msgstr "Thông tin tài khoản của bạn đã được cập nhật - Cám ơn bạn"
4066
+
4067
+ #: preheaders/account.php:12 preheaders/levels.php:24 preheaders/account.php:11
4068
+ #: preheaders/levels.php:23
4069
+ msgid "Sorry, your request could not be completed - please try again in a few moments."
4070
+ msgstr ""
4071
+ "Xin lỗi, yêu cầu của bạn không thể được hoàn thành - vui lòng thử lại sau vài phút."
4072
+
4073
+ #: preheaders/billing.php:270 preheaders/checkout.php:332 preheaders/billing.php:258
4074
+ #: preheaders/billing.php:265 preheaders/billing.php:266 preheaders/billing.php:279
4075
+ #: preheaders/checkout.php:458 preheaders/checkout.php:464 preheaders/checkout.php:465
4076
+ #: preheaders/checkout.php:470 preheaders/checkout.php:481 preheaders/checkout.php:482
4077
+ msgid "Please complete all required fields."
4078
+ msgstr "Vui lòng điền tất cả các trường bắt buộc."
4079
+
4080
+ #: preheaders/billing.php:273 preheaders/checkout.php:340 preheaders/billing.php:263
4081
+ #: preheaders/billing.php:268 preheaders/billing.php:269 preheaders/billing.php:284
4082
+ #: preheaders/checkout.php:466 preheaders/checkout.php:473 preheaders/checkout.php:474
4083
+ #: preheaders/checkout.php:478 preheaders/checkout.php:491 preheaders/checkout.php:492
4084
+ msgid "Your email addresses do not match. Please try again."
4085
+ msgstr "Địa chỉ email của bạn không phù hợp. Vui lòng thử lại."
4086
+
4087
+ #: preheaders/billing.php:276 preheaders/checkout.php:345 preheaders/billing.php:268
4088
+ #: preheaders/billing.php:271 preheaders/billing.php:272 preheaders/billing.php:289
4089
+ #: preheaders/checkout.php:471 preheaders/checkout.php:478 preheaders/checkout.php:480
4090
+ #: preheaders/checkout.php:483 preheaders/checkout.php:497 preheaders/checkout.php:498
4091
+ msgid "The email address entered is in an invalid format. Please try again."
4092
+ msgstr "Địa chỉ email đã nhập trong không hợp lệ. Vui lòng thử lại."
4093
+
4094
+ #: preheaders/billing.php:280 preheaders/billing.php:274 preheaders/billing.php:275
4095
+ #: preheaders/billing.php:276 preheaders/billing.php:295
4096
+ msgid "All good!"
4097
+ msgstr "Đã xong"
4098
+
4099
+ #: preheaders/billing.php:350 preheaders/billing.php:340 preheaders/billing.php:345
4100
+ #: preheaders/billing.php:346 preheaders/billing.php:370
4101
+ #, php-format
4102
+ msgid "Information updated. <a href=\"%s\">&laquo; back to my account</a>"
4103
+ msgstr "Thông tin được cập nhật. <a href=\"%s\"> &laquo; trở lại </a> tài khoản của tôi"
4104
+
4105
+ #: preheaders/billing.php:356 preheaders/billing.php:347 preheaders/billing.php:351
4106
+ #: preheaders/billing.php:352 preheaders/billing.php:378 preheaders/billing.php:380
4107
+ msgid "Error updating billing information."
4108
+ msgstr "Lỗi cập nhật thông tin thanh toán."
4109
+
4110
+ #: preheaders/cancel.php:28 preheaders/cancel.php:24 preheaders/cancel.php:25
4111
+ msgid "Your membership has been cancelled."
4112
+ msgstr "Thành viên của bạn đã bị hủy."
4113
+
4114
+ #: preheaders/checkout.php:32 preheaders/checkout.php:354 preheaders/checkout.php:28
4115
+ #: preheaders/checkout.php:30 preheaders/checkout.php:31 preheaders/checkout.php:480
4116
+ #: preheaders/checkout.php:487 preheaders/checkout.php:491 preheaders/checkout.php:492
4117
+ #: preheaders/checkout.php:508 preheaders/checkout.php:509
4118
+ msgid "Invalid gateway."
4119
+ msgstr "Cổng không hợp lệ."
4120
+
4121
+ #: preheaders/checkout.php:95 preheaders/checkout.php:88 preheaders/checkout.php:89
4122
+ #: preheaders/checkout.php:91 preheaders/checkout.php:96
4123
+ msgid "Checkout: Payment Information"
4124
+ msgstr "Thanh toán: Thông tin thanh toán"
4125
+
4126
+ #: preheaders/checkout.php:100
4127
+ msgid "Set Up Your Account"
4128
+ msgstr "Thiết lập Tài khoản Của Bạn"
4129
+
4130
+ #: preheaders/checkout.php:300 preheaders/checkout.php:416 preheaders/checkout.php:421
4131
+ msgid "There are JavaScript errors on the page. Please contact the webmaster."
4132
+ msgstr "Có lỗi JavaScript trên trang. Xin vui lòng liên hệ với webmaster."
4133
+
4134
+ #: preheaders/checkout.php:335 preheaders/checkout.php:461 preheaders/checkout.php:468
4135
+ #: preheaders/checkout.php:473 preheaders/checkout.php:485 preheaders/checkout.php:486
4136
+ msgid "Your passwords do not match. Please try again."
4137
+ msgstr "Mật khẩu của bạn không phù hợp. Vui lòng thử lại."
4138
+
4139
+ #: preheaders/checkout.php:350 preheaders/checkout.php:476 preheaders/checkout.php:483
4140
+ #: preheaders/checkout.php:486 preheaders/checkout.php:488 preheaders/checkout.php:503
4141
+ #: preheaders/checkout.php:504
4142
+ #, php-format
4143
+ msgid "Please check the box to agree to the %s."
4144
+ msgstr "Vui lòng đánh dấu vô hộp kiểm để đồng ý với %s."
4145
+
4146
+ #: preheaders/checkout.php:357 preheaders/checkout.php:483 preheaders/checkout.php:490
4147
+ #: preheaders/checkout.php:495 preheaders/checkout.php:512 preheaders/checkout.php:513
4148
+ msgid "Are you a spammer?"
4149
+ msgstr "Bạn có phải là spammer?"
4150
+
4151
+ #: preheaders/checkout.php:377 preheaders/checkout.php:503 preheaders/checkout.php:510
4152
+ #: preheaders/checkout.php:515 preheaders/checkout.php:518 preheaders/checkout.php:535
4153
+ #: preheaders/checkout.php:536
4154
+ msgid "That username is already taken. Please try another."
4155
+ msgstr "Tên người dùng mà đã được sử dụng. Hãy thử một cái khác."
4156
+
4157
+ #: preheaders/checkout.php:382 preheaders/checkout.php:508 preheaders/checkout.php:515
4158
+ #: preheaders/checkout.php:520 preheaders/checkout.php:524 preheaders/checkout.php:541
4159
+ #: preheaders/checkout.php:542
4160
+ msgid "That email address is already taken. Please try another."
4161
+ msgstr "Địa chỉ email này đã được sử dụng. Hãy thử một cái khác."
4162
+
4163
+ #: preheaders/checkout.php:416 preheaders/checkout.php:397 preheaders/checkout.php:399
4164
+ #: preheaders/checkout.php:525 preheaders/checkout.php:532 preheaders/checkout.php:537
4165
+ #: preheaders/checkout.php:544 preheaders/checkout.php:561 preheaders/checkout.php:562
4166
+ #, php-format
4167
+ msgid "reCAPTCHA failed. (%s) Please try again."
4168
+ msgstr ""
4169
+
4170
+ #: preheaders/checkout.php:501 preheaders/checkout.php:482 preheaders/checkout.php:484
4171
+ #: preheaders/checkout.php:647 preheaders/checkout.php:654 preheaders/checkout.php:659
4172
+ #: preheaders/checkout.php:683 preheaders/checkout.php:701 preheaders/checkout.php:702
4173
+ msgid "Payment accepted."
4174
+ msgstr "Thanh toán được chấp nhận."
4175
+
4176
+ #: preheaders/checkout.php:509 preheaders/checkout.php:490 preheaders/checkout.php:492
4177
+ #: preheaders/checkout.php:653 preheaders/checkout.php:660 preheaders/checkout.php:665
4178
+ #: preheaders/checkout.php:691 preheaders/checkout.php:709 preheaders/checkout.php:710
4179
+ msgid "Unknown error generating account. Please contact us to set up your membership."
4180
+ msgstr ""
4181
+ "Lỗi đã xảy ra với việc tạo tài khoản. Hãy liên hệ với chúng tôi để thiết lập tài "
4182
+ "khoản thành viên cho bạn."
4183
+
4184
+ #: preheaders/checkout.php:571 preheaders/checkout.php:550 preheaders/checkout.php:552
4185
+ #: preheaders/checkout.php:569 preheaders/checkout.php:785 preheaders/checkout.php:792
4186
+ #: preheaders/checkout.php:797 preheaders/checkout.php:825 preheaders/checkout.php:844
4187
+ #: preheaders/checkout.php:859 preheaders/checkout.php:860
4188
+ msgid ""
4189
+ "Your payment was accepted, but there was an error setting up your account. Please "
4190
+ "contact us."
4191
+ msgstr ""
4192
+ "Thanh toán của bạn đã được chấp nhận, nhưng đã có lỗi khi thiết lập tài khoản của "
4193
+ "bạn. Hãy liên hệ với chúng tôi."
4194
+
4195
+ #: preheaders/checkout.php:712 preheaders/checkout.php:691 preheaders/checkout.php:693
4196
+ #: preheaders/checkout.php:710 preheaders/checkout.php:953 preheaders/checkout.php:960
4197
+ #: preheaders/checkout.php:970 preheaders/checkout.php:983 preheaders/checkout.php:1030
4198
+ #: preheaders/checkout.php:1045 preheaders/checkout.php:1046
4199
+ msgid ""
4200
+ "IMPORTANT: Something went wrong during membership creation. Your credit card "
4201
+ "authorized, but we cancelled the order immediately. You should not try to submit this "
4202
+ "form again. Please contact the site owner to fix this issue."
4203
+ msgstr ""
4204
+ "QUAN TRỌNG: Đã phát sinh lỗi quá trình tạo thành viên. Thẻ tín dụng của bạn được ủy "
4205
+ "quyền, nhưng chúng tôi hủy bỏ lệnh ngay lập tức. Bạn không nên cố gắng để gửi biểu "
4206
+ "mẫu này một lần nữa. Xin vui lòng liên hệ với chủ sở hữu trang web để khắc phục vấn "
4207
+ "đề này."
4208
+
4209
+ #: preheaders/checkout.php:715 preheaders/checkout.php:694 preheaders/checkout.php:696
4210
+ #: preheaders/checkout.php:713 preheaders/checkout.php:956 preheaders/checkout.php:963
4211
+ #: preheaders/checkout.php:973 preheaders/checkout.php:988 preheaders/checkout.php:1035
4212
+ #: preheaders/checkout.php:1050 preheaders/checkout.php:1051
4213
+ msgid ""
4214
+ "IMPORTANT: Something went wrong during membership creation. Your credit card was "
4215
+ "charged, but we couldn't assign your membership. You should not submit this form "
4216
+ "again. Please contact the site owner to fix this issue."
4217
+ msgstr ""
4218
+ "QUAN TRỌNG: Đã phát sinh lỗi trong quá trình tạo thành viên. Thẻ tín dụng của bạn đã "
4219
+ "được tính phí, nhưng chúng tôi không thể chỉ định loại thành viên cho bạn. Bạn không "
4220
+ "cần phải nộp mẫu đơn này một lần nữa. Xin vui lòng liên hệ với chủ sở hữu trang web "
4221
+ "để khắc phục vấn đề này."
4222
+
4223
+ #: preheaders/checkout.php:726 preheaders/checkout.php:705 preheaders/checkout.php:707
4224
+ #: preheaders/checkout.php:724 preheaders/checkout.php:967 preheaders/checkout.php:974
4225
+ #: preheaders/checkout.php:984 preheaders/checkout.php:1001 preheaders/checkout.php:1048
4226
+ #: preheaders/checkout.php:1063 preheaders/checkout.php:1064
4227
+ #, php-format
4228
+ msgid ""
4229
+ "You must <a href=\"%s\">set up a Payment Gateway</a> before any payments will be "
4230
+ "processed."
4231
+ msgstr ""
4232
+ "Bạn phải <a href=\"%s\">Thiết lập cổng thanh toán</a> trước khi bất kỳ thanh toán nào "
4233
+ "được xử lý"
4234
+
4235
+ #: preheaders/checkout.php:728 preheaders/checkout.php:707 preheaders/checkout.php:709
4236
+ #: preheaders/checkout.php:726 preheaders/checkout.php:969 preheaders/checkout.php:976
4237
+ #: preheaders/checkout.php:986 preheaders/checkout.php:1003 preheaders/checkout.php:1050
4238
+ #: preheaders/checkout.php:1065 preheaders/checkout.php:1066
4239
+ msgid "A Payment Gateway must be set up before any payments will be processed."
4240
+ msgstr ""
4241
+ "Một Cổng thanh toán phải được thiết lập trước khi bất kỳ khoản thanh toán sẽ được xử "
4242
+ "lý."
4243
+
4244
+ #: scheduled/crons.php:38 scheduled/crons.php:31 scheduled/crons.php:34
4245
+ #: scheduled/crons.php:61
4246
+ #, php-format
4247
+ msgid "Membership expired email sent to %s. "
4248
+ msgstr "Tài khoản Thành viên đã hết hạn, email đã gửi đến %s. "
4249
+
4250
+ #: scheduled/crons.php:84 scheduled/crons.php:27 scheduled/crons.php:74
4251
+ #: scheduled/crons.php:80
4252
+ #, php-format
4253
+ msgid "Membership expiring email sent to %s. "
4254
+ msgstr "Tài khoản Thành viên đanlg hết hạn, email đã gửi đến %s. "
4255
+
4256
+ #: scheduled/crons.php:157 scheduled/crons.php:143 scheduled/crons.php:152
4257
+ #, php-format
4258
+ msgid "Credit card expiring email sent to %s. "
4259
+ msgstr "Thẻ tín dụng đang hết hạn, email đã gửi đến %s. "
4260
+
4261
+ #: scheduled/crons.php:210 scheduled/crons.php:104 scheduled/crons.php:196
4262
+ #: scheduled/crons.php:208
4263
+ #, php-format
4264
+ msgid "Trial ending email sent to %s. "
4265
+ msgstr "Thời gian dung thử8 đã hết hạn, email đã gửi đến %s. "
4266
+
4267
+ #: services/applydiscountcode.php:67 services/applydiscountcode.php:64
4268
+ #, php-format
4269
+ msgid "The %s code has been applied to your order. "
4270
+ msgstr "Mã %s đã được áp dụng cho đơn hàng của bạn."
4271
+
4272
+ #: services/applydiscountcode.php:97 services/applydiscountcode.php:82
4273
+ #: services/applydiscountcode.php:83 services/applydiscountcode.php:86
4274
+ #, php-format
4275
+ msgid "The <strong>%s</strong> code has been applied to your order."
4276
+ msgstr "Mã <strong>%s</strong> đã được áp dụng cho đơn hàng của bạn."
4277
+
4278
+ #: services/authnet-silent-post.php:141 services/authnet-silent-post.php:133
4279
+ #: services/authnet-silent-post.php:138
4280
+ msgid ""
4281
+ "<p>A payment is being held for review within Authorize.net.</p><p>Payment Information "
4282
+ "From Authorize.net"
4283
+ msgstr ""
4284
+
4285
+ #: services/stripe-webhook.php:270 services/stripe-webhook.php:176
4286
+ #: services/stripe-webhook.php:194
4287
+ #, php-format
4288
+ msgid ""
4289
+ "%s has had their payment subscription cancelled by Stripe. Please check that this "
4290
+ "user's membership is cancelled on your site if it should be."
4291
+ msgstr ""
4292
+
4293
+ #: shortcodes/pmpro_account.php:45 pages/account.php:19
4294
+ msgid "Billing"
4295
+ msgstr "Thông tin thanh toán "
4296
+
4297
+ #: shortcodes/pmpro_account.php:62 pages/account.php:36
4298
+ msgid "Update Billing Info"
4299
+ msgstr "Cập nhật thông tin thanh toán "
4300
+
4301
+ #: shortcodes/pmpro_account.php:68 pages/account.php:42
4302
+ msgid "Change"
4303
+ msgstr "Thay đổi"
4304
+
4305
+ #: shortcodes/pmpro_account.php:90 pages/account.php:64
4306
+ msgid "View all Membership Options"
4307
+ msgstr "Xem tất cả loại thành viên"
4308
+
4309
+ #: shortcodes/pmpro_account.php:99 pages/account.php:46 pages/account.php:50
4310
+ #: pages/account.php:71
4311
+ msgid "My Account"
4312
+ msgstr "Tài khoản của tôi"
4313
+
4314
+ #: shortcodes/pmpro_account.php:110 pages/account.php:55 pages/account.php:59
4315
+ #: pages/account.php:80
4316
+ msgid "Edit Profile"
4317
+ msgstr "Sửa thông tin cá nhân"
4318
+
4319
+ #: shortcodes/pmpro_account.php:111 pages/account.php:56 pages/account.php:60
4320
+ #: pages/account.php:81
4321
+ msgid "Change Password"
4322
+ msgstr "Đổi mật khẩu"
4323
+
4324
+ #: shortcodes/pmpro_account.php:118 pages/account.php:87 pages/account.php:125
4325
+ #: pages/account.php:129
4326
+ msgid "Past Invoices"
4327
+ msgstr "Hóa đơn trước đó "
4328
+
4329
+ #: shortcodes/pmpro_account.php:124 pages/account.php:93
4330
+ msgid "Amount"
4331
+ msgstr "Số lượng"
4332
+
4333
+ #: shortcodes/pmpro_account.php:152 pages/account.php:121 pages/account.php:140
4334
+ #: pages/account.php:144
4335
+ msgid "View All Invoices"
4336
+ msgstr "Xem tất cả các hoá đơn"
4337
+
4338
+ #: shortcodes/pmpro_account.php:159 pages/account.php:128 pages/account.php:146
4339
+ #: pages/account.php:150
4340
+ msgid "Member Links"
4341
+ msgstr "Các kiên kết của thành viên"
4342
+
4343
+ #: adminpages/addons.php:79
4344
+ msgid "Disabled"
4345
+ msgstr "Không cho phép"
4346
+
4347
+ #: adminpages/addons.php:79
4348
+ msgid "Enabled"
4349
+ msgstr "Cho phép"
4350
+
4351
+ #: adminpages/discountcodes.php:437
4352
+ msgid "Billing Ammount"
4353
+ msgstr "Số lượng thanh toán"
4354
+
4355
+ #: adminpages/discountcodes.php:480
4356
+ msgid "Check this to set an expiration date for new sign ups."
4357
+ msgstr "Đánh dấu để thiết lập ngày hết hạn cho đăng ký mới."
4358
+
4359
+ #: adminpages/discountcodes.php:497
4360
+ msgid ""
4361
+ "How long before the expiration expires. Note that any future payments will be "
4362
+ "cancelled when the membership expires."
4363
+ msgstr ""
4364
+ "Bao lâu trước khi kết thúc thời hạn hết hạn. Lưu ý rằng bất kỳ khoản thanh toán nào "
4365
+ "trong tương lai sẽ bị hủy khi thành viên hết hạn."
4366
+
4367
+ #: adminpages/membershiplevels.php:364
4368
+ msgid ""
4369
+ "Stripe integration currently only supports billing periods of \"Month\" or \"Year\"."
4370
+ msgstr ""
4371
+
4372
+ #: adminpages/membershiplevels.php:398
4373
+ msgid ""
4374
+ "2Checkout integration does not currently support custom trials. You can do one period "
4375
+ "trials by setting an initial payment different from the billing amount."
4376
+ msgstr ""
4377
+
4378
+ #: adminpages/membershiplevels.php:508 adminpages/membershiplevels.php:514
4379
+ #: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:543
4380
+ msgid "Billing Cycle"
4381
+ msgstr "Kỳ hạn"
4382
+
4383
+ #: adminpages/membershiplevels.php:509 adminpages/membershiplevels.php:515
4384
+ #: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:544
4385
+ msgid "Trial Cycle"
4386
+ msgstr "Kỳ hạn dung thử"
4387
+
4388
+ #: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:549
4389
+ #: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:578
4390
+ msgid "every"
4391
+ msgstr "mọi"
4392
+
4393
+ #: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:572
4394
+ #: adminpages/membershiplevels.php:574 adminpages/membershiplevels.php:580
4395
+ #: adminpages/membershiplevels.php:601 adminpages/membershiplevels.php:660
4396
+ #, php-format
4397
+ msgid ""
4398
+ "Are you sure you want to delete membership level %s? All subscriptions will be "
4399
+ "cancelled."
4400
+ msgstr "Bạn có chắc chắn muốn xóa cấp thành viên %s? Tất cả các đăng ký sẽ bị hủy bỏ."
4401
+
4402
+ #: adminpages/memberslist.php:184 adminpages/memberslist.php:212
4403
+ msgid "Never"
4404
+ msgstr "Không bao giờ"
4405
+
4406
+ #: adminpages/paymentsettings.php:170
4407
+ msgid ""
4408
+ "Payflow Pro currently only supports one-time payments. Users will not be able to "
4409
+ "checkout for levels with recurring payments."
4410
+ msgstr ""
4411
+
4412
+ #: adminpages/paymentsettings.php:405 adminpages/paymentsettings.php:445
4413
+ msgid ""
4414
+ "If values are given, tax will be applied for any members ordering from the selected "
4415
+ "state. For more complex tax rules, use the \"pmpro_tax\" filter."
4416
+ msgstr ""
4417
+
4418
+ #: adminpages/paymentsettings.php:410 adminpages/paymentsettings.php:421
4419
+ msgid "Use SSL"
4420
+ msgstr ""
4421
+
4422
+ #: adminpages/paymentsettings.php:425
4423
+ msgid "Required by this Gateway Option"
4424
+ msgstr ""
4425
+
4426
+ #: adminpages/paymentsettings.php:432
4427
+ msgid ""
4428
+ "Stripe doesn't require billing address fields. Choose 'No' to hide them on the "
4429
+ "checkout page."
4430
+ msgstr ""
4431
+
4432
+ #: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:471
4433
+ #: adminpages/paymentsettings.php:477 adminpages/paymentsettings.php:479
4434
+ msgid "HTTPS Nuclear Option"
4435
+ msgstr ""
4436
+
4437
+ #: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:474
4438
+ #: adminpages/paymentsettings.php:480 adminpages/paymentsettings.php:482
4439
+ msgid ""
4440
+ "Use the \"Nuclear Option\" to use secure (HTTPS) URLs on your secure pages. Check "
4441
+ "this if you are using SSL and have warnings on your checkout pages."
4442
+ msgstr ""
4443
+
4444
+ #: adminpages/paymentsettings.php:490 adminpages/paymentsettings.php:496
4445
+ #: adminpages/paymentsettings.php:498
4446
+ #: classes/gateways/class.pmprogateway_twocheckout.php:148
4447
+ msgid "To fully integrate with 2Checkout, be sure to set your 2Checkout INS URL "
4448
+ msgstr ""
4449
+
4450
+ #: classes/class.pmproemail.php:685 classes/class.pmproemail.php:734
4451
+ #: classes/class.pmproemail.php:799
4452
+ msgid "membership has been cancelled"
4453
+ msgstr "quyền thành viên đã bị hủy"
4454
+
4455
+ #: includes/currencies.php:11
4456
+ msgid "Brazilian Real (&#36;)"
4457
+ msgstr ""
4458
+
4459
+ #: includes/currencies.php:29 includes/currencies.php:49
4460
+ msgid "South African Rand"
4461
+ msgstr ""
4462
+
4463
+ #: includes/profile.php:82 includes/profile.php:84
4464
+ msgid "User is not paying."
4465
+ msgstr "Thành viên chưa trả phí "
4466
+
4467
+ #: pages/account.php:10
4468
+ msgid "Your membership is <strong>active</strong>."
4469
+ msgstr "Quyền thành viên của bạn được <strong>kích hoạt</strong>."
4470
+
4471
+ #: pages/account.php:34 pages/account.php:38
4472
+ #, php-format
4473
+ msgid "Your first payment will cost %s."
4474
+ msgstr "Khoản thanh toán đầu tiên là %s."
4475
+
4476
+ #: pages/account.php:38 pages/account.php:42
4477
+ #, php-format
4478
+ msgid "Your first %d payments will cost %s."
4479
+ msgstr "Khoản thanh toán đầu tiên %d là %s."
4480
+
4481
+ #: pages/account.php:87 pages/account.php:91
4482
+ msgid "Billing Information"
4483
+ msgstr "Thông tin thanh toán"
4484
+
4485
+ #: pages/account.php:114 pages/account.php:118
4486
+ msgid "Edit Billing Information"
4487
+ msgstr "Sửa thông tin thanh toán"
4488
+
4489
+ #: pages/account.php:152 pages/account.php:156
4490
+ msgid "Update Billing Information"
4491
+ msgstr "Cập nhật thông tin thanh toán"
4492
+
4493
+ #: pages/account.php:155 pages/account.php:159
4494
+ msgid "Change Membership Level"
4495
+ msgstr "Thay đổi loại Thành Viên"
4496
+
4497
+ #: pages/account.php:157 pages/account.php:161
4498
+ msgid "Cancel Membership"
4499
+ msgstr "Hủy quyển thành viên"
4500
+
4501
+ #: pages/checkout.php:51 pages/checkout.php:52
4502
+ #, php-format
4503
+ msgid "<p>The <strong>%s</strong> code has been applied to your order.</p>"
4504
+ msgstr "<p>M ã <strong>%s</strong> đã được áp dụng cho đơn hàng của bạn.</p>"
4505
+
4506
+ #: pages/checkout.php:688 pages/checkout.php:691 pages/checkout.php:707
4507
+ msgid "Submit and Pay with 2CheckOut"
4508
+ msgstr "Submit and Pay with 2CheckOut"
4509
+
4510
+ #: pages/confirmation.php:12
4511
+ msgid ""
4512
+ "Your payment has been submitted to PayPal. Your membership will be activated shortly."
4513
+ msgstr ""
4514
+ "Thanh toán của bạn đã được gửi cho PayPal. Tài khoản thành viên của bạn sẽ được kích "
4515
+ "hoạt sớm. "
4516
+
4517
+ #: pages/confirmation.php:95 pages/confirmation.php:97
4518
+ #, php-format
4519
+ msgid ""
4520
+ "Below are details about your membership account. A welcome email with has been sent "
4521
+ "to %s."
4522
+ msgstr ""
4523
+ "Dưới đây là chi tiết về tài khoản thành viên của bạn. Một email chào mừng đã được gửi "
4524
+ "đến %s."
4525
+
4526
+ #: pages/invoice.php:120 pages/invoice.php:122
4527
+ msgid "View Invoice"
4528
+ msgstr "Xem hóa đơn "
4529
+
4530
+ #: pages/levels.php:15
4531
+ msgid "Subscription Information"
4532
+ msgstr "Thông tin đăng ký "
4533
+
4534
+ #: pages/levels.php:33
4535
+ msgid "--"
4536
+ msgstr "..."
4537
+
4538
+ #: pages/levels.php:51
4539
+ #, php-format
4540
+ msgid "%s per %s for %d more %s."
4541
+ msgstr "%s mỗi %s cho %d thêm %s."
4542
+
4543
+ #: pages/levels.php:55
4544
+ #, php-format
4545
+ msgid "%s every %d %s for %d more %s."
4546
+ msgstr "%s các %d %s cho %d thêm %s."
4547
+
4548
+ #: pages/levels.php:60
4549
+ #, php-format
4550
+ msgid "%s after %d %s."
4551
+ msgstr "%s sau %d %s."
4552
+
4553
+ #: preheaders/checkout.php:99 preheaders/checkout.php:100 preheaders/checkout.php:102
4554
+ #: preheaders/checkout.php:109
4555
+ msgid "Set up Your Account"
4556
+ msgstr "Thiết lập tài khoản"
pages/checkout.php CHANGED
@@ -291,10 +291,14 @@
291
  <tr>
292
  <td>
293
  <div>
294
- <input type="radio" name="gateway" value="paypal" <?php if(!$gateway || $gateway == "paypal") { ?>checked="checked"<?php } ?> />
295
- <a href="javascript:void(0);" class="pmpro_radio"><?php _e('Check Out with a Credit Card Here', 'pmpro');?></a> &nbsp;
296
- <input type="radio" name="gateway" value="paypalexpress" <?php if($gateway == "paypalexpress") { ?>checked="checked"<?php } ?> />
297
- <a href="javascript:void(0);" class="pmpro_radio"><?php _e('Check Out with PayPal', 'pmpro');?></a> &nbsp;
 
 
 
 
298
  </div>
299
  </td>
300
  </tr>
291
  <tr>
292
  <td>
293
  <div>
294
+ <span class="gateway_paypal">
295
+ <input type="radio" name="gateway" value="paypal" <?php if(!$gateway || $gateway == "paypal") { ?>checked="checked"<?php } ?> />
296
+ <a href="javascript:void(0);" class="pmpro_radio"><?php _e('Check Out with a Credit Card Here', 'pmpro');?></a>
297
+ </span>
298
+ <span class="gateway_paypalexpress">
299
+ <input type="radio" name="gateway" value="paypalexpress" <?php if($gateway == "paypalexpress") { ?>checked="checked"<?php } ?> />
300
+ <a href="javascript:void(0);" class="pmpro_radio"><?php _e('Check Out with PayPal', 'pmpro');?></a>
301
+ </span>
302
  </div>
303
  </td>
304
  </tr>
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.5.5
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.5.5");
17
 
18
  //if the session has been started yet, start it (ignore if running from command line)
19
  if(defined('STDIN') )
3
  Plugin Name: Paid Memberships Pro
4
  Plugin URI: http://www.paidmembershipspro.com
5
  Description: Plugin to Handle Memberships
6
+ Version: 1.8.6
7
  Author: Stranger Studios
8
  Author URI: http://www.strangerstudios.com
9
  */
13
  */
14
 
15
  //version constant
16
+ define("PMPRO_VERSION", "1.8.6");
17
 
18
  //if the session has been started yet, start it (ignore if running from command line)
19
  if(defined('STDIN') )
preheaders/checkout.php CHANGED
@@ -570,7 +570,7 @@
570
  if (!$user_id || is_wp_error($user_id)) {
571
  $pmpro_msg = __("Your payment was accepted, but there was an error setting up your account. Please contact us.", "pmpro");
572
  $pmpro_msgt = "pmpro_error";
573
- } elseif ( apply_filters('pmpro_setup_new_user', true, $user_id, $new_user_array) ) {
574
 
575
  //check pmpro_wp_new_user_notification filter before sending the default WP email
576
  if (apply_filters("pmpro_wp_new_user_notification", true, $user_id, $pmpro_level->id))
570
  if (!$user_id || is_wp_error($user_id)) {
571
  $pmpro_msg = __("Your payment was accepted, but there was an error setting up your account. Please contact us.", "pmpro");
572
  $pmpro_msgt = "pmpro_error";
573
+ } elseif (apply_filters('pmpro_setup_new_user', true, $user_id, $new_user_array, $pmpro_level)) {
574
 
575
  //check pmpro_wp_new_user_notification filter before sending the default WP email
576
  if (apply_filters("pmpro_wp_new_user_notification", true, $user_id, $pmpro_level->id))
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: strangerstudios
3
  Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
4
  Requires at least: 3.5
5
- Tested up to: 4.3
6
- Stable tag: 1.8.5.5
7
 
8
  A revenue-generating machine for membership sites. Unlimited levels with recurring payment, protected content and member management.
9
 
@@ -115,10 +115,30 @@ 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.5.5 =
119
  * BUG: Added a $pmpro_core_pages global and using that in includes/init.php so we don't try to load preheaders and templates for pages added to that from other addons/etc.
120
 
121
  = 1.8.5.4 =
 
 
 
122
  * BUG: Fixed infinite redirect issues that would come up on servers setting $_SERVER['HTTPS'] to 'Off' vs 'off' or false. (Thanks, Gordon Seirup)
123
  * BUG: Using current_time('timestamp') in the sales report to avoid issues where sales at the beginning or end of the day aren't showing up under Today.
124
  * BUG: Fixed issues where delete links using the askfirst() JavaScript function would break for some language settings.
2
  Contributors: strangerstudios
3
  Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
4
  Requires at least: 3.5
5
+ Tested up to: 4.3.1
6
+ Stable tag: 1.8.6
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.6 =
119
+ * BUG: The pmpro_membership_level_profile_fields_update() function now only fires on the personal_options_update and edit_user_profile_update hooks instead of the profile_update hook since this function expects to be called from the your-profile or edit-user page.
120
+ * FEATURE: Added the ability to print invoices/orders from the Memberships -> Orders page in the dashboard. (Thanks, AgResources)
121
+ * FEATURE: Added the ability to email invoices/orders from the Memberships -> Orders page in the dashboard. (Thanks, AgResources)
122
+ * ENHANCEMENT: Added pmpro_before_change_membership_level action. Runs before the subscriptions are cancelled and before the SQL executes to change a user's level. Passes $level_id and $user_id.
123
+ * ENHANCEMENT: Updated Stripe Web Hook handler to save event into global $pmpro_stripe_event so filters can act on it.
124
+ * ENHANCEMENT: Added $pmpro_level as a second parameter for the pmpro_setup_new_user filter. (Thanks, David Crabill)
125
+ * ENHANCEMENT: Added Vietnamese language pack. (Thanks, Alex Training Center)
126
+
127
+ = 1.8.5.6 =
128
+ * ENHANCEMENT: Added pmpro_payflow_authorize_nvpstr, pmpro_payflow_void_nvpstr, pmpro_payflow_charge_nvpstr, pmpro_payflow_subscribe_nvpstr, pmpro_payflow_update_nvpstr, pmpro_payflow_cancel_nvpstr filters for PayPal Payflow Pro gateway. Usage is the same as PayPal Express NVP string filters.
129
+ * ENHANCEMENT: Added printable and emailable invoice templates to the Orders page.
130
+ * BUG: Fixed $pmpro_core_pages bug added in 1.8.5.5.
131
+ * BUG: Removed styling of .input from frontend.css. (Thanks, Russell Jamieson)
132
+ * BUG: Commented out a console.log call from Stripe JavaScript code. (Still there to uncomment if you want to debug.)
133
+ * ENHANCEMENT: No longer requiring the CVC/CVV code with Stripe. If blank, Stripe will try to verify without it. If your Stripe settings are to decline transactions that fail CVC check, you will still need a valid CVC code at checkout.
134
+
135
  = 1.8.5.5 =
136
  * BUG: Added a $pmpro_core_pages global and using that in includes/init.php so we don't try to load preheaders and templates for pages added to that from other addons/etc.
137
 
138
  = 1.8.5.4 =
139
+ * ENHANCEMENT: Added pmpro_get_membership_level_for_user and pmpro_get_membership_levels_for_user filters to change the levels returned for a user with the pmpro_getMembershipLevelForUser() and pmpro_getMembershipLevelsForUser() functions.
140
+ * ENHANCEMENT: Updated pmpro_hasMembershipLevels() function to search for expired members with "e" or "E". Also applies to [membership] shortcodes.
141
+ * ENHANCEMENT: Added the pmpro_extra_page_settings filter to add additional page settings fields for use with add-on plugins, etc.
142
  * BUG: Fixed infinite redirect issues that would come up on servers setting $_SERVER['HTTPS'] to 'Off' vs 'off' or false. (Thanks, Gordon Seirup)
143
  * BUG: Using current_time('timestamp') in the sales report to avoid issues where sales at the beginning or end of the day aren't showing up under Today.
144
  * BUG: Fixed issues where delete links using the askfirst() JavaScript function would break for some language settings.
services/ipnhandler.php CHANGED
@@ -393,7 +393,7 @@
393
  ipnlog("FP!");
394
 
395
  $res = wp_remote_retrieve_body($fp);
396
- if(strcmp($res, "VERIFIED") == 0 || true)
397
  {
398
  //all good so far
399
  ipnlog("VERIFIED");
393
  ipnlog("FP!");
394
 
395
  $res = wp_remote_retrieve_body($fp);
396
+ if(strcmp($res, "VERIFIED") == 0)
397
  {
398
  //all good so far
399
  ipnlog("VERIFIED");
services/stripe-webhook.php CHANGED
@@ -41,32 +41,33 @@
41
  {
42
  try
43
  {
44
- $event = Stripe_Event::retrieve($event_id);
 
45
  }
46
  catch(Exception $e)
47
  {
48
  $logstr .= "Could not find an event with ID #" . $event_id . ". " . $e->getMessage();
49
  pmpro_stripeWebhookExit();
50
- //$event = $post_event; //for testing you may want to assume that the passed in event is legit
51
  }
52
  }
53
 
54
  global $wpdb;
55
 
56
  //real event?
57
- if(!empty($event->id))
58
  {
59
  //check what kind of event it is
60
- if($event->type == "charge.succeeded")
61
  {
62
  //do we have this order yet? (check status too)
63
- $order = getOrderFromInvoiceEvent($event);
64
 
65
  //no? create it
66
  if(empty($order->id))
67
  {
68
  //last order for this subscription
69
- $old_order = getOldOrderFromInvoiceEvent($event);
70
 
71
  if(empty($old_order))
72
  {
@@ -84,7 +85,7 @@
84
  pmpro_stripeWebhookExit();
85
  }
86
 
87
- $invoice = $event->data->object;
88
 
89
  //alright. create a new order/invoice
90
  $morder = new MemberOrder();
@@ -133,7 +134,7 @@
133
  $pmproemail = new PMProEmail();
134
  $pmproemail->sendInvoiceEmail($user, $morder);
135
 
136
- $logstr .= "Created new order with ID #" . $morder->id . ". Event ID #" . $event->id . ".";
137
 
138
  /*
139
  Checking if there is an update "after next payment" for this user.
@@ -207,14 +208,14 @@
207
  }
208
  else
209
  {
210
- $logstr .= "We've already processed this order with ID #" . $order->id . ". Event ID #" . $event->id . ".";
211
  pmpro_stripeWebhookExit();
212
  }
213
  }
214
- elseif($event->type == "charge.failed")
215
  {
216
  //last order for this subscription
217
- $old_order = getOldOrderFromInvoiceEvent($event);
218
  $user_id = $old_order->user_id;
219
  $user = get_userdata($user_id);
220
 
@@ -252,16 +253,16 @@
252
  }
253
  else
254
  {
255
- $logstr .= "Could not find the related subscription for event with ID #" . $event->id . ".";
256
- if(!empty($event->data->object->customer))
257
- $logstr .= " Customer ID #" . $event->data->object->customer . ".";
258
  pmpro_stripeWebhookExit();
259
  }
260
  }
261
- elseif($event->type == "customer.subscription.deleted")
262
  {
263
  //for one of our users? if they still have a membership, notify the admin
264
- $user = getUserFromCustomerEvent($event, "success", true);
265
  if(!empty($user->ID))
266
  {
267
  do_action("pmpro_stripe_subscription_deleted", $user->ID);
@@ -270,17 +271,17 @@
270
  $pmproemail->data = array("body"=>"<p>" . sprintf(__("%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.", "pmpro"), $user->display_name . " (" . $user->user_login . ", " . $user->user_email . ")") . "</p>");
271
  $pmproemail->sendEmail(get_bloginfo("admin_email"));
272
 
273
- $logstr .= "Subscription deleted for user ID #" . $user->ID . ". Event ID #" . $event->id . ".";
274
  pmpro_stripeWebhookExit();
275
  }
276
  else
277
  {
278
  //check for any user at all
279
- $user = getUserFromCustomerEvent($event);
280
  if(!empty($user->ID))
281
- $logstr .= "Stripe tells us a subscription is deleted. This was probably initiated from PMPro and the membership/order is already cancelled. Event ID #" . $event->id . ".";
282
  else
283
- $logstr .= "Stripe tells us a subscription is deleted, but we could not find a user here for that subscription. Could be a subscription managed by a different app or plugin. Event ID #" . $event->id . ".";
284
  pmpro_stripeWebhookExit();
285
  }
286
  }
@@ -294,14 +295,14 @@
294
  pmpro_stripeWebhookExit();
295
  }
296
 
297
- function getUserFromInvoiceEvent($event)
298
  {
299
  //pause here to give PMPro a chance to finish checkout
300
  sleep(PMPRO_STRIPE_WEBHOOK_DELAY);
301
 
302
  global $wpdb;
303
 
304
- $customer_id = $event->data->object->customer;
305
 
306
  //look up the order
307
  $user_id = $wpdb->get_var("SELECT user_id FROM $wpdb->pmpro_membership_orders WHERE subscription_transaction_id = '" . esc_sql($customer_id) . "' LIMIT 1");
@@ -312,16 +313,16 @@
312
  return false;
313
  }
314
 
315
- function getUserFromCustomerEvent($event, $status = false, $checkplan = true)
316
  {
317
  //pause here to give PMPro a chance to finish checkout
318
  sleep(PMPRO_STRIPE_WEBHOOK_DELAY);
319
 
320
  global $wpdb;
321
 
322
- $customer_id = $event->data->object->customer;
323
- $subscription_id = $event->data->object->id;
324
- $plan_id = $event->data->object->plan->id;
325
 
326
  //look up the order
327
  $sqlQuery = "SELECT user_id FROM $wpdb->pmpro_membership_orders WHERE (subscription_transaction_id = '" . esc_sql($customer_id) . "' OR subscription_transaction_id = '" . esc_sql($subscription_id) . "') ";
@@ -339,14 +340,14 @@
339
  return false;
340
  }
341
 
342
- function getOldOrderFromInvoiceEvent($event)
343
  {
344
  //pause here to give PMPro a chance to finish checkout
345
  sleep(PMPRO_STRIPE_WEBHOOK_DELAY);
346
 
347
  global $wpdb;
348
 
349
- $customer_id = $event->data->object->customer;
350
 
351
  // no customer passed? we can't cross reference
352
  if(empty($customer_id))
@@ -362,7 +363,7 @@
362
  // let's look up the Stripe subscription_id instead
363
  // unfortunately, the subscription_id is not included in the JSON data from the Stripe event
364
  // so, we must look up the subscription_id from the invoice_id, which IS included in the JSON data from the Stripe event
365
- $invoice_id = $event->data->object->invoice;
366
  $invoice = Stripe_Invoice::retrieve($invoice_id);
367
  $subscription_id = $invoice->subscription;
368
  $old_order_id = $wpdb->get_var("SELECT id FROM $wpdb->pmpro_membership_orders WHERE subscription_transaction_id = '" . $subscription_id . "' AND gateway = 'stripe' ORDER BY timestamp DESC LIMIT 1");
@@ -376,12 +377,12 @@
376
  return false;
377
  }
378
 
379
- function getOrderFromInvoiceEvent($event)
380
  {
381
  //pause here to give PMPro a chance to finish checkout
382
  sleep(PMPRO_STRIPE_WEBHOOK_DELAY);
383
 
384
- $invoice_id = $event->data->object->id;
385
 
386
  $order = new MemberOrder();
387
  $order->getMemberOrderByPaymentTransactionID($invoice_id);
41
  {
42
  try
43
  {
44
+ global $pmpro_stripe_event;
45
+ $pmpro_stripe_event = Stripe_Event::retrieve($event_id);
46
  }
47
  catch(Exception $e)
48
  {
49
  $logstr .= "Could not find an event with ID #" . $event_id . ". " . $e->getMessage();
50
  pmpro_stripeWebhookExit();
51
+ //$pmpro_stripe_event = $post_event; //for testing you may want to assume that the passed in event is legit
52
  }
53
  }
54
 
55
  global $wpdb;
56
 
57
  //real event?
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
  {
85
  pmpro_stripeWebhookExit();
86
  }
87
 
88
+ $invoice = $pmpro_stripe_event->data->object;
89
 
90
  //alright. create a new order/invoice
91
  $morder = new MemberOrder();
134
  $pmproemail = new PMProEmail();
135
  $pmproemail->sendInvoiceEmail($user, $morder);
136
 
137
+ $logstr .= "Created new order with ID #" . $morder->id . ". Event ID #" . $pmpro_stripe_event->id . ".";
138
 
139
  /*
140
  Checking if there is an update "after next payment" for this user.
208
  }
209
  else
210
  {
211
+ $logstr .= "We've already processed this order with ID #" . $order->id . ". Event ID #" . $pmpro_stripe_event->id . ".";
212
  pmpro_stripeWebhookExit();
213
  }
214
  }
215
+ elseif($pmpro_stripe_event->type == "charge.failed")
216
  {
217
  //last order for this subscription
218
+ $old_order = getOldOrderFromInvoiceEvent($pmpro_stripe_event);
219
  $user_id = $old_order->user_id;
220
  $user = get_userdata($user_id);
221
 
253
  }
254
  else
255
  {
256
+ $logstr .= "Could not find the related subscription for event with ID #" . $pmpro_stripe_event->id . ".";
257
+ if(!empty($pmpro_stripe_event->data->object->customer))
258
+ $logstr .= " Customer ID #" . $pmpro_stripe_event->data->object->customer . ".";
259
  pmpro_stripeWebhookExit();
260
  }
261
  }
262
+ elseif($pmpro_stripe_event->type == "customer.subscription.deleted")
263
  {
264
  //for one of our users? if they still have a membership, notify the admin
265
+ $user = getUserFromCustomerEvent($pmpro_stripe_event, "success", true);
266
  if(!empty($user->ID))
267
  {
268
  do_action("pmpro_stripe_subscription_deleted", $user->ID);
271
  $pmproemail->data = array("body"=>"<p>" . sprintf(__("%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.", "pmpro"), $user->display_name . " (" . $user->user_login . ", " . $user->user_email . ")") . "</p>");
272
  $pmproemail->sendEmail(get_bloginfo("admin_email"));
273
 
274
+ $logstr .= "Subscription deleted for user ID #" . $user->ID . ". Event ID #" . $pmpro_stripe_event->id . ".";
275
  pmpro_stripeWebhookExit();
276
  }
277
  else
278
  {
279
  //check for any user at all
280
+ $user = getUserFromCustomerEvent($pmpro_stripe_event);
281
  if(!empty($user->ID))
282
+ $logstr .= "Stripe tells us a subscription is deleted. This was probably initiated from PMPro and the membership/order is already cancelled. Event ID #" . $pmpro_stripe_event->id . ".";
283
  else
284
+ $logstr .= "Stripe tells us a subscription is deleted, but we could not find a user here for that subscription. Could be a subscription managed by a different app or plugin. Event ID #" . $pmpro_stripe_event->id . ".";
285
  pmpro_stripeWebhookExit();
286
  }
287
  }
295
  pmpro_stripeWebhookExit();
296
  }
297
 
298
+ function getUserFromInvoiceEvent($pmpro_stripe_event)
299
  {
300
  //pause here to give PMPro a chance to finish checkout
301
  sleep(PMPRO_STRIPE_WEBHOOK_DELAY);
302
 
303
  global $wpdb;
304
 
305
+ $customer_id = $pmpro_stripe_event->data->object->customer;
306
 
307
  //look up the order
308
  $user_id = $wpdb->get_var("SELECT user_id FROM $wpdb->pmpro_membership_orders WHERE subscription_transaction_id = '" . esc_sql($customer_id) . "' LIMIT 1");
313
  return false;
314
  }
315
 
316
+ function getUserFromCustomerEvent($pmpro_stripe_event, $status = false, $checkplan = true)
317
  {
318
  //pause here to give PMPro a chance to finish checkout
319
  sleep(PMPRO_STRIPE_WEBHOOK_DELAY);
320
 
321
  global $wpdb;
322
 
323
+ $customer_id = $pmpro_stripe_event->data->object->customer;
324
+ $subscription_id = $pmpro_stripe_event->data->object->id;
325
+ $plan_id = $pmpro_stripe_event->data->object->plan->id;
326
 
327
  //look up the order
328
  $sqlQuery = "SELECT user_id FROM $wpdb->pmpro_membership_orders WHERE (subscription_transaction_id = '" . esc_sql($customer_id) . "' OR subscription_transaction_id = '" . esc_sql($subscription_id) . "') ";
340
  return false;
341
  }
342
 
343
+ function getOldOrderFromInvoiceEvent($pmpro_stripe_event)
344
  {
345
  //pause here to give PMPro a chance to finish checkout
346
  sleep(PMPRO_STRIPE_WEBHOOK_DELAY);
347
 
348
  global $wpdb;
349
 
350
+ $customer_id = $pmpro_stripe_event->data->object->customer;
351
 
352
  // no customer passed? we can't cross reference
353
  if(empty($customer_id))
363
  // let's look up the Stripe subscription_id instead
364
  // unfortunately, the subscription_id is not included in the JSON data from the Stripe event
365
  // so, we must look up the subscription_id from the invoice_id, which IS included in the JSON data from the Stripe event
366
+ $invoice_id = $pmpro_stripe_event->data->object->invoice;
367
  $invoice = Stripe_Invoice::retrieve($invoice_id);
368
  $subscription_id = $invoice->subscription;
369
  $old_order_id = $wpdb->get_var("SELECT id FROM $wpdb->pmpro_membership_orders WHERE subscription_transaction_id = '" . $subscription_id . "' AND gateway = 'stripe' ORDER BY timestamp DESC LIMIT 1");
377
  return false;
378
  }
379
 
380
+ function getOrderFromInvoiceEvent($pmpro_stripe_event)
381
  {
382
  //pause here to give PMPro a chance to finish checkout
383
  sleep(PMPRO_STRIPE_WEBHOOK_DELAY);
384
 
385
+ $invoice_id = $pmpro_stripe_event->data->object->id;
386
 
387
  $order = new MemberOrder();
388
  $order->getMemberOrderByPaymentTransactionID($invoice_id);