Version Description
- BUG: Fixed bug with recurring orders and TwoCheckout.
- BUG: Fixed bug where some non-members (membership_id was 0 or NULL) were being processed for expiration.
- BUG: Fixed bug where the address/street wasn't showing up when printing orders from the dashboard.
- BUG: Fixed bug where the Stripe class would sometimes show its billing and payment fields even if a secondary gateway was chosen.
- BUG: Making sure $this->total is set for new orders and available to the pmpro_add_order, pmpro_added_order filters.
- BUG: Fixed bug where email templates were not being loaded out of the /paid-memberships-pro/languages/email/ directory. (Thanks, menardmam on wordpress.org)
- BUG: No longer showing a "renew" link on the membership account or membership levels pages if the user's level is not allowing sign ups.
- BUG: Fixed bug where the expiration script might try to run on deleted or expired users.
- BUG/ENHANCEMENT: Change membership shortcode to call pmpro_hasMembershipLevel when checking for level="" as well. This ensures the pmpro_has_membership_level filter runs, which some addons/etc need.
- ENHANCEMENT: Updated categories list on the edit levels page to show nested categories.
- ENHANCEMENT: Now adding a pmpro-no-access class (similar to the pmpro-has-access class) to the post element if a user doesn't have access to that post.
- ENHANCEMENT: Added pmpro_checkout_end_date filter, similar to pmpro_checkout_start_date. Takes params $enddate, $user_id, $pmpro_level, $startdate.
Download this release
Release Info
Developer | strangerstudios |
Plugin | Paid Memberships Pro |
Version | 1.8.9 |
Comparing to | |
See all releases |
Code changes from version 1.8.8.2 to 1.8.9
- adminpages/membershiplevels.php +3 -2
- adminpages/memberslist-csv.php +21 -11
- adminpages/orders.php +5 -5
- adminpages/reports/login.php +2 -2
- adminpages/reports/memberships.php +4 -4
- adminpages/reports/sales.php +4 -4
- adminpages/templates/orders-print.php +2 -2
- classes/class.memberorder.php +3 -1
- classes/class.pmproemail.php +6 -4
- classes/gateways/class.pmprogateway_braintree.php +7 -3
- classes/gateways/class.pmprogateway_stripe.php +8 -4
- classes/gateways/class.pmprogateway_twocheckout.php +1 -1
- css/admin.css +1 -0
- includes/content.php +2 -0
- includes/functions.php +73 -0
- includes/init.php +9 -4
- includes/profile.php +1 -1
- languages/pmpro.mo +0 -0
- languages/pmpro.po +367 -316
- languages/pmpro.pot +367 -316
- pages/billing.php +6 -2
- pages/checkout.php +2 -1
- pages/confirmation.php +1 -1
- pages/levels.php +1 -1
- paid-memberships-pro.php +2 -2
- preheaders/checkout.php +27 -3
- readme.txt +19 -2
- scheduled/crons.php +22 -11
- services/ipnhandler.php +77 -30
- services/twocheckout-ins.php +7 -2
- shortcodes/membership.php +8 -8
- shortcodes/pmpro_account.php +3 -3
adminpages/membershiplevels.php
CHANGED
@@ -502,9 +502,10 @@
|
|
502 |
$categories = get_categories( array( 'hide_empty' => 0 ) );
|
503 |
echo "<ul>";
|
504 |
foreach ( $categories as $cat )
|
505 |
-
{
|
506 |
$checked = in_array( $cat->term_id, $level->categories ) ? "checked='checked'" : '';
|
507 |
-
|
|
|
508 |
}
|
509 |
echo "</ul>";
|
510 |
?>
|
502 |
$categories = get_categories( array( 'hide_empty' => 0 ) );
|
503 |
echo "<ul>";
|
504 |
foreach ( $categories as $cat )
|
505 |
+
{
|
506 |
$checked = in_array( $cat->term_id, $level->categories ) ? "checked='checked'" : '';
|
507 |
+
$catclass = empty( $cat->category_parent ) ? '' : 'membershipcategory_hasparent';
|
508 |
+
echo "<li class='membershipcategory $catclass'><input id='membershipcategory_{$cat->term_id}' name='membershipcategory_{$cat->term_id}' type='checkbox' value='yes' $checked /> <label for='membershipcategory_{$cat->term_id}'>{$cat->name}</label></li>\n";
|
509 |
}
|
510 |
echo "</ul>";
|
511 |
?>
|
adminpages/memberslist-csv.php
CHANGED
@@ -69,18 +69,21 @@
|
|
69 |
}
|
70 |
|
71 |
$headers = array();
|
72 |
-
$headers[] = "Content-
|
|
|
|
|
|
|
73 |
|
74 |
if($s && $l == "oldmembers")
|
75 |
-
$headers[] =
|
76 |
elseif($s && $l)
|
77 |
-
$headers[] =
|
78 |
elseif($s)
|
79 |
-
$headers[] =
|
80 |
elseif($l == "oldmembers")
|
81 |
-
$headers[] =
|
82 |
else
|
83 |
-
$headers[] =
|
84 |
|
85 |
//set default CSV file headers, using comma as delimiter
|
86 |
$csv_file_header = "id,username,firstname,lastname,email,billing firstname,billing lastname,address1,address2,city,state,zipcode,country,phone,membership,initial payment,fee,term,discount_code_id,discount_code,joined";
|
@@ -90,8 +93,6 @@
|
|
90 |
else
|
91 |
$csv_file_header .= ",expires";
|
92 |
|
93 |
-
$csv_file_header = apply_filters("pmpro_members_list_csv_heading", $csv_file_header);
|
94 |
-
|
95 |
//these are the meta_keys for the fields (arrays are object, property. so e.g. $theuser->ID)
|
96 |
$default_columns = array(
|
97 |
array("theuser", "ID"),
|
@@ -133,6 +134,7 @@
|
|
133 |
}
|
134 |
}
|
135 |
|
|
|
136 |
$csv_file_header .= "\n";
|
137 |
|
138 |
//generate SQL for list of users to process
|
@@ -382,7 +384,8 @@
|
|
382 |
foreach($default_columns as $col)
|
383 |
{
|
384 |
//checking $object->property. note the double $$
|
385 |
-
|
|
|
386 |
}
|
387 |
}
|
388 |
|
@@ -408,7 +411,9 @@
|
|
408 |
{
|
409 |
foreach($extra_columns as $heading => $callback)
|
410 |
{
|
411 |
-
|
|
|
|
|
412 |
}
|
413 |
}
|
414 |
|
@@ -514,7 +519,7 @@
|
|
514 |
if (! empty($headers) )
|
515 |
{
|
516 |
//set the download size
|
517 |
-
$headers[] = "Content
|
518 |
|
519 |
//set headers
|
520 |
foreach($headers as $header)
|
@@ -522,6 +527,11 @@
|
|
522 |
header($header . "\r\n");
|
523 |
}
|
524 |
|
|
|
|
|
|
|
|
|
|
|
525 |
// open and send the file contents to the remote location
|
526 |
$fh = fopen( $filename, 'rb' );
|
527 |
fpassthru($fh);
|
69 |
}
|
70 |
|
71 |
$headers = array();
|
72 |
+
$headers[] = "Content-Type: text/csv";
|
73 |
+
$headers[] = "Cache-Control: max-age=0, no-cache, no-store";
|
74 |
+
$headers[] = "Pragma: no-cache";
|
75 |
+
$headers[] = "Connection: close";
|
76 |
|
77 |
if($s && $l == "oldmembers")
|
78 |
+
$headers[] = 'Content-Disposition: attachment; filename="members_list_expired_' . sanitize_file_name($s) . '.csv"';
|
79 |
elseif($s && $l)
|
80 |
+
$headers[] = 'Content-Disposition: attachment; filename="members_list_' . intval($l) . '_level_' . sanitize_file_name($s) . '.csv"';
|
81 |
elseif($s)
|
82 |
+
$headers[] = 'Content-Disposition: attachment; filename="members_list_' . sanitize_file_name($s) . '.csv"';
|
83 |
elseif($l == "oldmembers")
|
84 |
+
$headers[] = 'Content-Disposition: attachment; filename="members_list_expired.csv"';
|
85 |
else
|
86 |
+
$headers[] = 'Content-Disposition: attachment; filename="members_list.csv"';
|
87 |
|
88 |
//set default CSV file headers, using comma as delimiter
|
89 |
$csv_file_header = "id,username,firstname,lastname,email,billing firstname,billing lastname,address1,address2,city,state,zipcode,country,phone,membership,initial payment,fee,term,discount_code_id,discount_code,joined";
|
93 |
else
|
94 |
$csv_file_header .= ",expires";
|
95 |
|
|
|
|
|
96 |
//these are the meta_keys for the fields (arrays are object, property. so e.g. $theuser->ID)
|
97 |
$default_columns = array(
|
98 |
array("theuser", "ID"),
|
134 |
}
|
135 |
}
|
136 |
|
137 |
+
$csv_file_header = apply_filters("pmpro_members_list_csv_heading", $csv_file_header);
|
138 |
$csv_file_header .= "\n";
|
139 |
|
140 |
//generate SQL for list of users to process
|
384 |
foreach($default_columns as $col)
|
385 |
{
|
386 |
//checking $object->property. note the double $$
|
387 |
+
$val = isset(${$col[0]}->{$col[1]}) ? ${$col[0]}->{$col[1]} : null;
|
388 |
+
array_push($csvoutput, pmpro_enclose($val)); //output the value
|
389 |
}
|
390 |
}
|
391 |
|
411 |
{
|
412 |
foreach($extra_columns as $heading => $callback)
|
413 |
{
|
414 |
+
$val = call_user_func($callback, $theuser, $heading);
|
415 |
+
$val = !empty($val) ? $val : null;
|
416 |
+
array_push( $csvoutput, pmpro_enclose($val) );
|
417 |
}
|
418 |
}
|
419 |
|
519 |
if (! empty($headers) )
|
520 |
{
|
521 |
//set the download size
|
522 |
+
$headers[] = "Content-Length: " . filesize($filename);
|
523 |
|
524 |
//set headers
|
525 |
foreach($headers as $header)
|
527 |
header($header . "\r\n");
|
528 |
}
|
529 |
|
530 |
+
// disable compression for the duration of file download
|
531 |
+
if(ini_get('zlib.output_compression')){
|
532 |
+
ini_set('zlib.output_compression', 'Off');
|
533 |
+
}
|
534 |
+
|
535 |
// open and send the file contents to the remote location
|
536 |
$fh = fopen( $filename, 'rb' );
|
537 |
fpassthru($fh);
|
adminpages/orders.php
CHANGED
@@ -707,7 +707,7 @@
|
|
707 |
|
708 |
<ul class="subsubsub">
|
709 |
<li>
|
710 |
-
<?php
|
711 |
<select id="filter" name="filter">
|
712 |
<option value="all" <?php selected($filter, "all");?>><?php _e('All', 'pmpro');?></option>
|
713 |
<option value="within-a-date-range" <?php selected($filter, "within-a-date-range");?>><?php _e('Within a Date Range', 'pmpro');?></option>
|
@@ -716,7 +716,7 @@
|
|
716 |
<option value="within-a-status" <?php selected($filter, "within-a-status");?>><?php _e('Within a Status', 'pmpro');?></option>
|
717 |
</select>
|
718 |
|
719 |
-
<span id="from"><?php
|
720 |
|
721 |
<select id="start-month" name="start-month">
|
722 |
<?php for($i = 1; $i < 13; $i++) { ?>
|
@@ -728,7 +728,7 @@
|
|
728 |
<input id='start-year' name="start-year" type="text" size="4" value="<?php echo esc_attr($start_year);?>" />
|
729 |
|
730 |
|
731 |
-
<span id="to"><?php
|
732 |
|
733 |
<select id="end-month" name="end-month">
|
734 |
<?php for($i = 1; $i < 13; $i++) { ?>
|
@@ -740,7 +740,7 @@
|
|
740 |
<input id='end-day' name="end-day" type="text" size="2" value="<?php echo esc_attr($end_day);?>" />
|
741 |
<input id='end-year' name="end-year" type="text" size="4" value="<?php echo esc_attr($end_year);?>" />
|
742 |
|
743 |
-
<span id="filterby"><?php
|
744 |
|
745 |
<select id="predefined-date" name="predefined-date">
|
746 |
|
@@ -777,7 +777,7 @@
|
|
777 |
</select>
|
778 |
|
779 |
|
780 |
-
<input id="submit" type="submit" value="<?php
|
781 |
</li>
|
782 |
</ul>
|
783 |
|
707 |
|
708 |
<ul class="subsubsub">
|
709 |
<li>
|
710 |
+
<?php _e('Show', 'pmpro')?>
|
711 |
<select id="filter" name="filter">
|
712 |
<option value="all" <?php selected($filter, "all");?>><?php _e('All', 'pmpro');?></option>
|
713 |
<option value="within-a-date-range" <?php selected($filter, "within-a-date-range");?>><?php _e('Within a Date Range', 'pmpro');?></option>
|
716 |
<option value="within-a-status" <?php selected($filter, "within-a-status");?>><?php _e('Within a Status', 'pmpro');?></option>
|
717 |
</select>
|
718 |
|
719 |
+
<span id="from"><?php _e('From', 'pmpro')?></span>
|
720 |
|
721 |
<select id="start-month" name="start-month">
|
722 |
<?php for($i = 1; $i < 13; $i++) { ?>
|
728 |
<input id='start-year' name="start-year" type="text" size="4" value="<?php echo esc_attr($start_year);?>" />
|
729 |
|
730 |
|
731 |
+
<span id="to"><?php _e('To', 'pmpro')?></span>
|
732 |
|
733 |
<select id="end-month" name="end-month">
|
734 |
<?php for($i = 1; $i < 13; $i++) { ?>
|
740 |
<input id='end-day' name="end-day" type="text" size="2" value="<?php echo esc_attr($end_day);?>" />
|
741 |
<input id='end-year' name="end-year" type="text" size="4" value="<?php echo esc_attr($end_year);?>" />
|
742 |
|
743 |
+
<span id="filterby"><?php _e('filter by ', 'pmpro')?></span>
|
744 |
|
745 |
<select id="predefined-date" name="predefined-date">
|
746 |
|
777 |
</select>
|
778 |
|
779 |
|
780 |
+
<input id="submit" type="submit" value="<?php _e('Filter', 'pmpro');?>" />
|
781 |
</li>
|
782 |
</ul>
|
783 |
|
adminpages/reports/login.php
CHANGED
@@ -80,7 +80,7 @@ function pmpro_report_login_page()
|
|
80 |
</h1>
|
81 |
<ul class="subsubsub">
|
82 |
<li>
|
83 |
-
<?php
|
84 |
<option value="" <?php if(!$l) { ?>selected="selected"<?php } ?>><?php _e('All Users', 'pmpro')?></option>
|
85 |
<option value="all" <?php if($l == "all") { ?>selected="selected"<?php } ?>><?php _e('All Levels', 'pmpro')?></option>
|
86 |
<?php
|
@@ -96,7 +96,7 @@ function pmpro_report_login_page()
|
|
96 |
</li>
|
97 |
</ul>
|
98 |
<p class="search-box">
|
99 |
-
<label class="hidden" for="post-search-input"><?php
|
100 |
<input type="hidden" name="page" value="pmpro-reports" />
|
101 |
<input type="hidden" name="report" value="login" />
|
102 |
<input id="post-search-input" type="text" value="<?php echo esc_attr($s)?>" name="s"/>
|
80 |
</h1>
|
81 |
<ul class="subsubsub">
|
82 |
<li>
|
83 |
+
<?php _e('Show', 'pmpro')?> <select name="l" onchange="jQuery('#posts-filter').submit();">
|
84 |
<option value="" <?php if(!$l) { ?>selected="selected"<?php } ?>><?php _e('All Users', 'pmpro')?></option>
|
85 |
<option value="all" <?php if($l == "all") { ?>selected="selected"<?php } ?>><?php _e('All Levels', 'pmpro')?></option>
|
86 |
<?php
|
96 |
</li>
|
97 |
</ul>
|
98 |
<p class="search-box">
|
99 |
+
<label class="hidden" for="post-search-input"><?php _e('Search', 'pmpro')?> <?php if(empty($l)) echo "Users"; else echo "Members";?>:</label>
|
100 |
<input type="hidden" name="page" value="pmpro-reports" />
|
101 |
<input type="hidden" name="report" value="login" />
|
102 |
<input id="post-search-input" type="text" value="<?php echo esc_attr($s)?>" name="s"/>
|
adminpages/reports/memberships.php
CHANGED
@@ -273,7 +273,7 @@ function pmpro_report_memberships_page()
|
|
273 |
</h1>
|
274 |
<ul class="subsubsub">
|
275 |
<li>
|
276 |
-
<?php
|
277 |
<select id="period" name="period">
|
278 |
<option value="daily" <?php selected($period, "daily");?>><?php _e('Daily', 'pmpro');?></option>
|
279 |
<option value="monthly" <?php selected($period, "monthly");?>><?php _e('Monthly', 'pmpro');?></option>
|
@@ -287,7 +287,7 @@ function pmpro_report_memberships_page()
|
|
287 |
<option value="mrr_ltv" <?php selected($type, "mrr_ltv");?>><?php _e('MRR & LTV', 'pmpro');?></option>
|
288 |
*/ ?>
|
289 |
</select>
|
290 |
-
<span id="for"><?php
|
291 |
<select id="month" name="month">
|
292 |
<?php for($i = 1; $i < 13; $i++) { ?>
|
293 |
<option value="<?php echo $i;?>" <?php selected($month, $i);?>><?php echo date("F", mktime(0, 0, 0, $i, 2));?></option>
|
@@ -298,7 +298,7 @@ function pmpro_report_memberships_page()
|
|
298 |
<option value="<?php echo $i;?>" <?php selected($year, $i);?>><?php echo $i;?></option>
|
299 |
<?php } ?>
|
300 |
</select>
|
301 |
-
<span id="for"><?php
|
302 |
<select name="level">
|
303 |
<option value="" <?php if(!$l) { ?>selected="selected"<?php } ?>><?php _e('All Levels', 'pmpro');?></option>
|
304 |
<?php
|
@@ -314,7 +314,7 @@ function pmpro_report_memberships_page()
|
|
314 |
|
315 |
<input type="hidden" name="page" value="pmpro-reports" />
|
316 |
<input type="hidden" name="report" value="memberships" />
|
317 |
-
<input type="submit" class="button" value="<?php
|
318 |
</li>
|
319 |
</ul>
|
320 |
|
273 |
</h1>
|
274 |
<ul class="subsubsub">
|
275 |
<li>
|
276 |
+
<?php _e('Show', 'pmpro')?>
|
277 |
<select id="period" name="period">
|
278 |
<option value="daily" <?php selected($period, "daily");?>><?php _e('Daily', 'pmpro');?></option>
|
279 |
<option value="monthly" <?php selected($period, "monthly");?>><?php _e('Monthly', 'pmpro');?></option>
|
287 |
<option value="mrr_ltv" <?php selected($type, "mrr_ltv");?>><?php _e('MRR & LTV', 'pmpro');?></option>
|
288 |
*/ ?>
|
289 |
</select>
|
290 |
+
<span id="for"><?php _e('for', 'pmpro')?></span>
|
291 |
<select id="month" name="month">
|
292 |
<?php for($i = 1; $i < 13; $i++) { ?>
|
293 |
<option value="<?php echo $i;?>" <?php selected($month, $i);?>><?php echo date("F", mktime(0, 0, 0, $i, 2));?></option>
|
298 |
<option value="<?php echo $i;?>" <?php selected($year, $i);?>><?php echo $i;?></option>
|
299 |
<?php } ?>
|
300 |
</select>
|
301 |
+
<span id="for"><?php _e('for', 'pmpro')?></span>
|
302 |
<select name="level">
|
303 |
<option value="" <?php if(!$l) { ?>selected="selected"<?php } ?>><?php _e('All Levels', 'pmpro');?></option>
|
304 |
<?php
|
314 |
|
315 |
<input type="hidden" name="page" value="pmpro-reports" />
|
316 |
<input type="hidden" name="report" value="memberships" />
|
317 |
+
<input type="submit" class="button" value="<?php _e('Generate Report', 'pmpro');?>" />
|
318 |
</li>
|
319 |
</ul>
|
320 |
|
adminpages/reports/sales.php
CHANGED
@@ -199,7 +199,7 @@ function pmpro_report_sales_page()
|
|
199 |
</h1>
|
200 |
|
201 |
<div class="tablenav top">
|
202 |
-
<?php
|
203 |
<select id="period" name="period">
|
204 |
<option value="daily" <?php selected($period, "daily");?>><?php _e('Daily', 'pmpro');?></option>
|
205 |
<option value="monthly" <?php selected($period, "monthly");?>><?php _e('Monthly', 'pmpro');?></option>
|
@@ -209,7 +209,7 @@ function pmpro_report_sales_page()
|
|
209 |
<option value="revenue" <?php selected($type, "revenue");?>><?php _e('Revenue', 'pmpro');?></option>
|
210 |
<option value="sales" <?php selected($type, "sales");?>><?php _e('Sales', 'pmpro');?></option>
|
211 |
</select>
|
212 |
-
<span id="for"><?php
|
213 |
<select id="month" name="month">
|
214 |
<?php for($i = 1; $i < 13; $i++) { ?>
|
215 |
<option value="<?php echo $i;?>" <?php selected($month, $i);?>><?php echo date("F", mktime(0, 0, 0, $i, 2));?></option>
|
@@ -220,7 +220,7 @@ function pmpro_report_sales_page()
|
|
220 |
<option value="<?php echo $i;?>" <?php selected($year, $i);?>><?php echo $i;?></option>
|
221 |
<?php } ?>
|
222 |
</select>
|
223 |
-
<span id="for"><?php
|
224 |
<select name="level">
|
225 |
<option value="" <?php if(!$l) { ?>selected="selected"<?php } ?>><?php _e('All Levels', 'pmpro');?></option>
|
226 |
<?php
|
@@ -236,7 +236,7 @@ function pmpro_report_sales_page()
|
|
236 |
|
237 |
<input type="hidden" name="page" value="pmpro-reports" />
|
238 |
<input type="hidden" name="report" value="sales" />
|
239 |
-
<input type="submit" class="button action" value="<?php
|
240 |
</div>
|
241 |
|
242 |
<div id="chart_div" style="clear: both; width: 100%; height: 500px;"></div>
|
199 |
</h1>
|
200 |
|
201 |
<div class="tablenav top">
|
202 |
+
<?php _e('Show', 'pmpro')?>
|
203 |
<select id="period" name="period">
|
204 |
<option value="daily" <?php selected($period, "daily");?>><?php _e('Daily', 'pmpro');?></option>
|
205 |
<option value="monthly" <?php selected($period, "monthly");?>><?php _e('Monthly', 'pmpro');?></option>
|
209 |
<option value="revenue" <?php selected($type, "revenue");?>><?php _e('Revenue', 'pmpro');?></option>
|
210 |
<option value="sales" <?php selected($type, "sales");?>><?php _e('Sales', 'pmpro');?></option>
|
211 |
</select>
|
212 |
+
<span id="for"><?php _e('for', 'pmpro')?></span>
|
213 |
<select id="month" name="month">
|
214 |
<?php for($i = 1; $i < 13; $i++) { ?>
|
215 |
<option value="<?php echo $i;?>" <?php selected($month, $i);?>><?php echo date("F", mktime(0, 0, 0, $i, 2));?></option>
|
220 |
<option value="<?php echo $i;?>" <?php selected($year, $i);?>><?php echo $i;?></option>
|
221 |
<?php } ?>
|
222 |
</select>
|
223 |
+
<span id="for"><?php _e('for', 'pmpro')?></span>
|
224 |
<select name="level">
|
225 |
<option value="" <?php if(!$l) { ?>selected="selected"<?php } ?>><?php _e('All Levels', 'pmpro');?></option>
|
226 |
<?php
|
236 |
|
237 |
<input type="hidden" name="page" value="pmpro-reports" />
|
238 |
<input type="hidden" name="report" value="sales" />
|
239 |
+
<input type="submit" class="button action" value="<?php _e('Generate Report', 'pmpro');?>" />
|
240 |
</div>
|
241 |
|
242 |
<div id="chart_div" style="clear: both; width: 100%; height: 500px;"></div>
|
adminpages/templates/orders-print.php
CHANGED
@@ -61,8 +61,8 @@
|
|
61 |
<p>
|
62 |
<?php echo pmpro_formatAddress(
|
63 |
$order->billing->name,
|
64 |
-
$order->billing->
|
65 |
-
|
66 |
$order->billing->city,
|
67 |
$order->billing->state,
|
68 |
$order->billing->zip,
|
61 |
<p>
|
62 |
<?php echo pmpro_formatAddress(
|
63 |
$order->billing->name,
|
64 |
+
$order->billing->street,
|
65 |
+
'',
|
66 |
$order->billing->city,
|
67 |
$order->billing->state,
|
68 |
$order->billing->zip,
|
classes/class.memberorder.php
CHANGED
@@ -462,8 +462,10 @@
|
|
462 |
//calculate total
|
463 |
if(!empty($this->total))
|
464 |
$total = $this->total;
|
465 |
-
else
|
466 |
$total = (float)$amount + (float)$tax;
|
|
|
|
|
467 |
|
468 |
//these fix some warnings/notices
|
469 |
if(empty($this->billing))
|
462 |
//calculate total
|
463 |
if(!empty($this->total))
|
464 |
$total = $this->total;
|
465 |
+
else {
|
466 |
$total = (float)$amount + (float)$tax;
|
467 |
+
$this->total = $total;
|
468 |
+
}
|
469 |
|
470 |
//these fix some warnings/notices
|
471 |
if(empty($this->billing))
|
classes/class.pmproemail.php
CHANGED
@@ -48,7 +48,7 @@
|
|
48 |
|
49 |
//load the template
|
50 |
$locale = apply_filters("plugin_locale", get_locale(), "pmpro");
|
51 |
-
|
52 |
if(file_exists(get_stylesheet_directory() . "/paid-memberships-pro/email/" . $locale . "/" . $this->template . ".html"))
|
53 |
$this->body = file_get_contents(get_stylesheet_directory() . "/paid-memberships-pro/email/" . $locale . "/" . $this->template . ".html"); //localized email folder in child theme
|
54 |
elseif(file_exists(get_stylesheet_directory() . "/paid-memberships-pro/email/" . $this->template . ".html"))
|
@@ -65,13 +65,13 @@
|
|
65 |
$this->body = file_get_contents(WP_LANG_DIR . '/pmpro/email/' . $locale . "/" . $this->template . ".html"); //localized email folder in WP language folder
|
66 |
elseif(file_exists(WP_LANG_DIR . '/pmpro/email/' . $this->template . ".html"))
|
67 |
$this->body = file_get_contents(WP_LANG_DIR . '/pmpro/email/' . $this->template . ".html"); //email folder in WP language folder
|
68 |
-
elseif(file_exists(PMPRO_DIR . "/languages/" . $locale . "/" . $this->template . ".html"))
|
69 |
-
$this->body = file_get_contents(PMPRO_DIR . "/languages/" . $locale . "/" . $this->template . ".html"); //email folder in PMPro language folder
|
70 |
elseif(file_exists(PMPRO_DIR . "/email/" . $this->template . ".html"))
|
71 |
$this->body = file_get_contents(PMPRO_DIR . "/email/" . $this->template . ".html"); //default template in plugin
|
72 |
elseif(!empty($this->data) && !empty($this->data['body']))
|
73 |
$this->body = $this->data['body']; //data passed in
|
74 |
-
|
75 |
//header and footer
|
76 |
/* This is handled for all emails via the pmpro_send_html function in paid-memberships-pro now
|
77 |
if(file_exists(get_template_directory() . "/email_header.html"))
|
@@ -613,6 +613,8 @@
|
|
613 |
if(!$user || !$invoice)
|
614 |
return false;
|
615 |
|
|
|
|
|
616 |
$this->email = $user->user_email;
|
617 |
$this->subject = sprintf(__("INVOICE for %s membership", "pmpro"), get_option("blogname"));
|
618 |
$this->template = "invoice";
|
48 |
|
49 |
//load the template
|
50 |
$locale = apply_filters("plugin_locale", get_locale(), "pmpro");
|
51 |
+
|
52 |
if(file_exists(get_stylesheet_directory() . "/paid-memberships-pro/email/" . $locale . "/" . $this->template . ".html"))
|
53 |
$this->body = file_get_contents(get_stylesheet_directory() . "/paid-memberships-pro/email/" . $locale . "/" . $this->template . ".html"); //localized email folder in child theme
|
54 |
elseif(file_exists(get_stylesheet_directory() . "/paid-memberships-pro/email/" . $this->template . ".html"))
|
65 |
$this->body = file_get_contents(WP_LANG_DIR . '/pmpro/email/' . $locale . "/" . $this->template . ".html"); //localized email folder in WP language folder
|
66 |
elseif(file_exists(WP_LANG_DIR . '/pmpro/email/' . $this->template . ".html"))
|
67 |
$this->body = file_get_contents(WP_LANG_DIR . '/pmpro/email/' . $this->template . ".html"); //email folder in WP language folder
|
68 |
+
elseif(file_exists(PMPRO_DIR . "/languages/email/" . $locale . "/" . $this->template . ".html"))
|
69 |
+
$this->body = file_get_contents(PMPRO_DIR . "/languages/email/" . $locale . "/" . $this->template . ".html"); //email folder in PMPro language folder
|
70 |
elseif(file_exists(PMPRO_DIR . "/email/" . $this->template . ".html"))
|
71 |
$this->body = file_get_contents(PMPRO_DIR . "/email/" . $this->template . ".html"); //default template in plugin
|
72 |
elseif(!empty($this->data) && !empty($this->data['body']))
|
73 |
$this->body = $this->data['body']; //data passed in
|
74 |
+
|
75 |
//header and footer
|
76 |
/* This is handled for all emails via the pmpro_send_html function in paid-memberships-pro now
|
77 |
if(file_exists(get_template_directory() . "/email_header.html"))
|
613 |
if(!$user || !$invoice)
|
614 |
return false;
|
615 |
|
616 |
+
$user->membership_level = pmpro_getMembershipLevelForUser($user->ID);
|
617 |
+
|
618 |
$this->email = $user->user_email;
|
619 |
$this->subject = sprintf(__("INVOICE for %s membership", "pmpro"), get_option("blogname"));
|
620 |
$this->template = "invoice";
|
classes/gateways/class.pmprogateway_braintree.php
CHANGED
@@ -282,7 +282,10 @@
|
|
282 |
<table id="pmpro_payment_information_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0" border="0" <?php if(!$pmpro_requirebilling || apply_filters("pmpro_hide_payment_information_fields", false) ) { ?>style="display: none;"<?php } ?>>
|
283 |
<thead>
|
284 |
<tr>
|
285 |
-
<th
|
|
|
|
|
|
|
286 |
</tr>
|
287 |
</thead>
|
288 |
<tbody>
|
@@ -350,10 +353,11 @@
|
|
350 |
$pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
|
351 |
if($pmpro_show_cvv)
|
352 |
{
|
|
|
353 |
?>
|
354 |
<div class="pmpro_payment-cvv">
|
355 |
-
<label for="CVV"><?php
|
356 |
-
<input class="input" id="CVV" name="cvv" type="text" size="4" value="<?php if(!empty($_REQUEST['CVV'])) { echo esc_attr($_REQUEST['CVV']); }?>" class=" <?php echo pmpro_getClassForField("CVV");?>" data-encrypted-name="cvv" /> <small>(<a href="javascript:void(0);" onclick="javascript:window.open('<?php echo pmpro_https_filter(
|
357 |
</div>
|
358 |
<?php
|
359 |
}
|
282 |
<table id="pmpro_payment_information_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0" border="0" <?php if(!$pmpro_requirebilling || apply_filters("pmpro_hide_payment_information_fields", false) ) { ?>style="display: none;"<?php } ?>>
|
283 |
<thead>
|
284 |
<tr>
|
285 |
+
<th>
|
286 |
+
<span class="pmpro_thead-name"><?php _e('Payment Information', 'pmpro');?></span>
|
287 |
+
<span class="pmpro_thead-msg"><?php printf(__('We Accept %s', 'pmpro'), $pmpro_accepted_credit_cards_string);?></span>
|
288 |
+
</th>
|
289 |
</tr>
|
290 |
</thead>
|
291 |
<tbody>
|
353 |
$pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
|
354 |
if($pmpro_show_cvv)
|
355 |
{
|
356 |
+
$cvv_template = pmpro_loadTemplate('popup-cvv', 'url', 'pages', 'html');
|
357 |
?>
|
358 |
<div class="pmpro_payment-cvv">
|
359 |
+
<label for="CVV"><?php _e('CVV', 'pmpro');?></label>
|
360 |
+
<input class="input" id="CVV" name="cvv" type="text" size="4" value="<?php if(!empty($_REQUEST['CVV'])) { echo esc_attr($_REQUEST['CVV']); }?>" class=" <?php echo pmpro_getClassForField("CVV");?>" data-encrypted-name="cvv" /> <small>(<a href="javascript:void(0);" onclick="javascript:window.open('<?php echo pmpro_https_filter($cvv_template); ?>','cvv','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=600, height=475');"><?php _e("what's this?", 'pmpro');?></a>)</small>
|
361 |
</div>
|
362 |
<?php
|
363 |
}
|
classes/gateways/class.pmprogateway_stripe.php
CHANGED
@@ -104,7 +104,7 @@
|
|
104 |
//add_filter('pmpro_next_payment', array('PMProGateway_stripe', 'pmpro_next_payment'), 10, 3);
|
105 |
|
106 |
//code to add at checkout if Stripe is the current gateway
|
107 |
-
$gateway =
|
108 |
if($gateway == "stripe")
|
109 |
{
|
110 |
add_action('pmpro_checkout_preheader', array('PMProGateway_stripe', 'pmpro_checkout_preheader'));
|
@@ -423,7 +423,10 @@
|
|
423 |
<table id="pmpro_payment_information_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0" border="0" <?php if(!$pmpro_requirebilling || apply_filters("pmpro_hide_payment_information_fields", false) ) { ?>style="display: none;"<?php } ?>>
|
424 |
<thead>
|
425 |
<tr>
|
426 |
-
<th
|
|
|
|
|
|
|
427 |
</tr>
|
428 |
</thead>
|
429 |
<tbody>
|
@@ -522,10 +525,11 @@
|
|
522 |
$pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
|
523 |
if($pmpro_show_cvv)
|
524 |
{
|
|
|
525 |
?>
|
526 |
<div class="pmpro_payment-cvv">
|
527 |
-
<label for="CVV"><?php
|
528 |
-
<input class="input" id="CVV" type="text" size="4" value="<?php if(!empty($_REQUEST['CVV'])) { echo esc_attr($_REQUEST['CVV']); }?>" class=" <?php echo pmpro_getClassForField("CVV");?>" /> <small>(<a href="javascript:void(0);" onclick="javascript:window.open('<?php echo pmpro_https_filter(
|
529 |
</div>
|
530 |
<?php
|
531 |
}
|
104 |
//add_filter('pmpro_next_payment', array('PMProGateway_stripe', 'pmpro_next_payment'), 10, 3);
|
105 |
|
106 |
//code to add at checkout if Stripe is the current gateway
|
107 |
+
$gateway = pmpro_getGateway();
|
108 |
if($gateway == "stripe")
|
109 |
{
|
110 |
add_action('pmpro_checkout_preheader', array('PMProGateway_stripe', 'pmpro_checkout_preheader'));
|
423 |
<table id="pmpro_payment_information_fields" class="pmpro_checkout top1em" width="100%" cellpadding="0" cellspacing="0" border="0" <?php if(!$pmpro_requirebilling || apply_filters("pmpro_hide_payment_information_fields", false) ) { ?>style="display: none;"<?php } ?>>
|
424 |
<thead>
|
425 |
<tr>
|
426 |
+
<th>
|
427 |
+
<span class="pmpro_thead-name"><?php _e('Payment Information', 'pmpro');?></span>
|
428 |
+
<span class="pmpro_thead-msg"><?php printf(__('We Accept %s', 'pmpro'), $pmpro_accepted_credit_cards_string);?></span>
|
429 |
+
</th>
|
430 |
</tr>
|
431 |
</thead>
|
432 |
<tbody>
|
525 |
$pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
|
526 |
if($pmpro_show_cvv)
|
527 |
{
|
528 |
+
$cvv_template = pmpro_loadTemplate('popup-cvv', 'url', 'pages', 'html');
|
529 |
?>
|
530 |
<div class="pmpro_payment-cvv">
|
531 |
+
<label for="CVV"><?php _e('CVV', 'pmpro');?></label>
|
532 |
+
<input class="input" id="CVV" type="text" size="4" value="<?php if(!empty($_REQUEST['CVV'])) { echo esc_attr($_REQUEST['CVV']); }?>" class=" <?php echo pmpro_getClassForField("CVV");?>" /> <small>(<a href="javascript:void(0);" onclick="javascript:window.open('<?php echo pmpro_https_filter($cvv_template); ?>,'cvv','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=600, height=475');"><?php _e("what's this?", 'pmpro');?></a>)</small>
|
533 |
</div>
|
534 |
<?php
|
535 |
}
|
classes/gateways/class.pmprogateway_twocheckout.php
CHANGED
@@ -291,7 +291,7 @@
|
|
291 |
$recurring_payment = number_format(round((float)$recurring_payment + (float)$recurring_payment_tax, 2), 2, ".", "");
|
292 |
$tco_args['li_0_price'] = number_format($recurring_payment, 2, ".", "");
|
293 |
|
294 |
-
$tco_args['li_0_recurrence'] = ( $order->BillingFrequency == 1 ) ? $order->BillingFrequency . ' ' . $order->BillingPeriod : $order->BillingFrequency . ' ' . $order->BillingPeriod
|
295 |
|
296 |
if( property_exists( $order, 'TotalBillingCycles' ) )
|
297 |
$tco_args['li_0_duration'] = ($order->BillingFrequency * $order->TotalBillingCycles ) . ' ' . $order->BillingPeriod;
|
291 |
$recurring_payment = number_format(round((float)$recurring_payment + (float)$recurring_payment_tax, 2), 2, ".", "");
|
292 |
$tco_args['li_0_price'] = number_format($recurring_payment, 2, ".", "");
|
293 |
|
294 |
+
$tco_args['li_0_recurrence'] = ( $order->BillingFrequency == 1 ) ? $order->BillingFrequency . ' ' . $order->BillingPeriod : $order->BillingFrequency . ' ' . $order->BillingPeriod;
|
295 |
|
296 |
if( property_exists( $order, 'TotalBillingCycles' ) )
|
297 |
$tco_args['li_0_duration'] = ($order->BillingFrequency * $order->TotalBillingCycles ) . ' ' . $order->BillingPeriod;
|
css/admin.css
CHANGED
@@ -38,6 +38,7 @@ tr td.level_name a {font-size: 115%; font-weight: bold; }
|
|
38 |
.membership-levels tr.alternate {background: #f9f9f9;}
|
39 |
.membership-levels tr.ui-sortable-helper {border: 1px solid #2997C8;}
|
40 |
tr.testclass {border: 3px solid #2997C8; background: #2997C8;}
|
|
|
41 |
|
42 |
/* settings */
|
43 |
tr.pmpro_settings_divider td {padding: 5px; margin: 0; color: #555; border-top: 1px solid #CCC; border-bottom: 1px solid #CCC;}
|
38 |
.membership-levels tr.alternate {background: #f9f9f9;}
|
39 |
.membership-levels tr.ui-sortable-helper {border: 1px solid #2997C8;}
|
40 |
tr.testclass {border: 3px solid #2997C8; background: #2997C8;}
|
41 |
+
.membershipcategory_hasparent {margin-left: 25px; }
|
42 |
|
43 |
/* settings */
|
44 |
tr.pmpro_settings_divider td {padding: 5px; margin: 0; color: #555; border-top: 1px solid #CCC; border-bottom: 1px solid #CCC;}
|
includes/content.php
CHANGED
@@ -505,6 +505,8 @@ function pmpro_post_classes( $classes, $class, $post_id ) {
|
|
505 |
}
|
506 |
if(!empty($post_levels[0]) && $post_levels[0] == true)
|
507 |
$classes[] = 'pmpro-has-access';
|
|
|
|
|
508 |
}
|
509 |
return $classes;
|
510 |
}
|
505 |
}
|
506 |
if(!empty($post_levels[0]) && $post_levels[0] == true)
|
507 |
$classes[] = 'pmpro-has-access';
|
508 |
+
else
|
509 |
+
$classes[] = 'pmpro-no-access';
|
510 |
}
|
511 |
return $classes;
|
512 |
}
|
includes/functions.php
CHANGED
@@ -236,6 +236,78 @@ function pmpro_isLevelExpiringSoon( &$level ) {
|
|
236 |
return $r;
|
237 |
}
|
238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
function pmpro_getLevelCost(&$level, $tags = true, $short = false)
|
240 |
{
|
241 |
//initial payment
|
@@ -1451,6 +1523,7 @@ function pmpro_getMembershipLevelForUser($user_id = NULL, $force = false)
|
|
1451 |
l.description,
|
1452 |
l.expiration_number,
|
1453 |
l.expiration_period,
|
|
|
1454 |
mu.initial_payment,
|
1455 |
mu.billing_amount,
|
1456 |
mu.cycle_number,
|
236 |
return $r;
|
237 |
}
|
238 |
|
239 |
+
/**
|
240 |
+
* Loads a template from one of the default paths (PMPro plugin or theme), or from filtered path
|
241 |
+
*
|
242 |
+
* @param null $page_name - Name of the page/template
|
243 |
+
* @param string $where - `local` or `url` (whether to load from FS or over http)
|
244 |
+
* @param string $type - Type of template (valid: 'email' or 'pages', 'adminpages', 'preheader')
|
245 |
+
* @param string $ext - File extension ('php', 'html', 'htm', etc)
|
246 |
+
* @return string - The HTML for the template.
|
247 |
+
*
|
248 |
+
* TODO - Allow localized template files to be loaded?
|
249 |
+
*
|
250 |
+
* @since 1.8.9
|
251 |
+
*/
|
252 |
+
function pmpro_loadTemplate($page_name = null, $where = 'local', $type = 'pages', $ext = 'php' )
|
253 |
+
{
|
254 |
+
// called from page handler shortcode
|
255 |
+
if (is_null($page_name))
|
256 |
+
{
|
257 |
+
global $pmpro_page_name;
|
258 |
+
$page_name = $pmpro_page_name;
|
259 |
+
}
|
260 |
+
|
261 |
+
if ($where == 'local') {
|
262 |
+
// template paths in order of priority (array gets reversed)
|
263 |
+
$default_templates = array(
|
264 |
+
PMPRO_DIR . "/{$type}/{$page_name}.{$ext}", // default plugin path
|
265 |
+
get_template_directory() . "/paid-memberships-pro/{$type}/{$page_name}.{$ext}", // parent theme
|
266 |
+
get_stylesheet_directory() . "/paid-memberships-pro/{$type}/{$page_name}.{$ext}", // child / active theme
|
267 |
+
);
|
268 |
+
} elseif( $where == 'url' ) {
|
269 |
+
// template paths in order of priority (array gets reversed)
|
270 |
+
$default_templates = array(
|
271 |
+
PMPRO_URL . "/{$type}/{$page_name}.{$ext}", // default plugin path
|
272 |
+
get_template_directory_uri() . "/paid-memberships-pro/{$type}/{$page_name}.{$ext}", // parent theme
|
273 |
+
get_stylesheet_directory_uri() . "/paid-memberships-pro/{$type}/{$page_name}.{$ext}", // child / active theme
|
274 |
+
);
|
275 |
+
|
276 |
+
}
|
277 |
+
// Valid types: 'email', 'pages'
|
278 |
+
$templates = apply_filters("pmpro_{$type}_custom_template_path", $default_templates, $page_name, $type, $where, $ext);
|
279 |
+
$user_templates = array_diff($templates, $default_templates);
|
280 |
+
|
281 |
+
//user specified a custom template path, so it has priority.
|
282 |
+
if (!empty($user_templates))
|
283 |
+
$templates = $user_templates;
|
284 |
+
|
285 |
+
//last element included in the array is the most first one we try to load
|
286 |
+
$templates = array_reverse($templates);
|
287 |
+
|
288 |
+
// look for template file to include
|
289 |
+
ob_start();
|
290 |
+
foreach($templates as $template_path)
|
291 |
+
{
|
292 |
+
$included = get_included_files();
|
293 |
+
|
294 |
+
// only attempt to include if the file isn't already included & it exists in the file system
|
295 |
+
if (!in_array( $template_path, $included ) )
|
296 |
+
{
|
297 |
+
// Only include if the file exists.
|
298 |
+
if (file_exists($template_path))
|
299 |
+
{
|
300 |
+
include $template_path;
|
301 |
+
break;
|
302 |
+
}
|
303 |
+
}
|
304 |
+
}
|
305 |
+
$template = ob_get_clean();
|
306 |
+
|
307 |
+
// return template content
|
308 |
+
return $template;
|
309 |
+
}
|
310 |
+
|
311 |
function pmpro_getLevelCost(&$level, $tags = true, $short = false)
|
312 |
{
|
313 |
//initial payment
|
1523 |
l.description,
|
1524 |
l.expiration_number,
|
1525 |
l.expiration_period,
|
1526 |
+
l.allow_signups,
|
1527 |
mu.initial_payment,
|
1528 |
mu.billing_amount,
|
1529 |
mu.cycle_number,
|
includes/init.php
CHANGED
@@ -129,7 +129,7 @@ function pmpro_wp()
|
|
129 |
{
|
130 |
//preheader
|
131 |
require_once(PMPRO_DIR . "/preheaders/" . $pmpro_page_name . ".php");
|
132 |
-
|
133 |
//add class to body
|
134 |
$pmpro_body_classes[] = "pmpro-" . str_replace("_", "-", $pmpro_page_name);
|
135 |
|
@@ -137,16 +137,21 @@ function pmpro_wp()
|
|
137 |
function pmpro_pages_shortcode($atts, $content=null, $code="")
|
138 |
{
|
139 |
global $pmpro_page_name;
|
|
|
|
|
|
|
140 |
ob_start();
|
|
|
141 |
if(file_exists(get_stylesheet_directory() . "/paid-memberships-pro/pages/" . $pmpro_page_name . ".php"))
|
142 |
include(get_stylesheet_directory() . "/paid-memberships-pro/pages/" . $pmpro_page_name . ".php");
|
143 |
elseif(file_exists(get_template_directory() . "/paid-memberships-pro/pages/" . $pmpro_page_name . ".php"))
|
144 |
include(get_template_directory() . "/paid-memberships-pro/pages/" . $pmpro_page_name . ".php");
|
145 |
else
|
146 |
include(PMPRO_DIR . "/pages/" . $pmpro_page_name . ".php");
|
147 |
-
|
148 |
$temp_content = ob_get_contents();
|
149 |
-
ob_end_clean();
|
|
|
150 |
return apply_filters("pmpro_pages_shortcode_" . $pmpro_page_name, $temp_content);
|
151 |
}
|
152 |
add_shortcode("pmpro_" . $pmpro_page_name, "pmpro_pages_shortcode");
|
@@ -181,7 +186,7 @@ function pmpro_set_current_user()
|
|
181 |
{
|
182 |
//this code runs at the beginning of the plugin
|
183 |
global $current_user, $wpdb;
|
184 |
-
|
185 |
$id = intval($current_user->ID);
|
186 |
if($id)
|
187 |
{
|
129 |
{
|
130 |
//preheader
|
131 |
require_once(PMPRO_DIR . "/preheaders/" . $pmpro_page_name . ".php");
|
132 |
+
|
133 |
//add class to body
|
134 |
$pmpro_body_classes[] = "pmpro-" . str_replace("_", "-", $pmpro_page_name);
|
135 |
|
137 |
function pmpro_pages_shortcode($atts, $content=null, $code="")
|
138 |
{
|
139 |
global $pmpro_page_name;
|
140 |
+
$temp_content = pmpro_loadTemplate($pmpro_page_name, 'local', 'pages');
|
141 |
+
|
142 |
+
/*
|
143 |
ob_start();
|
144 |
+
|
145 |
if(file_exists(get_stylesheet_directory() . "/paid-memberships-pro/pages/" . $pmpro_page_name . ".php"))
|
146 |
include(get_stylesheet_directory() . "/paid-memberships-pro/pages/" . $pmpro_page_name . ".php");
|
147 |
elseif(file_exists(get_template_directory() . "/paid-memberships-pro/pages/" . $pmpro_page_name . ".php"))
|
148 |
include(get_template_directory() . "/paid-memberships-pro/pages/" . $pmpro_page_name . ".php");
|
149 |
else
|
150 |
include(PMPRO_DIR . "/pages/" . $pmpro_page_name . ".php");
|
151 |
+
|
152 |
$temp_content = ob_get_contents();
|
153 |
+
// ob_end_clean();
|
154 |
+
*/
|
155 |
return apply_filters("pmpro_pages_shortcode_" . $pmpro_page_name, $temp_content);
|
156 |
}
|
157 |
add_shortcode("pmpro_" . $pmpro_page_name, "pmpro_pages_shortcode");
|
186 |
{
|
187 |
//this code runs at the beginning of the plugin
|
188 |
global $current_user, $wpdb;
|
189 |
+
wp_get_current_user();
|
190 |
$id = intval($current_user->ID);
|
191 |
if($id)
|
192 |
{
|
includes/profile.php
CHANGED
@@ -252,7 +252,7 @@ function pmpro_membership_level_profile_fields_update()
|
|
252 |
{
|
253 |
//get the user id
|
254 |
global $wpdb, $current_user, $user_ID;
|
255 |
-
|
256 |
|
257 |
if(!empty($_REQUEST['user_id']))
|
258 |
$user_ID = $_REQUEST['user_id'];
|
252 |
{
|
253 |
//get the user id
|
254 |
global $wpdb, $current_user, $user_ID;
|
255 |
+
wp_get_current_user();
|
256 |
|
257 |
if(!empty($_REQUEST['user_id']))
|
258 |
$user_ID = $_REQUEST['user_id'];
|
languages/pmpro.mo
CHANGED
Binary file
|
languages/pmpro.po
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: pmpro\n"
|
8 |
-
"POT-Creation-Date: 2016-
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
@@ -170,8 +170,8 @@ msgstr ""
|
|
170 |
msgid "WordPress.org"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: adminpages/addons.php:231
|
174 |
-
#: adminpages/addons.php:247
|
175 |
msgid "N/A"
|
176 |
msgstr ""
|
177 |
|
@@ -287,7 +287,7 @@ msgstr ""
|
|
287 |
msgid "User Forum"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: adminpages/admin_header.php:150 adminpages/membershiplevels.php:
|
291 |
#: adminpages/pagesettings.php:70 includes/adminpages.php:69
|
292 |
#: includes/adminpages.php:70 includes/adminpages.php:116
|
293 |
#: includes/metaboxes.php:131 adminpages/admin_header.php:128
|
@@ -435,7 +435,7 @@ msgid "Hide Ads From Members?"
|
|
435 |
msgstr ""
|
436 |
|
437 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
|
438 |
-
#: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:
|
439 |
#: adminpages/paymentsettings.php:210
|
440 |
#: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:110
|
441 |
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
|
@@ -495,7 +495,7 @@ msgstr ""
|
|
495 |
msgid "multisite only"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:
|
499 |
#: adminpages/paymentsettings.php:211
|
500 |
#: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:111
|
501 |
#: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
|
@@ -581,41 +581,46 @@ msgid "Save Settings"
|
|
581 |
msgstr ""
|
582 |
|
583 |
#: adminpages/discountcodes.php:49 adminpages/discountcodes.php:48
|
|
|
584 |
msgid "Discount code updated successfully."
|
585 |
msgstr ""
|
586 |
|
587 |
#: adminpages/discountcodes.php:56 adminpages/discountcodes.php:55
|
|
|
588 |
msgid "Error updating discount code. That code may already be in use."
|
589 |
msgstr ""
|
590 |
|
591 |
#: adminpages/discountcodes.php:65 adminpages/discountcodes.php:64
|
|
|
592 |
msgid "Discount code added successfully."
|
593 |
msgstr ""
|
594 |
|
595 |
#: adminpages/discountcodes.php:73 adminpages/discountcodes.php:71
|
596 |
-
#: adminpages/discountcodes.php:72
|
597 |
msgid "Error adding discount code. That code may already be in use."
|
598 |
msgstr ""
|
599 |
|
600 |
#: adminpages/discountcodes.php:198 adminpages/discountcodes.php:196
|
601 |
-
#: adminpages/discountcodes.php:197
|
602 |
#, php-format
|
603 |
msgid "Error saving values for the %s level."
|
604 |
msgstr ""
|
605 |
|
606 |
#: adminpages/discountcodes.php:206 adminpages/discountcodes.php:204
|
607 |
-
#: adminpages/discountcodes.php:205
|
608 |
msgid "There were errors updating the level values: "
|
609 |
msgstr ""
|
610 |
|
611 |
#: adminpages/discountcodes.php:239 adminpages/discountcodes.php:234
|
612 |
#: adminpages/discountcodes.php:237 adminpages/discountcodes.php:238
|
|
|
613 |
#, php-format
|
614 |
msgid "Code %s deleted successfully."
|
615 |
msgstr ""
|
616 |
|
617 |
#: adminpages/discountcodes.php:244 adminpages/discountcodes.php:239
|
618 |
#: adminpages/discountcodes.php:242 adminpages/discountcodes.php:243
|
|
|
619 |
msgid ""
|
620 |
"Error deleting discount code. The code was only partially deleted. Please "
|
621 |
"try again."
|
@@ -623,35 +628,40 @@ msgstr ""
|
|
623 |
|
624 |
#: adminpages/discountcodes.php:250 adminpages/discountcodes.php:245
|
625 |
#: adminpages/discountcodes.php:248 adminpages/discountcodes.php:249
|
|
|
626 |
msgid "Error deleting code. Please try again."
|
627 |
msgstr ""
|
628 |
|
629 |
#: adminpages/discountcodes.php:256 adminpages/discountcodes.php:251
|
630 |
#: adminpages/discountcodes.php:254 adminpages/discountcodes.php:255
|
|
|
631 |
msgid "Code not found."
|
632 |
msgstr ""
|
633 |
|
634 |
#: adminpages/discountcodes.php:269 adminpages/discountcodes.php:264
|
635 |
#: adminpages/discountcodes.php:267 adminpages/discountcodes.php:268
|
|
|
636 |
msgid "Edit Discount Code"
|
637 |
msgstr ""
|
638 |
|
639 |
#: adminpages/discountcodes.php:271 adminpages/discountcodes.php:559
|
640 |
#: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
|
641 |
-
#: adminpages/discountcodes.php:270 adminpages/discountcodes.php:
|
642 |
-
#: adminpages/discountcodes.php:
|
643 |
-
#: adminpages/discountcodes.php:558
|
|
|
644 |
msgid "Add New Discount Code"
|
645 |
msgstr ""
|
646 |
|
647 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:587
|
648 |
-
#: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:
|
649 |
#: adminpages/memberslist.php:164 adminpages/orders.php:937
|
650 |
#: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
|
651 |
#: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
|
652 |
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
|
653 |
-
#: adminpages/discountcodes.php:
|
654 |
-
#: adminpages/discountcodes.php:
|
|
|
655 |
#: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
|
656 |
#: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:505
|
657 |
#: adminpages/membershiplevels.php:511 adminpages/membershiplevels.php:513
|
@@ -670,18 +680,19 @@ msgstr ""
|
|
670 |
|
671 |
#: adminpages/discountcodes.php:312 adminpages/orders.php:333
|
672 |
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
673 |
-
#: adminpages/discountcodes.php:311 adminpages/
|
674 |
-
#: adminpages/orders.php:
|
675 |
-
#: adminpages/orders.php:362
|
676 |
msgid "This will be generated when you save."
|
677 |
msgstr ""
|
678 |
|
679 |
#: adminpages/discountcodes.php:316 adminpages/discountcodes.php:588
|
680 |
#: adminpages/orders.php:337 adminpages/orders.php:938
|
681 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
682 |
-
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:
|
683 |
-
#: adminpages/discountcodes.php:
|
684 |
-
#: adminpages/discountcodes.php:
|
|
|
685 |
#: adminpages/orders.php:265 adminpages/orders.php:337
|
686 |
#: adminpages/orders.php:366 adminpages/orders.php:598
|
687 |
#: adminpages/orders.php:901 adminpages/orders.php:911
|
@@ -691,14 +702,16 @@ msgstr ""
|
|
691 |
|
692 |
#: adminpages/discountcodes.php:354 adminpages/discountcodes.php:349
|
693 |
#: adminpages/discountcodes.php:352 adminpages/discountcodes.php:353
|
|
|
694 |
msgid "Start Date"
|
695 |
msgstr ""
|
696 |
|
697 |
#: adminpages/discountcodes.php:372
|
698 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
699 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
700 |
#: pages/checkout.php:575 adminpages/discountcodes.php:367
|
701 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
|
|
702 |
#: classes/gateways/class.pmprogateway_braintree.php:308
|
703 |
#: classes/gateways/class.pmprogateway_braintree.php:321
|
704 |
#: classes/gateways/class.pmprogateway_braintree.php:323
|
@@ -716,73 +729,78 @@ msgstr ""
|
|
716 |
|
717 |
#: adminpages/discountcodes.php:390 adminpages/discountcodes.php:591
|
718 |
#: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
|
719 |
-
#: adminpages/discountcodes.php:389 adminpages/discountcodes.php:
|
720 |
-
#: adminpages/discountcodes.php:
|
721 |
-
#: adminpages/discountcodes.php:590
|
|
|
722 |
msgid "Uses"
|
723 |
msgstr ""
|
724 |
|
725 |
#: adminpages/discountcodes.php:393 adminpages/discountcodes.php:388
|
726 |
#: adminpages/discountcodes.php:391 adminpages/discountcodes.php:392
|
|
|
727 |
msgid "Leave blank for unlimited uses."
|
728 |
msgstr ""
|
729 |
|
730 |
#: adminpages/discountcodes.php:402 adminpages/discountcodes.php:400
|
731 |
-
#: adminpages/discountcodes.php:401
|
732 |
msgid "Which Levels Will This Code Apply To?"
|
733 |
msgstr ""
|
734 |
|
735 |
#: adminpages/discountcodes.php:432 adminpages/membershiplevels.php:341
|
736 |
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
|
737 |
-
#: adminpages/discountcodes.php:431 adminpages/
|
738 |
-
#: adminpages/membershiplevels.php:
|
739 |
-
#: adminpages/membershiplevels.php:
|
740 |
-
#: adminpages/membershiplevels.php:
|
741 |
-
#: adminpages/membershiplevels.php:
|
|
|
742 |
msgid "Initial Payment"
|
743 |
msgstr ""
|
744 |
|
745 |
#: adminpages/discountcodes.php:443 adminpages/membershiplevels.php:352
|
746 |
#: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
|
747 |
#: adminpages/discountcodes.php:441 adminpages/discountcodes.php:442
|
748 |
-
#: adminpages/
|
749 |
-
#: adminpages/membershiplevels.php:
|
750 |
-
#: adminpages/membershiplevels.php:353
|
751 |
msgid "The initial amount collected at registration."
|
752 |
msgstr ""
|
753 |
|
754 |
#: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:356
|
755 |
#: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
|
756 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:447
|
757 |
-
#: adminpages/
|
758 |
-
#: adminpages/membershiplevels.php:
|
759 |
-
#: adminpages/membershiplevels.php:357
|
760 |
msgid "Recurring Subscription"
|
761 |
msgstr ""
|
762 |
|
763 |
#: adminpages/discountcodes.php:449 adminpages/membershiplevels.php:357
|
764 |
#: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
|
765 |
#: adminpages/discountcodes.php:447 adminpages/discountcodes.php:448
|
766 |
-
#: adminpages/
|
767 |
-
#: adminpages/membershiplevels.php:
|
768 |
-
#: adminpages/membershiplevels.php:358
|
769 |
msgid "Check if this level has a recurring subscription payment."
|
770 |
msgstr ""
|
771 |
|
772 |
#: adminpages/discountcodes.php:453 adminpages/membershiplevels.php:361
|
773 |
#: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
|
774 |
-
#: adminpages/discountcodes.php:452 adminpages/
|
775 |
-
#: adminpages/membershiplevels.php:
|
776 |
-
#: adminpages/membershiplevels.php:
|
|
|
777 |
msgid "Billing Amount"
|
778 |
msgstr ""
|
779 |
|
780 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
781 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
782 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
783 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
784 |
-
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:
|
785 |
-
#: adminpages/discountcodes.php:
|
|
|
786 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
787 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
788 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
@@ -798,10 +816,11 @@ msgstr ""
|
|
798 |
|
799 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
800 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
801 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
802 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
803 |
-
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:
|
804 |
-
#: adminpages/discountcodes.php:
|
|
|
805 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
806 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
807 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
@@ -817,10 +836,11 @@ msgstr ""
|
|
817 |
|
818 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
819 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
820 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
821 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
822 |
-
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:
|
823 |
-
#: adminpages/discountcodes.php:
|
|
|
824 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
825 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
826 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
@@ -836,10 +856,11 @@ msgstr ""
|
|
836 |
|
837 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
838 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
839 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
840 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
841 |
-
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:
|
842 |
-
#: adminpages/discountcodes.php:
|
|
|
843 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
844 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
845 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
@@ -856,27 +877,27 @@ msgstr ""
|
|
856 |
#: adminpages/discountcodes.php:476 adminpages/membershiplevels.php:385
|
857 |
#: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
|
858 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:475
|
859 |
-
#: adminpages/
|
860 |
-
#: adminpages/membershiplevels.php:
|
861 |
-
#: adminpages/membershiplevels.php:386
|
862 |
msgid "The amount to be billed one cycle after the initial payment."
|
863 |
msgstr ""
|
864 |
|
865 |
#: adminpages/discountcodes.php:481 adminpages/membershiplevels.php:403
|
866 |
#: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
|
867 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:480
|
868 |
-
#: adminpages/
|
869 |
-
#: adminpages/membershiplevels.php:
|
870 |
-
#: adminpages/membershiplevels.php:404
|
871 |
msgid "Billing Cycle Limit"
|
872 |
msgstr ""
|
873 |
|
874 |
#: adminpages/discountcodes.php:484 adminpages/membershiplevels.php:407
|
875 |
#: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
|
876 |
#: adminpages/discountcodes.php:482 adminpages/discountcodes.php:483
|
877 |
-
#: adminpages/
|
878 |
-
#: adminpages/membershiplevels.php:
|
879 |
-
#: adminpages/membershiplevels.php:408
|
880 |
msgid ""
|
881 |
"The <strong>total</strong> number of recurring billing cycles for this "
|
882 |
"level, including the trial period (if applicable) but not including the "
|
@@ -886,83 +907,89 @@ msgstr ""
|
|
886 |
#: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:416
|
887 |
#: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
|
888 |
#: adminpages/discountcodes.php:487 adminpages/discountcodes.php:488
|
889 |
-
#: adminpages/
|
890 |
-
#: adminpages/membershiplevels.php:
|
891 |
-
#: adminpages/membershiplevels.php:417
|
892 |
msgid "Custom Trial"
|
893 |
msgstr ""
|
894 |
|
895 |
#: adminpages/discountcodes.php:490 adminpages/membershiplevels.php:418
|
896 |
#: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
|
897 |
#: adminpages/discountcodes.php:488 adminpages/discountcodes.php:489
|
898 |
-
#: adminpages/
|
899 |
-
#: adminpages/membershiplevels.php:
|
900 |
-
#: adminpages/membershiplevels.php:
|
|
|
901 |
msgid "Check to add a custom trial period."
|
902 |
msgstr ""
|
903 |
|
904 |
#: adminpages/discountcodes.php:494 adminpages/membershiplevels.php:427
|
905 |
#: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
|
906 |
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:493
|
907 |
-
#: adminpages/
|
908 |
-
#: adminpages/membershiplevels.php:
|
909 |
-
#: adminpages/membershiplevels.php:
|
|
|
910 |
msgid "Trial Billing Amount"
|
911 |
msgstr ""
|
912 |
|
913 |
#: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:438
|
914 |
#: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
|
915 |
#: adminpages/discountcodes.php:503 adminpages/discountcodes.php:504
|
916 |
-
#: adminpages/
|
917 |
-
#: adminpages/membershiplevels.php:
|
918 |
-
#: adminpages/membershiplevels.php:
|
|
|
919 |
msgid "for the first"
|
920 |
msgstr ""
|
921 |
|
922 |
#: adminpages/discountcodes.php:507 adminpages/membershiplevels.php:440
|
923 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
|
924 |
#: adminpages/discountcodes.php:505 adminpages/discountcodes.php:506
|
925 |
-
#: adminpages/
|
926 |
-
#: adminpages/membershiplevels.php:
|
927 |
-
#: adminpages/membershiplevels.php:
|
|
|
928 |
msgid "subscription payments"
|
929 |
msgstr ""
|
930 |
|
931 |
#: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:469
|
932 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
|
933 |
#: adminpages/discountcodes.php:510 adminpages/discountcodes.php:511
|
934 |
-
#: adminpages/
|
935 |
-
#: adminpages/membershiplevels.php:
|
936 |
-
#: adminpages/membershiplevels.php:
|
937 |
-
#: adminpages/membershiplevels.php:470
|
938 |
msgid "Membership Expiration"
|
939 |
msgstr ""
|
940 |
|
941 |
#: adminpages/discountcodes.php:513 adminpages/membershiplevels.php:470
|
942 |
#: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
|
943 |
-
#: adminpages/discountcodes.php:512 adminpages/
|
944 |
-
#: adminpages/membershiplevels.php:
|
945 |
-
#: adminpages/membershiplevels.php:
|
946 |
-
#: adminpages/membershiplevels.php:
|
|
|
947 |
msgid "Check this to set when membership access expires."
|
948 |
msgstr ""
|
949 |
|
950 |
#: adminpages/discountcodes.php:517 adminpages/membershiplevels.php:474
|
951 |
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
|
952 |
#: adminpages/discountcodes.php:515 adminpages/discountcodes.php:516
|
953 |
-
#: adminpages/
|
954 |
-
#: adminpages/membershiplevels.php:
|
955 |
-
#: adminpages/membershiplevels.php:
|
956 |
-
#: adminpages/membershiplevels.php:475
|
957 |
msgid "Expires In"
|
958 |
msgstr ""
|
959 |
|
960 |
#: adminpages/discountcodes.php:530 adminpages/membershiplevels.php:487
|
961 |
#: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
|
962 |
-
#: adminpages/discountcodes.php:529 adminpages/
|
963 |
-
#: adminpages/membershiplevels.php:
|
964 |
-
#: adminpages/membershiplevels.php:
|
965 |
-
#: adminpages/membershiplevels.php:
|
|
|
966 |
msgid ""
|
967 |
"Set the duration of membership access. Note that the any future payments "
|
968 |
"(recurring subscription, if any) will be cancelled when the membership "
|
@@ -971,27 +998,27 @@ msgstr ""
|
|
971 |
|
972 |
#: adminpages/discountcodes.php:558 adminpages/discountcodes.php:525
|
973 |
#: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
|
974 |
-
#: adminpages/discountcodes.php:557
|
975 |
msgid "Memberships Discount Codes"
|
976 |
msgstr ""
|
977 |
|
978 |
#: adminpages/discountcodes.php:568 adminpages/discountcodes.php:535
|
979 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
|
980 |
-
#: adminpages/discountcodes.php:567
|
981 |
msgid "Search Discount Codes"
|
982 |
msgstr ""
|
983 |
|
984 |
#: adminpages/discountcodes.php:571 adminpages/reports/login.php:99
|
985 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
|
986 |
#: adminpages/discountcodes.php:569 adminpages/discountcodes.php:570
|
987 |
-
#: adminpages/
|
988 |
-
#: adminpages/reports/login.php:99
|
989 |
msgid "Search"
|
990 |
msgstr ""
|
991 |
|
992 |
#: adminpages/discountcodes.php:589 adminpages/discountcodes.php:549
|
993 |
#: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
|
994 |
-
#: adminpages/discountcodes.php:588
|
995 |
msgid "Starts"
|
996 |
msgstr ""
|
997 |
|
@@ -999,53 +1026,54 @@ msgstr ""
|
|
999 |
#: adminpages/reports/login.php:163 includes/profile.php:107
|
1000 |
#: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
|
1001 |
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
|
1002 |
-
#: adminpages/
|
1003 |
-
#: adminpages/memberslist.php:
|
1004 |
-
#: adminpages/
|
1005 |
-
#: adminpages/reports/login.php:
|
1006 |
-
#: includes/profile.php:
|
1007 |
-
#: includes/profile.php:120
|
1008 |
msgid "Expires"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
#: adminpages/discountcodes.php:592 adminpages/discountcodes.php:552
|
1012 |
#: adminpages/discountcodes.php:562 adminpages/discountcodes.php:590
|
1013 |
-
#: adminpages/discountcodes.php:591
|
1014 |
msgid "Levels"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
#: adminpages/discountcodes.php:604 adminpages/discountcodes.php:570
|
1018 |
#: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
|
1019 |
-
#: adminpages/discountcodes.php:603
|
1020 |
msgid "Create your first discount code now"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
#: adminpages/discountcodes.php:604 adminpages/discountcodes.php:570
|
1024 |
#: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
|
1025 |
-
#: adminpages/discountcodes.php:603
|
1026 |
msgid ""
|
1027 |
"Discount codes allow you to offer your memberships at discounted prices to "
|
1028 |
"select customers."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:
|
1032 |
#: adminpages/orders.php:1021 adminpages/discountcodes.php:614
|
1033 |
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
1034 |
#: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
|
1035 |
-
#: adminpages/
|
1036 |
-
#: adminpages/membershiplevels.php:
|
1037 |
-
#: adminpages/membershiplevels.php:
|
1038 |
-
#: adminpages/membershiplevels.php:
|
1039 |
-
#: adminpages/
|
1040 |
-
#: adminpages/orders.php:
|
1041 |
-
#: adminpages/orders.php:
|
1042 |
-
#: adminpages/orders.php:1050
|
1043 |
msgid "edit"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
#: adminpages/discountcodes.php:653 adminpages/discountcodes.php:617
|
1047 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
1048 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
|
|
1049 |
#, php-format
|
1050 |
msgid ""
|
1051 |
"Are you sure you want to delete the %s discount code? The subscriptions for "
|
@@ -1053,18 +1081,18 @@ msgid ""
|
|
1053 |
"code anymore."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:
|
1057 |
#: adminpages/orders.php:1027 adminpages/discountcodes.php:617
|
1058 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
1059 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
1060 |
-
#: adminpages/
|
1061 |
-
#: adminpages/membershiplevels.php:
|
1062 |
-
#: adminpages/membershiplevels.php:
|
1063 |
-
#: adminpages/membershiplevels.php:
|
1064 |
-
#: adminpages/
|
1065 |
-
#: adminpages/orders.php:
|
1066 |
-
#: adminpages/orders.php:
|
1067 |
-
#: adminpages/orders.php:1056
|
1068 |
msgid "delete"
|
1069 |
msgstr ""
|
1070 |
|
@@ -1237,7 +1265,7 @@ msgstr ""
|
|
1237 |
msgid "Add New Membership Level"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:
|
1241 |
#: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
|
1242 |
#: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
|
1243 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
|
@@ -1254,7 +1282,7 @@ msgstr ""
|
|
1254 |
msgid "Confirmation Message"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:
|
1258 |
#: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
|
1259 |
#: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:338
|
1260 |
#: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:585
|
@@ -1263,7 +1291,7 @@ msgid "Billing Details"
|
|
1263 |
msgstr ""
|
1264 |
|
1265 |
#: adminpages/membershiplevels.php:372
|
1266 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1267 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
1268 |
#: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
|
1269 |
#: adminpages/membershiplevels.php:373
|
@@ -1413,13 +1441,13 @@ msgstr ""
|
|
1413 |
msgid "Categories"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: adminpages/membershiplevels.php:
|
1417 |
#: adminpages/membershiplevels.php:517
|
1418 |
msgid "Save Level"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: adminpages/membershiplevels.php:
|
1422 |
-
#: pages/billing.php:
|
1423 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
|
1424 |
#: adminpages/orders.php:511 adminpages/orders.php:561
|
1425 |
#: adminpages/orders.php:633 adminpages/orders.php:662 pages/account.php:44
|
@@ -1430,7 +1458,7 @@ msgstr ""
|
|
1430 |
msgid "Cancel"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: adminpages/membershiplevels.php:
|
1434 |
#: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
|
1435 |
#: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
|
1436 |
#: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:618
|
@@ -1438,7 +1466,7 @@ msgstr ""
|
|
1438 |
msgid "Add New Level"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: adminpages/membershiplevels.php:
|
1442 |
#: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
|
1443 |
#: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
|
1444 |
#: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
|
@@ -1450,12 +1478,12 @@ msgstr ""
|
|
1450 |
msgid "Search Levels"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: adminpages/membershiplevels.php:
|
1454 |
#: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:631
|
1455 |
msgid "Drag and drop membership levels to reorder them on the Levels page."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: adminpages/membershiplevels.php:
|
1459 |
#: pages/confirmation.php:83 pages/invoice.php:70
|
1460 |
#: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
|
1461 |
#: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
|
@@ -1467,7 +1495,7 @@ msgstr ""
|
|
1467 |
msgid "Expiration"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: adminpages/membershiplevels.php:
|
1471 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
|
1472 |
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
|
1473 |
#: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:640
|
@@ -1475,7 +1503,7 @@ msgstr ""
|
|
1475 |
msgid "Allow Signups"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: adminpages/membershiplevels.php:
|
1479 |
#: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
|
1480 |
#: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
|
1481 |
#: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:655
|
@@ -1483,7 +1511,7 @@ msgstr ""
|
|
1483 |
msgid "FREE"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: adminpages/membershiplevels.php:
|
1487 |
#: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
|
1488 |
#: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
|
1489 |
#: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:664
|
@@ -1491,7 +1519,7 @@ msgstr ""
|
|
1491 |
msgid "After"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: adminpages/membershiplevels.php:
|
1495 |
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
|
1496 |
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
|
1497 |
#: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
|
@@ -1501,7 +1529,7 @@ msgid ""
|
|
1501 |
"be cancelled."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: adminpages/membershiplevels.php:
|
1505 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
|
1506 |
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
|
1507 |
#: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
|
@@ -1537,6 +1565,7 @@ msgstr ""
|
|
1537 |
#: adminpages/reports/login.php:67 adminpages/reports/login.php:83
|
1538 |
#: adminpages/reports/memberships.php:256
|
1539 |
#: adminpages/reports/memberships.php:263
|
|
|
1540 |
#: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
|
1541 |
#: adminpages/reports/sales.php:193 adminpages/reports/sales.php:194
|
1542 |
#: adminpages/reports/sales.php:202
|
@@ -1549,6 +1578,7 @@ msgstr ""
|
|
1549 |
#: adminpages/reports/login.php:69 adminpages/reports/login.php:85
|
1550 |
#: adminpages/reports/memberships.php:281
|
1551 |
#: adminpages/reports/memberships.php:290
|
|
|
1552 |
#: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:208
|
1553 |
#: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
|
1554 |
#: adminpages/reports/sales.php:225
|
@@ -1605,7 +1635,7 @@ msgstr ""
|
|
1605 |
msgid "Last Name"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: adminpages/memberslist.php:170 pages/billing.php:
|
1609 |
#: pages/confirmation.php:61 pages/invoice.php:48
|
1610 |
#: adminpages/memberslist.php:117 adminpages/memberslist.php:150
|
1611 |
#: adminpages/memberslist.php:160 adminpages/memberslist.php:170
|
@@ -1823,8 +1853,8 @@ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
|
1823 |
msgstr ""
|
1824 |
|
1825 |
#: adminpages/orders.php:461
|
1826 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
1827 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1828 |
#: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
|
1829 |
#: adminpages/orders.php:461 adminpages/orders.php:490
|
1830 |
#: classes/gateways/class.pmprogateway_braintree.php:291
|
@@ -2081,7 +2111,7 @@ msgstr ""
|
|
2081 |
msgid "User"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: adminpages/orders.php:941 includes/init.php:
|
2085 |
#: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
|
2086 |
#: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
|
2087 |
#: adminpages/orders.php:601 adminpages/orders.php:904
|
@@ -2406,7 +2436,7 @@ msgstr ""
|
|
2406 |
msgid "Sales Tax"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: adminpages/paymentsettings.php:188 pages/billing.php:
|
2410 |
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
|
2411 |
#: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
|
2412 |
#: adminpages/paymentsettings.php:445 pages/billing.php:78
|
@@ -2592,6 +2622,7 @@ msgstr ""
|
|
2592 |
#: adminpages/reports/memberships.php:18
|
2593 |
#: adminpages/reports/memberships.php:252
|
2594 |
#: adminpages/reports/memberships.php:259
|
|
|
2595 |
#: adminpages/reports/memberships.php:288
|
2596 |
msgid "Membership Stats"
|
2597 |
msgstr ""
|
@@ -2614,6 +2645,7 @@ msgstr ""
|
|
2614 |
#: adminpages/reports/memberships.php:278 adminpages/reports/sales.php:204
|
2615 |
#: adminpages/reports/memberships.php:258
|
2616 |
#: adminpages/reports/memberships.php:265
|
|
|
2617 |
#: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:187
|
2618 |
#: adminpages/reports/sales.php:195 adminpages/reports/sales.php:196
|
2619 |
#: adminpages/reports/sales.php:204
|
@@ -2623,6 +2655,7 @@ msgstr ""
|
|
2623 |
#: adminpages/reports/memberships.php:279 adminpages/reports/sales.php:205
|
2624 |
#: adminpages/reports/memberships.php:259
|
2625 |
#: adminpages/reports/memberships.php:266
|
|
|
2626 |
#: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:188
|
2627 |
#: adminpages/reports/sales.php:196 adminpages/reports/sales.php:197
|
2628 |
#: adminpages/reports/sales.php:205
|
@@ -2632,6 +2665,7 @@ msgstr ""
|
|
2632 |
#: adminpages/reports/memberships.php:280 adminpages/reports/sales.php:206
|
2633 |
#: adminpages/reports/memberships.php:260
|
2634 |
#: adminpages/reports/memberships.php:267
|
|
|
2635 |
#: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:189
|
2636 |
#: adminpages/reports/sales.php:197 adminpages/reports/sales.php:198
|
2637 |
#: adminpages/reports/sales.php:206
|
@@ -2640,18 +2674,21 @@ msgstr ""
|
|
2640 |
|
2641 |
#: adminpages/reports/memberships.php:283
|
2642 |
#: adminpages/reports/memberships.php:270
|
|
|
2643 |
msgid "Signups vs. All Cancellations"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
#: adminpages/reports/memberships.php:284
|
2647 |
#: adminpages/reports/memberships.php:263
|
2648 |
#: adminpages/reports/memberships.php:271
|
|
|
2649 |
#: adminpages/reports/memberships.php:299
|
2650 |
msgid "Signups vs. Cancellations"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
#: adminpages/reports/memberships.php:285
|
2654 |
#: adminpages/reports/memberships.php:272
|
|
|
2655 |
msgid "Signups vs. Expirations"
|
2656 |
msgstr ""
|
2657 |
|
@@ -2665,6 +2702,8 @@ msgstr ""
|
|
2665 |
#: adminpages/reports/memberships.php:277
|
2666 |
#: adminpages/reports/memberships.php:279
|
2667 |
#: adminpages/reports/memberships.php:288
|
|
|
|
|
2668 |
#: adminpages/reports/memberships.php:304
|
2669 |
#: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:195
|
2670 |
#: adminpages/reports/sales.php:203 adminpages/reports/sales.php:204
|
@@ -2677,6 +2716,7 @@ msgstr ""
|
|
2677 |
#: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:239
|
2678 |
#: adminpages/reports/memberships.php:295
|
2679 |
#: adminpages/reports/memberships.php:304
|
|
|
2680 |
#: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:222
|
2681 |
#: adminpages/reports/sales.php:230 adminpages/reports/sales.php:231
|
2682 |
#: adminpages/reports/sales.php:239
|
@@ -2749,19 +2789,19 @@ msgstr ""
|
|
2749 |
msgid "Subtotal"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: adminpages/updates.php:
|
2753 |
msgid "Updating Paid Memberships Pro"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: adminpages/updates.php:
|
2757 |
msgid "Updates are processing. This may take a few minutes to complete."
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: adminpages/updates.php:
|
2761 |
msgid "Update complete."
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: classes/class.memberorder.php:
|
2765 |
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
2766 |
#: classes/class.memberorder.php:573 classes/class.memberorder.php:644
|
2767 |
#: classes/class.memberorder.php:697 includes/cleanup.php:24
|
@@ -2800,10 +2840,10 @@ msgstr ""
|
|
2800 |
|
2801 |
#: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
|
2802 |
#: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
|
2803 |
-
#: classes/class.pmproemail.php:346 classes/class.pmproemail.php:
|
2804 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2805 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
2806 |
-
#: pages/checkout.php:86 pages/checkout.php:
|
2807 |
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
2808 |
#: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
|
2809 |
#: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
|
@@ -2837,7 +2877,7 @@ msgid "Discount Code"
|
|
2837 |
msgstr ""
|
2838 |
|
2839 |
#: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
|
2840 |
-
#: classes/class.pmproemail.php:
|
2841 |
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
2842 |
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
|
2843 |
#: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
|
@@ -2887,42 +2927,42 @@ msgstr ""
|
|
2887 |
msgid "Credit Card on File Expiring Soon at %s"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: classes/class.pmproemail.php:
|
2891 |
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
2892 |
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
|
2893 |
#, php-format
|
2894 |
msgid "INVOICE for %s membership"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: classes/class.pmproemail.php:
|
2898 |
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
2899 |
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
|
2900 |
#, php-format
|
2901 |
msgid "Your trial at %s is ending soon"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: classes/class.pmproemail.php:
|
2905 |
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
2906 |
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
|
2907 |
#, php-format
|
2908 |
msgid "Your membership at %s has ended"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: classes/class.pmproemail.php:
|
2912 |
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
2913 |
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
|
2914 |
#, php-format
|
2915 |
msgid "Your membership at %s will end soon"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: classes/class.pmproemail.php:
|
2919 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
2920 |
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
|
2921 |
#, php-format
|
2922 |
msgid "Your membership at %s has been changed"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#: classes/class.pmproemail.php:
|
2926 |
#: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
|
2927 |
#: classes/class.pmproemail.php:771 classes/class.pmproemail.php:800
|
2928 |
#: classes/class.pmproemail.php:809
|
@@ -2930,13 +2970,13 @@ msgstr ""
|
|
2930 |
msgid "The new level is %s"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: classes/class.pmproemail.php:
|
2934 |
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
2935 |
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
|
2936 |
msgid "Your membership has been cancelled"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#: classes/class.pmproemail.php:
|
2940 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
2941 |
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
2942 |
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
|
@@ -2946,7 +2986,7 @@ msgstr ""
|
|
2946 |
msgid "This membership will expire on %s"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
-
#: classes/class.pmproemail.php:
|
2950 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
2951 |
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
2952 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
|
@@ -2955,19 +2995,19 @@ msgstr ""
|
|
2955 |
msgid "This membership does not expire"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: classes/class.pmproemail.php:
|
2959 |
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
2960 |
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
|
2961 |
#, php-format
|
2962 |
msgid "Membership for %s at %s has been changed"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: classes/class.pmproemail.php:
|
2966 |
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
|
2967 |
msgid "Membership has been cancelled"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: classes/class.pmproemail.php:
|
2971 |
msgid "Invoice for Order #: "
|
2972 |
msgstr ""
|
2973 |
|
@@ -3063,7 +3103,7 @@ msgstr ""
|
|
3063 |
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
3064 |
#: paid-memberships-pro.php:122 paid-memberships-pro.php:123
|
3065 |
#: paid-memberships-pro.php:130 paid-memberships-pro.php:131
|
3066 |
-
#: paid-memberships-pro.php:132
|
3067 |
msgid "Authorize.net"
|
3068 |
msgstr ""
|
3069 |
|
@@ -3120,7 +3160,7 @@ msgstr ""
|
|
3120 |
#: classes/gateways/class.pmprogateway_braintree.php:76
|
3121 |
#: paid-memberships-pro.php:123 paid-memberships-pro.php:124
|
3122 |
#: paid-memberships-pro.php:131 paid-memberships-pro.php:132
|
3123 |
-
#: paid-memberships-pro.php:133
|
3124 |
msgid "Braintree Payments"
|
3125 |
msgstr ""
|
3126 |
|
@@ -3188,8 +3228,8 @@ msgstr ""
|
|
3188 |
msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3192 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3193 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
3194 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
3195 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -3204,8 +3244,8 @@ msgstr ""
|
|
3204 |
msgid "Payment Information"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3208 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3209 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
3210 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
3211 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -3221,8 +3261,8 @@ msgstr ""
|
|
3221 |
msgid "We Accept %s"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3225 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3226 |
#: pages/checkout.php:570
|
3227 |
#: classes/gateways/class.pmprogateway_braintree.php:303
|
3228 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
@@ -3239,9 +3279,9 @@ msgstr ""
|
|
3239 |
msgid "Card Number"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3243 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3244 |
-
#: pages/checkout.php:
|
3245 |
#: classes/gateways/class.pmprogateway_braintree.php:340
|
3246 |
#: classes/gateways/class.pmprogateway_braintree.php:353
|
3247 |
#: classes/gateways/class.pmprogateway_braintree.php:355
|
@@ -3257,9 +3297,9 @@ msgstr ""
|
|
3257 |
msgid "CVV"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3261 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3262 |
-
#: pages/checkout.php:
|
3263 |
#: classes/gateways/class.pmprogateway_braintree.php:341
|
3264 |
#: classes/gateways/class.pmprogateway_braintree.php:354
|
3265 |
#: classes/gateways/class.pmprogateway_braintree.php:356
|
@@ -3275,9 +3315,9 @@ msgstr ""
|
|
3275 |
msgid "what's this?"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3279 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3280 |
-
#: pages/checkout.php:
|
3281 |
#: classes/gateways/class.pmprogateway_braintree.php:351
|
3282 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
3283 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
@@ -3293,8 +3333,8 @@ msgstr ""
|
|
3293 |
msgid "Apply"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3297 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3298 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
3299 |
#: classes/gateways/class.pmprogateway_braintree.php:406
|
3300 |
#: classes/gateways/class.pmprogateway_braintree.php:419
|
@@ -3309,7 +3349,7 @@ msgstr ""
|
|
3309 |
msgid "Unknown error: Initial payment failed."
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3313 |
#: classes/gateways/class.pmprogateway_braintree.php:120
|
3314 |
#: classes/gateways/class.pmprogateway_braintree.php:465
|
3315 |
#: classes/gateways/class.pmprogateway_braintree.php:478
|
@@ -3317,7 +3357,7 @@ msgstr ""
|
|
3317 |
msgid "Error during settlement:"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3321 |
#: classes/gateways/class.pmprogateway_braintree.php:129
|
3322 |
#: classes/gateways/class.pmprogateway_braintree.php:474
|
3323 |
#: classes/gateways/class.pmprogateway_braintree.php:487
|
@@ -3325,7 +3365,7 @@ msgstr ""
|
|
3325 |
msgid "Error during charge:"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3329 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
3330 |
#: classes/gateways/class.pmprogateway_braintree.php:221
|
3331 |
#: classes/gateways/class.pmprogateway_braintree.php:566
|
@@ -3334,7 +3374,7 @@ msgstr ""
|
|
3334 |
msgid "Failed to update customer."
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3338 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
3339 |
#: classes/gateways/class.pmprogateway_braintree.php:269
|
3340 |
#: classes/gateways/class.pmprogateway_braintree.php:614
|
@@ -3343,7 +3383,7 @@ msgstr ""
|
|
3343 |
msgid "Failed to create customer."
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3347 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
3348 |
#: classes/gateways/class.pmprogateway_braintree.php:276
|
3349 |
#: classes/gateways/class.pmprogateway_braintree.php:621
|
@@ -3352,7 +3392,7 @@ msgstr ""
|
|
3352 |
msgid "Error creating customer record with Braintree:"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3356 |
#: classes/gateways/class.pmprogateway_braintree.php:344
|
3357 |
#: classes/gateways/class.pmprogateway_braintree.php:345
|
3358 |
#: classes/gateways/class.pmprogateway_braintree.php:376
|
@@ -3362,7 +3402,7 @@ msgstr ""
|
|
3362 |
msgid "Error subscribing customer to plan with Braintree:"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3366 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
3367 |
#: classes/gateways/class.pmprogateway_braintree.php:360
|
3368 |
#: classes/gateways/class.pmprogateway_braintree.php:391
|
@@ -3372,9 +3412,9 @@ msgstr ""
|
|
3372 |
msgid "Failed to subscribe with Braintree:"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3376 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3377 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3378 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
3379 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
3380 |
#: classes/gateways/class.pmprogateway_braintree.php:410
|
@@ -3411,7 +3451,7 @@ msgstr ""
|
|
3411 |
#: classes/gateways/class.pmprogateway_check.php:48
|
3412 |
#: paid-memberships-pro.php:116 paid-memberships-pro.php:117
|
3413 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
3414 |
-
#: paid-memberships-pro.php:126
|
3415 |
msgid "Pay by Check"
|
3416 |
msgstr ""
|
3417 |
|
@@ -3525,7 +3565,7 @@ msgstr ""
|
|
3525 |
#: classes/gateways/class.pmprogateway_paypal.php:57
|
3526 |
#: paid-memberships-pro.php:119 paid-memberships-pro.php:120
|
3527 |
#: paid-memberships-pro.php:127 paid-memberships-pro.php:128
|
3528 |
-
#: paid-memberships-pro.php:129
|
3529 |
msgid "PayPal Website Payments Pro"
|
3530 |
msgstr ""
|
3531 |
|
@@ -3649,7 +3689,7 @@ msgstr ""
|
|
3649 |
#: classes/gateways/class.pmprogateway_paypal.php:184
|
3650 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3651 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
3652 |
-
#: pages/checkout.php:
|
3653 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:408
|
3654 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3655 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
@@ -3663,7 +3703,7 @@ msgstr ""
|
|
3663 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3664 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
3665 |
#: classes/gateways/class.pmprogateway_twocheckout.php:203
|
3666 |
-
#: pages/checkout.php:
|
3667 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:408
|
3668 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3669 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
@@ -3676,7 +3716,7 @@ msgstr ""
|
|
3676 |
msgid "Submit and Confirm"
|
3677 |
msgstr ""
|
3678 |
|
3679 |
-
#: classes/gateways/class.pmprogateway_paypal.php:
|
3680 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:752
|
3681 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:466
|
3682 |
#: classes/gateways/class.pmprogateway_paypal.php:385
|
@@ -3705,7 +3745,7 @@ msgstr ""
|
|
3705 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:73
|
3706 |
#: paid-memberships-pro.php:118 paid-memberships-pro.php:119
|
3707 |
#: paid-memberships-pro.php:126 paid-memberships-pro.php:127
|
3708 |
-
#: paid-memberships-pro.php:128
|
3709 |
msgid "PayPal Express"
|
3710 |
msgstr ""
|
3711 |
|
@@ -3737,7 +3777,7 @@ msgstr ""
|
|
3737 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
3738 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:122
|
3739 |
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
3740 |
-
#: paid-memberships-pro.php:131
|
3741 |
msgid "PayPal Standard"
|
3742 |
msgstr ""
|
3743 |
|
@@ -3764,7 +3804,7 @@ msgstr ""
|
|
3764 |
#: classes/gateways/class.pmprogateway_stripe.php:126
|
3765 |
#: paid-memberships-pro.php:117 paid-memberships-pro.php:118
|
3766 |
#: paid-memberships-pro.php:125 paid-memberships-pro.php:126
|
3767 |
-
#: paid-memberships-pro.php:127
|
3768 |
msgid "Stripe"
|
3769 |
msgstr ""
|
3770 |
|
@@ -3828,7 +3868,7 @@ msgstr ""
|
|
3828 |
msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3832 |
#: classes/gateways/class.pmprogateway_stripe.php:567
|
3833 |
#: classes/gateways/class.pmprogateway_stripe.php:568
|
3834 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
@@ -3837,7 +3877,7 @@ msgstr ""
|
|
3837 |
msgid "Subscription Updates"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3841 |
#: classes/gateways/class.pmprogateway_stripe.php:571
|
3842 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
3843 |
#: classes/gateways/class.pmprogateway_stripe.php:582
|
@@ -3848,7 +3888,7 @@ msgid ""
|
|
3848 |
"at predefined times. Be sure to click Update Profile after making changes."
|
3849 |
msgstr ""
|
3850 |
|
3851 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3852 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
3853 |
#: classes/gateways/class.pmprogateway_stripe.php:574
|
3854 |
#: classes/gateways/class.pmprogateway_stripe.php:584
|
@@ -3859,7 +3899,7 @@ msgid ""
|
|
3859 |
"at predefined times. Be sure to click Update User after making changes."
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3863 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
3864 |
#: classes/gateways/class.pmprogateway_stripe.php:579
|
3865 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
@@ -3870,7 +3910,7 @@ msgstr ""
|
|
3870 |
msgid "Update"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3874 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
3875 |
#: classes/gateways/class.pmprogateway_stripe.php:770
|
3876 |
#: classes/gateways/class.pmprogateway_stripe.php:780
|
@@ -3879,7 +3919,7 @@ msgstr ""
|
|
3879 |
msgid "Could not cancel the old subscription. Updates have not been processed."
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3883 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
3884 |
#: classes/gateways/class.pmprogateway_stripe.php:192
|
3885 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
@@ -3892,16 +3932,18 @@ msgstr ""
|
|
3892 |
#: classes/gateways/class.pmprogateway_stripe.php:1214
|
3893 |
#: classes/gateways/class.pmprogateway_stripe.php:1218
|
3894 |
#: classes/gateways/class.pmprogateway_stripe.php:1246
|
|
|
3895 |
msgid "Error creating customer record with Stripe:"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3899 |
#: classes/gateways/class.pmprogateway_stripe.php:1275
|
3900 |
#: classes/gateways/class.pmprogateway_stripe.php:1303
|
|
|
3901 |
msgid "Error getting subscription with Stripe:"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3905 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
3906 |
#: classes/gateways/class.pmprogateway_stripe.php:279
|
3907 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
@@ -3922,10 +3964,11 @@ msgstr ""
|
|
3922 |
#: classes/gateways/class.pmprogateway_stripe.php:1421
|
3923 |
#: classes/gateways/class.pmprogateway_stripe.php:1425
|
3924 |
#: classes/gateways/class.pmprogateway_stripe.php:1453
|
|
|
3925 |
msgid "Error creating plan with Stripe:"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3929 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
3930 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
3931 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
@@ -3941,10 +3984,11 @@ msgstr ""
|
|
3941 |
#: classes/gateways/class.pmprogateway_stripe.php:1452
|
3942 |
#: classes/gateways/class.pmprogateway_stripe.php:1456
|
3943 |
#: classes/gateways/class.pmprogateway_stripe.php:1484
|
|
|
3944 |
msgid "Error subscribing customer to plan with Stripe:"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3948 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
3949 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
3950 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
@@ -3957,10 +4001,11 @@ msgstr ""
|
|
3957 |
#: classes/gateways/class.pmprogateway_stripe.php:1548
|
3958 |
#: classes/gateways/class.pmprogateway_stripe.php:1552
|
3959 |
#: classes/gateways/class.pmprogateway_stripe.php:1580
|
|
|
3960 |
msgid "Could not cancel old subscription."
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3964 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
3965 |
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
3966 |
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
@@ -3970,6 +4015,7 @@ msgstr ""
|
|
3970 |
#: classes/gateways/class.pmprogateway_stripe.php:1565
|
3971 |
#: classes/gateways/class.pmprogateway_stripe.php:1569
|
3972 |
#: classes/gateways/class.pmprogateway_stripe.php:1597
|
|
|
3973 |
msgid "Could not find the customer."
|
3974 |
msgstr ""
|
3975 |
|
@@ -3980,7 +4026,7 @@ msgstr ""
|
|
3980 |
#: classes/gateways/class.pmprogateway_twocheckout.php:60
|
3981 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
3982 |
#: paid-memberships-pro.php:132 paid-memberships-pro.php:133
|
3983 |
-
#: paid-memberships-pro.php:134
|
3984 |
msgid "2Checkout"
|
3985 |
msgstr ""
|
3986 |
|
@@ -4339,7 +4385,7 @@ msgstr ""
|
|
4339 |
msgid "Vietnamese Dong"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: includes/functions.php:
|
4343 |
#: includes/functions.php:196 includes/functions.php:200
|
4344 |
#: includes/functions.php:202 includes/functions.php:203
|
4345 |
#: includes/functions.php:204 includes/functions.php:207
|
@@ -4348,7 +4394,7 @@ msgstr ""
|
|
4348 |
msgid "The price for membership is <strong>%s</strong> now"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: includes/functions.php:
|
4352 |
#: includes/functions.php:204 includes/functions.php:205
|
4353 |
#: includes/functions.php:206 includes/functions.php:209
|
4354 |
#: includes/functions.php:245
|
@@ -4356,7 +4402,7 @@ msgstr ""
|
|
4356 |
msgid "<strong>%s</strong> now"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#: includes/functions.php:
|
4360 |
#: includes/functions.php:205 includes/functions.php:211
|
4361 |
#: includes/functions.php:213 includes/functions.php:214
|
4362 |
#: includes/functions.php:215 includes/functions.php:218
|
@@ -4365,12 +4411,12 @@ msgstr ""
|
|
4365 |
msgid " and then <strong>%s per %s for %d more %s</strong>."
|
4366 |
msgstr ""
|
4367 |
|
4368 |
-
#: includes/functions.php:
|
4369 |
#, php-format
|
4370 |
msgid " and then <strong>%s every %d %s for %d more payments</strong>."
|
4371 |
msgstr ""
|
4372 |
|
4373 |
-
#: includes/functions.php:
|
4374 |
#: includes/functions.php:214 includes/functions.php:220
|
4375 |
#: includes/functions.php:222 includes/functions.php:223
|
4376 |
#: includes/functions.php:224 includes/functions.php:227
|
@@ -4379,7 +4425,7 @@ msgstr ""
|
|
4379 |
msgid " and then <strong>%s after %d %s</strong>."
|
4380 |
msgstr ""
|
4381 |
|
4382 |
-
#: includes/functions.php:
|
4383 |
#: includes/functions.php:229 includes/functions.php:230
|
4384 |
#: includes/functions.php:231 includes/functions.php:235
|
4385 |
#: includes/functions.php:271
|
@@ -4387,14 +4433,14 @@ msgstr ""
|
|
4387 |
msgid "The price for membership is <strong>%s per %s</strong>."
|
4388 |
msgstr ""
|
4389 |
|
4390 |
-
#: includes/functions.php:
|
4391 |
#: includes/functions.php:233 includes/functions.php:237
|
4392 |
#: includes/functions.php:273
|
4393 |
#, php-format
|
4394 |
msgid "<strong>%s per %s</strong>."
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
#: includes/functions.php:
|
4398 |
#: includes/functions.php:234 includes/functions.php:235
|
4399 |
#: includes/functions.php:238 includes/functions.php:242
|
4400 |
#: includes/functions.php:278
|
@@ -4402,14 +4448,14 @@ msgstr ""
|
|
4402 |
msgid "The price for membership is <strong>%s every %d %s</strong>."
|
4403 |
msgstr ""
|
4404 |
|
4405 |
-
#: includes/functions.php:
|
4406 |
#: includes/functions.php:240 includes/functions.php:244
|
4407 |
#: includes/functions.php:280
|
4408 |
#, php-format
|
4409 |
msgid "<strong>%s every %d %s</strong>."
|
4410 |
msgstr ""
|
4411 |
|
4412 |
-
#: includes/functions.php:
|
4413 |
#: includes/functions.php:220 includes/functions.php:228
|
4414 |
#: includes/functions.php:238 includes/functions.php:239
|
4415 |
#: includes/functions.php:240 includes/functions.php:242
|
@@ -4419,7 +4465,7 @@ msgstr ""
|
|
4419 |
msgid " and then <strong>%s per %s</strong>."
|
4420 |
msgstr ""
|
4421 |
|
4422 |
-
#: includes/functions.php:
|
4423 |
#: includes/functions.php:224 includes/functions.php:232
|
4424 |
#: includes/functions.php:242 includes/functions.php:243
|
4425 |
#: includes/functions.php:244 includes/functions.php:246
|
@@ -4429,7 +4475,7 @@ msgstr ""
|
|
4429 |
msgid " and then <strong>%s every %d %s</strong>."
|
4430 |
msgstr ""
|
4431 |
|
4432 |
-
#: includes/functions.php:
|
4433 |
#: includes/functions.php:238 includes/functions.php:249
|
4434 |
#: includes/functions.php:260 includes/functions.php:261
|
4435 |
#: includes/functions.php:262 includes/functions.php:264
|
@@ -4438,7 +4484,7 @@ msgstr ""
|
|
4438 |
msgid "After your initial payment, your first payment is Free."
|
4439 |
msgstr ""
|
4440 |
|
4441 |
-
#: includes/functions.php:
|
4442 |
#: includes/functions.php:242 includes/functions.php:253
|
4443 |
#: includes/functions.php:264 includes/functions.php:265
|
4444 |
#: includes/functions.php:266 includes/functions.php:268
|
@@ -4448,7 +4494,7 @@ msgstr ""
|
|
4448 |
msgid "After your initial payment, your first %d payments are Free."
|
4449 |
msgstr ""
|
4450 |
|
4451 |
-
#: includes/functions.php:
|
4452 |
#: includes/functions.php:249 includes/functions.php:260
|
4453 |
#: includes/functions.php:271 includes/functions.php:272
|
4454 |
#: includes/functions.php:273 includes/functions.php:275
|
@@ -4458,7 +4504,7 @@ msgstr ""
|
|
4458 |
msgid "After your initial payment, your first payment will cost %s."
|
4459 |
msgstr ""
|
4460 |
|
4461 |
-
#: includes/functions.php:
|
4462 |
#: includes/functions.php:253 includes/functions.php:264
|
4463 |
#: includes/functions.php:275 includes/functions.php:276
|
4464 |
#: includes/functions.php:277 includes/functions.php:279
|
@@ -4468,7 +4514,7 @@ msgstr ""
|
|
4468 |
msgid "After your initial payment, your first %d payments will cost %s."
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#: includes/functions.php:
|
4472 |
#: includes/functions.php:264 includes/functions.php:275
|
4473 |
#: includes/functions.php:286 includes/functions.php:287
|
4474 |
#: includes/functions.php:288 includes/functions.php:290
|
@@ -4478,7 +4524,7 @@ msgstr ""
|
|
4478 |
msgid "Customers in %s will be charged %s%% tax."
|
4479 |
msgstr ""
|
4480 |
|
4481 |
-
#: includes/functions.php:
|
4482 |
#: includes/functions.php:278 includes/functions.php:289
|
4483 |
#: includes/functions.php:300 includes/functions.php:301
|
4484 |
#: includes/functions.php:302 includes/functions.php:304
|
@@ -4488,7 +4534,7 @@ msgstr ""
|
|
4488 |
msgid "Membership expires after %d %s."
|
4489 |
msgstr ""
|
4490 |
|
4491 |
-
#: includes/functions.php:
|
4492 |
#: includes/functions.php:514 includes/functions.php:525
|
4493 |
#: includes/functions.php:536 includes/functions.php:537
|
4494 |
#: includes/functions.php:538 includes/functions.php:545
|
@@ -4498,7 +4544,7 @@ msgstr ""
|
|
4498 |
msgid "User ID not found."
|
4499 |
msgstr ""
|
4500 |
|
4501 |
-
#: includes/functions.php:
|
4502 |
#: includes/functions.php:531 includes/functions.php:542
|
4503 |
#: includes/functions.php:553 includes/functions.php:554
|
4504 |
#: includes/functions.php:555 includes/functions.php:562
|
@@ -4509,7 +4555,7 @@ msgstr ""
|
|
4509 |
msgid "Invalid level."
|
4510 |
msgstr ""
|
4511 |
|
4512 |
-
#: includes/functions.php:
|
4513 |
#: includes/functions.php:542 includes/functions.php:553
|
4514 |
#: includes/functions.php:564 includes/functions.php:565
|
4515 |
#: includes/functions.php:566 includes/functions.php:573
|
@@ -4520,8 +4566,8 @@ msgstr ""
|
|
4520 |
msgid "not changing?"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
-
#: includes/functions.php:
|
4524 |
-
#: includes/functions.php:
|
4525 |
#: includes/functions.php:559 includes/functions.php:570
|
4526 |
#: includes/functions.php:581 includes/functions.php:582
|
4527 |
#: includes/functions.php:583 includes/functions.php:590
|
@@ -4544,7 +4590,7 @@ msgstr ""
|
|
4544 |
msgid "Error interacting with database"
|
4545 |
msgstr ""
|
4546 |
|
4547 |
-
#: includes/functions.php:
|
4548 |
#: includes/functions.php:629 includes/functions.php:651
|
4549 |
#: includes/functions.php:667 includes/functions.php:668
|
4550 |
#: includes/functions.php:678 includes/functions.php:681
|
@@ -4563,7 +4609,7 @@ msgstr ""
|
|
4563 |
msgid "Membership level not found."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
-
#: includes/functions.php:
|
4567 |
#: includes/functions.php:1101 includes/functions.php:1118
|
4568 |
#: includes/functions.php:1142 includes/functions.php:1143
|
4569 |
#: includes/functions.php:1150 includes/functions.php:1157
|
@@ -4572,7 +4618,7 @@ msgstr ""
|
|
4572 |
msgid "No code was given to check."
|
4573 |
msgstr ""
|
4574 |
|
4575 |
-
#: includes/functions.php:
|
4576 |
#: includes/functions.php:1072 includes/functions.php:1088
|
4577 |
#: includes/functions.php:1099 includes/functions.php:1102
|
4578 |
#: includes/functions.php:1109 includes/functions.php:1110
|
@@ -4584,7 +4630,7 @@ msgstr ""
|
|
4584 |
msgid "The discount code could not be found."
|
4585 |
msgstr ""
|
4586 |
|
4587 |
-
#: includes/functions.php:
|
4588 |
#: includes/functions.php:1088 includes/functions.php:1104
|
4589 |
#: includes/functions.php:1115 includes/functions.php:1118
|
4590 |
#: includes/functions.php:1124 includes/functions.php:1125
|
@@ -4597,7 +4643,7 @@ msgstr ""
|
|
4597 |
msgid "This discount code goes into effect on %s."
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: includes/functions.php:
|
4601 |
#: includes/functions.php:1097 includes/functions.php:1113
|
4602 |
#: includes/functions.php:1124 includes/functions.php:1127
|
4603 |
#: includes/functions.php:1131 includes/functions.php:1132
|
@@ -4610,7 +4656,7 @@ msgstr ""
|
|
4610 |
msgid "This discount code expired on %s."
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: includes/functions.php:
|
4614 |
#: includes/functions.php:1109 includes/functions.php:1125
|
4615 |
#: includes/functions.php:1136 includes/functions.php:1139
|
4616 |
#: includes/functions.php:1141 includes/functions.php:1142
|
@@ -4622,7 +4668,7 @@ msgstr ""
|
|
4622 |
msgid "This discount code is no longer valid."
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: includes/functions.php:
|
4626 |
#: includes/functions.php:1124 includes/functions.php:1140
|
4627 |
#: includes/functions.php:1151 includes/functions.php:1154
|
4628 |
#: includes/functions.php:1155 includes/functions.php:1164
|
@@ -4634,7 +4680,7 @@ msgstr ""
|
|
4634 |
msgid "This discount code does not apply to this membership level."
|
4635 |
msgstr ""
|
4636 |
|
4637 |
-
#: includes/functions.php:
|
4638 |
#: includes/functions.php:1132 includes/functions.php:1148
|
4639 |
#: includes/functions.php:1159 includes/functions.php:1162
|
4640 |
#: includes/functions.php:1172 includes/functions.php:1180
|
@@ -4646,7 +4692,7 @@ msgstr ""
|
|
4646 |
msgid "This discount code is okay."
|
4647 |
msgstr ""
|
4648 |
|
4649 |
-
#: includes/functions.php:
|
4650 |
#: includes/functions.php:1156 includes/functions.php:1172
|
4651 |
#: includes/functions.php:1183 includes/functions.php:1186
|
4652 |
#: includes/functions.php:1196 includes/functions.php:1205
|
@@ -4658,7 +4704,7 @@ msgstr ""
|
|
4658 |
msgid "and"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
-
#: includes/functions.php:
|
4662 |
#: includes/functions.php:1341 includes/functions.php:1361
|
4663 |
#: includes/functions.php:1372 includes/functions.php:1375
|
4664 |
#: includes/functions.php:1385 includes/functions.php:1394
|
@@ -4671,7 +4717,7 @@ msgstr ""
|
|
4671 |
msgid "Sign Up for !!name!! Now"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: includes/functions.php:
|
4675 |
#: includes/functions.php:1347 includes/functions.php:1367
|
4676 |
#: includes/functions.php:1378 includes/functions.php:1381
|
4677 |
#: includes/functions.php:1391 includes/functions.php:1400
|
@@ -4684,7 +4730,7 @@ msgstr ""
|
|
4684 |
msgid "Please specify a level id."
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#: includes/init.php:
|
4688 |
#: includes/init.php:232 includes/init.php:233 includes/init.php:235
|
4689 |
#: includes/init.php:237 includes/init.php:245 includes/init.php:253
|
4690 |
#: includes/profile.php:37 includes/profile.php:39
|
@@ -4826,56 +4872,56 @@ msgid ""
|
|
4826 |
"checkbox is selected below."
|
4827 |
msgstr ""
|
4828 |
|
4829 |
-
#: includes/updates.php:
|
4830 |
msgid "Paid Memberships Pro Data Update Required"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
-
#: includes/updates.php:
|
4834 |
msgid "Start the Update"
|
4835 |
msgstr ""
|
4836 |
|
4837 |
-
#: includes/updates.php:
|
4838 |
msgid "All Paid Memberships Pro updates have finished."
|
4839 |
msgstr ""
|
4840 |
|
4841 |
-
#: includes/
|
4842 |
#: includes/upgradecheck.php:410 includes/upgradecheck.php:422
|
4843 |
#: includes/upgradecheck.php:442 includes/upgradecheck.php:542
|
4844 |
-
#: includes/upgradecheck.php:563
|
4845 |
#, php-format
|
4846 |
msgid ""
|
4847 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
-
#: includes/
|
4851 |
#: includes/upgradecheck.php:413 includes/upgradecheck.php:425
|
4852 |
#: includes/upgradecheck.php:445 includes/upgradecheck.php:545
|
4853 |
-
#: includes/upgradecheck.php:566
|
4854 |
#, php-format
|
4855 |
msgid ""
|
4856 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
|
4857 |
"<a href=\"%s\">Register</a>"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
-
#: includes/
|
4861 |
#: includes/upgradecheck.php:417 includes/upgradecheck.php:429
|
4862 |
#: includes/upgradecheck.php:449 includes/upgradecheck.php:549
|
4863 |
-
#: includes/upgradecheck.php:570
|
4864 |
msgid ""
|
4865 |
"This content is for !!levels!! members only. Visit the site and log in/"
|
4866 |
"register to read."
|
4867 |
msgstr ""
|
4868 |
|
4869 |
-
#: pages/billing.php:
|
4870 |
#, php-format
|
4871 |
msgid "Logged in as <strong>%s</strong>."
|
4872 |
msgstr ""
|
4873 |
|
4874 |
-
#: pages/billing.php:
|
4875 |
msgid "logout"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
-
#: pages/billing.php:
|
4879 |
#: pages/levels.php:35 shortcodes/pmpro_account.php:44
|
4880 |
#: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
|
4881 |
#: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
|
@@ -4885,36 +4931,36 @@ msgstr ""
|
|
4885 |
msgid "Level"
|
4886 |
msgstr ""
|
4887 |
|
4888 |
-
#: pages/billing.php:
|
4889 |
#: pages/billing.php:27
|
4890 |
msgid "Membership Fee"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
-
#: pages/billing.php:
|
4894 |
#: pages/billing.php:31 pages/levels.php:70
|
4895 |
#, php-format
|
4896 |
msgid "%s every %d %s."
|
4897 |
msgstr ""
|
4898 |
|
4899 |
-
#: pages/billing.php:
|
4900 |
#: pages/billing.php:33 pages/levels.php:66
|
4901 |
#, php-format
|
4902 |
msgid "%s per %s."
|
4903 |
msgstr ""
|
4904 |
|
4905 |
-
#: pages/billing.php:
|
4906 |
#: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
|
4907 |
msgid "Duration"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
-
#: pages/billing.php:
|
4911 |
#: pages/billing.php:52
|
4912 |
msgid ""
|
4913 |
"Your payment subscription is managed by PayPal. Please <a href=\"http://www."
|
4914 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
4915 |
msgstr ""
|
4916 |
|
4917 |
-
#: pages/billing.php:
|
4918 |
#: pages/billing.php:69 pages/billing.php:78 pages/checkout.php:305
|
4919 |
#: pages/checkout.php:307 pages/checkout.php:309 pages/checkout.php:318
|
4920 |
#: pages/checkout.php:321 pages/checkout.php:324 pages/checkout.php:326
|
@@ -4922,7 +4968,7 @@ msgstr ""
|
|
4922 |
msgid "First Name"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
-
#: pages/billing.php:
|
4926 |
#: pages/billing.php:73 pages/billing.php:82 pages/checkout.php:309
|
4927 |
#: pages/checkout.php:311 pages/checkout.php:313 pages/checkout.php:322
|
4928 |
#: pages/checkout.php:325 pages/checkout.php:328 pages/checkout.php:330
|
@@ -4930,7 +4976,7 @@ msgstr ""
|
|
4930 |
msgid "Last Name"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
-
#: pages/billing.php:
|
4934 |
#: pages/billing.php:77 pages/billing.php:86 pages/checkout.php:313
|
4935 |
#: pages/checkout.php:315 pages/checkout.php:317 pages/checkout.php:326
|
4936 |
#: pages/checkout.php:329 pages/checkout.php:332 pages/checkout.php:334
|
@@ -4938,7 +4984,7 @@ msgstr ""
|
|
4938 |
msgid "Address 1"
|
4939 |
msgstr ""
|
4940 |
|
4941 |
-
#: pages/billing.php:
|
4942 |
#: pages/billing.php:81 pages/billing.php:90 pages/checkout.php:317
|
4943 |
#: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:330
|
4944 |
#: pages/checkout.php:333 pages/checkout.php:336 pages/checkout.php:338
|
@@ -4946,7 +4992,7 @@ msgstr ""
|
|
4946 |
msgid "Address 2"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
-
#: pages/billing.php:
|
4950 |
#: pages/billing.php:91 pages/billing.php:100 pages/checkout.php:327
|
4951 |
#: pages/checkout.php:329 pages/checkout.php:331 pages/checkout.php:340
|
4952 |
#: pages/checkout.php:343 pages/checkout.php:346 pages/checkout.php:348
|
@@ -4954,7 +5000,7 @@ msgstr ""
|
|
4954 |
msgid "City"
|
4955 |
msgstr ""
|
4956 |
|
4957 |
-
#: pages/billing.php:
|
4958 |
#: pages/billing.php:95 pages/billing.php:104 pages/checkout.php:331
|
4959 |
#: pages/checkout.php:333 pages/checkout.php:335 pages/checkout.php:344
|
4960 |
#: pages/checkout.php:347 pages/checkout.php:350 pages/checkout.php:352
|
@@ -4962,7 +5008,7 @@ msgstr ""
|
|
4962 |
msgid "State"
|
4963 |
msgstr ""
|
4964 |
|
4965 |
-
#: pages/billing.php:
|
4966 |
#: pages/billing.php:99 pages/billing.php:108 pages/checkout.php:335
|
4967 |
#: pages/checkout.php:337 pages/checkout.php:339 pages/checkout.php:348
|
4968 |
#: pages/checkout.php:351 pages/checkout.php:354 pages/checkout.php:356
|
@@ -4970,7 +5016,7 @@ msgstr ""
|
|
4970 |
msgid "Postal Code"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
-
#: pages/billing.php:
|
4974 |
#: pages/billing.php:108 pages/billing.php:117 pages/checkout.php:344
|
4975 |
#: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:357
|
4976 |
#: pages/checkout.php:360 pages/checkout.php:363 pages/checkout.php:365
|
@@ -4978,7 +5024,7 @@ msgstr ""
|
|
4978 |
msgid "City, State Zip"
|
4979 |
msgstr ""
|
4980 |
|
4981 |
-
#: pages/billing.php:
|
4982 |
#: pages/billing.php:161 pages/billing.php:170 pages/checkout.php:397
|
4983 |
#: pages/checkout.php:399 pages/checkout.php:401 pages/checkout.php:410
|
4984 |
#: pages/checkout.php:413 pages/checkout.php:416 pages/checkout.php:418
|
@@ -4986,7 +5032,7 @@ msgstr ""
|
|
4986 |
msgid "Country"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
-
#: pages/billing.php:
|
4990 |
#: pages/billing.php:186 pages/billing.php:195 pages/checkout.php:422
|
4991 |
#: pages/checkout.php:424 pages/checkout.php:426 pages/checkout.php:435
|
4992 |
#: pages/checkout.php:438 pages/checkout.php:441 pages/checkout.php:443
|
@@ -4994,7 +5040,7 @@ msgstr ""
|
|
4994 |
msgid "Phone"
|
4995 |
msgstr ""
|
4996 |
|
4997 |
-
#: pages/billing.php:
|
4998 |
#: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
|
4999 |
#: pages/checkout.php:204 pages/checkout.php:207 pages/checkout.php:209
|
5000 |
#: pages/checkout.php:216 pages/checkout.php:218 pages/checkout.php:220
|
@@ -5004,7 +5050,7 @@ msgstr ""
|
|
5004 |
msgid "E-mail Address"
|
5005 |
msgstr ""
|
5006 |
|
5007 |
-
#: pages/billing.php:
|
5008 |
#: pages/billing.php:201 pages/billing.php:210 pages/checkout.php:445
|
5009 |
#: pages/checkout.php:447 pages/checkout.php:449 pages/checkout.php:458
|
5010 |
#: pages/checkout.php:462 pages/checkout.php:464 pages/checkout.php:466
|
@@ -5012,18 +5058,18 @@ msgstr ""
|
|
5012 |
msgid "Confirm E-mail"
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: pages/billing.php:
|
5016 |
#: pages/billing.php:230 pages/billing.php:231
|
5017 |
msgid "Credit Card Information"
|
5018 |
msgstr ""
|
5019 |
|
5020 |
-
#: pages/billing.php:
|
5021 |
#: pages/billing.php:230 pages/billing.php:232
|
5022 |
#, php-format
|
5023 |
msgid "We accept %s"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
-
#: pages/billing.php:
|
5027 |
#: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
|
5028 |
#: pages/billing.php:360
|
5029 |
msgid ""
|
@@ -5168,20 +5214,20 @@ msgstr ""
|
|
5168 |
msgid "Check Out with a Credit Card Here"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
#: pages/checkout.php:
|
5172 |
#: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
|
5173 |
#: pages/checkout.php:681 pages/checkout.php:690 pages/checkout.php:696
|
5174 |
#, php-format
|
5175 |
msgid "I agree to the %s"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: pages/checkout.php:
|
5179 |
#: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
|
5180 |
#: pages/checkout.php:701 pages/checkout.php:710 pages/checkout.php:716
|
5181 |
msgid "Complete Payment"
|
5182 |
msgstr ""
|
5183 |
|
5184 |
-
#: pages/checkout.php:
|
5185 |
#: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
|
5186 |
#: pages/checkout.php:723 pages/checkout.php:732 pages/checkout.php:738
|
5187 |
msgid "Processing..."
|
@@ -5323,22 +5369,26 @@ msgstr ""
|
|
5323 |
#: adminpages/orders.php:448 paid-memberships-pro.php:115
|
5324 |
#: paid-memberships-pro.php:116 paid-memberships-pro.php:123
|
5325 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
|
|
5326 |
msgid "Testing Only"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
#: paid-memberships-pro.php:131 paid-memberships-pro.php:120
|
5330 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:128
|
5331 |
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
|
|
5332 |
msgid "PayPal Payflow Pro/PayPal Pro"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
#: paid-memberships-pro.php:136 paid-memberships-pro.php:125
|
5336 |
#: paid-memberships-pro.php:126 paid-memberships-pro.php:133
|
5337 |
#: paid-memberships-pro.php:134 paid-memberships-pro.php:135
|
|
|
5338 |
msgid "Cybersource"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
#: paid-memberships-pro.php:157 paid-memberships-pro.php:156
|
|
|
5342 |
msgid "Once a month"
|
5343 |
msgstr ""
|
5344 |
|
@@ -5512,61 +5562,61 @@ msgstr ""
|
|
5512 |
#: preheaders/checkout.php:581 preheaders/checkout.php:550
|
5513 |
#: preheaders/checkout.php:552 preheaders/checkout.php:569
|
5514 |
#: preheaders/checkout.php:571 preheaders/checkout.php:575
|
5515 |
-
#: preheaders/checkout.php:
|
5516 |
-
#: preheaders/checkout.php:
|
5517 |
-
#: preheaders/checkout.php:
|
5518 |
-
#: preheaders/checkout.php:860
|
5519 |
msgid ""
|
5520 |
"Your payment was accepted, but there was an error setting up your account. "
|
5521 |
"Please contact us."
|
5522 |
msgstr ""
|
5523 |
|
5524 |
-
#: preheaders/checkout.php:
|
5525 |
#: preheaders/checkout.php:693 preheaders/checkout.php:710
|
5526 |
#: preheaders/checkout.php:712 preheaders/checkout.php:722
|
5527 |
-
#: preheaders/checkout.php:
|
5528 |
-
#: preheaders/checkout.php:
|
5529 |
-
#: preheaders/checkout.php:
|
5530 |
-
#: preheaders/checkout.php:1046
|
5531 |
msgid ""
|
5532 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
5533 |
"authorized, but we cancelled the order immediately. You should not try to "
|
5534 |
"submit this form again. Please contact the site owner to fix this issue."
|
5535 |
msgstr ""
|
5536 |
|
5537 |
-
#: preheaders/checkout.php:
|
5538 |
#: preheaders/checkout.php:696 preheaders/checkout.php:713
|
5539 |
#: preheaders/checkout.php:715 preheaders/checkout.php:725
|
5540 |
-
#: preheaders/checkout.php:
|
5541 |
-
#: preheaders/checkout.php:
|
5542 |
-
#: preheaders/checkout.php:
|
5543 |
-
#: preheaders/checkout.php:1051
|
5544 |
msgid ""
|
5545 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
5546 |
"was charged, but we couldn't assign your membership. You should not submit "
|
5547 |
"this form again. Please contact the site owner to fix this issue."
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: preheaders/checkout.php:
|
5551 |
#: preheaders/checkout.php:707 preheaders/checkout.php:724
|
5552 |
#: preheaders/checkout.php:726 preheaders/checkout.php:736
|
5553 |
-
#: preheaders/checkout.php:
|
5554 |
-
#: preheaders/checkout.php:
|
5555 |
-
#: preheaders/checkout.php:
|
5556 |
-
#: preheaders/checkout.php:1064
|
5557 |
#, php-format
|
5558 |
msgid ""
|
5559 |
"You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
|
5560 |
"will be processed."
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: preheaders/checkout.php:
|
5564 |
#: preheaders/checkout.php:709 preheaders/checkout.php:726
|
5565 |
#: preheaders/checkout.php:728 preheaders/checkout.php:738
|
5566 |
-
#: preheaders/checkout.php:
|
5567 |
-
#: preheaders/checkout.php:
|
5568 |
-
#: preheaders/checkout.php:
|
5569 |
-
#: preheaders/checkout.php:1066
|
5570 |
msgid "A Payment Gateway must be set up before any payments will be processed."
|
5571 |
msgstr ""
|
5572 |
|
@@ -5576,19 +5626,19 @@ msgstr ""
|
|
5576 |
msgid "Membership expired email sent to %s. "
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: scheduled/crons.php:
|
5580 |
#: scheduled/crons.php:80 scheduled/crons.php:84 scheduled/crons.php:88
|
5581 |
#, php-format
|
5582 |
msgid "Membership expiring email sent to %s. "
|
5583 |
msgstr ""
|
5584 |
|
5585 |
-
#: scheduled/crons.php:
|
5586 |
#: scheduled/crons.php:157 scheduled/crons.php:164
|
5587 |
#, php-format
|
5588 |
msgid "Credit card expiring email sent to %s. "
|
5589 |
msgstr ""
|
5590 |
|
5591 |
-
#: scheduled/crons.php:
|
5592 |
#: scheduled/crons.php:208 scheduled/crons.php:210 scheduled/crons.php:220
|
5593 |
#, php-format
|
5594 |
msgid "Trial ending email sent to %s. "
|
@@ -5607,7 +5657,7 @@ msgstr ""
|
|
5607 |
msgid "The <strong>%s</strong> code has been applied to your order."
|
5608 |
msgstr ""
|
5609 |
|
5610 |
-
#: services/authnet-silent-post.php:
|
5611 |
#: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
|
5612 |
#: services/authnet-silent-post.php:144
|
5613 |
msgid ""
|
@@ -5615,9 +5665,10 @@ msgid ""
|
|
5615 |
"Information From Authorize.net"
|
5616 |
msgstr ""
|
5617 |
|
5618 |
-
#: services/stripe-webhook.php:
|
5619 |
#: services/stripe-webhook.php:194 services/stripe-webhook.php:270
|
5620 |
#: services/stripe-webhook.php:271 services/stripe-webhook.php:272
|
|
|
5621 |
#, php-format
|
5622 |
msgid ""
|
5623 |
"%s has had their payment subscription cancelled by Stripe. Please check that "
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: pmpro\n"
|
8 |
+
"POT-Creation-Date: 2016-04-01 13:22-0400\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
170 |
msgid "WordPress.org"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: adminpages/addons.php:231 shortcodes/pmpro_account.php:146
|
174 |
+
#: adminpages/addons.php:231 adminpages/addons.php:247
|
175 |
msgid "N/A"
|
176 |
msgstr ""
|
177 |
|
287 |
msgid "User Forum"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: adminpages/admin_header.php:150 adminpages/membershiplevels.php:619
|
291 |
#: adminpages/pagesettings.php:70 includes/adminpages.php:69
|
292 |
#: includes/adminpages.php:70 includes/adminpages.php:116
|
293 |
#: includes/metaboxes.php:131 adminpages/admin_header.php:128
|
435 |
msgstr ""
|
436 |
|
437 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
|
438 |
+
#: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:668
|
439 |
#: adminpages/paymentsettings.php:210
|
440 |
#: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:110
|
441 |
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
|
495 |
msgid "multisite only"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:668
|
499 |
#: adminpages/paymentsettings.php:211
|
500 |
#: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:111
|
501 |
#: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
|
581 |
msgstr ""
|
582 |
|
583 |
#: adminpages/discountcodes.php:49 adminpages/discountcodes.php:48
|
584 |
+
#: adminpages/discountcodes.php:49
|
585 |
msgid "Discount code updated successfully."
|
586 |
msgstr ""
|
587 |
|
588 |
#: adminpages/discountcodes.php:56 adminpages/discountcodes.php:55
|
589 |
+
#: adminpages/discountcodes.php:56
|
590 |
msgid "Error updating discount code. That code may already be in use."
|
591 |
msgstr ""
|
592 |
|
593 |
#: adminpages/discountcodes.php:65 adminpages/discountcodes.php:64
|
594 |
+
#: adminpages/discountcodes.php:65
|
595 |
msgid "Discount code added successfully."
|
596 |
msgstr ""
|
597 |
|
598 |
#: adminpages/discountcodes.php:73 adminpages/discountcodes.php:71
|
599 |
+
#: adminpages/discountcodes.php:72 adminpages/discountcodes.php:73
|
600 |
msgid "Error adding discount code. That code may already be in use."
|
601 |
msgstr ""
|
602 |
|
603 |
#: adminpages/discountcodes.php:198 adminpages/discountcodes.php:196
|
604 |
+
#: adminpages/discountcodes.php:197 adminpages/discountcodes.php:198
|
605 |
#, php-format
|
606 |
msgid "Error saving values for the %s level."
|
607 |
msgstr ""
|
608 |
|
609 |
#: adminpages/discountcodes.php:206 adminpages/discountcodes.php:204
|
610 |
+
#: adminpages/discountcodes.php:205 adminpages/discountcodes.php:206
|
611 |
msgid "There were errors updating the level values: "
|
612 |
msgstr ""
|
613 |
|
614 |
#: adminpages/discountcodes.php:239 adminpages/discountcodes.php:234
|
615 |
#: adminpages/discountcodes.php:237 adminpages/discountcodes.php:238
|
616 |
+
#: adminpages/discountcodes.php:239
|
617 |
#, php-format
|
618 |
msgid "Code %s deleted successfully."
|
619 |
msgstr ""
|
620 |
|
621 |
#: adminpages/discountcodes.php:244 adminpages/discountcodes.php:239
|
622 |
#: adminpages/discountcodes.php:242 adminpages/discountcodes.php:243
|
623 |
+
#: adminpages/discountcodes.php:244
|
624 |
msgid ""
|
625 |
"Error deleting discount code. The code was only partially deleted. Please "
|
626 |
"try again."
|
628 |
|
629 |
#: adminpages/discountcodes.php:250 adminpages/discountcodes.php:245
|
630 |
#: adminpages/discountcodes.php:248 adminpages/discountcodes.php:249
|
631 |
+
#: adminpages/discountcodes.php:250
|
632 |
msgid "Error deleting code. Please try again."
|
633 |
msgstr ""
|
634 |
|
635 |
#: adminpages/discountcodes.php:256 adminpages/discountcodes.php:251
|
636 |
#: adminpages/discountcodes.php:254 adminpages/discountcodes.php:255
|
637 |
+
#: adminpages/discountcodes.php:256
|
638 |
msgid "Code not found."
|
639 |
msgstr ""
|
640 |
|
641 |
#: adminpages/discountcodes.php:269 adminpages/discountcodes.php:264
|
642 |
#: adminpages/discountcodes.php:267 adminpages/discountcodes.php:268
|
643 |
+
#: adminpages/discountcodes.php:269
|
644 |
msgid "Edit Discount Code"
|
645 |
msgstr ""
|
646 |
|
647 |
#: adminpages/discountcodes.php:271 adminpages/discountcodes.php:559
|
648 |
#: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
|
649 |
+
#: adminpages/discountcodes.php:270 adminpages/discountcodes.php:271
|
650 |
+
#: adminpages/discountcodes.php:526 adminpages/discountcodes.php:529
|
651 |
+
#: adminpages/discountcodes.php:557 adminpages/discountcodes.php:558
|
652 |
+
#: adminpages/discountcodes.php:559
|
653 |
msgid "Add New Discount Code"
|
654 |
msgstr ""
|
655 |
|
656 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:587
|
657 |
+
#: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:637
|
658 |
#: adminpages/memberslist.php:164 adminpages/orders.php:937
|
659 |
#: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
|
660 |
#: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
|
661 |
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
|
662 |
+
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:547
|
663 |
+
#: adminpages/discountcodes.php:557 adminpages/discountcodes.php:585
|
664 |
+
#: adminpages/discountcodes.php:586 adminpages/discountcodes.php:587
|
665 |
#: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
|
666 |
#: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:505
|
667 |
#: adminpages/membershiplevels.php:511 adminpages/membershiplevels.php:513
|
680 |
|
681 |
#: adminpages/discountcodes.php:312 adminpages/orders.php:333
|
682 |
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
683 |
+
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
|
684 |
+
#: adminpages/orders.php:211 adminpages/orders.php:261
|
685 |
+
#: adminpages/orders.php:333 adminpages/orders.php:362
|
686 |
msgid "This will be generated when you save."
|
687 |
msgstr ""
|
688 |
|
689 |
#: adminpages/discountcodes.php:316 adminpages/discountcodes.php:588
|
690 |
#: adminpages/orders.php:337 adminpages/orders.php:938
|
691 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
692 |
+
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
|
693 |
+
#: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
|
694 |
+
#: adminpages/discountcodes.php:586 adminpages/discountcodes.php:587
|
695 |
+
#: adminpages/discountcodes.php:588 adminpages/orders.php:215
|
696 |
#: adminpages/orders.php:265 adminpages/orders.php:337
|
697 |
#: adminpages/orders.php:366 adminpages/orders.php:598
|
698 |
#: adminpages/orders.php:901 adminpages/orders.php:911
|
702 |
|
703 |
#: adminpages/discountcodes.php:354 adminpages/discountcodes.php:349
|
704 |
#: adminpages/discountcodes.php:352 adminpages/discountcodes.php:353
|
705 |
+
#: adminpages/discountcodes.php:354
|
706 |
msgid "Start Date"
|
707 |
msgstr ""
|
708 |
|
709 |
#: adminpages/discountcodes.php:372
|
710 |
+
#: classes/gateways/class.pmprogateway_braintree.php:326
|
711 |
+
#: classes/gateways/class.pmprogateway_stripe.php:498 pages/billing.php:268
|
712 |
#: pages/checkout.php:575 adminpages/discountcodes.php:367
|
713 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
714 |
+
#: adminpages/discountcodes.php:372
|
715 |
#: classes/gateways/class.pmprogateway_braintree.php:308
|
716 |
#: classes/gateways/class.pmprogateway_braintree.php:321
|
717 |
#: classes/gateways/class.pmprogateway_braintree.php:323
|
729 |
|
730 |
#: adminpages/discountcodes.php:390 adminpages/discountcodes.php:591
|
731 |
#: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
|
732 |
+
#: adminpages/discountcodes.php:389 adminpages/discountcodes.php:390
|
733 |
+
#: adminpages/discountcodes.php:551 adminpages/discountcodes.php:561
|
734 |
+
#: adminpages/discountcodes.php:589 adminpages/discountcodes.php:590
|
735 |
+
#: adminpages/discountcodes.php:591
|
736 |
msgid "Uses"
|
737 |
msgstr ""
|
738 |
|
739 |
#: adminpages/discountcodes.php:393 adminpages/discountcodes.php:388
|
740 |
#: adminpages/discountcodes.php:391 adminpages/discountcodes.php:392
|
741 |
+
#: adminpages/discountcodes.php:393
|
742 |
msgid "Leave blank for unlimited uses."
|
743 |
msgstr ""
|
744 |
|
745 |
#: adminpages/discountcodes.php:402 adminpages/discountcodes.php:400
|
746 |
+
#: adminpages/discountcodes.php:401 adminpages/discountcodes.php:402
|
747 |
msgid "Which Levels Will This Code Apply To?"
|
748 |
msgstr ""
|
749 |
|
750 |
#: adminpages/discountcodes.php:432 adminpages/membershiplevels.php:341
|
751 |
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
|
752 |
+
#: adminpages/discountcodes.php:431 adminpages/discountcodes.php:432
|
753 |
+
#: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:339
|
754 |
+
#: adminpages/membershiplevels.php:341 adminpages/membershiplevels.php:342
|
755 |
+
#: adminpages/membershiplevels.php:507 adminpages/membershiplevels.php:513
|
756 |
+
#: adminpages/membershiplevels.php:515 adminpages/membershiplevels.php:542
|
757 |
+
#: pages/levels.php:14
|
758 |
msgid "Initial Payment"
|
759 |
msgstr ""
|
760 |
|
761 |
#: adminpages/discountcodes.php:443 adminpages/membershiplevels.php:352
|
762 |
#: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
|
763 |
#: adminpages/discountcodes.php:441 adminpages/discountcodes.php:442
|
764 |
+
#: adminpages/discountcodes.php:443 adminpages/membershiplevels.php:338
|
765 |
+
#: adminpages/membershiplevels.php:340 adminpages/membershiplevels.php:350
|
766 |
+
#: adminpages/membershiplevels.php:352 adminpages/membershiplevels.php:353
|
767 |
msgid "The initial amount collected at registration."
|
768 |
msgstr ""
|
769 |
|
770 |
#: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:356
|
771 |
#: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
|
772 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:447
|
773 |
+
#: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:342
|
774 |
+
#: adminpages/membershiplevels.php:344 adminpages/membershiplevels.php:354
|
775 |
+
#: adminpages/membershiplevels.php:356 adminpages/membershiplevels.php:357
|
776 |
msgid "Recurring Subscription"
|
777 |
msgstr ""
|
778 |
|
779 |
#: adminpages/discountcodes.php:449 adminpages/membershiplevels.php:357
|
780 |
#: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
|
781 |
#: adminpages/discountcodes.php:447 adminpages/discountcodes.php:448
|
782 |
+
#: adminpages/discountcodes.php:449 adminpages/membershiplevels.php:343
|
783 |
+
#: adminpages/membershiplevels.php:345 adminpages/membershiplevels.php:355
|
784 |
+
#: adminpages/membershiplevels.php:357 adminpages/membershiplevels.php:358
|
785 |
msgid "Check if this level has a recurring subscription payment."
|
786 |
msgstr ""
|
787 |
|
788 |
#: adminpages/discountcodes.php:453 adminpages/membershiplevels.php:361
|
789 |
#: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
|
790 |
+
#: adminpages/discountcodes.php:452 adminpages/discountcodes.php:453
|
791 |
+
#: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:349
|
792 |
+
#: adminpages/membershiplevels.php:359 adminpages/membershiplevels.php:361
|
793 |
+
#: adminpages/membershiplevels.php:362
|
794 |
msgid "Billing Amount"
|
795 |
msgstr ""
|
796 |
|
797 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
798 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
799 |
+
#: classes/gateways/class.pmprogateway_stripe.php:566
|
800 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
801 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
802 |
+
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
|
803 |
+
#: adminpages/discountcodes.php:521 adminpages/discountcodes.php:522
|
804 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
805 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
806 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
816 |
|
817 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
818 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
819 |
+
#: classes/gateways/class.pmprogateway_stripe.php:566
|
820 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
821 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
822 |
+
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
|
823 |
+
#: adminpages/discountcodes.php:521 adminpages/discountcodes.php:522
|
824 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
825 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
826 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
836 |
|
837 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
838 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
839 |
+
#: classes/gateways/class.pmprogateway_stripe.php:566
|
840 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
841 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
842 |
+
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
|
843 |
+
#: adminpages/discountcodes.php:521 adminpages/discountcodes.php:522
|
844 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
845 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
846 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
856 |
|
857 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
858 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
859 |
+
#: classes/gateways/class.pmprogateway_stripe.php:566
|
860 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
861 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
862 |
+
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
|
863 |
+
#: adminpages/discountcodes.php:521 adminpages/discountcodes.php:522
|
864 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
865 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
866 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
877 |
#: adminpages/discountcodes.php:476 adminpages/membershiplevels.php:385
|
878 |
#: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
|
879 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:475
|
880 |
+
#: adminpages/discountcodes.php:476 adminpages/membershiplevels.php:362
|
881 |
+
#: adminpages/membershiplevels.php:364 adminpages/membershiplevels.php:383
|
882 |
+
#: adminpages/membershiplevels.php:385 adminpages/membershiplevels.php:386
|
883 |
msgid "The amount to be billed one cycle after the initial payment."
|
884 |
msgstr ""
|
885 |
|
886 |
#: adminpages/discountcodes.php:481 adminpages/membershiplevels.php:403
|
887 |
#: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
|
888 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:480
|
889 |
+
#: adminpages/discountcodes.php:481 adminpages/membershiplevels.php:380
|
890 |
+
#: adminpages/membershiplevels.php:382 adminpages/membershiplevels.php:401
|
891 |
+
#: adminpages/membershiplevels.php:403 adminpages/membershiplevels.php:404
|
892 |
msgid "Billing Cycle Limit"
|
893 |
msgstr ""
|
894 |
|
895 |
#: adminpages/discountcodes.php:484 adminpages/membershiplevels.php:407
|
896 |
#: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
|
897 |
#: adminpages/discountcodes.php:482 adminpages/discountcodes.php:483
|
898 |
+
#: adminpages/discountcodes.php:484 adminpages/membershiplevels.php:384
|
899 |
+
#: adminpages/membershiplevels.php:386 adminpages/membershiplevels.php:405
|
900 |
+
#: adminpages/membershiplevels.php:407 adminpages/membershiplevels.php:408
|
901 |
msgid ""
|
902 |
"The <strong>total</strong> number of recurring billing cycles for this "
|
903 |
"level, including the trial period (if applicable) but not including the "
|
907 |
#: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:416
|
908 |
#: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
|
909 |
#: adminpages/discountcodes.php:487 adminpages/discountcodes.php:488
|
910 |
+
#: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:393
|
911 |
+
#: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:414
|
912 |
+
#: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:417
|
913 |
msgid "Custom Trial"
|
914 |
msgstr ""
|
915 |
|
916 |
#: adminpages/discountcodes.php:490 adminpages/membershiplevels.php:418
|
917 |
#: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
|
918 |
#: adminpages/discountcodes.php:488 adminpages/discountcodes.php:489
|
919 |
+
#: adminpages/discountcodes.php:490 adminpages/membershiplevels.php:394
|
920 |
+
#: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
|
921 |
+
#: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
|
922 |
+
#: adminpages/membershiplevels.php:419
|
923 |
msgid "Check to add a custom trial period."
|
924 |
msgstr ""
|
925 |
|
926 |
#: adminpages/discountcodes.php:494 adminpages/membershiplevels.php:427
|
927 |
#: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
|
928 |
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:493
|
929 |
+
#: adminpages/discountcodes.php:494 adminpages/membershiplevels.php:398
|
930 |
+
#: adminpages/membershiplevels.php:404 adminpages/membershiplevels.php:406
|
931 |
+
#: adminpages/membershiplevels.php:425 adminpages/membershiplevels.php:427
|
932 |
+
#: adminpages/membershiplevels.php:428
|
933 |
msgid "Trial Billing Amount"
|
934 |
msgstr ""
|
935 |
|
936 |
#: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:438
|
937 |
#: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
|
938 |
#: adminpages/discountcodes.php:503 adminpages/discountcodes.php:504
|
939 |
+
#: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:401
|
940 |
+
#: adminpages/membershiplevels.php:407 adminpages/membershiplevels.php:409
|
941 |
+
#: adminpages/membershiplevels.php:436 adminpages/membershiplevels.php:438
|
942 |
+
#: adminpages/membershiplevels.php:439
|
943 |
msgid "for the first"
|
944 |
msgstr ""
|
945 |
|
946 |
#: adminpages/discountcodes.php:507 adminpages/membershiplevels.php:440
|
947 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
|
948 |
#: adminpages/discountcodes.php:505 adminpages/discountcodes.php:506
|
949 |
+
#: adminpages/discountcodes.php:507 adminpages/membershiplevels.php:403
|
950 |
+
#: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:411
|
951 |
+
#: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:440
|
952 |
+
#: adminpages/membershiplevels.php:441
|
953 |
msgid "subscription payments"
|
954 |
msgstr ""
|
955 |
|
956 |
#: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:469
|
957 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
|
958 |
#: adminpages/discountcodes.php:510 adminpages/discountcodes.php:511
|
959 |
+
#: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:431
|
960 |
+
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:439
|
961 |
+
#: adminpages/membershiplevels.php:466 adminpages/membershiplevels.php:467
|
962 |
+
#: adminpages/membershiplevels.php:469 adminpages/membershiplevels.php:470
|
963 |
msgid "Membership Expiration"
|
964 |
msgstr ""
|
965 |
|
966 |
#: adminpages/discountcodes.php:513 adminpages/membershiplevels.php:470
|
967 |
#: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
|
968 |
+
#: adminpages/discountcodes.php:512 adminpages/discountcodes.php:513
|
969 |
+
#: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:438
|
970 |
+
#: adminpages/membershiplevels.php:440 adminpages/membershiplevels.php:467
|
971 |
+
#: adminpages/membershiplevels.php:468 adminpages/membershiplevels.php:470
|
972 |
+
#: adminpages/membershiplevels.php:471
|
973 |
msgid "Check this to set when membership access expires."
|
974 |
msgstr ""
|
975 |
|
976 |
#: adminpages/discountcodes.php:517 adminpages/membershiplevels.php:474
|
977 |
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
|
978 |
#: adminpages/discountcodes.php:515 adminpages/discountcodes.php:516
|
979 |
+
#: adminpages/discountcodes.php:517 adminpages/membershiplevels.php:436
|
980 |
+
#: adminpages/membershiplevels.php:442 adminpages/membershiplevels.php:444
|
981 |
+
#: adminpages/membershiplevels.php:471 adminpages/membershiplevels.php:472
|
982 |
+
#: adminpages/membershiplevels.php:474 adminpages/membershiplevels.php:475
|
983 |
msgid "Expires In"
|
984 |
msgstr ""
|
985 |
|
986 |
#: adminpages/discountcodes.php:530 adminpages/membershiplevels.php:487
|
987 |
#: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
|
988 |
+
#: adminpages/discountcodes.php:529 adminpages/discountcodes.php:530
|
989 |
+
#: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:455
|
990 |
+
#: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:484
|
991 |
+
#: adminpages/membershiplevels.php:485 adminpages/membershiplevels.php:487
|
992 |
+
#: adminpages/membershiplevels.php:488
|
993 |
msgid ""
|
994 |
"Set the duration of membership access. Note that the any future payments "
|
995 |
"(recurring subscription, if any) will be cancelled when the membership "
|
998 |
|
999 |
#: adminpages/discountcodes.php:558 adminpages/discountcodes.php:525
|
1000 |
#: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
|
1001 |
+
#: adminpages/discountcodes.php:557 adminpages/discountcodes.php:558
|
1002 |
msgid "Memberships Discount Codes"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
#: adminpages/discountcodes.php:568 adminpages/discountcodes.php:535
|
1006 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
|
1007 |
+
#: adminpages/discountcodes.php:567 adminpages/discountcodes.php:568
|
1008 |
msgid "Search Discount Codes"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
#: adminpages/discountcodes.php:571 adminpages/reports/login.php:99
|
1012 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
|
1013 |
#: adminpages/discountcodes.php:569 adminpages/discountcodes.php:570
|
1014 |
+
#: adminpages/discountcodes.php:571 adminpages/reports/login.php:81
|
1015 |
+
#: adminpages/reports/login.php:83 adminpages/reports/login.php:99
|
1016 |
msgid "Search"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
#: adminpages/discountcodes.php:589 adminpages/discountcodes.php:549
|
1020 |
#: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
|
1021 |
+
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
|
1022 |
msgid "Starts"
|
1023 |
msgstr ""
|
1024 |
|
1026 |
#: adminpages/reports/login.php:163 includes/profile.php:107
|
1027 |
#: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
|
1028 |
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
|
1029 |
+
#: adminpages/discountcodes.php:590 adminpages/memberslist.php:121
|
1030 |
+
#: adminpages/memberslist.php:159 adminpages/memberslist.php:169
|
1031 |
+
#: adminpages/memberslist.php:179 adminpages/reports/login.php:145
|
1032 |
+
#: adminpages/reports/login.php:147 adminpages/reports/login.php:163
|
1033 |
+
#: includes/profile.php:98 includes/profile.php:102 includes/profile.php:107
|
1034 |
+
#: includes/profile.php:118 includes/profile.php:120
|
1035 |
msgid "Expires"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: adminpages/discountcodes.php:592 adminpages/discountcodes.php:552
|
1039 |
#: adminpages/discountcodes.php:562 adminpages/discountcodes.php:590
|
1040 |
+
#: adminpages/discountcodes.php:591 adminpages/discountcodes.php:592
|
1041 |
msgid "Levels"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
#: adminpages/discountcodes.php:604 adminpages/discountcodes.php:570
|
1045 |
#: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
|
1046 |
+
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:604
|
1047 |
msgid "Create your first discount code now"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: adminpages/discountcodes.php:604 adminpages/discountcodes.php:570
|
1051 |
#: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
|
1052 |
+
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:604
|
1053 |
msgid ""
|
1054 |
"Discount codes allow you to offer your memberships at discounted prices to "
|
1055 |
"select customers."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:670
|
1059 |
#: adminpages/orders.php:1021 adminpages/discountcodes.php:614
|
1060 |
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
1061 |
#: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
|
1062 |
+
#: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:564
|
1063 |
+
#: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
|
1064 |
+
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
|
1065 |
+
#: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
|
1066 |
+
#: adminpages/membershiplevels.php:670 adminpages/orders.php:658
|
1067 |
+
#: adminpages/orders.php:961 adminpages/orders.php:979
|
1068 |
+
#: adminpages/orders.php:989 adminpages/orders.php:992
|
1069 |
+
#: adminpages/orders.php:1021 adminpages/orders.php:1050
|
1070 |
msgid "edit"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
#: adminpages/discountcodes.php:653 adminpages/discountcodes.php:617
|
1074 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
1075 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
1076 |
+
#: adminpages/discountcodes.php:653
|
1077 |
#, php-format
|
1078 |
msgid ""
|
1079 |
"Are you sure you want to delete the %s discount code? The subscriptions for "
|
1081 |
"code anymore."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:670
|
1085 |
#: adminpages/orders.php:1027 adminpages/discountcodes.php:617
|
1086 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
1087 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
1088 |
+
#: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:566
|
1089 |
+
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
|
1090 |
+
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
|
1091 |
+
#: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
|
1092 |
+
#: adminpages/membershiplevels.php:670 adminpages/orders.php:664
|
1093 |
+
#: adminpages/orders.php:967 adminpages/orders.php:985
|
1094 |
+
#: adminpages/orders.php:995 adminpages/orders.php:998
|
1095 |
+
#: adminpages/orders.php:1027 adminpages/orders.php:1056
|
1096 |
msgid "delete"
|
1097 |
msgstr ""
|
1098 |
|
1265 |
msgid "Add New Membership Level"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:638
|
1269 |
#: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
|
1270 |
#: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
|
1271 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
|
1282 |
msgid "Confirmation Message"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:639
|
1286 |
#: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
|
1287 |
#: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:338
|
1288 |
#: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:585
|
1291 |
msgstr ""
|
1292 |
|
1293 |
#: adminpages/membershiplevels.php:372
|
1294 |
+
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1295 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
1296 |
#: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
|
1297 |
#: adminpages/membershiplevels.php:373
|
1441 |
msgid "Categories"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:516
|
1445 |
#: adminpages/membershiplevels.php:517
|
1446 |
msgid "Save Level"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: adminpages/membershiplevels.php:518 adminpages/orders.php:633
|
1450 |
+
#: pages/billing.php:348 pages/cancel.php:71 shortcodes/pmpro_account.php:73
|
1451 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
|
1452 |
#: adminpages/orders.php:511 adminpages/orders.php:561
|
1453 |
#: adminpages/orders.php:633 adminpages/orders.php:662 pages/account.php:44
|
1458 |
msgid "Cancel"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: adminpages/membershiplevels.php:619 adminpages/membershiplevels.php:490
|
1462 |
#: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
|
1463 |
#: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
|
1464 |
#: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:618
|
1466 |
msgid "Add New Level"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
|
1470 |
#: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
|
1471 |
#: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
|
1472 |
#: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
|
1478 |
msgid "Search Levels"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: adminpages/membershiplevels.php:631 adminpages/membershiplevels.php:579
|
1482 |
#: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:631
|
1483 |
msgid "Drag and drop membership levels to reorder them on the Levels page."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: adminpages/membershiplevels.php:640 pages/cancel.php:53
|
1487 |
#: pages/confirmation.php:83 pages/invoice.php:70
|
1488 |
#: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
|
1489 |
#: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
|
1495 |
msgid "Expiration"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:511
|
1499 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
|
1500 |
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
|
1501 |
#: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:640
|
1503 |
msgid "Allow Signups"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: adminpages/membershiplevels.php:656 adminpages/membershiplevels.php:534
|
1507 |
#: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
|
1508 |
#: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
|
1509 |
#: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:655
|
1511 |
msgid "FREE"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: adminpages/membershiplevels.php:665 adminpages/membershiplevels.php:560
|
1515 |
#: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
|
1516 |
#: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
|
1517 |
#: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:664
|
1519 |
msgid "After"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: adminpages/membershiplevels.php:670 adminpages/membershiplevels.php:566
|
1523 |
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
|
1524 |
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
|
1525 |
#: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
|
1529 |
"be cancelled."
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: adminpages/membershiplevels.php:670 adminpages/orders.php:1024
|
1533 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
|
1534 |
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
|
1535 |
#: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
|
1565 |
#: adminpages/reports/login.php:67 adminpages/reports/login.php:83
|
1566 |
#: adminpages/reports/memberships.php:256
|
1567 |
#: adminpages/reports/memberships.php:263
|
1568 |
+
#: adminpages/reports/memberships.php:276
|
1569 |
#: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
|
1570 |
#: adminpages/reports/sales.php:193 adminpages/reports/sales.php:194
|
1571 |
#: adminpages/reports/sales.php:202
|
1578 |
#: adminpages/reports/login.php:69 adminpages/reports/login.php:85
|
1579 |
#: adminpages/reports/memberships.php:281
|
1580 |
#: adminpages/reports/memberships.php:290
|
1581 |
+
#: adminpages/reports/memberships.php:303
|
1582 |
#: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:208
|
1583 |
#: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
|
1584 |
#: adminpages/reports/sales.php:225
|
1635 |
msgid "Last Name"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: adminpages/memberslist.php:170 pages/billing.php:74 pages/checkout.php:319
|
1639 |
#: pages/confirmation.php:61 pages/invoice.php:48
|
1640 |
#: adminpages/memberslist.php:117 adminpages/memberslist.php:150
|
1641 |
#: adminpages/memberslist.php:160 adminpages/memberslist.php:170
|
1853 |
msgstr ""
|
1854 |
|
1855 |
#: adminpages/orders.php:461
|
1856 |
+
#: classes/gateways/class.pmprogateway_braintree.php:309
|
1857 |
+
#: classes/gateways/class.pmprogateway_stripe.php:450 pages/billing.php:253
|
1858 |
#: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
|
1859 |
#: adminpages/orders.php:461 adminpages/orders.php:490
|
1860 |
#: classes/gateways/class.pmprogateway_braintree.php:291
|
2111 |
msgid "User"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: adminpages/orders.php:941 includes/init.php:243 includes/profile.php:27
|
2115 |
#: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
|
2116 |
#: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
|
2117 |
#: adminpages/orders.php:601 adminpages/orders.php:904
|
2436 |
msgid "Sales Tax"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: adminpages/paymentsettings.php:188 pages/billing.php:94
|
2440 |
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
|
2441 |
#: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
|
2442 |
#: adminpages/paymentsettings.php:445 pages/billing.php:78
|
2622 |
#: adminpages/reports/memberships.php:18
|
2623 |
#: adminpages/reports/memberships.php:252
|
2624 |
#: adminpages/reports/memberships.php:259
|
2625 |
+
#: adminpages/reports/memberships.php:272
|
2626 |
#: adminpages/reports/memberships.php:288
|
2627 |
msgid "Membership Stats"
|
2628 |
msgstr ""
|
2645 |
#: adminpages/reports/memberships.php:278 adminpages/reports/sales.php:204
|
2646 |
#: adminpages/reports/memberships.php:258
|
2647 |
#: adminpages/reports/memberships.php:265
|
2648 |
+
#: adminpages/reports/memberships.php:278
|
2649 |
#: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:187
|
2650 |
#: adminpages/reports/sales.php:195 adminpages/reports/sales.php:196
|
2651 |
#: adminpages/reports/sales.php:204
|
2655 |
#: adminpages/reports/memberships.php:279 adminpages/reports/sales.php:205
|
2656 |
#: adminpages/reports/memberships.php:259
|
2657 |
#: adminpages/reports/memberships.php:266
|
2658 |
+
#: adminpages/reports/memberships.php:279
|
2659 |
#: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:188
|
2660 |
#: adminpages/reports/sales.php:196 adminpages/reports/sales.php:197
|
2661 |
#: adminpages/reports/sales.php:205
|
2665 |
#: adminpages/reports/memberships.php:280 adminpages/reports/sales.php:206
|
2666 |
#: adminpages/reports/memberships.php:260
|
2667 |
#: adminpages/reports/memberships.php:267
|
2668 |
+
#: adminpages/reports/memberships.php:280
|
2669 |
#: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:189
|
2670 |
#: adminpages/reports/sales.php:197 adminpages/reports/sales.php:198
|
2671 |
#: adminpages/reports/sales.php:206
|
2674 |
|
2675 |
#: adminpages/reports/memberships.php:283
|
2676 |
#: adminpages/reports/memberships.php:270
|
2677 |
+
#: adminpages/reports/memberships.php:283
|
2678 |
msgid "Signups vs. All Cancellations"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
#: adminpages/reports/memberships.php:284
|
2682 |
#: adminpages/reports/memberships.php:263
|
2683 |
#: adminpages/reports/memberships.php:271
|
2684 |
+
#: adminpages/reports/memberships.php:284
|
2685 |
#: adminpages/reports/memberships.php:299
|
2686 |
msgid "Signups vs. Cancellations"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
#: adminpages/reports/memberships.php:285
|
2690 |
#: adminpages/reports/memberships.php:272
|
2691 |
+
#: adminpages/reports/memberships.php:285
|
2692 |
msgid "Signups vs. Expirations"
|
2693 |
msgstr ""
|
2694 |
|
2702 |
#: adminpages/reports/memberships.php:277
|
2703 |
#: adminpages/reports/memberships.php:279
|
2704 |
#: adminpages/reports/memberships.php:288
|
2705 |
+
#: adminpages/reports/memberships.php:290
|
2706 |
+
#: adminpages/reports/memberships.php:301
|
2707 |
#: adminpages/reports/memberships.php:304
|
2708 |
#: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:195
|
2709 |
#: adminpages/reports/sales.php:203 adminpages/reports/sales.php:204
|
2716 |
#: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:239
|
2717 |
#: adminpages/reports/memberships.php:295
|
2718 |
#: adminpages/reports/memberships.php:304
|
2719 |
+
#: adminpages/reports/memberships.php:317
|
2720 |
#: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:222
|
2721 |
#: adminpages/reports/sales.php:230 adminpages/reports/sales.php:231
|
2722 |
#: adminpages/reports/sales.php:239
|
2789 |
msgid "Subtotal"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
+
#: adminpages/updates.php:14 adminpages/updates.php:11
|
2793 |
msgid "Updating Paid Memberships Pro"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: adminpages/updates.php:21 adminpages/updates.php:18
|
2797 |
msgid "Updates are processing. This may take a few minutes to complete."
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: adminpages/updates.php:27 adminpages/updates.php:23
|
2801 |
msgid "Update complete."
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: classes/class.memberorder.php:699 classes/class.memberorder.php:553
|
2805 |
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
2806 |
#: classes/class.memberorder.php:573 classes/class.memberorder.php:644
|
2807 |
#: classes/class.memberorder.php:697 includes/cleanup.php:24
|
2840 |
|
2841 |
#: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
|
2842 |
#: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
|
2843 |
+
#: classes/class.pmproemail.php:346 classes/class.pmproemail.php:659
|
2844 |
+
#: classes/gateways/class.pmprogateway_braintree.php:368
|
2845 |
+
#: classes/gateways/class.pmprogateway_stripe.php:540 pages/checkout.php:76
|
2846 |
+
#: pages/checkout.php:86 pages/checkout.php:617 pages/confirmation.php:52
|
2847 |
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
2848 |
#: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
|
2849 |
#: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
|
2877 |
msgstr ""
|
2878 |
|
2879 |
#: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
|
2880 |
+
#: classes/class.pmproemail.php:665 classes/class.pmproemail.php:241
|
2881 |
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
2882 |
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
|
2883 |
#: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
|
2927 |
msgid "Credit Card on File Expiring Soon at %s"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: classes/class.pmproemail.php:619 classes/class.pmproemail.php:501
|
2931 |
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
2932 |
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
|
2933 |
#, php-format
|
2934 |
msgid "INVOICE for %s membership"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
+
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:563
|
2938 |
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
2939 |
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
|
2940 |
#, php-format
|
2941 |
msgid "Your trial at %s is ending soon"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: classes/class.pmproemail.php:724 classes/class.pmproemail.php:596
|
2945 |
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
2946 |
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
|
2947 |
#, php-format
|
2948 |
msgid "Your membership at %s has ended"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: classes/class.pmproemail.php:749 classes/class.pmproemail.php:621
|
2952 |
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
2953 |
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
|
2954 |
#, php-format
|
2955 |
msgid "Your membership at %s will end soon"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:641
|
2959 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
2960 |
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
|
2961 |
#, php-format
|
2962 |
msgid "Your membership at %s has been changed"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
+
#: classes/class.pmproemail.php:773 classes/class.pmproemail.php:811
|
2966 |
#: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
|
2967 |
#: classes/class.pmproemail.php:771 classes/class.pmproemail.php:800
|
2968 |
#: classes/class.pmproemail.php:809
|
2970 |
msgid "The new level is %s"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: classes/class.pmproemail.php:775 classes/class.pmproemail.php:647
|
2974 |
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
2975 |
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
|
2976 |
msgid "Your membership has been cancelled"
|
2977 |
msgstr ""
|
2978 |
|
2979 |
+
#: classes/class.pmproemail.php:779 classes/class.pmproemail.php:817
|
2980 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
2981 |
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
2982 |
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
|
2986 |
msgid "This membership will expire on %s"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
+
#: classes/class.pmproemail.php:783 classes/class.pmproemail.php:821
|
2990 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
2991 |
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
2992 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
|
2995 |
msgid "This membership does not expire"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: classes/class.pmproemail.php:807 classes/class.pmproemail.php:679
|
2999 |
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
3000 |
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
|
3001 |
#, php-format
|
3002 |
msgid "Membership for %s at %s has been changed"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: classes/class.pmproemail.php:813 classes/class.pmproemail.php:799
|
3006 |
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
|
3007 |
msgid "Membership has been cancelled"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: classes/class.pmproemail.php:850 classes/class.pmproemail.php:848
|
3011 |
msgid "Invoice for Order #: "
|
3012 |
msgstr ""
|
3013 |
|
3103 |
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
3104 |
#: paid-memberships-pro.php:122 paid-memberships-pro.php:123
|
3105 |
#: paid-memberships-pro.php:130 paid-memberships-pro.php:131
|
3106 |
+
#: paid-memberships-pro.php:132 paid-memberships-pro.php:133
|
3107 |
msgid "Authorize.net"
|
3108 |
msgstr ""
|
3109 |
|
3160 |
#: classes/gateways/class.pmprogateway_braintree.php:76
|
3161 |
#: paid-memberships-pro.php:123 paid-memberships-pro.php:124
|
3162 |
#: paid-memberships-pro.php:131 paid-memberships-pro.php:132
|
3163 |
+
#: paid-memberships-pro.php:133 paid-memberships-pro.php:134
|
3164 |
msgid "Braintree Payments"
|
3165 |
msgstr ""
|
3166 |
|
3228 |
msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: classes/gateways/class.pmprogateway_braintree.php:286
|
3232 |
+
#: classes/gateways/class.pmprogateway_stripe.php:427 pages/checkout.php:503
|
3233 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
3234 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
3235 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
3244 |
msgid "Payment Information"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: classes/gateways/class.pmprogateway_braintree.php:287
|
3248 |
+
#: classes/gateways/class.pmprogateway_stripe.php:428 pages/checkout.php:504
|
3249 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
3250 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
3251 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
3261 |
msgid "We Accept %s"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: classes/gateways/class.pmprogateway_braintree.php:321
|
3265 |
+
#: classes/gateways/class.pmprogateway_stripe.php:493 pages/billing.php:263
|
3266 |
#: pages/checkout.php:570
|
3267 |
#: classes/gateways/class.pmprogateway_braintree.php:303
|
3268 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
3279 |
msgid "Card Number"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: classes/gateways/class.pmprogateway_braintree.php:359
|
3283 |
+
#: classes/gateways/class.pmprogateway_stripe.php:531 pages/billing.php:301
|
3284 |
+
#: pages/checkout.php:608
|
3285 |
#: classes/gateways/class.pmprogateway_braintree.php:340
|
3286 |
#: classes/gateways/class.pmprogateway_braintree.php:353
|
3287 |
#: classes/gateways/class.pmprogateway_braintree.php:355
|
3297 |
msgid "CVV"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: classes/gateways/class.pmprogateway_braintree.php:360
|
3301 |
+
#: classes/gateways/class.pmprogateway_stripe.php:532 pages/billing.php:302
|
3302 |
+
#: pages/checkout.php:609
|
3303 |
#: classes/gateways/class.pmprogateway_braintree.php:341
|
3304 |
#: classes/gateways/class.pmprogateway_braintree.php:354
|
3305 |
#: classes/gateways/class.pmprogateway_braintree.php:356
|
3315 |
msgid "what's this?"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: classes/gateways/class.pmprogateway_braintree.php:370
|
3319 |
+
#: classes/gateways/class.pmprogateway_stripe.php:542 pages/checkout.php:88
|
3320 |
+
#: pages/checkout.php:619
|
3321 |
#: classes/gateways/class.pmprogateway_braintree.php:351
|
3322 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
3323 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
3333 |
msgid "Apply"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: classes/gateways/class.pmprogateway_braintree.php:425
|
3337 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1072
|
3338 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
3339 |
#: classes/gateways/class.pmprogateway_braintree.php:406
|
3340 |
#: classes/gateways/class.pmprogateway_braintree.php:419
|
3349 |
msgid "Unknown error: Initial payment failed."
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: classes/gateways/class.pmprogateway_braintree.php:484
|
3353 |
#: classes/gateways/class.pmprogateway_braintree.php:120
|
3354 |
#: classes/gateways/class.pmprogateway_braintree.php:465
|
3355 |
#: classes/gateways/class.pmprogateway_braintree.php:478
|
3357 |
msgid "Error during settlement:"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: classes/gateways/class.pmprogateway_braintree.php:493
|
3361 |
#: classes/gateways/class.pmprogateway_braintree.php:129
|
3362 |
#: classes/gateways/class.pmprogateway_braintree.php:474
|
3363 |
#: classes/gateways/class.pmprogateway_braintree.php:487
|
3365 |
msgid "Error during charge:"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: classes/gateways/class.pmprogateway_braintree.php:585
|
3369 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
3370 |
#: classes/gateways/class.pmprogateway_braintree.php:221
|
3371 |
#: classes/gateways/class.pmprogateway_braintree.php:566
|
3374 |
msgid "Failed to update customer."
|
3375 |
msgstr ""
|
3376 |
|
3377 |
+
#: classes/gateways/class.pmprogateway_braintree.php:633
|
3378 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
3379 |
#: classes/gateways/class.pmprogateway_braintree.php:269
|
3380 |
#: classes/gateways/class.pmprogateway_braintree.php:614
|
3383 |
msgid "Failed to create customer."
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: classes/gateways/class.pmprogateway_braintree.php:640
|
3387 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
3388 |
#: classes/gateways/class.pmprogateway_braintree.php:276
|
3389 |
#: classes/gateways/class.pmprogateway_braintree.php:621
|
3392 |
msgid "Error creating customer record with Braintree:"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: classes/gateways/class.pmprogateway_braintree.php:740
|
3396 |
#: classes/gateways/class.pmprogateway_braintree.php:344
|
3397 |
#: classes/gateways/class.pmprogateway_braintree.php:345
|
3398 |
#: classes/gateways/class.pmprogateway_braintree.php:376
|
3402 |
msgid "Error subscribing customer to plan with Braintree:"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: classes/gateways/class.pmprogateway_braintree.php:755
|
3406 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
3407 |
#: classes/gateways/class.pmprogateway_braintree.php:360
|
3408 |
#: classes/gateways/class.pmprogateway_braintree.php:391
|
3412 |
msgid "Failed to subscribe with Braintree:"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
+
#: classes/gateways/class.pmprogateway_braintree.php:793
|
3416 |
+
#: classes/gateways/class.pmprogateway_braintree.php:806
|
3417 |
+
#: classes/gateways/class.pmprogateway_braintree.php:813
|
3418 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
3419 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
3420 |
#: classes/gateways/class.pmprogateway_braintree.php:410
|
3451 |
#: classes/gateways/class.pmprogateway_check.php:48
|
3452 |
#: paid-memberships-pro.php:116 paid-memberships-pro.php:117
|
3453 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
3454 |
+
#: paid-memberships-pro.php:126 paid-memberships-pro.php:127
|
3455 |
msgid "Pay by Check"
|
3456 |
msgstr ""
|
3457 |
|
3565 |
#: classes/gateways/class.pmprogateway_paypal.php:57
|
3566 |
#: paid-memberships-pro.php:119 paid-memberships-pro.php:120
|
3567 |
#: paid-memberships-pro.php:127 paid-memberships-pro.php:128
|
3568 |
+
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
3569 |
msgid "PayPal Website Payments Pro"
|
3570 |
msgstr ""
|
3571 |
|
3689 |
#: classes/gateways/class.pmprogateway_paypal.php:184
|
3690 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3691 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
3692 |
+
#: pages/checkout.php:729 classes/gateways/class.pmprogateway_paypal.php:184
|
3693 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:408
|
3694 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3695 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
3703 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3704 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
3705 |
#: classes/gateways/class.pmprogateway_twocheckout.php:203
|
3706 |
+
#: pages/checkout.php:729 classes/gateways/class.pmprogateway_paypal.php:184
|
3707 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:408
|
3708 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3709 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
3716 |
msgid "Submit and Confirm"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
+
#: classes/gateways/class.pmprogateway_paypal.php:608
|
3720 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:752
|
3721 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:466
|
3722 |
#: classes/gateways/class.pmprogateway_paypal.php:385
|
3745 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:73
|
3746 |
#: paid-memberships-pro.php:118 paid-memberships-pro.php:119
|
3747 |
#: paid-memberships-pro.php:126 paid-memberships-pro.php:127
|
3748 |
+
#: paid-memberships-pro.php:128 paid-memberships-pro.php:129
|
3749 |
msgid "PayPal Express"
|
3750 |
msgstr ""
|
3751 |
|
3777 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
3778 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:122
|
3779 |
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
3780 |
+
#: paid-memberships-pro.php:131 paid-memberships-pro.php:132
|
3781 |
msgid "PayPal Standard"
|
3782 |
msgstr ""
|
3783 |
|
3804 |
#: classes/gateways/class.pmprogateway_stripe.php:126
|
3805 |
#: paid-memberships-pro.php:117 paid-memberships-pro.php:118
|
3806 |
#: paid-memberships-pro.php:125 paid-memberships-pro.php:126
|
3807 |
+
#: paid-memberships-pro.php:127 paid-memberships-pro.php:128
|
3808 |
msgid "Stripe"
|
3809 |
msgstr ""
|
3810 |
|
3868 |
msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
+
#: classes/gateways/class.pmprogateway_stripe.php:612
|
3872 |
#: classes/gateways/class.pmprogateway_stripe.php:567
|
3873 |
#: classes/gateways/class.pmprogateway_stripe.php:568
|
3874 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
3877 |
msgid "Subscription Updates"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: classes/gateways/class.pmprogateway_stripe.php:616
|
3881 |
#: classes/gateways/class.pmprogateway_stripe.php:571
|
3882 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
3883 |
#: classes/gateways/class.pmprogateway_stripe.php:582
|
3888 |
"at predefined times. Be sure to click Update Profile after making changes."
|
3889 |
msgstr ""
|
3890 |
|
3891 |
+
#: classes/gateways/class.pmprogateway_stripe.php:618
|
3892 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
3893 |
#: classes/gateways/class.pmprogateway_stripe.php:574
|
3894 |
#: classes/gateways/class.pmprogateway_stripe.php:584
|
3899 |
"at predefined times. Be sure to click Update User after making changes."
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: classes/gateways/class.pmprogateway_stripe.php:623 pages/billing.php:347
|
3903 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
3904 |
#: classes/gateways/class.pmprogateway_stripe.php:579
|
3905 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
3910 |
msgid "Update"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: classes/gateways/class.pmprogateway_stripe.php:816
|
3914 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
3915 |
#: classes/gateways/class.pmprogateway_stripe.php:770
|
3916 |
#: classes/gateways/class.pmprogateway_stripe.php:780
|
3919 |
msgid "Could not cancel the old subscription. Updates have not been processed."
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1260
|
3923 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
3924 |
#: classes/gateways/class.pmprogateway_stripe.php:192
|
3925 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
3932 |
#: classes/gateways/class.pmprogateway_stripe.php:1214
|
3933 |
#: classes/gateways/class.pmprogateway_stripe.php:1218
|
3934 |
#: classes/gateways/class.pmprogateway_stripe.php:1246
|
3935 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1256
|
3936 |
msgid "Error creating customer record with Stripe:"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1317
|
3940 |
#: classes/gateways/class.pmprogateway_stripe.php:1275
|
3941 |
#: classes/gateways/class.pmprogateway_stripe.php:1303
|
3942 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1313
|
3943 |
msgid "Error getting subscription with Stripe:"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1467
|
3947 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
3948 |
#: classes/gateways/class.pmprogateway_stripe.php:279
|
3949 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
3964 |
#: classes/gateways/class.pmprogateway_stripe.php:1421
|
3965 |
#: classes/gateways/class.pmprogateway_stripe.php:1425
|
3966 |
#: classes/gateways/class.pmprogateway_stripe.php:1453
|
3967 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1463
|
3968 |
msgid "Error creating plan with Stripe:"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1498
|
3972 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
3973 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
3974 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
3984 |
#: classes/gateways/class.pmprogateway_stripe.php:1452
|
3985 |
#: classes/gateways/class.pmprogateway_stripe.php:1456
|
3986 |
#: classes/gateways/class.pmprogateway_stripe.php:1484
|
3987 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1494
|
3988 |
msgid "Error subscribing customer to plan with Stripe:"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1594
|
3992 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
3993 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
3994 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
4001 |
#: classes/gateways/class.pmprogateway_stripe.php:1548
|
4002 |
#: classes/gateways/class.pmprogateway_stripe.php:1552
|
4003 |
#: classes/gateways/class.pmprogateway_stripe.php:1580
|
4004 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1590
|
4005 |
msgid "Could not cancel old subscription."
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1611
|
4009 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
4010 |
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
4011 |
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
4015 |
#: classes/gateways/class.pmprogateway_stripe.php:1565
|
4016 |
#: classes/gateways/class.pmprogateway_stripe.php:1569
|
4017 |
#: classes/gateways/class.pmprogateway_stripe.php:1597
|
4018 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1607
|
4019 |
msgid "Could not find the customer."
|
4020 |
msgstr ""
|
4021 |
|
4026 |
#: classes/gateways/class.pmprogateway_twocheckout.php:60
|
4027 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
4028 |
#: paid-memberships-pro.php:132 paid-memberships-pro.php:133
|
4029 |
+
#: paid-memberships-pro.php:134 paid-memberships-pro.php:135
|
4030 |
msgid "2Checkout"
|
4031 |
msgstr ""
|
4032 |
|
4385 |
msgid "Vietnamese Dong"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
+
#: includes/functions.php:315 includes/functions.php:160
|
4389 |
#: includes/functions.php:196 includes/functions.php:200
|
4390 |
#: includes/functions.php:202 includes/functions.php:203
|
4391 |
#: includes/functions.php:204 includes/functions.php:207
|
4394 |
msgid "The price for membership is <strong>%s</strong> now"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
+
#: includes/functions.php:317 includes/functions.php:202
|
4398 |
#: includes/functions.php:204 includes/functions.php:205
|
4399 |
#: includes/functions.php:206 includes/functions.php:209
|
4400 |
#: includes/functions.php:245
|
4402 |
msgid "<strong>%s</strong> now"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
+
#: includes/functions.php:326 includes/functions.php:169
|
4406 |
#: includes/functions.php:205 includes/functions.php:211
|
4407 |
#: includes/functions.php:213 includes/functions.php:214
|
4408 |
#: includes/functions.php:215 includes/functions.php:218
|
4411 |
msgid " and then <strong>%s per %s for %d more %s</strong>."
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: includes/functions.php:330 includes/functions.php:258
|
4415 |
#, php-format
|
4416 |
msgid " and then <strong>%s every %d %s for %d more payments</strong>."
|
4417 |
msgstr ""
|
4418 |
|
4419 |
+
#: includes/functions.php:335 includes/functions.php:178
|
4420 |
#: includes/functions.php:214 includes/functions.php:220
|
4421 |
#: includes/functions.php:222 includes/functions.php:223
|
4422 |
#: includes/functions.php:224 includes/functions.php:227
|
4425 |
msgid " and then <strong>%s after %d %s</strong>."
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: includes/functions.php:343 includes/functions.php:228
|
4429 |
#: includes/functions.php:229 includes/functions.php:230
|
4430 |
#: includes/functions.php:231 includes/functions.php:235
|
4431 |
#: includes/functions.php:271
|
4433 |
msgid "The price for membership is <strong>%s per %s</strong>."
|
4434 |
msgstr ""
|
4435 |
|
4436 |
+
#: includes/functions.php:345 includes/functions.php:230
|
4437 |
#: includes/functions.php:233 includes/functions.php:237
|
4438 |
#: includes/functions.php:273
|
4439 |
#, php-format
|
4440 |
msgid "<strong>%s per %s</strong>."
|
4441 |
msgstr ""
|
4442 |
|
4443 |
+
#: includes/functions.php:350 includes/functions.php:233
|
4444 |
#: includes/functions.php:234 includes/functions.php:235
|
4445 |
#: includes/functions.php:238 includes/functions.php:242
|
4446 |
#: includes/functions.php:278
|
4448 |
msgid "The price for membership is <strong>%s every %d %s</strong>."
|
4449 |
msgstr ""
|
4450 |
|
4451 |
+
#: includes/functions.php:352 includes/functions.php:237
|
4452 |
#: includes/functions.php:240 includes/functions.php:244
|
4453 |
#: includes/functions.php:280
|
4454 |
#, php-format
|
4455 |
msgid "<strong>%s every %d %s</strong>."
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: includes/functions.php:357 includes/functions.php:184
|
4459 |
#: includes/functions.php:220 includes/functions.php:228
|
4460 |
#: includes/functions.php:238 includes/functions.php:239
|
4461 |
#: includes/functions.php:240 includes/functions.php:242
|
4465 |
msgid " and then <strong>%s per %s</strong>."
|
4466 |
msgstr ""
|
4467 |
|
4468 |
+
#: includes/functions.php:361 includes/functions.php:188
|
4469 |
#: includes/functions.php:224 includes/functions.php:232
|
4470 |
#: includes/functions.php:242 includes/functions.php:243
|
4471 |
#: includes/functions.php:244 includes/functions.php:246
|
4475 |
msgid " and then <strong>%s every %d %s</strong>."
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: includes/functions.php:379 includes/functions.php:202
|
4479 |
#: includes/functions.php:238 includes/functions.php:249
|
4480 |
#: includes/functions.php:260 includes/functions.php:261
|
4481 |
#: includes/functions.php:262 includes/functions.php:264
|
4484 |
msgid "After your initial payment, your first payment is Free."
|
4485 |
msgstr ""
|
4486 |
|
4487 |
+
#: includes/functions.php:383 includes/functions.php:206
|
4488 |
#: includes/functions.php:242 includes/functions.php:253
|
4489 |
#: includes/functions.php:264 includes/functions.php:265
|
4490 |
#: includes/functions.php:266 includes/functions.php:268
|
4494 |
msgid "After your initial payment, your first %d payments are Free."
|
4495 |
msgstr ""
|
4496 |
|
4497 |
+
#: includes/functions.php:390 includes/functions.php:213
|
4498 |
#: includes/functions.php:249 includes/functions.php:260
|
4499 |
#: includes/functions.php:271 includes/functions.php:272
|
4500 |
#: includes/functions.php:273 includes/functions.php:275
|
4504 |
msgid "After your initial payment, your first payment will cost %s."
|
4505 |
msgstr ""
|
4506 |
|
4507 |
+
#: includes/functions.php:394 includes/functions.php:217
|
4508 |
#: includes/functions.php:253 includes/functions.php:264
|
4509 |
#: includes/functions.php:275 includes/functions.php:276
|
4510 |
#: includes/functions.php:277 includes/functions.php:279
|
4514 |
msgid "After your initial payment, your first %d payments will cost %s."
|
4515 |
msgstr ""
|
4516 |
|
4517 |
+
#: includes/functions.php:405 includes/functions.php:228
|
4518 |
#: includes/functions.php:264 includes/functions.php:275
|
4519 |
#: includes/functions.php:286 includes/functions.php:287
|
4520 |
#: includes/functions.php:288 includes/functions.php:290
|
4524 |
msgid "Customers in %s will be charged %s%% tax."
|
4525 |
msgstr ""
|
4526 |
|
4527 |
+
#: includes/functions.php:419 includes/functions.php:242
|
4528 |
#: includes/functions.php:278 includes/functions.php:289
|
4529 |
#: includes/functions.php:300 includes/functions.php:301
|
4530 |
#: includes/functions.php:302 includes/functions.php:304
|
4534 |
msgid "Membership expires after %d %s."
|
4535 |
msgstr ""
|
4536 |
|
4537 |
+
#: includes/functions.php:766 includes/functions.php:491
|
4538 |
#: includes/functions.php:514 includes/functions.php:525
|
4539 |
#: includes/functions.php:536 includes/functions.php:537
|
4540 |
#: includes/functions.php:538 includes/functions.php:545
|
4544 |
msgid "User ID not found."
|
4545 |
msgstr ""
|
4546 |
|
4547 |
+
#: includes/functions.php:786 includes/functions.php:508
|
4548 |
#: includes/functions.php:531 includes/functions.php:542
|
4549 |
#: includes/functions.php:553 includes/functions.php:554
|
4550 |
#: includes/functions.php:555 includes/functions.php:562
|
4555 |
msgid "Invalid level."
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: includes/functions.php:797 includes/functions.php:520
|
4559 |
#: includes/functions.php:542 includes/functions.php:553
|
4560 |
#: includes/functions.php:564 includes/functions.php:565
|
4561 |
#: includes/functions.php:566 includes/functions.php:573
|
4566 |
msgid "not changing?"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
+
#: includes/functions.php:814 includes/functions.php:887
|
4570 |
+
#: includes/functions.php:911 includes/functions.php:537
|
4571 |
#: includes/functions.php:559 includes/functions.php:570
|
4572 |
#: includes/functions.php:581 includes/functions.php:582
|
4573 |
#: includes/functions.php:583 includes/functions.php:590
|
4590 |
msgid "Error interacting with database"
|
4591 |
msgstr ""
|
4592 |
|
4593 |
+
#: includes/functions.php:953 includes/functions.php:992
|
4594 |
#: includes/functions.php:629 includes/functions.php:651
|
4595 |
#: includes/functions.php:667 includes/functions.php:668
|
4596 |
#: includes/functions.php:678 includes/functions.php:681
|
4609 |
msgid "Membership level not found."
|
4610 |
msgstr ""
|
4611 |
|
4612 |
+
#: includes/functions.php:1362 includes/functions.php:1100
|
4613 |
#: includes/functions.php:1101 includes/functions.php:1118
|
4614 |
#: includes/functions.php:1142 includes/functions.php:1143
|
4615 |
#: includes/functions.php:1150 includes/functions.php:1157
|
4618 |
msgid "No code was given to check."
|
4619 |
msgstr ""
|
4620 |
|
4621 |
+
#: includes/functions.php:1371 includes/functions.php:1050
|
4622 |
#: includes/functions.php:1072 includes/functions.php:1088
|
4623 |
#: includes/functions.php:1099 includes/functions.php:1102
|
4624 |
#: includes/functions.php:1109 includes/functions.php:1110
|
4630 |
msgid "The discount code could not be found."
|
4631 |
msgstr ""
|
4632 |
|
4633 |
+
#: includes/functions.php:1386 includes/functions.php:1066
|
4634 |
#: includes/functions.php:1088 includes/functions.php:1104
|
4635 |
#: includes/functions.php:1115 includes/functions.php:1118
|
4636 |
#: includes/functions.php:1124 includes/functions.php:1125
|
4643 |
msgid "This discount code goes into effect on %s."
|
4644 |
msgstr ""
|
4645 |
|
4646 |
+
#: includes/functions.php:1393 includes/functions.php:1075
|
4647 |
#: includes/functions.php:1097 includes/functions.php:1113
|
4648 |
#: includes/functions.php:1124 includes/functions.php:1127
|
4649 |
#: includes/functions.php:1131 includes/functions.php:1132
|
4656 |
msgid "This discount code expired on %s."
|
4657 |
msgstr ""
|
4658 |
|
4659 |
+
#: includes/functions.php:1403 includes/functions.php:1087
|
4660 |
#: includes/functions.php:1109 includes/functions.php:1125
|
4661 |
#: includes/functions.php:1136 includes/functions.php:1139
|
4662 |
#: includes/functions.php:1141 includes/functions.php:1142
|
4668 |
msgid "This discount code is no longer valid."
|
4669 |
msgstr ""
|
4670 |
|
4671 |
+
#: includes/functions.php:1416 includes/functions.php:1102
|
4672 |
#: includes/functions.php:1124 includes/functions.php:1140
|
4673 |
#: includes/functions.php:1151 includes/functions.php:1154
|
4674 |
#: includes/functions.php:1155 includes/functions.php:1164
|
4680 |
msgid "This discount code does not apply to this membership level."
|
4681 |
msgstr ""
|
4682 |
|
4683 |
+
#: includes/functions.php:1442 includes/functions.php:1110
|
4684 |
#: includes/functions.php:1132 includes/functions.php:1148
|
4685 |
#: includes/functions.php:1159 includes/functions.php:1162
|
4686 |
#: includes/functions.php:1172 includes/functions.php:1180
|
4692 |
msgid "This discount code is okay."
|
4693 |
msgstr ""
|
4694 |
|
4695 |
+
#: includes/functions.php:1469 includes/functions.php:1134
|
4696 |
#: includes/functions.php:1156 includes/functions.php:1172
|
4697 |
#: includes/functions.php:1183 includes/functions.php:1186
|
4698 |
#: includes/functions.php:1196 includes/functions.php:1205
|
4704 |
msgid "and"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
+
#: includes/functions.php:1697 includes/functions.php:1319
|
4708 |
#: includes/functions.php:1341 includes/functions.php:1361
|
4709 |
#: includes/functions.php:1372 includes/functions.php:1375
|
4710 |
#: includes/functions.php:1385 includes/functions.php:1394
|
4717 |
msgid "Sign Up for !!name!! Now"
|
4718 |
msgstr ""
|
4719 |
|
4720 |
+
#: includes/functions.php:1703 includes/functions.php:1325
|
4721 |
#: includes/functions.php:1347 includes/functions.php:1367
|
4722 |
#: includes/functions.php:1378 includes/functions.php:1381
|
4723 |
#: includes/functions.php:1391 includes/functions.php:1400
|
4730 |
msgid "Please specify a level id."
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#: includes/init.php:258 includes/profile.php:39 includes/init.php:229
|
4734 |
#: includes/init.php:232 includes/init.php:233 includes/init.php:235
|
4735 |
#: includes/init.php:237 includes/init.php:245 includes/init.php:253
|
4736 |
#: includes/profile.php:37 includes/profile.php:39
|
4872 |
"checkbox is selected below."
|
4873 |
msgstr ""
|
4874 |
|
4875 |
+
#: includes/updates.php:110 includes/updates.php:97
|
4876 |
msgid "Paid Memberships Pro Data Update Required"
|
4877 |
msgstr ""
|
4878 |
|
4879 |
+
#: includes/updates.php:115 includes/updates.php:102
|
4880 |
msgid "Start the Update"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
+
#: includes/updates.php:136 includes/updates.php:123
|
4884 |
msgid "All Paid Memberships Pro updates have finished."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: includes/updates/upgrade_1.php:7 includes/upgradecheck.php:401
|
4888 |
#: includes/upgradecheck.php:410 includes/upgradecheck.php:422
|
4889 |
#: includes/upgradecheck.php:442 includes/upgradecheck.php:542
|
4890 |
+
#: includes/upgradecheck.php:561 includes/upgradecheck.php:563
|
4891 |
#, php-format
|
4892 |
msgid ""
|
4893 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
|
4894 |
msgstr ""
|
4895 |
|
4896 |
+
#: includes/updates/upgrade_1.php:10 includes/upgradecheck.php:404
|
4897 |
#: includes/upgradecheck.php:413 includes/upgradecheck.php:425
|
4898 |
#: includes/upgradecheck.php:445 includes/upgradecheck.php:545
|
4899 |
+
#: includes/upgradecheck.php:564 includes/upgradecheck.php:566
|
4900 |
#, php-format
|
4901 |
msgid ""
|
4902 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
|
4903 |
"<a href=\"%s\">Register</a>"
|
4904 |
msgstr ""
|
4905 |
|
4906 |
+
#: includes/updates/upgrade_1.php:14 includes/upgradecheck.php:408
|
4907 |
#: includes/upgradecheck.php:417 includes/upgradecheck.php:429
|
4908 |
#: includes/upgradecheck.php:449 includes/upgradecheck.php:549
|
4909 |
+
#: includes/upgradecheck.php:568 includes/upgradecheck.php:570
|
4910 |
msgid ""
|
4911 |
"This content is for !!levels!! members only. Visit the site and log in/"
|
4912 |
"register to read."
|
4913 |
msgstr ""
|
4914 |
|
4915 |
+
#: pages/billing.php:26 pages/billing.php:14 pages/billing.php:23
|
4916 |
#, php-format
|
4917 |
msgid "Logged in as <strong>%s</strong>."
|
4918 |
msgstr ""
|
4919 |
|
4920 |
+
#: pages/billing.php:26 pages/billing.php:14 pages/billing.php:23
|
4921 |
msgid "logout"
|
4922 |
msgstr ""
|
4923 |
|
4924 |
+
#: pages/billing.php:28 pages/cancel.php:52 pages/invoice.php:109
|
4925 |
#: pages/levels.php:35 shortcodes/pmpro_account.php:44
|
4926 |
#: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
|
4927 |
#: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
|
4931 |
msgid "Level"
|
4932 |
msgstr ""
|
4933 |
|
4934 |
+
#: pages/billing.php:30 pages/account.php:14 pages/billing.php:18
|
4935 |
#: pages/billing.php:27
|
4936 |
msgid "Membership Fee"
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: pages/billing.php:34 pages/account.php:18 pages/billing.php:22
|
4940 |
#: pages/billing.php:31 pages/levels.php:70
|
4941 |
#, php-format
|
4942 |
msgid "%s every %d %s."
|
4943 |
msgstr ""
|
4944 |
|
4945 |
+
#: pages/billing.php:36 pages/account.php:20 pages/billing.php:24
|
4946 |
#: pages/billing.php:33 pages/levels.php:66
|
4947 |
#, php-format
|
4948 |
msgid "%s per %s."
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: pages/billing.php:45 pages/account.php:25 pages/account.php:29
|
4952 |
#: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
|
4953 |
msgid "Duration"
|
4954 |
msgstr ""
|
4955 |
|
4956 |
+
#: pages/billing.php:55 pages/billing.php:39 pages/billing.php:43
|
4957 |
#: pages/billing.php:52
|
4958 |
msgid ""
|
4959 |
"Your payment subscription is managed by PayPal. Please <a href=\"http://www."
|
4960 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
4961 |
msgstr ""
|
4962 |
|
4963 |
+
#: pages/billing.php:81 pages/checkout.php:326 pages/billing.php:65
|
4964 |
#: pages/billing.php:69 pages/billing.php:78 pages/checkout.php:305
|
4965 |
#: pages/checkout.php:307 pages/checkout.php:309 pages/checkout.php:318
|
4966 |
#: pages/checkout.php:321 pages/checkout.php:324 pages/checkout.php:326
|
4968 |
msgid "First Name"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: pages/billing.php:85 pages/checkout.php:330 pages/billing.php:69
|
4972 |
#: pages/billing.php:73 pages/billing.php:82 pages/checkout.php:309
|
4973 |
#: pages/checkout.php:311 pages/checkout.php:313 pages/checkout.php:322
|
4974 |
#: pages/checkout.php:325 pages/checkout.php:328 pages/checkout.php:330
|
4976 |
msgid "Last Name"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: pages/billing.php:89 pages/checkout.php:334 pages/billing.php:73
|
4980 |
#: pages/billing.php:77 pages/billing.php:86 pages/checkout.php:313
|
4981 |
#: pages/checkout.php:315 pages/checkout.php:317 pages/checkout.php:326
|
4982 |
#: pages/checkout.php:329 pages/checkout.php:332 pages/checkout.php:334
|
4984 |
msgid "Address 1"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
+
#: pages/billing.php:93 pages/checkout.php:338 pages/billing.php:77
|
4988 |
#: pages/billing.php:81 pages/billing.php:90 pages/checkout.php:317
|
4989 |
#: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:330
|
4990 |
#: pages/checkout.php:333 pages/checkout.php:336 pages/checkout.php:338
|
4992 |
msgid "Address 2"
|
4993 |
msgstr ""
|
4994 |
|
4995 |
+
#: pages/billing.php:103 pages/checkout.php:348 pages/billing.php:87
|
4996 |
#: pages/billing.php:91 pages/billing.php:100 pages/checkout.php:327
|
4997 |
#: pages/checkout.php:329 pages/checkout.php:331 pages/checkout.php:340
|
4998 |
#: pages/checkout.php:343 pages/checkout.php:346 pages/checkout.php:348
|
5000 |
msgid "City"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
+
#: pages/billing.php:107 pages/checkout.php:352 pages/billing.php:91
|
5004 |
#: pages/billing.php:95 pages/billing.php:104 pages/checkout.php:331
|
5005 |
#: pages/checkout.php:333 pages/checkout.php:335 pages/checkout.php:344
|
5006 |
#: pages/checkout.php:347 pages/checkout.php:350 pages/checkout.php:352
|
5008 |
msgid "State"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
+
#: pages/billing.php:111 pages/checkout.php:356 pages/billing.php:95
|
5012 |
#: pages/billing.php:99 pages/billing.php:108 pages/checkout.php:335
|
5013 |
#: pages/checkout.php:337 pages/checkout.php:339 pages/checkout.php:348
|
5014 |
#: pages/checkout.php:351 pages/checkout.php:354 pages/checkout.php:356
|
5016 |
msgid "Postal Code"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: pages/billing.php:120 pages/checkout.php:365 pages/billing.php:104
|
5020 |
#: pages/billing.php:108 pages/billing.php:117 pages/checkout.php:344
|
5021 |
#: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:357
|
5022 |
#: pages/checkout.php:360 pages/checkout.php:363 pages/checkout.php:365
|
5024 |
msgid "City, State Zip"
|
5025 |
msgstr ""
|
5026 |
|
5027 |
+
#: pages/billing.php:173 pages/checkout.php:418 pages/billing.php:157
|
5028 |
#: pages/billing.php:161 pages/billing.php:170 pages/checkout.php:397
|
5029 |
#: pages/checkout.php:399 pages/checkout.php:401 pages/checkout.php:410
|
5030 |
#: pages/checkout.php:413 pages/checkout.php:416 pages/checkout.php:418
|
5032 |
msgid "Country"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
+
#: pages/billing.php:198 pages/checkout.php:443 pages/billing.php:182
|
5036 |
#: pages/billing.php:186 pages/billing.php:195 pages/checkout.php:422
|
5037 |
#: pages/checkout.php:424 pages/checkout.php:426 pages/checkout.php:435
|
5038 |
#: pages/checkout.php:438 pages/checkout.php:441 pages/checkout.php:443
|
5040 |
msgid "Phone"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
+
#: pages/billing.php:209 pages/checkout.php:220 pages/checkout.php:457
|
5044 |
#: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
|
5045 |
#: pages/checkout.php:204 pages/checkout.php:207 pages/checkout.php:209
|
5046 |
#: pages/checkout.php:216 pages/checkout.php:218 pages/checkout.php:220
|
5050 |
msgid "E-mail Address"
|
5051 |
msgstr ""
|
5052 |
|
5053 |
+
#: pages/billing.php:213 pages/checkout.php:466 pages/billing.php:197
|
5054 |
#: pages/billing.php:201 pages/billing.php:210 pages/checkout.php:445
|
5055 |
#: pages/checkout.php:447 pages/checkout.php:449 pages/checkout.php:458
|
5056 |
#: pages/checkout.php:462 pages/checkout.php:464 pages/checkout.php:466
|
5058 |
msgid "Confirm E-mail"
|
5059 |
msgstr ""
|
5060 |
|
5061 |
+
#: pages/billing.php:234 pages/billing.php:217 pages/billing.php:221
|
5062 |
#: pages/billing.php:230 pages/billing.php:231
|
5063 |
msgid "Credit Card Information"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
+
#: pages/billing.php:235 pages/billing.php:217 pages/billing.php:221
|
5067 |
#: pages/billing.php:230 pages/billing.php:232
|
5068 |
#, php-format
|
5069 |
msgid "We accept %s"
|
5070 |
msgstr ""
|
5071 |
|
5072 |
+
#: pages/billing.php:364 pages/billing.php:309 pages/billing.php:313
|
5073 |
#: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
|
5074 |
#: pages/billing.php:360
|
5075 |
msgid ""
|
5214 |
msgid "Check Out with a Credit Card Here"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
+
#: pages/checkout.php:697 pages/checkout.php:277 pages/checkout.php:284
|
5218 |
#: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
|
5219 |
#: pages/checkout.php:681 pages/checkout.php:690 pages/checkout.php:696
|
5220 |
#, php-format
|
5221 |
msgid "I agree to the %s"
|
5222 |
msgstr ""
|
5223 |
|
5224 |
+
#: pages/checkout.php:717 pages/checkout.php:667 pages/checkout.php:674
|
5225 |
#: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
|
5226 |
#: pages/checkout.php:701 pages/checkout.php:710 pages/checkout.php:716
|
5227 |
msgid "Complete Payment"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
+
#: pages/checkout.php:739 pages/checkout.php:687 pages/checkout.php:694
|
5231 |
#: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
|
5232 |
#: pages/checkout.php:723 pages/checkout.php:732 pages/checkout.php:738
|
5233 |
msgid "Processing..."
|
5369 |
#: adminpages/orders.php:448 paid-memberships-pro.php:115
|
5370 |
#: paid-memberships-pro.php:116 paid-memberships-pro.php:123
|
5371 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
5372 |
+
#: paid-memberships-pro.php:126
|
5373 |
msgid "Testing Only"
|
5374 |
msgstr ""
|
5375 |
|
5376 |
#: paid-memberships-pro.php:131 paid-memberships-pro.php:120
|
5377 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:128
|
5378 |
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
5379 |
+
#: paid-memberships-pro.php:131
|
5380 |
msgid "PayPal Payflow Pro/PayPal Pro"
|
5381 |
msgstr ""
|
5382 |
|
5383 |
#: paid-memberships-pro.php:136 paid-memberships-pro.php:125
|
5384 |
#: paid-memberships-pro.php:126 paid-memberships-pro.php:133
|
5385 |
#: paid-memberships-pro.php:134 paid-memberships-pro.php:135
|
5386 |
+
#: paid-memberships-pro.php:136
|
5387 |
msgid "Cybersource"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
#: paid-memberships-pro.php:157 paid-memberships-pro.php:156
|
5391 |
+
#: paid-memberships-pro.php:157
|
5392 |
msgid "Once a month"
|
5393 |
msgstr ""
|
5394 |
|
5562 |
#: preheaders/checkout.php:581 preheaders/checkout.php:550
|
5563 |
#: preheaders/checkout.php:552 preheaders/checkout.php:569
|
5564 |
#: preheaders/checkout.php:571 preheaders/checkout.php:575
|
5565 |
+
#: preheaders/checkout.php:581 preheaders/checkout.php:785
|
5566 |
+
#: preheaders/checkout.php:792 preheaders/checkout.php:797
|
5567 |
+
#: preheaders/checkout.php:825 preheaders/checkout.php:844
|
5568 |
+
#: preheaders/checkout.php:859 preheaders/checkout.php:860
|
5569 |
msgid ""
|
5570 |
"Your payment was accepted, but there was an error setting up your account. "
|
5571 |
"Please contact us."
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: preheaders/checkout.php:754 preheaders/checkout.php:691
|
5575 |
#: preheaders/checkout.php:693 preheaders/checkout.php:710
|
5576 |
#: preheaders/checkout.php:712 preheaders/checkout.php:722
|
5577 |
+
#: preheaders/checkout.php:730 preheaders/checkout.php:953
|
5578 |
+
#: preheaders/checkout.php:960 preheaders/checkout.php:970
|
5579 |
+
#: preheaders/checkout.php:983 preheaders/checkout.php:1030
|
5580 |
+
#: preheaders/checkout.php:1045 preheaders/checkout.php:1046
|
5581 |
msgid ""
|
5582 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
5583 |
"authorized, but we cancelled the order immediately. You should not try to "
|
5584 |
"submit this form again. Please contact the site owner to fix this issue."
|
5585 |
msgstr ""
|
5586 |
|
5587 |
+
#: preheaders/checkout.php:757 preheaders/checkout.php:694
|
5588 |
#: preheaders/checkout.php:696 preheaders/checkout.php:713
|
5589 |
#: preheaders/checkout.php:715 preheaders/checkout.php:725
|
5590 |
+
#: preheaders/checkout.php:733 preheaders/checkout.php:956
|
5591 |
+
#: preheaders/checkout.php:963 preheaders/checkout.php:973
|
5592 |
+
#: preheaders/checkout.php:988 preheaders/checkout.php:1035
|
5593 |
+
#: preheaders/checkout.php:1050 preheaders/checkout.php:1051
|
5594 |
msgid ""
|
5595 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
5596 |
"was charged, but we couldn't assign your membership. You should not submit "
|
5597 |
"this form again. Please contact the site owner to fix this issue."
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: preheaders/checkout.php:768 preheaders/checkout.php:705
|
5601 |
#: preheaders/checkout.php:707 preheaders/checkout.php:724
|
5602 |
#: preheaders/checkout.php:726 preheaders/checkout.php:736
|
5603 |
+
#: preheaders/checkout.php:744 preheaders/checkout.php:967
|
5604 |
+
#: preheaders/checkout.php:974 preheaders/checkout.php:984
|
5605 |
+
#: preheaders/checkout.php:1001 preheaders/checkout.php:1048
|
5606 |
+
#: preheaders/checkout.php:1063 preheaders/checkout.php:1064
|
5607 |
#, php-format
|
5608 |
msgid ""
|
5609 |
"You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
|
5610 |
"will be processed."
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: preheaders/checkout.php:770 preheaders/checkout.php:707
|
5614 |
#: preheaders/checkout.php:709 preheaders/checkout.php:726
|
5615 |
#: preheaders/checkout.php:728 preheaders/checkout.php:738
|
5616 |
+
#: preheaders/checkout.php:746 preheaders/checkout.php:969
|
5617 |
+
#: preheaders/checkout.php:976 preheaders/checkout.php:986
|
5618 |
+
#: preheaders/checkout.php:1003 preheaders/checkout.php:1050
|
5619 |
+
#: preheaders/checkout.php:1065 preheaders/checkout.php:1066
|
5620 |
msgid "A Payment Gateway must be set up before any payments will be processed."
|
5621 |
msgstr ""
|
5622 |
|
5626 |
msgid "Membership expired email sent to %s. "
|
5627 |
msgstr ""
|
5628 |
|
5629 |
+
#: scheduled/crons.php:99 scheduled/crons.php:27 scheduled/crons.php:74
|
5630 |
#: scheduled/crons.php:80 scheduled/crons.php:84 scheduled/crons.php:88
|
5631 |
#, php-format
|
5632 |
msgid "Membership expiring email sent to %s. "
|
5633 |
msgstr ""
|
5634 |
|
5635 |
+
#: scheduled/crons.php:175 scheduled/crons.php:143 scheduled/crons.php:152
|
5636 |
#: scheduled/crons.php:157 scheduled/crons.php:164
|
5637 |
#, php-format
|
5638 |
msgid "Credit card expiring email sent to %s. "
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: scheduled/crons.php:231 scheduled/crons.php:104 scheduled/crons.php:196
|
5642 |
#: scheduled/crons.php:208 scheduled/crons.php:210 scheduled/crons.php:220
|
5643 |
#, php-format
|
5644 |
msgid "Trial ending email sent to %s. "
|
5657 |
msgid "The <strong>%s</strong> code has been applied to your order."
|
5658 |
msgstr ""
|
5659 |
|
5660 |
+
#: services/authnet-silent-post.php:145 services/authnet-silent-post.php:133
|
5661 |
#: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
|
5662 |
#: services/authnet-silent-post.php:144
|
5663 |
msgid ""
|
5665 |
"Information From Authorize.net"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
+
#: services/stripe-webhook.php:290 services/stripe-webhook.php:176
|
5669 |
#: services/stripe-webhook.php:194 services/stripe-webhook.php:270
|
5670 |
#: services/stripe-webhook.php:271 services/stripe-webhook.php:272
|
5671 |
+
#: services/stripe-webhook.php:283
|
5672 |
#, php-format
|
5673 |
msgid ""
|
5674 |
"%s has had their payment subscription cancelled by Stripe. Please check that "
|
languages/pmpro.pot
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: pmpro\n"
|
8 |
-
"POT-Creation-Date: 2016-
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
@@ -170,8 +170,8 @@ msgstr ""
|
|
170 |
msgid "WordPress.org"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: adminpages/addons.php:231
|
174 |
-
#: adminpages/addons.php:247
|
175 |
msgid "N/A"
|
176 |
msgstr ""
|
177 |
|
@@ -287,7 +287,7 @@ msgstr ""
|
|
287 |
msgid "User Forum"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: adminpages/admin_header.php:150 adminpages/membershiplevels.php:
|
291 |
#: adminpages/pagesettings.php:70 includes/adminpages.php:69
|
292 |
#: includes/adminpages.php:70 includes/adminpages.php:116
|
293 |
#: includes/metaboxes.php:131 adminpages/admin_header.php:128
|
@@ -435,7 +435,7 @@ msgid "Hide Ads From Members?"
|
|
435 |
msgstr ""
|
436 |
|
437 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
|
438 |
-
#: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:
|
439 |
#: adminpages/paymentsettings.php:210
|
440 |
#: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:110
|
441 |
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
|
@@ -495,7 +495,7 @@ msgstr ""
|
|
495 |
msgid "multisite only"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:
|
499 |
#: adminpages/paymentsettings.php:211
|
500 |
#: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:111
|
501 |
#: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
|
@@ -581,41 +581,46 @@ msgid "Save Settings"
|
|
581 |
msgstr ""
|
582 |
|
583 |
#: adminpages/discountcodes.php:49 adminpages/discountcodes.php:48
|
|
|
584 |
msgid "Discount code updated successfully."
|
585 |
msgstr ""
|
586 |
|
587 |
#: adminpages/discountcodes.php:56 adminpages/discountcodes.php:55
|
|
|
588 |
msgid "Error updating discount code. That code may already be in use."
|
589 |
msgstr ""
|
590 |
|
591 |
#: adminpages/discountcodes.php:65 adminpages/discountcodes.php:64
|
|
|
592 |
msgid "Discount code added successfully."
|
593 |
msgstr ""
|
594 |
|
595 |
#: adminpages/discountcodes.php:73 adminpages/discountcodes.php:71
|
596 |
-
#: adminpages/discountcodes.php:72
|
597 |
msgid "Error adding discount code. That code may already be in use."
|
598 |
msgstr ""
|
599 |
|
600 |
#: adminpages/discountcodes.php:198 adminpages/discountcodes.php:196
|
601 |
-
#: adminpages/discountcodes.php:197
|
602 |
#, php-format
|
603 |
msgid "Error saving values for the %s level."
|
604 |
msgstr ""
|
605 |
|
606 |
#: adminpages/discountcodes.php:206 adminpages/discountcodes.php:204
|
607 |
-
#: adminpages/discountcodes.php:205
|
608 |
msgid "There were errors updating the level values: "
|
609 |
msgstr ""
|
610 |
|
611 |
#: adminpages/discountcodes.php:239 adminpages/discountcodes.php:234
|
612 |
#: adminpages/discountcodes.php:237 adminpages/discountcodes.php:238
|
|
|
613 |
#, php-format
|
614 |
msgid "Code %s deleted successfully."
|
615 |
msgstr ""
|
616 |
|
617 |
#: adminpages/discountcodes.php:244 adminpages/discountcodes.php:239
|
618 |
#: adminpages/discountcodes.php:242 adminpages/discountcodes.php:243
|
|
|
619 |
msgid ""
|
620 |
"Error deleting discount code. The code was only partially deleted. Please "
|
621 |
"try again."
|
@@ -623,35 +628,40 @@ msgstr ""
|
|
623 |
|
624 |
#: adminpages/discountcodes.php:250 adminpages/discountcodes.php:245
|
625 |
#: adminpages/discountcodes.php:248 adminpages/discountcodes.php:249
|
|
|
626 |
msgid "Error deleting code. Please try again."
|
627 |
msgstr ""
|
628 |
|
629 |
#: adminpages/discountcodes.php:256 adminpages/discountcodes.php:251
|
630 |
#: adminpages/discountcodes.php:254 adminpages/discountcodes.php:255
|
|
|
631 |
msgid "Code not found."
|
632 |
msgstr ""
|
633 |
|
634 |
#: adminpages/discountcodes.php:269 adminpages/discountcodes.php:264
|
635 |
#: adminpages/discountcodes.php:267 adminpages/discountcodes.php:268
|
|
|
636 |
msgid "Edit Discount Code"
|
637 |
msgstr ""
|
638 |
|
639 |
#: adminpages/discountcodes.php:271 adminpages/discountcodes.php:559
|
640 |
#: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
|
641 |
-
#: adminpages/discountcodes.php:270 adminpages/discountcodes.php:
|
642 |
-
#: adminpages/discountcodes.php:
|
643 |
-
#: adminpages/discountcodes.php:558
|
|
|
644 |
msgid "Add New Discount Code"
|
645 |
msgstr ""
|
646 |
|
647 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:587
|
648 |
-
#: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:
|
649 |
#: adminpages/memberslist.php:164 adminpages/orders.php:937
|
650 |
#: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
|
651 |
#: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
|
652 |
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
|
653 |
-
#: adminpages/discountcodes.php:
|
654 |
-
#: adminpages/discountcodes.php:
|
|
|
655 |
#: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
|
656 |
#: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:505
|
657 |
#: adminpages/membershiplevels.php:511 adminpages/membershiplevels.php:513
|
@@ -670,18 +680,19 @@ msgstr ""
|
|
670 |
|
671 |
#: adminpages/discountcodes.php:312 adminpages/orders.php:333
|
672 |
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
673 |
-
#: adminpages/discountcodes.php:311 adminpages/
|
674 |
-
#: adminpages/orders.php:
|
675 |
-
#: adminpages/orders.php:362
|
676 |
msgid "This will be generated when you save."
|
677 |
msgstr ""
|
678 |
|
679 |
#: adminpages/discountcodes.php:316 adminpages/discountcodes.php:588
|
680 |
#: adminpages/orders.php:337 adminpages/orders.php:938
|
681 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
682 |
-
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:
|
683 |
-
#: adminpages/discountcodes.php:
|
684 |
-
#: adminpages/discountcodes.php:
|
|
|
685 |
#: adminpages/orders.php:265 adminpages/orders.php:337
|
686 |
#: adminpages/orders.php:366 adminpages/orders.php:598
|
687 |
#: adminpages/orders.php:901 adminpages/orders.php:911
|
@@ -691,14 +702,16 @@ msgstr ""
|
|
691 |
|
692 |
#: adminpages/discountcodes.php:354 adminpages/discountcodes.php:349
|
693 |
#: adminpages/discountcodes.php:352 adminpages/discountcodes.php:353
|
|
|
694 |
msgid "Start Date"
|
695 |
msgstr ""
|
696 |
|
697 |
#: adminpages/discountcodes.php:372
|
698 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
699 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
700 |
#: pages/checkout.php:575 adminpages/discountcodes.php:367
|
701 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
|
|
702 |
#: classes/gateways/class.pmprogateway_braintree.php:308
|
703 |
#: classes/gateways/class.pmprogateway_braintree.php:321
|
704 |
#: classes/gateways/class.pmprogateway_braintree.php:323
|
@@ -716,73 +729,78 @@ msgstr ""
|
|
716 |
|
717 |
#: adminpages/discountcodes.php:390 adminpages/discountcodes.php:591
|
718 |
#: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
|
719 |
-
#: adminpages/discountcodes.php:389 adminpages/discountcodes.php:
|
720 |
-
#: adminpages/discountcodes.php:
|
721 |
-
#: adminpages/discountcodes.php:590
|
|
|
722 |
msgid "Uses"
|
723 |
msgstr ""
|
724 |
|
725 |
#: adminpages/discountcodes.php:393 adminpages/discountcodes.php:388
|
726 |
#: adminpages/discountcodes.php:391 adminpages/discountcodes.php:392
|
|
|
727 |
msgid "Leave blank for unlimited uses."
|
728 |
msgstr ""
|
729 |
|
730 |
#: adminpages/discountcodes.php:402 adminpages/discountcodes.php:400
|
731 |
-
#: adminpages/discountcodes.php:401
|
732 |
msgid "Which Levels Will This Code Apply To?"
|
733 |
msgstr ""
|
734 |
|
735 |
#: adminpages/discountcodes.php:432 adminpages/membershiplevels.php:341
|
736 |
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
|
737 |
-
#: adminpages/discountcodes.php:431 adminpages/
|
738 |
-
#: adminpages/membershiplevels.php:
|
739 |
-
#: adminpages/membershiplevels.php:
|
740 |
-
#: adminpages/membershiplevels.php:
|
741 |
-
#: adminpages/membershiplevels.php:
|
|
|
742 |
msgid "Initial Payment"
|
743 |
msgstr ""
|
744 |
|
745 |
#: adminpages/discountcodes.php:443 adminpages/membershiplevels.php:352
|
746 |
#: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
|
747 |
#: adminpages/discountcodes.php:441 adminpages/discountcodes.php:442
|
748 |
-
#: adminpages/
|
749 |
-
#: adminpages/membershiplevels.php:
|
750 |
-
#: adminpages/membershiplevels.php:353
|
751 |
msgid "The initial amount collected at registration."
|
752 |
msgstr ""
|
753 |
|
754 |
#: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:356
|
755 |
#: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
|
756 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:447
|
757 |
-
#: adminpages/
|
758 |
-
#: adminpages/membershiplevels.php:
|
759 |
-
#: adminpages/membershiplevels.php:357
|
760 |
msgid "Recurring Subscription"
|
761 |
msgstr ""
|
762 |
|
763 |
#: adminpages/discountcodes.php:449 adminpages/membershiplevels.php:357
|
764 |
#: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
|
765 |
#: adminpages/discountcodes.php:447 adminpages/discountcodes.php:448
|
766 |
-
#: adminpages/
|
767 |
-
#: adminpages/membershiplevels.php:
|
768 |
-
#: adminpages/membershiplevels.php:358
|
769 |
msgid "Check if this level has a recurring subscription payment."
|
770 |
msgstr ""
|
771 |
|
772 |
#: adminpages/discountcodes.php:453 adminpages/membershiplevels.php:361
|
773 |
#: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
|
774 |
-
#: adminpages/discountcodes.php:452 adminpages/
|
775 |
-
#: adminpages/membershiplevels.php:
|
776 |
-
#: adminpages/membershiplevels.php:
|
|
|
777 |
msgid "Billing Amount"
|
778 |
msgstr ""
|
779 |
|
780 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
781 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
782 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
783 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
784 |
-
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:
|
785 |
-
#: adminpages/discountcodes.php:
|
|
|
786 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
787 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
788 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
@@ -798,10 +816,11 @@ msgstr ""
|
|
798 |
|
799 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
800 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
801 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
802 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
803 |
-
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:
|
804 |
-
#: adminpages/discountcodes.php:
|
|
|
805 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
806 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
807 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
@@ -817,10 +836,11 @@ msgstr ""
|
|
817 |
|
818 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
819 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
820 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
821 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
822 |
-
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:
|
823 |
-
#: adminpages/discountcodes.php:
|
|
|
824 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
825 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
826 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
@@ -836,10 +856,11 @@ msgstr ""
|
|
836 |
|
837 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
838 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
839 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
840 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
841 |
-
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:
|
842 |
-
#: adminpages/discountcodes.php:
|
|
|
843 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
844 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
845 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
@@ -856,27 +877,27 @@ msgstr ""
|
|
856 |
#: adminpages/discountcodes.php:476 adminpages/membershiplevels.php:385
|
857 |
#: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
|
858 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:475
|
859 |
-
#: adminpages/
|
860 |
-
#: adminpages/membershiplevels.php:
|
861 |
-
#: adminpages/membershiplevels.php:386
|
862 |
msgid "The amount to be billed one cycle after the initial payment."
|
863 |
msgstr ""
|
864 |
|
865 |
#: adminpages/discountcodes.php:481 adminpages/membershiplevels.php:403
|
866 |
#: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
|
867 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:480
|
868 |
-
#: adminpages/
|
869 |
-
#: adminpages/membershiplevels.php:
|
870 |
-
#: adminpages/membershiplevels.php:404
|
871 |
msgid "Billing Cycle Limit"
|
872 |
msgstr ""
|
873 |
|
874 |
#: adminpages/discountcodes.php:484 adminpages/membershiplevels.php:407
|
875 |
#: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
|
876 |
#: adminpages/discountcodes.php:482 adminpages/discountcodes.php:483
|
877 |
-
#: adminpages/
|
878 |
-
#: adminpages/membershiplevels.php:
|
879 |
-
#: adminpages/membershiplevels.php:408
|
880 |
msgid ""
|
881 |
"The <strong>total</strong> number of recurring billing cycles for this "
|
882 |
"level, including the trial period (if applicable) but not including the "
|
@@ -886,83 +907,89 @@ msgstr ""
|
|
886 |
#: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:416
|
887 |
#: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
|
888 |
#: adminpages/discountcodes.php:487 adminpages/discountcodes.php:488
|
889 |
-
#: adminpages/
|
890 |
-
#: adminpages/membershiplevels.php:
|
891 |
-
#: adminpages/membershiplevels.php:417
|
892 |
msgid "Custom Trial"
|
893 |
msgstr ""
|
894 |
|
895 |
#: adminpages/discountcodes.php:490 adminpages/membershiplevels.php:418
|
896 |
#: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
|
897 |
#: adminpages/discountcodes.php:488 adminpages/discountcodes.php:489
|
898 |
-
#: adminpages/
|
899 |
-
#: adminpages/membershiplevels.php:
|
900 |
-
#: adminpages/membershiplevels.php:
|
|
|
901 |
msgid "Check to add a custom trial period."
|
902 |
msgstr ""
|
903 |
|
904 |
#: adminpages/discountcodes.php:494 adminpages/membershiplevels.php:427
|
905 |
#: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
|
906 |
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:493
|
907 |
-
#: adminpages/
|
908 |
-
#: adminpages/membershiplevels.php:
|
909 |
-
#: adminpages/membershiplevels.php:
|
|
|
910 |
msgid "Trial Billing Amount"
|
911 |
msgstr ""
|
912 |
|
913 |
#: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:438
|
914 |
#: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
|
915 |
#: adminpages/discountcodes.php:503 adminpages/discountcodes.php:504
|
916 |
-
#: adminpages/
|
917 |
-
#: adminpages/membershiplevels.php:
|
918 |
-
#: adminpages/membershiplevels.php:
|
|
|
919 |
msgid "for the first"
|
920 |
msgstr ""
|
921 |
|
922 |
#: adminpages/discountcodes.php:507 adminpages/membershiplevels.php:440
|
923 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
|
924 |
#: adminpages/discountcodes.php:505 adminpages/discountcodes.php:506
|
925 |
-
#: adminpages/
|
926 |
-
#: adminpages/membershiplevels.php:
|
927 |
-
#: adminpages/membershiplevels.php:
|
|
|
928 |
msgid "subscription payments"
|
929 |
msgstr ""
|
930 |
|
931 |
#: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:469
|
932 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
|
933 |
#: adminpages/discountcodes.php:510 adminpages/discountcodes.php:511
|
934 |
-
#: adminpages/
|
935 |
-
#: adminpages/membershiplevels.php:
|
936 |
-
#: adminpages/membershiplevels.php:
|
937 |
-
#: adminpages/membershiplevels.php:470
|
938 |
msgid "Membership Expiration"
|
939 |
msgstr ""
|
940 |
|
941 |
#: adminpages/discountcodes.php:513 adminpages/membershiplevels.php:470
|
942 |
#: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
|
943 |
-
#: adminpages/discountcodes.php:512 adminpages/
|
944 |
-
#: adminpages/membershiplevels.php:
|
945 |
-
#: adminpages/membershiplevels.php:
|
946 |
-
#: adminpages/membershiplevels.php:
|
|
|
947 |
msgid "Check this to set when membership access expires."
|
948 |
msgstr ""
|
949 |
|
950 |
#: adminpages/discountcodes.php:517 adminpages/membershiplevels.php:474
|
951 |
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
|
952 |
#: adminpages/discountcodes.php:515 adminpages/discountcodes.php:516
|
953 |
-
#: adminpages/
|
954 |
-
#: adminpages/membershiplevels.php:
|
955 |
-
#: adminpages/membershiplevels.php:
|
956 |
-
#: adminpages/membershiplevels.php:475
|
957 |
msgid "Expires In"
|
958 |
msgstr ""
|
959 |
|
960 |
#: adminpages/discountcodes.php:530 adminpages/membershiplevels.php:487
|
961 |
#: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
|
962 |
-
#: adminpages/discountcodes.php:529 adminpages/
|
963 |
-
#: adminpages/membershiplevels.php:
|
964 |
-
#: adminpages/membershiplevels.php:
|
965 |
-
#: adminpages/membershiplevels.php:
|
|
|
966 |
msgid ""
|
967 |
"Set the duration of membership access. Note that the any future payments "
|
968 |
"(recurring subscription, if any) will be cancelled when the membership "
|
@@ -971,27 +998,27 @@ msgstr ""
|
|
971 |
|
972 |
#: adminpages/discountcodes.php:558 adminpages/discountcodes.php:525
|
973 |
#: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
|
974 |
-
#: adminpages/discountcodes.php:557
|
975 |
msgid "Memberships Discount Codes"
|
976 |
msgstr ""
|
977 |
|
978 |
#: adminpages/discountcodes.php:568 adminpages/discountcodes.php:535
|
979 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
|
980 |
-
#: adminpages/discountcodes.php:567
|
981 |
msgid "Search Discount Codes"
|
982 |
msgstr ""
|
983 |
|
984 |
#: adminpages/discountcodes.php:571 adminpages/reports/login.php:99
|
985 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
|
986 |
#: adminpages/discountcodes.php:569 adminpages/discountcodes.php:570
|
987 |
-
#: adminpages/
|
988 |
-
#: adminpages/reports/login.php:99
|
989 |
msgid "Search"
|
990 |
msgstr ""
|
991 |
|
992 |
#: adminpages/discountcodes.php:589 adminpages/discountcodes.php:549
|
993 |
#: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
|
994 |
-
#: adminpages/discountcodes.php:588
|
995 |
msgid "Starts"
|
996 |
msgstr ""
|
997 |
|
@@ -999,53 +1026,54 @@ msgstr ""
|
|
999 |
#: adminpages/reports/login.php:163 includes/profile.php:107
|
1000 |
#: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
|
1001 |
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
|
1002 |
-
#: adminpages/
|
1003 |
-
#: adminpages/memberslist.php:
|
1004 |
-
#: adminpages/
|
1005 |
-
#: adminpages/reports/login.php:
|
1006 |
-
#: includes/profile.php:
|
1007 |
-
#: includes/profile.php:120
|
1008 |
msgid "Expires"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
#: adminpages/discountcodes.php:592 adminpages/discountcodes.php:552
|
1012 |
#: adminpages/discountcodes.php:562 adminpages/discountcodes.php:590
|
1013 |
-
#: adminpages/discountcodes.php:591
|
1014 |
msgid "Levels"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
#: adminpages/discountcodes.php:604 adminpages/discountcodes.php:570
|
1018 |
#: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
|
1019 |
-
#: adminpages/discountcodes.php:603
|
1020 |
msgid "Create your first discount code now"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
#: adminpages/discountcodes.php:604 adminpages/discountcodes.php:570
|
1024 |
#: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
|
1025 |
-
#: adminpages/discountcodes.php:603
|
1026 |
msgid ""
|
1027 |
"Discount codes allow you to offer your memberships at discounted prices to "
|
1028 |
"select customers."
|
1029 |
msgstr ""
|
1030 |
|
1031 |
-
#: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:
|
1032 |
#: adminpages/orders.php:1021 adminpages/discountcodes.php:614
|
1033 |
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
1034 |
#: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
|
1035 |
-
#: adminpages/
|
1036 |
-
#: adminpages/membershiplevels.php:
|
1037 |
-
#: adminpages/membershiplevels.php:
|
1038 |
-
#: adminpages/membershiplevels.php:
|
1039 |
-
#: adminpages/
|
1040 |
-
#: adminpages/orders.php:
|
1041 |
-
#: adminpages/orders.php:
|
1042 |
-
#: adminpages/orders.php:1050
|
1043 |
msgid "edit"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
#: adminpages/discountcodes.php:653 adminpages/discountcodes.php:617
|
1047 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
1048 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
|
|
1049 |
#, php-format
|
1050 |
msgid ""
|
1051 |
"Are you sure you want to delete the %s discount code? The subscriptions for "
|
@@ -1053,18 +1081,18 @@ msgid ""
|
|
1053 |
"code anymore."
|
1054 |
msgstr ""
|
1055 |
|
1056 |
-
#: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:
|
1057 |
#: adminpages/orders.php:1027 adminpages/discountcodes.php:617
|
1058 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
1059 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
1060 |
-
#: adminpages/
|
1061 |
-
#: adminpages/membershiplevels.php:
|
1062 |
-
#: adminpages/membershiplevels.php:
|
1063 |
-
#: adminpages/membershiplevels.php:
|
1064 |
-
#: adminpages/
|
1065 |
-
#: adminpages/orders.php:
|
1066 |
-
#: adminpages/orders.php:
|
1067 |
-
#: adminpages/orders.php:1056
|
1068 |
msgid "delete"
|
1069 |
msgstr ""
|
1070 |
|
@@ -1237,7 +1265,7 @@ msgstr ""
|
|
1237 |
msgid "Add New Membership Level"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:
|
1241 |
#: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
|
1242 |
#: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
|
1243 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
|
@@ -1254,7 +1282,7 @@ msgstr ""
|
|
1254 |
msgid "Confirmation Message"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
-
#: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:
|
1258 |
#: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
|
1259 |
#: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:338
|
1260 |
#: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:585
|
@@ -1263,7 +1291,7 @@ msgid "Billing Details"
|
|
1263 |
msgstr ""
|
1264 |
|
1265 |
#: adminpages/membershiplevels.php:372
|
1266 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1267 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
1268 |
#: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
|
1269 |
#: adminpages/membershiplevels.php:373
|
@@ -1413,13 +1441,13 @@ msgstr ""
|
|
1413 |
msgid "Categories"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#: adminpages/membershiplevels.php:
|
1417 |
#: adminpages/membershiplevels.php:517
|
1418 |
msgid "Save Level"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: adminpages/membershiplevels.php:
|
1422 |
-
#: pages/billing.php:
|
1423 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
|
1424 |
#: adminpages/orders.php:511 adminpages/orders.php:561
|
1425 |
#: adminpages/orders.php:633 adminpages/orders.php:662 pages/account.php:44
|
@@ -1430,7 +1458,7 @@ msgstr ""
|
|
1430 |
msgid "Cancel"
|
1431 |
msgstr ""
|
1432 |
|
1433 |
-
#: adminpages/membershiplevels.php:
|
1434 |
#: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
|
1435 |
#: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
|
1436 |
#: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:618
|
@@ -1438,7 +1466,7 @@ msgstr ""
|
|
1438 |
msgid "Add New Level"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: adminpages/membershiplevels.php:
|
1442 |
#: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
|
1443 |
#: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
|
1444 |
#: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
|
@@ -1450,12 +1478,12 @@ msgstr ""
|
|
1450 |
msgid "Search Levels"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: adminpages/membershiplevels.php:
|
1454 |
#: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:631
|
1455 |
msgid "Drag and drop membership levels to reorder them on the Levels page."
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#: adminpages/membershiplevels.php:
|
1459 |
#: pages/confirmation.php:83 pages/invoice.php:70
|
1460 |
#: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
|
1461 |
#: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
|
@@ -1467,7 +1495,7 @@ msgstr ""
|
|
1467 |
msgid "Expiration"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: adminpages/membershiplevels.php:
|
1471 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
|
1472 |
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
|
1473 |
#: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:640
|
@@ -1475,7 +1503,7 @@ msgstr ""
|
|
1475 |
msgid "Allow Signups"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
#: adminpages/membershiplevels.php:
|
1479 |
#: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
|
1480 |
#: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
|
1481 |
#: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:655
|
@@ -1483,7 +1511,7 @@ msgstr ""
|
|
1483 |
msgid "FREE"
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: adminpages/membershiplevels.php:
|
1487 |
#: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
|
1488 |
#: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
|
1489 |
#: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:664
|
@@ -1491,7 +1519,7 @@ msgstr ""
|
|
1491 |
msgid "After"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: adminpages/membershiplevels.php:
|
1495 |
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
|
1496 |
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
|
1497 |
#: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
|
@@ -1501,7 +1529,7 @@ msgid ""
|
|
1501 |
"be cancelled."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
-
#: adminpages/membershiplevels.php:
|
1505 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
|
1506 |
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
|
1507 |
#: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
|
@@ -1537,6 +1565,7 @@ msgstr ""
|
|
1537 |
#: adminpages/reports/login.php:67 adminpages/reports/login.php:83
|
1538 |
#: adminpages/reports/memberships.php:256
|
1539 |
#: adminpages/reports/memberships.php:263
|
|
|
1540 |
#: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
|
1541 |
#: adminpages/reports/sales.php:193 adminpages/reports/sales.php:194
|
1542 |
#: adminpages/reports/sales.php:202
|
@@ -1549,6 +1578,7 @@ msgstr ""
|
|
1549 |
#: adminpages/reports/login.php:69 adminpages/reports/login.php:85
|
1550 |
#: adminpages/reports/memberships.php:281
|
1551 |
#: adminpages/reports/memberships.php:290
|
|
|
1552 |
#: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:208
|
1553 |
#: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
|
1554 |
#: adminpages/reports/sales.php:225
|
@@ -1605,7 +1635,7 @@ msgstr ""
|
|
1605 |
msgid "Last Name"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: adminpages/memberslist.php:170 pages/billing.php:
|
1609 |
#: pages/confirmation.php:61 pages/invoice.php:48
|
1610 |
#: adminpages/memberslist.php:117 adminpages/memberslist.php:150
|
1611 |
#: adminpages/memberslist.php:160 adminpages/memberslist.php:170
|
@@ -1823,8 +1853,8 @@ msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
|
1823 |
msgstr ""
|
1824 |
|
1825 |
#: adminpages/orders.php:461
|
1826 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
1827 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1828 |
#: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
|
1829 |
#: adminpages/orders.php:461 adminpages/orders.php:490
|
1830 |
#: classes/gateways/class.pmprogateway_braintree.php:291
|
@@ -2081,7 +2111,7 @@ msgstr ""
|
|
2081 |
msgid "User"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
-
#: adminpages/orders.php:941 includes/init.php:
|
2085 |
#: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
|
2086 |
#: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
|
2087 |
#: adminpages/orders.php:601 adminpages/orders.php:904
|
@@ -2406,7 +2436,7 @@ msgstr ""
|
|
2406 |
msgid "Sales Tax"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: adminpages/paymentsettings.php:188 pages/billing.php:
|
2410 |
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
|
2411 |
#: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
|
2412 |
#: adminpages/paymentsettings.php:445 pages/billing.php:78
|
@@ -2592,6 +2622,7 @@ msgstr ""
|
|
2592 |
#: adminpages/reports/memberships.php:18
|
2593 |
#: adminpages/reports/memberships.php:252
|
2594 |
#: adminpages/reports/memberships.php:259
|
|
|
2595 |
#: adminpages/reports/memberships.php:288
|
2596 |
msgid "Membership Stats"
|
2597 |
msgstr ""
|
@@ -2614,6 +2645,7 @@ msgstr ""
|
|
2614 |
#: adminpages/reports/memberships.php:278 adminpages/reports/sales.php:204
|
2615 |
#: adminpages/reports/memberships.php:258
|
2616 |
#: adminpages/reports/memberships.php:265
|
|
|
2617 |
#: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:187
|
2618 |
#: adminpages/reports/sales.php:195 adminpages/reports/sales.php:196
|
2619 |
#: adminpages/reports/sales.php:204
|
@@ -2623,6 +2655,7 @@ msgstr ""
|
|
2623 |
#: adminpages/reports/memberships.php:279 adminpages/reports/sales.php:205
|
2624 |
#: adminpages/reports/memberships.php:259
|
2625 |
#: adminpages/reports/memberships.php:266
|
|
|
2626 |
#: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:188
|
2627 |
#: adminpages/reports/sales.php:196 adminpages/reports/sales.php:197
|
2628 |
#: adminpages/reports/sales.php:205
|
@@ -2632,6 +2665,7 @@ msgstr ""
|
|
2632 |
#: adminpages/reports/memberships.php:280 adminpages/reports/sales.php:206
|
2633 |
#: adminpages/reports/memberships.php:260
|
2634 |
#: adminpages/reports/memberships.php:267
|
|
|
2635 |
#: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:189
|
2636 |
#: adminpages/reports/sales.php:197 adminpages/reports/sales.php:198
|
2637 |
#: adminpages/reports/sales.php:206
|
@@ -2640,18 +2674,21 @@ msgstr ""
|
|
2640 |
|
2641 |
#: adminpages/reports/memberships.php:283
|
2642 |
#: adminpages/reports/memberships.php:270
|
|
|
2643 |
msgid "Signups vs. All Cancellations"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
#: adminpages/reports/memberships.php:284
|
2647 |
#: adminpages/reports/memberships.php:263
|
2648 |
#: adminpages/reports/memberships.php:271
|
|
|
2649 |
#: adminpages/reports/memberships.php:299
|
2650 |
msgid "Signups vs. Cancellations"
|
2651 |
msgstr ""
|
2652 |
|
2653 |
#: adminpages/reports/memberships.php:285
|
2654 |
#: adminpages/reports/memberships.php:272
|
|
|
2655 |
msgid "Signups vs. Expirations"
|
2656 |
msgstr ""
|
2657 |
|
@@ -2665,6 +2702,8 @@ msgstr ""
|
|
2665 |
#: adminpages/reports/memberships.php:277
|
2666 |
#: adminpages/reports/memberships.php:279
|
2667 |
#: adminpages/reports/memberships.php:288
|
|
|
|
|
2668 |
#: adminpages/reports/memberships.php:304
|
2669 |
#: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:195
|
2670 |
#: adminpages/reports/sales.php:203 adminpages/reports/sales.php:204
|
@@ -2677,6 +2716,7 @@ msgstr ""
|
|
2677 |
#: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:239
|
2678 |
#: adminpages/reports/memberships.php:295
|
2679 |
#: adminpages/reports/memberships.php:304
|
|
|
2680 |
#: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:222
|
2681 |
#: adminpages/reports/sales.php:230 adminpages/reports/sales.php:231
|
2682 |
#: adminpages/reports/sales.php:239
|
@@ -2749,19 +2789,19 @@ msgstr ""
|
|
2749 |
msgid "Subtotal"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: adminpages/updates.php:
|
2753 |
msgid "Updating Paid Memberships Pro"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: adminpages/updates.php:
|
2757 |
msgid "Updates are processing. This may take a few minutes to complete."
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: adminpages/updates.php:
|
2761 |
msgid "Update complete."
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: classes/class.memberorder.php:
|
2765 |
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
2766 |
#: classes/class.memberorder.php:573 classes/class.memberorder.php:644
|
2767 |
#: classes/class.memberorder.php:697 includes/cleanup.php:24
|
@@ -2800,10 +2840,10 @@ msgstr ""
|
|
2800 |
|
2801 |
#: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
|
2802 |
#: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
|
2803 |
-
#: classes/class.pmproemail.php:346 classes/class.pmproemail.php:
|
2804 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
2805 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
2806 |
-
#: pages/checkout.php:86 pages/checkout.php:
|
2807 |
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
2808 |
#: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
|
2809 |
#: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
|
@@ -2837,7 +2877,7 @@ msgid "Discount Code"
|
|
2837 |
msgstr ""
|
2838 |
|
2839 |
#: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
|
2840 |
-
#: classes/class.pmproemail.php:
|
2841 |
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
2842 |
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
|
2843 |
#: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
|
@@ -2887,42 +2927,42 @@ msgstr ""
|
|
2887 |
msgid "Credit Card on File Expiring Soon at %s"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: classes/class.pmproemail.php:
|
2891 |
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
2892 |
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
|
2893 |
#, php-format
|
2894 |
msgid "INVOICE for %s membership"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
-
#: classes/class.pmproemail.php:
|
2898 |
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
2899 |
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
|
2900 |
#, php-format
|
2901 |
msgid "Your trial at %s is ending soon"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: classes/class.pmproemail.php:
|
2905 |
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
2906 |
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
|
2907 |
#, php-format
|
2908 |
msgid "Your membership at %s has ended"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: classes/class.pmproemail.php:
|
2912 |
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
2913 |
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
|
2914 |
#, php-format
|
2915 |
msgid "Your membership at %s will end soon"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: classes/class.pmproemail.php:
|
2919 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
2920 |
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
|
2921 |
#, php-format
|
2922 |
msgid "Your membership at %s has been changed"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#: classes/class.pmproemail.php:
|
2926 |
#: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
|
2927 |
#: classes/class.pmproemail.php:771 classes/class.pmproemail.php:800
|
2928 |
#: classes/class.pmproemail.php:809
|
@@ -2930,13 +2970,13 @@ msgstr ""
|
|
2930 |
msgid "The new level is %s"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: classes/class.pmproemail.php:
|
2934 |
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
2935 |
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
|
2936 |
msgid "Your membership has been cancelled"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#: classes/class.pmproemail.php:
|
2940 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
2941 |
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
2942 |
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
|
@@ -2946,7 +2986,7 @@ msgstr ""
|
|
2946 |
msgid "This membership will expire on %s"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
-
#: classes/class.pmproemail.php:
|
2950 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
2951 |
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
2952 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
|
@@ -2955,19 +2995,19 @@ msgstr ""
|
|
2955 |
msgid "This membership does not expire"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: classes/class.pmproemail.php:
|
2959 |
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
2960 |
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
|
2961 |
#, php-format
|
2962 |
msgid "Membership for %s at %s has been changed"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: classes/class.pmproemail.php:
|
2966 |
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
|
2967 |
msgid "Membership has been cancelled"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: classes/class.pmproemail.php:
|
2971 |
msgid "Invoice for Order #: "
|
2972 |
msgstr ""
|
2973 |
|
@@ -3063,7 +3103,7 @@ msgstr ""
|
|
3063 |
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
3064 |
#: paid-memberships-pro.php:122 paid-memberships-pro.php:123
|
3065 |
#: paid-memberships-pro.php:130 paid-memberships-pro.php:131
|
3066 |
-
#: paid-memberships-pro.php:132
|
3067 |
msgid "Authorize.net"
|
3068 |
msgstr ""
|
3069 |
|
@@ -3120,7 +3160,7 @@ msgstr ""
|
|
3120 |
#: classes/gateways/class.pmprogateway_braintree.php:76
|
3121 |
#: paid-memberships-pro.php:123 paid-memberships-pro.php:124
|
3122 |
#: paid-memberships-pro.php:131 paid-memberships-pro.php:132
|
3123 |
-
#: paid-memberships-pro.php:133
|
3124 |
msgid "Braintree Payments"
|
3125 |
msgstr ""
|
3126 |
|
@@ -3188,8 +3228,8 @@ msgstr ""
|
|
3188 |
msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3192 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3193 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
3194 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
3195 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -3204,8 +3244,8 @@ msgstr ""
|
|
3204 |
msgid "Payment Information"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3208 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3209 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
3210 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
3211 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -3221,8 +3261,8 @@ msgstr ""
|
|
3221 |
msgid "We Accept %s"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3225 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3226 |
#: pages/checkout.php:570
|
3227 |
#: classes/gateways/class.pmprogateway_braintree.php:303
|
3228 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
@@ -3239,9 +3279,9 @@ msgstr ""
|
|
3239 |
msgid "Card Number"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3243 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3244 |
-
#: pages/checkout.php:
|
3245 |
#: classes/gateways/class.pmprogateway_braintree.php:340
|
3246 |
#: classes/gateways/class.pmprogateway_braintree.php:353
|
3247 |
#: classes/gateways/class.pmprogateway_braintree.php:355
|
@@ -3257,9 +3297,9 @@ msgstr ""
|
|
3257 |
msgid "CVV"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3261 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3262 |
-
#: pages/checkout.php:
|
3263 |
#: classes/gateways/class.pmprogateway_braintree.php:341
|
3264 |
#: classes/gateways/class.pmprogateway_braintree.php:354
|
3265 |
#: classes/gateways/class.pmprogateway_braintree.php:356
|
@@ -3275,9 +3315,9 @@ msgstr ""
|
|
3275 |
msgid "what's this?"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3279 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3280 |
-
#: pages/checkout.php:
|
3281 |
#: classes/gateways/class.pmprogateway_braintree.php:351
|
3282 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
3283 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
@@ -3293,8 +3333,8 @@ msgstr ""
|
|
3293 |
msgid "Apply"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3297 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3298 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
3299 |
#: classes/gateways/class.pmprogateway_braintree.php:406
|
3300 |
#: classes/gateways/class.pmprogateway_braintree.php:419
|
@@ -3309,7 +3349,7 @@ msgstr ""
|
|
3309 |
msgid "Unknown error: Initial payment failed."
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3313 |
#: classes/gateways/class.pmprogateway_braintree.php:120
|
3314 |
#: classes/gateways/class.pmprogateway_braintree.php:465
|
3315 |
#: classes/gateways/class.pmprogateway_braintree.php:478
|
@@ -3317,7 +3357,7 @@ msgstr ""
|
|
3317 |
msgid "Error during settlement:"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3321 |
#: classes/gateways/class.pmprogateway_braintree.php:129
|
3322 |
#: classes/gateways/class.pmprogateway_braintree.php:474
|
3323 |
#: classes/gateways/class.pmprogateway_braintree.php:487
|
@@ -3325,7 +3365,7 @@ msgstr ""
|
|
3325 |
msgid "Error during charge:"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3329 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
3330 |
#: classes/gateways/class.pmprogateway_braintree.php:221
|
3331 |
#: classes/gateways/class.pmprogateway_braintree.php:566
|
@@ -3334,7 +3374,7 @@ msgstr ""
|
|
3334 |
msgid "Failed to update customer."
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3338 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
3339 |
#: classes/gateways/class.pmprogateway_braintree.php:269
|
3340 |
#: classes/gateways/class.pmprogateway_braintree.php:614
|
@@ -3343,7 +3383,7 @@ msgstr ""
|
|
3343 |
msgid "Failed to create customer."
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3347 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
3348 |
#: classes/gateways/class.pmprogateway_braintree.php:276
|
3349 |
#: classes/gateways/class.pmprogateway_braintree.php:621
|
@@ -3352,7 +3392,7 @@ msgstr ""
|
|
3352 |
msgid "Error creating customer record with Braintree:"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3356 |
#: classes/gateways/class.pmprogateway_braintree.php:344
|
3357 |
#: classes/gateways/class.pmprogateway_braintree.php:345
|
3358 |
#: classes/gateways/class.pmprogateway_braintree.php:376
|
@@ -3362,7 +3402,7 @@ msgstr ""
|
|
3362 |
msgid "Error subscribing customer to plan with Braintree:"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3366 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
3367 |
#: classes/gateways/class.pmprogateway_braintree.php:360
|
3368 |
#: classes/gateways/class.pmprogateway_braintree.php:391
|
@@ -3372,9 +3412,9 @@ msgstr ""
|
|
3372 |
msgid "Failed to subscribe with Braintree:"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3376 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3377 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
3378 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
3379 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
3380 |
#: classes/gateways/class.pmprogateway_braintree.php:410
|
@@ -3411,7 +3451,7 @@ msgstr ""
|
|
3411 |
#: classes/gateways/class.pmprogateway_check.php:48
|
3412 |
#: paid-memberships-pro.php:116 paid-memberships-pro.php:117
|
3413 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
3414 |
-
#: paid-memberships-pro.php:126
|
3415 |
msgid "Pay by Check"
|
3416 |
msgstr ""
|
3417 |
|
@@ -3525,7 +3565,7 @@ msgstr ""
|
|
3525 |
#: classes/gateways/class.pmprogateway_paypal.php:57
|
3526 |
#: paid-memberships-pro.php:119 paid-memberships-pro.php:120
|
3527 |
#: paid-memberships-pro.php:127 paid-memberships-pro.php:128
|
3528 |
-
#: paid-memberships-pro.php:129
|
3529 |
msgid "PayPal Website Payments Pro"
|
3530 |
msgstr ""
|
3531 |
|
@@ -3649,7 +3689,7 @@ msgstr ""
|
|
3649 |
#: classes/gateways/class.pmprogateway_paypal.php:184
|
3650 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3651 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
3652 |
-
#: pages/checkout.php:
|
3653 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:408
|
3654 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3655 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
@@ -3663,7 +3703,7 @@ msgstr ""
|
|
3663 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3664 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
3665 |
#: classes/gateways/class.pmprogateway_twocheckout.php:203
|
3666 |
-
#: pages/checkout.php:
|
3667 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:408
|
3668 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3669 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
@@ -3676,7 +3716,7 @@ msgstr ""
|
|
3676 |
msgid "Submit and Confirm"
|
3677 |
msgstr ""
|
3678 |
|
3679 |
-
#: classes/gateways/class.pmprogateway_paypal.php:
|
3680 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:752
|
3681 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:466
|
3682 |
#: classes/gateways/class.pmprogateway_paypal.php:385
|
@@ -3705,7 +3745,7 @@ msgstr ""
|
|
3705 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:73
|
3706 |
#: paid-memberships-pro.php:118 paid-memberships-pro.php:119
|
3707 |
#: paid-memberships-pro.php:126 paid-memberships-pro.php:127
|
3708 |
-
#: paid-memberships-pro.php:128
|
3709 |
msgid "PayPal Express"
|
3710 |
msgstr ""
|
3711 |
|
@@ -3737,7 +3777,7 @@ msgstr ""
|
|
3737 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
3738 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:122
|
3739 |
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
3740 |
-
#: paid-memberships-pro.php:131
|
3741 |
msgid "PayPal Standard"
|
3742 |
msgstr ""
|
3743 |
|
@@ -3764,7 +3804,7 @@ msgstr ""
|
|
3764 |
#: classes/gateways/class.pmprogateway_stripe.php:126
|
3765 |
#: paid-memberships-pro.php:117 paid-memberships-pro.php:118
|
3766 |
#: paid-memberships-pro.php:125 paid-memberships-pro.php:126
|
3767 |
-
#: paid-memberships-pro.php:127
|
3768 |
msgid "Stripe"
|
3769 |
msgstr ""
|
3770 |
|
@@ -3828,7 +3868,7 @@ msgstr ""
|
|
3828 |
msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3832 |
#: classes/gateways/class.pmprogateway_stripe.php:567
|
3833 |
#: classes/gateways/class.pmprogateway_stripe.php:568
|
3834 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
@@ -3837,7 +3877,7 @@ msgstr ""
|
|
3837 |
msgid "Subscription Updates"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3841 |
#: classes/gateways/class.pmprogateway_stripe.php:571
|
3842 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
3843 |
#: classes/gateways/class.pmprogateway_stripe.php:582
|
@@ -3848,7 +3888,7 @@ msgid ""
|
|
3848 |
"at predefined times. Be sure to click Update Profile after making changes."
|
3849 |
msgstr ""
|
3850 |
|
3851 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3852 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
3853 |
#: classes/gateways/class.pmprogateway_stripe.php:574
|
3854 |
#: classes/gateways/class.pmprogateway_stripe.php:584
|
@@ -3859,7 +3899,7 @@ msgid ""
|
|
3859 |
"at predefined times. Be sure to click Update User after making changes."
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3863 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
3864 |
#: classes/gateways/class.pmprogateway_stripe.php:579
|
3865 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
@@ -3870,7 +3910,7 @@ msgstr ""
|
|
3870 |
msgid "Update"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3874 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
3875 |
#: classes/gateways/class.pmprogateway_stripe.php:770
|
3876 |
#: classes/gateways/class.pmprogateway_stripe.php:780
|
@@ -3879,7 +3919,7 @@ msgstr ""
|
|
3879 |
msgid "Could not cancel the old subscription. Updates have not been processed."
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3883 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
3884 |
#: classes/gateways/class.pmprogateway_stripe.php:192
|
3885 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
@@ -3892,16 +3932,18 @@ msgstr ""
|
|
3892 |
#: classes/gateways/class.pmprogateway_stripe.php:1214
|
3893 |
#: classes/gateways/class.pmprogateway_stripe.php:1218
|
3894 |
#: classes/gateways/class.pmprogateway_stripe.php:1246
|
|
|
3895 |
msgid "Error creating customer record with Stripe:"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3899 |
#: classes/gateways/class.pmprogateway_stripe.php:1275
|
3900 |
#: classes/gateways/class.pmprogateway_stripe.php:1303
|
|
|
3901 |
msgid "Error getting subscription with Stripe:"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3905 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
3906 |
#: classes/gateways/class.pmprogateway_stripe.php:279
|
3907 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
@@ -3922,10 +3964,11 @@ msgstr ""
|
|
3922 |
#: classes/gateways/class.pmprogateway_stripe.php:1421
|
3923 |
#: classes/gateways/class.pmprogateway_stripe.php:1425
|
3924 |
#: classes/gateways/class.pmprogateway_stripe.php:1453
|
|
|
3925 |
msgid "Error creating plan with Stripe:"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3929 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
3930 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
3931 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
@@ -3941,10 +3984,11 @@ msgstr ""
|
|
3941 |
#: classes/gateways/class.pmprogateway_stripe.php:1452
|
3942 |
#: classes/gateways/class.pmprogateway_stripe.php:1456
|
3943 |
#: classes/gateways/class.pmprogateway_stripe.php:1484
|
|
|
3944 |
msgid "Error subscribing customer to plan with Stripe:"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3948 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
3949 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
3950 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
@@ -3957,10 +4001,11 @@ msgstr ""
|
|
3957 |
#: classes/gateways/class.pmprogateway_stripe.php:1548
|
3958 |
#: classes/gateways/class.pmprogateway_stripe.php:1552
|
3959 |
#: classes/gateways/class.pmprogateway_stripe.php:1580
|
|
|
3960 |
msgid "Could not cancel old subscription."
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3964 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
3965 |
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
3966 |
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
@@ -3970,6 +4015,7 @@ msgstr ""
|
|
3970 |
#: classes/gateways/class.pmprogateway_stripe.php:1565
|
3971 |
#: classes/gateways/class.pmprogateway_stripe.php:1569
|
3972 |
#: classes/gateways/class.pmprogateway_stripe.php:1597
|
|
|
3973 |
msgid "Could not find the customer."
|
3974 |
msgstr ""
|
3975 |
|
@@ -3980,7 +4026,7 @@ msgstr ""
|
|
3980 |
#: classes/gateways/class.pmprogateway_twocheckout.php:60
|
3981 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
3982 |
#: paid-memberships-pro.php:132 paid-memberships-pro.php:133
|
3983 |
-
#: paid-memberships-pro.php:134
|
3984 |
msgid "2Checkout"
|
3985 |
msgstr ""
|
3986 |
|
@@ -4339,7 +4385,7 @@ msgstr ""
|
|
4339 |
msgid "Vietnamese Dong"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: includes/functions.php:
|
4343 |
#: includes/functions.php:196 includes/functions.php:200
|
4344 |
#: includes/functions.php:202 includes/functions.php:203
|
4345 |
#: includes/functions.php:204 includes/functions.php:207
|
@@ -4348,7 +4394,7 @@ msgstr ""
|
|
4348 |
msgid "The price for membership is <strong>%s</strong> now"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: includes/functions.php:
|
4352 |
#: includes/functions.php:204 includes/functions.php:205
|
4353 |
#: includes/functions.php:206 includes/functions.php:209
|
4354 |
#: includes/functions.php:245
|
@@ -4356,7 +4402,7 @@ msgstr ""
|
|
4356 |
msgid "<strong>%s</strong> now"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#: includes/functions.php:
|
4360 |
#: includes/functions.php:205 includes/functions.php:211
|
4361 |
#: includes/functions.php:213 includes/functions.php:214
|
4362 |
#: includes/functions.php:215 includes/functions.php:218
|
@@ -4365,12 +4411,12 @@ msgstr ""
|
|
4365 |
msgid " and then <strong>%s per %s for %d more %s</strong>."
|
4366 |
msgstr ""
|
4367 |
|
4368 |
-
#: includes/functions.php:
|
4369 |
#, php-format
|
4370 |
msgid " and then <strong>%s every %d %s for %d more payments</strong>."
|
4371 |
msgstr ""
|
4372 |
|
4373 |
-
#: includes/functions.php:
|
4374 |
#: includes/functions.php:214 includes/functions.php:220
|
4375 |
#: includes/functions.php:222 includes/functions.php:223
|
4376 |
#: includes/functions.php:224 includes/functions.php:227
|
@@ -4379,7 +4425,7 @@ msgstr ""
|
|
4379 |
msgid " and then <strong>%s after %d %s</strong>."
|
4380 |
msgstr ""
|
4381 |
|
4382 |
-
#: includes/functions.php:
|
4383 |
#: includes/functions.php:229 includes/functions.php:230
|
4384 |
#: includes/functions.php:231 includes/functions.php:235
|
4385 |
#: includes/functions.php:271
|
@@ -4387,14 +4433,14 @@ msgstr ""
|
|
4387 |
msgid "The price for membership is <strong>%s per %s</strong>."
|
4388 |
msgstr ""
|
4389 |
|
4390 |
-
#: includes/functions.php:
|
4391 |
#: includes/functions.php:233 includes/functions.php:237
|
4392 |
#: includes/functions.php:273
|
4393 |
#, php-format
|
4394 |
msgid "<strong>%s per %s</strong>."
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
#: includes/functions.php:
|
4398 |
#: includes/functions.php:234 includes/functions.php:235
|
4399 |
#: includes/functions.php:238 includes/functions.php:242
|
4400 |
#: includes/functions.php:278
|
@@ -4402,14 +4448,14 @@ msgstr ""
|
|
4402 |
msgid "The price for membership is <strong>%s every %d %s</strong>."
|
4403 |
msgstr ""
|
4404 |
|
4405 |
-
#: includes/functions.php:
|
4406 |
#: includes/functions.php:240 includes/functions.php:244
|
4407 |
#: includes/functions.php:280
|
4408 |
#, php-format
|
4409 |
msgid "<strong>%s every %d %s</strong>."
|
4410 |
msgstr ""
|
4411 |
|
4412 |
-
#: includes/functions.php:
|
4413 |
#: includes/functions.php:220 includes/functions.php:228
|
4414 |
#: includes/functions.php:238 includes/functions.php:239
|
4415 |
#: includes/functions.php:240 includes/functions.php:242
|
@@ -4419,7 +4465,7 @@ msgstr ""
|
|
4419 |
msgid " and then <strong>%s per %s</strong>."
|
4420 |
msgstr ""
|
4421 |
|
4422 |
-
#: includes/functions.php:
|
4423 |
#: includes/functions.php:224 includes/functions.php:232
|
4424 |
#: includes/functions.php:242 includes/functions.php:243
|
4425 |
#: includes/functions.php:244 includes/functions.php:246
|
@@ -4429,7 +4475,7 @@ msgstr ""
|
|
4429 |
msgid " and then <strong>%s every %d %s</strong>."
|
4430 |
msgstr ""
|
4431 |
|
4432 |
-
#: includes/functions.php:
|
4433 |
#: includes/functions.php:238 includes/functions.php:249
|
4434 |
#: includes/functions.php:260 includes/functions.php:261
|
4435 |
#: includes/functions.php:262 includes/functions.php:264
|
@@ -4438,7 +4484,7 @@ msgstr ""
|
|
4438 |
msgid "After your initial payment, your first payment is Free."
|
4439 |
msgstr ""
|
4440 |
|
4441 |
-
#: includes/functions.php:
|
4442 |
#: includes/functions.php:242 includes/functions.php:253
|
4443 |
#: includes/functions.php:264 includes/functions.php:265
|
4444 |
#: includes/functions.php:266 includes/functions.php:268
|
@@ -4448,7 +4494,7 @@ msgstr ""
|
|
4448 |
msgid "After your initial payment, your first %d payments are Free."
|
4449 |
msgstr ""
|
4450 |
|
4451 |
-
#: includes/functions.php:
|
4452 |
#: includes/functions.php:249 includes/functions.php:260
|
4453 |
#: includes/functions.php:271 includes/functions.php:272
|
4454 |
#: includes/functions.php:273 includes/functions.php:275
|
@@ -4458,7 +4504,7 @@ msgstr ""
|
|
4458 |
msgid "After your initial payment, your first payment will cost %s."
|
4459 |
msgstr ""
|
4460 |
|
4461 |
-
#: includes/functions.php:
|
4462 |
#: includes/functions.php:253 includes/functions.php:264
|
4463 |
#: includes/functions.php:275 includes/functions.php:276
|
4464 |
#: includes/functions.php:277 includes/functions.php:279
|
@@ -4468,7 +4514,7 @@ msgstr ""
|
|
4468 |
msgid "After your initial payment, your first %d payments will cost %s."
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#: includes/functions.php:
|
4472 |
#: includes/functions.php:264 includes/functions.php:275
|
4473 |
#: includes/functions.php:286 includes/functions.php:287
|
4474 |
#: includes/functions.php:288 includes/functions.php:290
|
@@ -4478,7 +4524,7 @@ msgstr ""
|
|
4478 |
msgid "Customers in %s will be charged %s%% tax."
|
4479 |
msgstr ""
|
4480 |
|
4481 |
-
#: includes/functions.php:
|
4482 |
#: includes/functions.php:278 includes/functions.php:289
|
4483 |
#: includes/functions.php:300 includes/functions.php:301
|
4484 |
#: includes/functions.php:302 includes/functions.php:304
|
@@ -4488,7 +4534,7 @@ msgstr ""
|
|
4488 |
msgid "Membership expires after %d %s."
|
4489 |
msgstr ""
|
4490 |
|
4491 |
-
#: includes/functions.php:
|
4492 |
#: includes/functions.php:514 includes/functions.php:525
|
4493 |
#: includes/functions.php:536 includes/functions.php:537
|
4494 |
#: includes/functions.php:538 includes/functions.php:545
|
@@ -4498,7 +4544,7 @@ msgstr ""
|
|
4498 |
msgid "User ID not found."
|
4499 |
msgstr ""
|
4500 |
|
4501 |
-
#: includes/functions.php:
|
4502 |
#: includes/functions.php:531 includes/functions.php:542
|
4503 |
#: includes/functions.php:553 includes/functions.php:554
|
4504 |
#: includes/functions.php:555 includes/functions.php:562
|
@@ -4509,7 +4555,7 @@ msgstr ""
|
|
4509 |
msgid "Invalid level."
|
4510 |
msgstr ""
|
4511 |
|
4512 |
-
#: includes/functions.php:
|
4513 |
#: includes/functions.php:542 includes/functions.php:553
|
4514 |
#: includes/functions.php:564 includes/functions.php:565
|
4515 |
#: includes/functions.php:566 includes/functions.php:573
|
@@ -4520,8 +4566,8 @@ msgstr ""
|
|
4520 |
msgid "not changing?"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
-
#: includes/functions.php:
|
4524 |
-
#: includes/functions.php:
|
4525 |
#: includes/functions.php:559 includes/functions.php:570
|
4526 |
#: includes/functions.php:581 includes/functions.php:582
|
4527 |
#: includes/functions.php:583 includes/functions.php:590
|
@@ -4544,7 +4590,7 @@ msgstr ""
|
|
4544 |
msgid "Error interacting with database"
|
4545 |
msgstr ""
|
4546 |
|
4547 |
-
#: includes/functions.php:
|
4548 |
#: includes/functions.php:629 includes/functions.php:651
|
4549 |
#: includes/functions.php:667 includes/functions.php:668
|
4550 |
#: includes/functions.php:678 includes/functions.php:681
|
@@ -4563,7 +4609,7 @@ msgstr ""
|
|
4563 |
msgid "Membership level not found."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
-
#: includes/functions.php:
|
4567 |
#: includes/functions.php:1101 includes/functions.php:1118
|
4568 |
#: includes/functions.php:1142 includes/functions.php:1143
|
4569 |
#: includes/functions.php:1150 includes/functions.php:1157
|
@@ -4572,7 +4618,7 @@ msgstr ""
|
|
4572 |
msgid "No code was given to check."
|
4573 |
msgstr ""
|
4574 |
|
4575 |
-
#: includes/functions.php:
|
4576 |
#: includes/functions.php:1072 includes/functions.php:1088
|
4577 |
#: includes/functions.php:1099 includes/functions.php:1102
|
4578 |
#: includes/functions.php:1109 includes/functions.php:1110
|
@@ -4584,7 +4630,7 @@ msgstr ""
|
|
4584 |
msgid "The discount code could not be found."
|
4585 |
msgstr ""
|
4586 |
|
4587 |
-
#: includes/functions.php:
|
4588 |
#: includes/functions.php:1088 includes/functions.php:1104
|
4589 |
#: includes/functions.php:1115 includes/functions.php:1118
|
4590 |
#: includes/functions.php:1124 includes/functions.php:1125
|
@@ -4597,7 +4643,7 @@ msgstr ""
|
|
4597 |
msgid "This discount code goes into effect on %s."
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: includes/functions.php:
|
4601 |
#: includes/functions.php:1097 includes/functions.php:1113
|
4602 |
#: includes/functions.php:1124 includes/functions.php:1127
|
4603 |
#: includes/functions.php:1131 includes/functions.php:1132
|
@@ -4610,7 +4656,7 @@ msgstr ""
|
|
4610 |
msgid "This discount code expired on %s."
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: includes/functions.php:
|
4614 |
#: includes/functions.php:1109 includes/functions.php:1125
|
4615 |
#: includes/functions.php:1136 includes/functions.php:1139
|
4616 |
#: includes/functions.php:1141 includes/functions.php:1142
|
@@ -4622,7 +4668,7 @@ msgstr ""
|
|
4622 |
msgid "This discount code is no longer valid."
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: includes/functions.php:
|
4626 |
#: includes/functions.php:1124 includes/functions.php:1140
|
4627 |
#: includes/functions.php:1151 includes/functions.php:1154
|
4628 |
#: includes/functions.php:1155 includes/functions.php:1164
|
@@ -4634,7 +4680,7 @@ msgstr ""
|
|
4634 |
msgid "This discount code does not apply to this membership level."
|
4635 |
msgstr ""
|
4636 |
|
4637 |
-
#: includes/functions.php:
|
4638 |
#: includes/functions.php:1132 includes/functions.php:1148
|
4639 |
#: includes/functions.php:1159 includes/functions.php:1162
|
4640 |
#: includes/functions.php:1172 includes/functions.php:1180
|
@@ -4646,7 +4692,7 @@ msgstr ""
|
|
4646 |
msgid "This discount code is okay."
|
4647 |
msgstr ""
|
4648 |
|
4649 |
-
#: includes/functions.php:
|
4650 |
#: includes/functions.php:1156 includes/functions.php:1172
|
4651 |
#: includes/functions.php:1183 includes/functions.php:1186
|
4652 |
#: includes/functions.php:1196 includes/functions.php:1205
|
@@ -4658,7 +4704,7 @@ msgstr ""
|
|
4658 |
msgid "and"
|
4659 |
msgstr ""
|
4660 |
|
4661 |
-
#: includes/functions.php:
|
4662 |
#: includes/functions.php:1341 includes/functions.php:1361
|
4663 |
#: includes/functions.php:1372 includes/functions.php:1375
|
4664 |
#: includes/functions.php:1385 includes/functions.php:1394
|
@@ -4671,7 +4717,7 @@ msgstr ""
|
|
4671 |
msgid "Sign Up for !!name!! Now"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: includes/functions.php:
|
4675 |
#: includes/functions.php:1347 includes/functions.php:1367
|
4676 |
#: includes/functions.php:1378 includes/functions.php:1381
|
4677 |
#: includes/functions.php:1391 includes/functions.php:1400
|
@@ -4684,7 +4730,7 @@ msgstr ""
|
|
4684 |
msgid "Please specify a level id."
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#: includes/init.php:
|
4688 |
#: includes/init.php:232 includes/init.php:233 includes/init.php:235
|
4689 |
#: includes/init.php:237 includes/init.php:245 includes/init.php:253
|
4690 |
#: includes/profile.php:37 includes/profile.php:39
|
@@ -4826,56 +4872,56 @@ msgid ""
|
|
4826 |
"checkbox is selected below."
|
4827 |
msgstr ""
|
4828 |
|
4829 |
-
#: includes/updates.php:
|
4830 |
msgid "Paid Memberships Pro Data Update Required"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
-
#: includes/updates.php:
|
4834 |
msgid "Start the Update"
|
4835 |
msgstr ""
|
4836 |
|
4837 |
-
#: includes/updates.php:
|
4838 |
msgid "All Paid Memberships Pro updates have finished."
|
4839 |
msgstr ""
|
4840 |
|
4841 |
-
#: includes/
|
4842 |
#: includes/upgradecheck.php:410 includes/upgradecheck.php:422
|
4843 |
#: includes/upgradecheck.php:442 includes/upgradecheck.php:542
|
4844 |
-
#: includes/upgradecheck.php:563
|
4845 |
#, php-format
|
4846 |
msgid ""
|
4847 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
-
#: includes/
|
4851 |
#: includes/upgradecheck.php:413 includes/upgradecheck.php:425
|
4852 |
#: includes/upgradecheck.php:445 includes/upgradecheck.php:545
|
4853 |
-
#: includes/upgradecheck.php:566
|
4854 |
#, php-format
|
4855 |
msgid ""
|
4856 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
|
4857 |
"<a href=\"%s\">Register</a>"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
-
#: includes/
|
4861 |
#: includes/upgradecheck.php:417 includes/upgradecheck.php:429
|
4862 |
#: includes/upgradecheck.php:449 includes/upgradecheck.php:549
|
4863 |
-
#: includes/upgradecheck.php:570
|
4864 |
msgid ""
|
4865 |
"This content is for !!levels!! members only. Visit the site and log in/"
|
4866 |
"register to read."
|
4867 |
msgstr ""
|
4868 |
|
4869 |
-
#: pages/billing.php:
|
4870 |
#, php-format
|
4871 |
msgid "Logged in as <strong>%s</strong>."
|
4872 |
msgstr ""
|
4873 |
|
4874 |
-
#: pages/billing.php:
|
4875 |
msgid "logout"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
-
#: pages/billing.php:
|
4879 |
#: pages/levels.php:35 shortcodes/pmpro_account.php:44
|
4880 |
#: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
|
4881 |
#: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
|
@@ -4885,36 +4931,36 @@ msgstr ""
|
|
4885 |
msgid "Level"
|
4886 |
msgstr ""
|
4887 |
|
4888 |
-
#: pages/billing.php:
|
4889 |
#: pages/billing.php:27
|
4890 |
msgid "Membership Fee"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
-
#: pages/billing.php:
|
4894 |
#: pages/billing.php:31 pages/levels.php:70
|
4895 |
#, php-format
|
4896 |
msgid "%s every %d %s."
|
4897 |
msgstr ""
|
4898 |
|
4899 |
-
#: pages/billing.php:
|
4900 |
#: pages/billing.php:33 pages/levels.php:66
|
4901 |
#, php-format
|
4902 |
msgid "%s per %s."
|
4903 |
msgstr ""
|
4904 |
|
4905 |
-
#: pages/billing.php:
|
4906 |
#: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
|
4907 |
msgid "Duration"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
-
#: pages/billing.php:
|
4911 |
#: pages/billing.php:52
|
4912 |
msgid ""
|
4913 |
"Your payment subscription is managed by PayPal. Please <a href=\"http://www."
|
4914 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
4915 |
msgstr ""
|
4916 |
|
4917 |
-
#: pages/billing.php:
|
4918 |
#: pages/billing.php:69 pages/billing.php:78 pages/checkout.php:305
|
4919 |
#: pages/checkout.php:307 pages/checkout.php:309 pages/checkout.php:318
|
4920 |
#: pages/checkout.php:321 pages/checkout.php:324 pages/checkout.php:326
|
@@ -4922,7 +4968,7 @@ msgstr ""
|
|
4922 |
msgid "First Name"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
-
#: pages/billing.php:
|
4926 |
#: pages/billing.php:73 pages/billing.php:82 pages/checkout.php:309
|
4927 |
#: pages/checkout.php:311 pages/checkout.php:313 pages/checkout.php:322
|
4928 |
#: pages/checkout.php:325 pages/checkout.php:328 pages/checkout.php:330
|
@@ -4930,7 +4976,7 @@ msgstr ""
|
|
4930 |
msgid "Last Name"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
-
#: pages/billing.php:
|
4934 |
#: pages/billing.php:77 pages/billing.php:86 pages/checkout.php:313
|
4935 |
#: pages/checkout.php:315 pages/checkout.php:317 pages/checkout.php:326
|
4936 |
#: pages/checkout.php:329 pages/checkout.php:332 pages/checkout.php:334
|
@@ -4938,7 +4984,7 @@ msgstr ""
|
|
4938 |
msgid "Address 1"
|
4939 |
msgstr ""
|
4940 |
|
4941 |
-
#: pages/billing.php:
|
4942 |
#: pages/billing.php:81 pages/billing.php:90 pages/checkout.php:317
|
4943 |
#: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:330
|
4944 |
#: pages/checkout.php:333 pages/checkout.php:336 pages/checkout.php:338
|
@@ -4946,7 +4992,7 @@ msgstr ""
|
|
4946 |
msgid "Address 2"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
-
#: pages/billing.php:
|
4950 |
#: pages/billing.php:91 pages/billing.php:100 pages/checkout.php:327
|
4951 |
#: pages/checkout.php:329 pages/checkout.php:331 pages/checkout.php:340
|
4952 |
#: pages/checkout.php:343 pages/checkout.php:346 pages/checkout.php:348
|
@@ -4954,7 +5000,7 @@ msgstr ""
|
|
4954 |
msgid "City"
|
4955 |
msgstr ""
|
4956 |
|
4957 |
-
#: pages/billing.php:
|
4958 |
#: pages/billing.php:95 pages/billing.php:104 pages/checkout.php:331
|
4959 |
#: pages/checkout.php:333 pages/checkout.php:335 pages/checkout.php:344
|
4960 |
#: pages/checkout.php:347 pages/checkout.php:350 pages/checkout.php:352
|
@@ -4962,7 +5008,7 @@ msgstr ""
|
|
4962 |
msgid "State"
|
4963 |
msgstr ""
|
4964 |
|
4965 |
-
#: pages/billing.php:
|
4966 |
#: pages/billing.php:99 pages/billing.php:108 pages/checkout.php:335
|
4967 |
#: pages/checkout.php:337 pages/checkout.php:339 pages/checkout.php:348
|
4968 |
#: pages/checkout.php:351 pages/checkout.php:354 pages/checkout.php:356
|
@@ -4970,7 +5016,7 @@ msgstr ""
|
|
4970 |
msgid "Postal Code"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
-
#: pages/billing.php:
|
4974 |
#: pages/billing.php:108 pages/billing.php:117 pages/checkout.php:344
|
4975 |
#: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:357
|
4976 |
#: pages/checkout.php:360 pages/checkout.php:363 pages/checkout.php:365
|
@@ -4978,7 +5024,7 @@ msgstr ""
|
|
4978 |
msgid "City, State Zip"
|
4979 |
msgstr ""
|
4980 |
|
4981 |
-
#: pages/billing.php:
|
4982 |
#: pages/billing.php:161 pages/billing.php:170 pages/checkout.php:397
|
4983 |
#: pages/checkout.php:399 pages/checkout.php:401 pages/checkout.php:410
|
4984 |
#: pages/checkout.php:413 pages/checkout.php:416 pages/checkout.php:418
|
@@ -4986,7 +5032,7 @@ msgstr ""
|
|
4986 |
msgid "Country"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
-
#: pages/billing.php:
|
4990 |
#: pages/billing.php:186 pages/billing.php:195 pages/checkout.php:422
|
4991 |
#: pages/checkout.php:424 pages/checkout.php:426 pages/checkout.php:435
|
4992 |
#: pages/checkout.php:438 pages/checkout.php:441 pages/checkout.php:443
|
@@ -4994,7 +5040,7 @@ msgstr ""
|
|
4994 |
msgid "Phone"
|
4995 |
msgstr ""
|
4996 |
|
4997 |
-
#: pages/billing.php:
|
4998 |
#: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
|
4999 |
#: pages/checkout.php:204 pages/checkout.php:207 pages/checkout.php:209
|
5000 |
#: pages/checkout.php:216 pages/checkout.php:218 pages/checkout.php:220
|
@@ -5004,7 +5050,7 @@ msgstr ""
|
|
5004 |
msgid "E-mail Address"
|
5005 |
msgstr ""
|
5006 |
|
5007 |
-
#: pages/billing.php:
|
5008 |
#: pages/billing.php:201 pages/billing.php:210 pages/checkout.php:445
|
5009 |
#: pages/checkout.php:447 pages/checkout.php:449 pages/checkout.php:458
|
5010 |
#: pages/checkout.php:462 pages/checkout.php:464 pages/checkout.php:466
|
@@ -5012,18 +5058,18 @@ msgstr ""
|
|
5012 |
msgid "Confirm E-mail"
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#: pages/billing.php:
|
5016 |
#: pages/billing.php:230 pages/billing.php:231
|
5017 |
msgid "Credit Card Information"
|
5018 |
msgstr ""
|
5019 |
|
5020 |
-
#: pages/billing.php:
|
5021 |
#: pages/billing.php:230 pages/billing.php:232
|
5022 |
#, php-format
|
5023 |
msgid "We accept %s"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
-
#: pages/billing.php:
|
5027 |
#: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
|
5028 |
#: pages/billing.php:360
|
5029 |
msgid ""
|
@@ -5168,20 +5214,20 @@ msgstr ""
|
|
5168 |
msgid "Check Out with a Credit Card Here"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
#: pages/checkout.php:
|
5172 |
#: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
|
5173 |
#: pages/checkout.php:681 pages/checkout.php:690 pages/checkout.php:696
|
5174 |
#, php-format
|
5175 |
msgid "I agree to the %s"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: pages/checkout.php:
|
5179 |
#: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
|
5180 |
#: pages/checkout.php:701 pages/checkout.php:710 pages/checkout.php:716
|
5181 |
msgid "Complete Payment"
|
5182 |
msgstr ""
|
5183 |
|
5184 |
-
#: pages/checkout.php:
|
5185 |
#: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
|
5186 |
#: pages/checkout.php:723 pages/checkout.php:732 pages/checkout.php:738
|
5187 |
msgid "Processing..."
|
@@ -5323,22 +5369,26 @@ msgstr ""
|
|
5323 |
#: adminpages/orders.php:448 paid-memberships-pro.php:115
|
5324 |
#: paid-memberships-pro.php:116 paid-memberships-pro.php:123
|
5325 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
|
|
5326 |
msgid "Testing Only"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
#: paid-memberships-pro.php:131 paid-memberships-pro.php:120
|
5330 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:128
|
5331 |
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
|
|
5332 |
msgid "PayPal Payflow Pro/PayPal Pro"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
#: paid-memberships-pro.php:136 paid-memberships-pro.php:125
|
5336 |
#: paid-memberships-pro.php:126 paid-memberships-pro.php:133
|
5337 |
#: paid-memberships-pro.php:134 paid-memberships-pro.php:135
|
|
|
5338 |
msgid "Cybersource"
|
5339 |
msgstr ""
|
5340 |
|
5341 |
#: paid-memberships-pro.php:157 paid-memberships-pro.php:156
|
|
|
5342 |
msgid "Once a month"
|
5343 |
msgstr ""
|
5344 |
|
@@ -5512,61 +5562,61 @@ msgstr ""
|
|
5512 |
#: preheaders/checkout.php:581 preheaders/checkout.php:550
|
5513 |
#: preheaders/checkout.php:552 preheaders/checkout.php:569
|
5514 |
#: preheaders/checkout.php:571 preheaders/checkout.php:575
|
5515 |
-
#: preheaders/checkout.php:
|
5516 |
-
#: preheaders/checkout.php:
|
5517 |
-
#: preheaders/checkout.php:
|
5518 |
-
#: preheaders/checkout.php:860
|
5519 |
msgid ""
|
5520 |
"Your payment was accepted, but there was an error setting up your account. "
|
5521 |
"Please contact us."
|
5522 |
msgstr ""
|
5523 |
|
5524 |
-
#: preheaders/checkout.php:
|
5525 |
#: preheaders/checkout.php:693 preheaders/checkout.php:710
|
5526 |
#: preheaders/checkout.php:712 preheaders/checkout.php:722
|
5527 |
-
#: preheaders/checkout.php:
|
5528 |
-
#: preheaders/checkout.php:
|
5529 |
-
#: preheaders/checkout.php:
|
5530 |
-
#: preheaders/checkout.php:1046
|
5531 |
msgid ""
|
5532 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
5533 |
"authorized, but we cancelled the order immediately. You should not try to "
|
5534 |
"submit this form again. Please contact the site owner to fix this issue."
|
5535 |
msgstr ""
|
5536 |
|
5537 |
-
#: preheaders/checkout.php:
|
5538 |
#: preheaders/checkout.php:696 preheaders/checkout.php:713
|
5539 |
#: preheaders/checkout.php:715 preheaders/checkout.php:725
|
5540 |
-
#: preheaders/checkout.php:
|
5541 |
-
#: preheaders/checkout.php:
|
5542 |
-
#: preheaders/checkout.php:
|
5543 |
-
#: preheaders/checkout.php:1051
|
5544 |
msgid ""
|
5545 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
5546 |
"was charged, but we couldn't assign your membership. You should not submit "
|
5547 |
"this form again. Please contact the site owner to fix this issue."
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: preheaders/checkout.php:
|
5551 |
#: preheaders/checkout.php:707 preheaders/checkout.php:724
|
5552 |
#: preheaders/checkout.php:726 preheaders/checkout.php:736
|
5553 |
-
#: preheaders/checkout.php:
|
5554 |
-
#: preheaders/checkout.php:
|
5555 |
-
#: preheaders/checkout.php:
|
5556 |
-
#: preheaders/checkout.php:1064
|
5557 |
#, php-format
|
5558 |
msgid ""
|
5559 |
"You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
|
5560 |
"will be processed."
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: preheaders/checkout.php:
|
5564 |
#: preheaders/checkout.php:709 preheaders/checkout.php:726
|
5565 |
#: preheaders/checkout.php:728 preheaders/checkout.php:738
|
5566 |
-
#: preheaders/checkout.php:
|
5567 |
-
#: preheaders/checkout.php:
|
5568 |
-
#: preheaders/checkout.php:
|
5569 |
-
#: preheaders/checkout.php:1066
|
5570 |
msgid "A Payment Gateway must be set up before any payments will be processed."
|
5571 |
msgstr ""
|
5572 |
|
@@ -5576,19 +5626,19 @@ msgstr ""
|
|
5576 |
msgid "Membership expired email sent to %s. "
|
5577 |
msgstr ""
|
5578 |
|
5579 |
-
#: scheduled/crons.php:
|
5580 |
#: scheduled/crons.php:80 scheduled/crons.php:84 scheduled/crons.php:88
|
5581 |
#, php-format
|
5582 |
msgid "Membership expiring email sent to %s. "
|
5583 |
msgstr ""
|
5584 |
|
5585 |
-
#: scheduled/crons.php:
|
5586 |
#: scheduled/crons.php:157 scheduled/crons.php:164
|
5587 |
#, php-format
|
5588 |
msgid "Credit card expiring email sent to %s. "
|
5589 |
msgstr ""
|
5590 |
|
5591 |
-
#: scheduled/crons.php:
|
5592 |
#: scheduled/crons.php:208 scheduled/crons.php:210 scheduled/crons.php:220
|
5593 |
#, php-format
|
5594 |
msgid "Trial ending email sent to %s. "
|
@@ -5607,7 +5657,7 @@ msgstr ""
|
|
5607 |
msgid "The <strong>%s</strong> code has been applied to your order."
|
5608 |
msgstr ""
|
5609 |
|
5610 |
-
#: services/authnet-silent-post.php:
|
5611 |
#: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
|
5612 |
#: services/authnet-silent-post.php:144
|
5613 |
msgid ""
|
@@ -5615,9 +5665,10 @@ msgid ""
|
|
5615 |
"Information From Authorize.net"
|
5616 |
msgstr ""
|
5617 |
|
5618 |
-
#: services/stripe-webhook.php:
|
5619 |
#: services/stripe-webhook.php:194 services/stripe-webhook.php:270
|
5620 |
#: services/stripe-webhook.php:271 services/stripe-webhook.php:272
|
|
|
5621 |
#, php-format
|
5622 |
msgid ""
|
5623 |
"%s has had their payment subscription cancelled by Stripe. Please check that "
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: pmpro\n"
|
8 |
+
"POT-Creation-Date: 2016-04-01 13:22-0400\n"
|
9 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
170 |
msgid "WordPress.org"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: adminpages/addons.php:231 shortcodes/pmpro_account.php:146
|
174 |
+
#: adminpages/addons.php:231 adminpages/addons.php:247
|
175 |
msgid "N/A"
|
176 |
msgstr ""
|
177 |
|
287 |
msgid "User Forum"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: adminpages/admin_header.php:150 adminpages/membershiplevels.php:619
|
291 |
#: adminpages/pagesettings.php:70 includes/adminpages.php:69
|
292 |
#: includes/adminpages.php:70 includes/adminpages.php:116
|
293 |
#: includes/metaboxes.php:131 adminpages/admin_header.php:128
|
435 |
msgstr ""
|
436 |
|
437 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:207
|
438 |
+
#: adminpages/advancedsettings.php:219 adminpages/membershiplevels.php:668
|
439 |
#: adminpages/paymentsettings.php:210
|
440 |
#: classes/gateways/class.pmprogateway_stripe.php:206 includes/profile.php:110
|
441 |
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
|
495 |
msgid "multisite only"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: adminpages/advancedsettings.php:208 adminpages/membershiplevels.php:668
|
499 |
#: adminpages/paymentsettings.php:211
|
500 |
#: classes/gateways/class.pmprogateway_stripe.php:207 includes/profile.php:111
|
501 |
#: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
|
581 |
msgstr ""
|
582 |
|
583 |
#: adminpages/discountcodes.php:49 adminpages/discountcodes.php:48
|
584 |
+
#: adminpages/discountcodes.php:49
|
585 |
msgid "Discount code updated successfully."
|
586 |
msgstr ""
|
587 |
|
588 |
#: adminpages/discountcodes.php:56 adminpages/discountcodes.php:55
|
589 |
+
#: adminpages/discountcodes.php:56
|
590 |
msgid "Error updating discount code. That code may already be in use."
|
591 |
msgstr ""
|
592 |
|
593 |
#: adminpages/discountcodes.php:65 adminpages/discountcodes.php:64
|
594 |
+
#: adminpages/discountcodes.php:65
|
595 |
msgid "Discount code added successfully."
|
596 |
msgstr ""
|
597 |
|
598 |
#: adminpages/discountcodes.php:73 adminpages/discountcodes.php:71
|
599 |
+
#: adminpages/discountcodes.php:72 adminpages/discountcodes.php:73
|
600 |
msgid "Error adding discount code. That code may already be in use."
|
601 |
msgstr ""
|
602 |
|
603 |
#: adminpages/discountcodes.php:198 adminpages/discountcodes.php:196
|
604 |
+
#: adminpages/discountcodes.php:197 adminpages/discountcodes.php:198
|
605 |
#, php-format
|
606 |
msgid "Error saving values for the %s level."
|
607 |
msgstr ""
|
608 |
|
609 |
#: adminpages/discountcodes.php:206 adminpages/discountcodes.php:204
|
610 |
+
#: adminpages/discountcodes.php:205 adminpages/discountcodes.php:206
|
611 |
msgid "There were errors updating the level values: "
|
612 |
msgstr ""
|
613 |
|
614 |
#: adminpages/discountcodes.php:239 adminpages/discountcodes.php:234
|
615 |
#: adminpages/discountcodes.php:237 adminpages/discountcodes.php:238
|
616 |
+
#: adminpages/discountcodes.php:239
|
617 |
#, php-format
|
618 |
msgid "Code %s deleted successfully."
|
619 |
msgstr ""
|
620 |
|
621 |
#: adminpages/discountcodes.php:244 adminpages/discountcodes.php:239
|
622 |
#: adminpages/discountcodes.php:242 adminpages/discountcodes.php:243
|
623 |
+
#: adminpages/discountcodes.php:244
|
624 |
msgid ""
|
625 |
"Error deleting discount code. The code was only partially deleted. Please "
|
626 |
"try again."
|
628 |
|
629 |
#: adminpages/discountcodes.php:250 adminpages/discountcodes.php:245
|
630 |
#: adminpages/discountcodes.php:248 adminpages/discountcodes.php:249
|
631 |
+
#: adminpages/discountcodes.php:250
|
632 |
msgid "Error deleting code. Please try again."
|
633 |
msgstr ""
|
634 |
|
635 |
#: adminpages/discountcodes.php:256 adminpages/discountcodes.php:251
|
636 |
#: adminpages/discountcodes.php:254 adminpages/discountcodes.php:255
|
637 |
+
#: adminpages/discountcodes.php:256
|
638 |
msgid "Code not found."
|
639 |
msgstr ""
|
640 |
|
641 |
#: adminpages/discountcodes.php:269 adminpages/discountcodes.php:264
|
642 |
#: adminpages/discountcodes.php:267 adminpages/discountcodes.php:268
|
643 |
+
#: adminpages/discountcodes.php:269
|
644 |
msgid "Edit Discount Code"
|
645 |
msgstr ""
|
646 |
|
647 |
#: adminpages/discountcodes.php:271 adminpages/discountcodes.php:559
|
648 |
#: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
|
649 |
+
#: adminpages/discountcodes.php:270 adminpages/discountcodes.php:271
|
650 |
+
#: adminpages/discountcodes.php:526 adminpages/discountcodes.php:529
|
651 |
+
#: adminpages/discountcodes.php:557 adminpages/discountcodes.php:558
|
652 |
+
#: adminpages/discountcodes.php:559
|
653 |
msgid "Add New Discount Code"
|
654 |
msgstr ""
|
655 |
|
656 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:587
|
657 |
+
#: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:637
|
658 |
#: adminpages/memberslist.php:164 adminpages/orders.php:937
|
659 |
#: adminpages/reports/login.php:158 adminpages/templates/orders-email.php:46
|
660 |
#: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
|
661 |
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
|
662 |
+
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:547
|
663 |
+
#: adminpages/discountcodes.php:557 adminpages/discountcodes.php:585
|
664 |
+
#: adminpages/discountcodes.php:586 adminpages/discountcodes.php:587
|
665 |
#: adminpages/membershiplevels.php:284 adminpages/membershiplevels.php:286
|
666 |
#: adminpages/membershiplevels.php:288 adminpages/membershiplevels.php:505
|
667 |
#: adminpages/membershiplevels.php:511 adminpages/membershiplevels.php:513
|
680 |
|
681 |
#: adminpages/discountcodes.php:312 adminpages/orders.php:333
|
682 |
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
683 |
+
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
|
684 |
+
#: adminpages/orders.php:211 adminpages/orders.php:261
|
685 |
+
#: adminpages/orders.php:333 adminpages/orders.php:362
|
686 |
msgid "This will be generated when you save."
|
687 |
msgstr ""
|
688 |
|
689 |
#: adminpages/discountcodes.php:316 adminpages/discountcodes.php:588
|
690 |
#: adminpages/orders.php:337 adminpages/orders.php:938
|
691 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
692 |
+
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
|
693 |
+
#: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
|
694 |
+
#: adminpages/discountcodes.php:586 adminpages/discountcodes.php:587
|
695 |
+
#: adminpages/discountcodes.php:588 adminpages/orders.php:215
|
696 |
#: adminpages/orders.php:265 adminpages/orders.php:337
|
697 |
#: adminpages/orders.php:366 adminpages/orders.php:598
|
698 |
#: adminpages/orders.php:901 adminpages/orders.php:911
|
702 |
|
703 |
#: adminpages/discountcodes.php:354 adminpages/discountcodes.php:349
|
704 |
#: adminpages/discountcodes.php:352 adminpages/discountcodes.php:353
|
705 |
+
#: adminpages/discountcodes.php:354
|
706 |
msgid "Start Date"
|
707 |
msgstr ""
|
708 |
|
709 |
#: adminpages/discountcodes.php:372
|
710 |
+
#: classes/gateways/class.pmprogateway_braintree.php:326
|
711 |
+
#: classes/gateways/class.pmprogateway_stripe.php:498 pages/billing.php:268
|
712 |
#: pages/checkout.php:575 adminpages/discountcodes.php:367
|
713 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
714 |
+
#: adminpages/discountcodes.php:372
|
715 |
#: classes/gateways/class.pmprogateway_braintree.php:308
|
716 |
#: classes/gateways/class.pmprogateway_braintree.php:321
|
717 |
#: classes/gateways/class.pmprogateway_braintree.php:323
|
729 |
|
730 |
#: adminpages/discountcodes.php:390 adminpages/discountcodes.php:591
|
731 |
#: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
|
732 |
+
#: adminpages/discountcodes.php:389 adminpages/discountcodes.php:390
|
733 |
+
#: adminpages/discountcodes.php:551 adminpages/discountcodes.php:561
|
734 |
+
#: adminpages/discountcodes.php:589 adminpages/discountcodes.php:590
|
735 |
+
#: adminpages/discountcodes.php:591
|
736 |
msgid "Uses"
|
737 |
msgstr ""
|
738 |
|
739 |
#: adminpages/discountcodes.php:393 adminpages/discountcodes.php:388
|
740 |
#: adminpages/discountcodes.php:391 adminpages/discountcodes.php:392
|
741 |
+
#: adminpages/discountcodes.php:393
|
742 |
msgid "Leave blank for unlimited uses."
|
743 |
msgstr ""
|
744 |
|
745 |
#: adminpages/discountcodes.php:402 adminpages/discountcodes.php:400
|
746 |
+
#: adminpages/discountcodes.php:401 adminpages/discountcodes.php:402
|
747 |
msgid "Which Levels Will This Code Apply To?"
|
748 |
msgstr ""
|
749 |
|
750 |
#: adminpages/discountcodes.php:432 adminpages/membershiplevels.php:341
|
751 |
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
|
752 |
+
#: adminpages/discountcodes.php:431 adminpages/discountcodes.php:432
|
753 |
+
#: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:339
|
754 |
+
#: adminpages/membershiplevels.php:341 adminpages/membershiplevels.php:342
|
755 |
+
#: adminpages/membershiplevels.php:507 adminpages/membershiplevels.php:513
|
756 |
+
#: adminpages/membershiplevels.php:515 adminpages/membershiplevels.php:542
|
757 |
+
#: pages/levels.php:14
|
758 |
msgid "Initial Payment"
|
759 |
msgstr ""
|
760 |
|
761 |
#: adminpages/discountcodes.php:443 adminpages/membershiplevels.php:352
|
762 |
#: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
|
763 |
#: adminpages/discountcodes.php:441 adminpages/discountcodes.php:442
|
764 |
+
#: adminpages/discountcodes.php:443 adminpages/membershiplevels.php:338
|
765 |
+
#: adminpages/membershiplevels.php:340 adminpages/membershiplevels.php:350
|
766 |
+
#: adminpages/membershiplevels.php:352 adminpages/membershiplevels.php:353
|
767 |
msgid "The initial amount collected at registration."
|
768 |
msgstr ""
|
769 |
|
770 |
#: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:356
|
771 |
#: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
|
772 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:447
|
773 |
+
#: adminpages/discountcodes.php:448 adminpages/membershiplevels.php:342
|
774 |
+
#: adminpages/membershiplevels.php:344 adminpages/membershiplevels.php:354
|
775 |
+
#: adminpages/membershiplevels.php:356 adminpages/membershiplevels.php:357
|
776 |
msgid "Recurring Subscription"
|
777 |
msgstr ""
|
778 |
|
779 |
#: adminpages/discountcodes.php:449 adminpages/membershiplevels.php:357
|
780 |
#: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
|
781 |
#: adminpages/discountcodes.php:447 adminpages/discountcodes.php:448
|
782 |
+
#: adminpages/discountcodes.php:449 adminpages/membershiplevels.php:343
|
783 |
+
#: adminpages/membershiplevels.php:345 adminpages/membershiplevels.php:355
|
784 |
+
#: adminpages/membershiplevels.php:357 adminpages/membershiplevels.php:358
|
785 |
msgid "Check if this level has a recurring subscription payment."
|
786 |
msgstr ""
|
787 |
|
788 |
#: adminpages/discountcodes.php:453 adminpages/membershiplevels.php:361
|
789 |
#: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
|
790 |
+
#: adminpages/discountcodes.php:452 adminpages/discountcodes.php:453
|
791 |
+
#: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:349
|
792 |
+
#: adminpages/membershiplevels.php:359 adminpages/membershiplevels.php:361
|
793 |
+
#: adminpages/membershiplevels.php:362
|
794 |
msgid "Billing Amount"
|
795 |
msgstr ""
|
796 |
|
797 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
798 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
799 |
+
#: classes/gateways/class.pmprogateway_stripe.php:566
|
800 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
801 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
802 |
+
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
|
803 |
+
#: adminpages/discountcodes.php:521 adminpages/discountcodes.php:522
|
804 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
805 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
806 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
816 |
|
817 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
818 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
819 |
+
#: classes/gateways/class.pmprogateway_stripe.php:566
|
820 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
821 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
822 |
+
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
|
823 |
+
#: adminpages/discountcodes.php:521 adminpages/discountcodes.php:522
|
824 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
825 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
826 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
836 |
|
837 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
838 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
839 |
+
#: classes/gateways/class.pmprogateway_stripe.php:566
|
840 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
841 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
842 |
+
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
|
843 |
+
#: adminpages/discountcodes.php:521 adminpages/discountcodes.php:522
|
844 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
845 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
846 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
856 |
|
857 |
#: adminpages/discountcodes.php:468 adminpages/discountcodes.php:522
|
858 |
#: adminpages/membershiplevels.php:376 adminpages/membershiplevels.php:479
|
859 |
+
#: classes/gateways/class.pmprogateway_stripe.php:566
|
860 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
861 |
+
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
862 |
+
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:520
|
863 |
+
#: adminpages/discountcodes.php:521 adminpages/discountcodes.php:522
|
864 |
#: adminpages/membershiplevels.php:353 adminpages/membershiplevels.php:355
|
865 |
#: adminpages/membershiplevels.php:374 adminpages/membershiplevels.php:376
|
866 |
#: adminpages/membershiplevels.php:377 adminpages/membershiplevels.php:449
|
877 |
#: adminpages/discountcodes.php:476 adminpages/membershiplevels.php:385
|
878 |
#: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
|
879 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:475
|
880 |
+
#: adminpages/discountcodes.php:476 adminpages/membershiplevels.php:362
|
881 |
+
#: adminpages/membershiplevels.php:364 adminpages/membershiplevels.php:383
|
882 |
+
#: adminpages/membershiplevels.php:385 adminpages/membershiplevels.php:386
|
883 |
msgid "The amount to be billed one cycle after the initial payment."
|
884 |
msgstr ""
|
885 |
|
886 |
#: adminpages/discountcodes.php:481 adminpages/membershiplevels.php:403
|
887 |
#: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
|
888 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:480
|
889 |
+
#: adminpages/discountcodes.php:481 adminpages/membershiplevels.php:380
|
890 |
+
#: adminpages/membershiplevels.php:382 adminpages/membershiplevels.php:401
|
891 |
+
#: adminpages/membershiplevels.php:403 adminpages/membershiplevels.php:404
|
892 |
msgid "Billing Cycle Limit"
|
893 |
msgstr ""
|
894 |
|
895 |
#: adminpages/discountcodes.php:484 adminpages/membershiplevels.php:407
|
896 |
#: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
|
897 |
#: adminpages/discountcodes.php:482 adminpages/discountcodes.php:483
|
898 |
+
#: adminpages/discountcodes.php:484 adminpages/membershiplevels.php:384
|
899 |
+
#: adminpages/membershiplevels.php:386 adminpages/membershiplevels.php:405
|
900 |
+
#: adminpages/membershiplevels.php:407 adminpages/membershiplevels.php:408
|
901 |
msgid ""
|
902 |
"The <strong>total</strong> number of recurring billing cycles for this "
|
903 |
"level, including the trial period (if applicable) but not including the "
|
907 |
#: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:416
|
908 |
#: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
|
909 |
#: adminpages/discountcodes.php:487 adminpages/discountcodes.php:488
|
910 |
+
#: adminpages/discountcodes.php:489 adminpages/membershiplevels.php:393
|
911 |
+
#: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:414
|
912 |
+
#: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:417
|
913 |
msgid "Custom Trial"
|
914 |
msgstr ""
|
915 |
|
916 |
#: adminpages/discountcodes.php:490 adminpages/membershiplevels.php:418
|
917 |
#: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
|
918 |
#: adminpages/discountcodes.php:488 adminpages/discountcodes.php:489
|
919 |
+
#: adminpages/discountcodes.php:490 adminpages/membershiplevels.php:394
|
920 |
+
#: adminpages/membershiplevels.php:395 adminpages/membershiplevels.php:397
|
921 |
+
#: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
|
922 |
+
#: adminpages/membershiplevels.php:419
|
923 |
msgid "Check to add a custom trial period."
|
924 |
msgstr ""
|
925 |
|
926 |
#: adminpages/discountcodes.php:494 adminpages/membershiplevels.php:427
|
927 |
#: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
|
928 |
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:493
|
929 |
+
#: adminpages/discountcodes.php:494 adminpages/membershiplevels.php:398
|
930 |
+
#: adminpages/membershiplevels.php:404 adminpages/membershiplevels.php:406
|
931 |
+
#: adminpages/membershiplevels.php:425 adminpages/membershiplevels.php:427
|
932 |
+
#: adminpages/membershiplevels.php:428
|
933 |
msgid "Trial Billing Amount"
|
934 |
msgstr ""
|
935 |
|
936 |
#: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:438
|
937 |
#: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
|
938 |
#: adminpages/discountcodes.php:503 adminpages/discountcodes.php:504
|
939 |
+
#: adminpages/discountcodes.php:505 adminpages/membershiplevels.php:401
|
940 |
+
#: adminpages/membershiplevels.php:407 adminpages/membershiplevels.php:409
|
941 |
+
#: adminpages/membershiplevels.php:436 adminpages/membershiplevels.php:438
|
942 |
+
#: adminpages/membershiplevels.php:439
|
943 |
msgid "for the first"
|
944 |
msgstr ""
|
945 |
|
946 |
#: adminpages/discountcodes.php:507 adminpages/membershiplevels.php:440
|
947 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
|
948 |
#: adminpages/discountcodes.php:505 adminpages/discountcodes.php:506
|
949 |
+
#: adminpages/discountcodes.php:507 adminpages/membershiplevels.php:403
|
950 |
+
#: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:411
|
951 |
+
#: adminpages/membershiplevels.php:438 adminpages/membershiplevels.php:440
|
952 |
+
#: adminpages/membershiplevels.php:441
|
953 |
msgid "subscription payments"
|
954 |
msgstr ""
|
955 |
|
956 |
#: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:469
|
957 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
|
958 |
#: adminpages/discountcodes.php:510 adminpages/discountcodes.php:511
|
959 |
+
#: adminpages/discountcodes.php:512 adminpages/membershiplevels.php:431
|
960 |
+
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:439
|
961 |
+
#: adminpages/membershiplevels.php:466 adminpages/membershiplevels.php:467
|
962 |
+
#: adminpages/membershiplevels.php:469 adminpages/membershiplevels.php:470
|
963 |
msgid "Membership Expiration"
|
964 |
msgstr ""
|
965 |
|
966 |
#: adminpages/discountcodes.php:513 adminpages/membershiplevels.php:470
|
967 |
#: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
|
968 |
+
#: adminpages/discountcodes.php:512 adminpages/discountcodes.php:513
|
969 |
+
#: adminpages/membershiplevels.php:432 adminpages/membershiplevels.php:438
|
970 |
+
#: adminpages/membershiplevels.php:440 adminpages/membershiplevels.php:467
|
971 |
+
#: adminpages/membershiplevels.php:468 adminpages/membershiplevels.php:470
|
972 |
+
#: adminpages/membershiplevels.php:471
|
973 |
msgid "Check this to set when membership access expires."
|
974 |
msgstr ""
|
975 |
|
976 |
#: adminpages/discountcodes.php:517 adminpages/membershiplevels.php:474
|
977 |
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
|
978 |
#: adminpages/discountcodes.php:515 adminpages/discountcodes.php:516
|
979 |
+
#: adminpages/discountcodes.php:517 adminpages/membershiplevels.php:436
|
980 |
+
#: adminpages/membershiplevels.php:442 adminpages/membershiplevels.php:444
|
981 |
+
#: adminpages/membershiplevels.php:471 adminpages/membershiplevels.php:472
|
982 |
+
#: adminpages/membershiplevels.php:474 adminpages/membershiplevels.php:475
|
983 |
msgid "Expires In"
|
984 |
msgstr ""
|
985 |
|
986 |
#: adminpages/discountcodes.php:530 adminpages/membershiplevels.php:487
|
987 |
#: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
|
988 |
+
#: adminpages/discountcodes.php:529 adminpages/discountcodes.php:530
|
989 |
+
#: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:455
|
990 |
+
#: adminpages/membershiplevels.php:457 adminpages/membershiplevels.php:484
|
991 |
+
#: adminpages/membershiplevels.php:485 adminpages/membershiplevels.php:487
|
992 |
+
#: adminpages/membershiplevels.php:488
|
993 |
msgid ""
|
994 |
"Set the duration of membership access. Note that the any future payments "
|
995 |
"(recurring subscription, if any) will be cancelled when the membership "
|
998 |
|
999 |
#: adminpages/discountcodes.php:558 adminpages/discountcodes.php:525
|
1000 |
#: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
|
1001 |
+
#: adminpages/discountcodes.php:557 adminpages/discountcodes.php:558
|
1002 |
msgid "Memberships Discount Codes"
|
1003 |
msgstr ""
|
1004 |
|
1005 |
#: adminpages/discountcodes.php:568 adminpages/discountcodes.php:535
|
1006 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
|
1007 |
+
#: adminpages/discountcodes.php:567 adminpages/discountcodes.php:568
|
1008 |
msgid "Search Discount Codes"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
#: adminpages/discountcodes.php:571 adminpages/reports/login.php:99
|
1012 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
|
1013 |
#: adminpages/discountcodes.php:569 adminpages/discountcodes.php:570
|
1014 |
+
#: adminpages/discountcodes.php:571 adminpages/reports/login.php:81
|
1015 |
+
#: adminpages/reports/login.php:83 adminpages/reports/login.php:99
|
1016 |
msgid "Search"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
#: adminpages/discountcodes.php:589 adminpages/discountcodes.php:549
|
1020 |
#: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
|
1021 |
+
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
|
1022 |
msgid "Starts"
|
1023 |
msgstr ""
|
1024 |
|
1026 |
#: adminpages/reports/login.php:163 includes/profile.php:107
|
1027 |
#: adminpages/discountcodes.php:550 adminpages/discountcodes.php:560
|
1028 |
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
|
1029 |
+
#: adminpages/discountcodes.php:590 adminpages/memberslist.php:121
|
1030 |
+
#: adminpages/memberslist.php:159 adminpages/memberslist.php:169
|
1031 |
+
#: adminpages/memberslist.php:179 adminpages/reports/login.php:145
|
1032 |
+
#: adminpages/reports/login.php:147 adminpages/reports/login.php:163
|
1033 |
+
#: includes/profile.php:98 includes/profile.php:102 includes/profile.php:107
|
1034 |
+
#: includes/profile.php:118 includes/profile.php:120
|
1035 |
msgid "Expires"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: adminpages/discountcodes.php:592 adminpages/discountcodes.php:552
|
1039 |
#: adminpages/discountcodes.php:562 adminpages/discountcodes.php:590
|
1040 |
+
#: adminpages/discountcodes.php:591 adminpages/discountcodes.php:592
|
1041 |
msgid "Levels"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
#: adminpages/discountcodes.php:604 adminpages/discountcodes.php:570
|
1045 |
#: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
|
1046 |
+
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:604
|
1047 |
msgid "Create your first discount code now"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: adminpages/discountcodes.php:604 adminpages/discountcodes.php:570
|
1051 |
#: adminpages/discountcodes.php:574 adminpages/discountcodes.php:602
|
1052 |
+
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:604
|
1053 |
msgid ""
|
1054 |
"Discount codes allow you to offer your memberships at discounted prices to "
|
1055 |
"select customers."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:670
|
1059 |
#: adminpages/orders.php:1021 adminpages/discountcodes.php:614
|
1060 |
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
1061 |
#: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
|
1062 |
+
#: adminpages/discountcodes.php:650 adminpages/membershiplevels.php:564
|
1063 |
+
#: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:572
|
1064 |
+
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:599
|
1065 |
+
#: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
|
1066 |
+
#: adminpages/membershiplevels.php:670 adminpages/orders.php:658
|
1067 |
+
#: adminpages/orders.php:961 adminpages/orders.php:979
|
1068 |
+
#: adminpages/orders.php:989 adminpages/orders.php:992
|
1069 |
+
#: adminpages/orders.php:1021 adminpages/orders.php:1050
|
1070 |
msgid "edit"
|
1071 |
msgstr ""
|
1072 |
|
1073 |
#: adminpages/discountcodes.php:653 adminpages/discountcodes.php:617
|
1074 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
1075 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
1076 |
+
#: adminpages/discountcodes.php:653
|
1077 |
#, php-format
|
1078 |
msgid ""
|
1079 |
"Are you sure you want to delete the %s discount code? The subscriptions for "
|
1081 |
"code anymore."
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:670
|
1085 |
#: adminpages/orders.php:1027 adminpages/discountcodes.php:617
|
1086 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
1087 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
1088 |
+
#: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:566
|
1089 |
+
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
|
1090 |
+
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
|
1091 |
+
#: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
|
1092 |
+
#: adminpages/membershiplevels.php:670 adminpages/orders.php:664
|
1093 |
+
#: adminpages/orders.php:967 adminpages/orders.php:985
|
1094 |
+
#: adminpages/orders.php:995 adminpages/orders.php:998
|
1095 |
+
#: adminpages/orders.php:1027 adminpages/orders.php:1056
|
1096 |
msgid "delete"
|
1097 |
msgstr ""
|
1098 |
|
1265 |
msgid "Add New Membership Level"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: adminpages/membershiplevels.php:295 adminpages/membershiplevels.php:638
|
1269 |
#: adminpages/reports/login.php:160 adminpages/membershiplevels.php:291
|
1270 |
#: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
|
1271 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:512
|
1282 |
msgid "Confirmation Message"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:639
|
1286 |
#: adminpages/membershiplevels.php:333 adminpages/membershiplevels.php:335
|
1287 |
#: adminpages/membershiplevels.php:337 adminpages/membershiplevels.php:338
|
1288 |
#: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:585
|
1291 |
msgstr ""
|
1292 |
|
1293 |
#: adminpages/membershiplevels.php:372
|
1294 |
+
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1295 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
1296 |
#: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
|
1297 |
#: adminpages/membershiplevels.php:373
|
1441 |
msgid "Categories"
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:516
|
1445 |
#: adminpages/membershiplevels.php:517
|
1446 |
msgid "Save Level"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: adminpages/membershiplevels.php:518 adminpages/orders.php:633
|
1450 |
+
#: pages/billing.php:348 pages/cancel.php:71 shortcodes/pmpro_account.php:73
|
1451 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
|
1452 |
#: adminpages/orders.php:511 adminpages/orders.php:561
|
1453 |
#: adminpages/orders.php:633 adminpages/orders.php:662 pages/account.php:44
|
1458 |
msgid "Cancel"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
+
#: adminpages/membershiplevels.php:619 adminpages/membershiplevels.php:490
|
1462 |
#: adminpages/membershiplevels.php:496 adminpages/membershiplevels.php:498
|
1463 |
#: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:526
|
1464 |
#: adminpages/membershiplevels.php:569 adminpages/membershiplevels.php:618
|
1466 |
msgid "Add New Level"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
|
1470 |
#: adminpages/membershiplevels.php:493 adminpages/membershiplevels.php:496
|
1471 |
#: adminpages/membershiplevels.php:499 adminpages/membershiplevels.php:501
|
1472 |
#: adminpages/membershiplevels.php:502 adminpages/membershiplevels.php:504
|
1478 |
msgid "Search Levels"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: adminpages/membershiplevels.php:631 adminpages/membershiplevels.php:579
|
1482 |
#: adminpages/membershiplevels.php:630 adminpages/membershiplevels.php:631
|
1483 |
msgid "Drag and drop membership levels to reorder them on the Levels page."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: adminpages/membershiplevels.php:640 pages/cancel.php:53
|
1487 |
#: pages/confirmation.php:83 pages/invoice.php:70
|
1488 |
#: shortcodes/pmpro_account.php:46 adminpages/membershiplevels.php:510
|
1489 |
#: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
|
1495 |
msgid "Expiration"
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:511
|
1499 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:519
|
1500 |
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:546
|
1501 |
#: adminpages/membershiplevels.php:587 adminpages/membershiplevels.php:640
|
1503 |
msgid "Allow Signups"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: adminpages/membershiplevels.php:656 adminpages/membershiplevels.php:534
|
1507 |
#: adminpages/membershiplevels.php:540 adminpages/membershiplevels.php:542
|
1508 |
#: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:569
|
1509 |
#: adminpages/membershiplevels.php:646 adminpages/membershiplevels.php:655
|
1511 |
msgid "FREE"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: adminpages/membershiplevels.php:665 adminpages/membershiplevels.php:560
|
1515 |
#: adminpages/membershiplevels.php:566 adminpages/membershiplevels.php:568
|
1516 |
#: adminpages/membershiplevels.php:575 adminpages/membershiplevels.php:595
|
1517 |
#: adminpages/membershiplevels.php:655 adminpages/membershiplevels.php:664
|
1519 |
msgid "After"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: adminpages/membershiplevels.php:670 adminpages/membershiplevels.php:566
|
1523 |
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:574
|
1524 |
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:601
|
1525 |
#: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:669
|
1529 |
"be cancelled."
|
1530 |
msgstr ""
|
1531 |
|
1532 |
+
#: adminpages/membershiplevels.php:670 adminpages/orders.php:1024
|
1533 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
|
1534 |
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
|
1535 |
#: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
|
1565 |
#: adminpages/reports/login.php:67 adminpages/reports/login.php:83
|
1566 |
#: adminpages/reports/memberships.php:256
|
1567 |
#: adminpages/reports/memberships.php:263
|
1568 |
+
#: adminpages/reports/memberships.php:276
|
1569 |
#: adminpages/reports/memberships.php:292 adminpages/reports/sales.php:185
|
1570 |
#: adminpages/reports/sales.php:193 adminpages/reports/sales.php:194
|
1571 |
#: adminpages/reports/sales.php:202
|
1578 |
#: adminpages/reports/login.php:69 adminpages/reports/login.php:85
|
1579 |
#: adminpages/reports/memberships.php:281
|
1580 |
#: adminpages/reports/memberships.php:290
|
1581 |
+
#: adminpages/reports/memberships.php:303
|
1582 |
#: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:208
|
1583 |
#: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
|
1584 |
#: adminpages/reports/sales.php:225
|
1635 |
msgid "Last Name"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: adminpages/memberslist.php:170 pages/billing.php:74 pages/checkout.php:319
|
1639 |
#: pages/confirmation.php:61 pages/invoice.php:48
|
1640 |
#: adminpages/memberslist.php:117 adminpages/memberslist.php:150
|
1641 |
#: adminpages/memberslist.php:160 adminpages/memberslist.php:170
|
1853 |
msgstr ""
|
1854 |
|
1855 |
#: adminpages/orders.php:461
|
1856 |
+
#: classes/gateways/class.pmprogateway_braintree.php:309
|
1857 |
+
#: classes/gateways/class.pmprogateway_stripe.php:450 pages/billing.php:253
|
1858 |
#: pages/checkout.php:527 adminpages/orders.php:339 adminpages/orders.php:389
|
1859 |
#: adminpages/orders.php:461 adminpages/orders.php:490
|
1860 |
#: classes/gateways/class.pmprogateway_braintree.php:291
|
2111 |
msgid "User"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: adminpages/orders.php:941 includes/init.php:243 includes/profile.php:27
|
2115 |
#: pages/checkout.php:42 pages/confirmation.php:47 pages/confirmation.php:64
|
2116 |
#: pages/confirmation.php:105 pages/invoice.php:28 pages/invoice.php:51
|
2117 |
#: adminpages/orders.php:601 adminpages/orders.php:904
|
2436 |
msgid "Sales Tax"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
+
#: adminpages/paymentsettings.php:188 pages/billing.php:94
|
2440 |
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:398
|
2441 |
#: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
|
2442 |
#: adminpages/paymentsettings.php:445 pages/billing.php:78
|
2622 |
#: adminpages/reports/memberships.php:18
|
2623 |
#: adminpages/reports/memberships.php:252
|
2624 |
#: adminpages/reports/memberships.php:259
|
2625 |
+
#: adminpages/reports/memberships.php:272
|
2626 |
#: adminpages/reports/memberships.php:288
|
2627 |
msgid "Membership Stats"
|
2628 |
msgstr ""
|
2645 |
#: adminpages/reports/memberships.php:278 adminpages/reports/sales.php:204
|
2646 |
#: adminpages/reports/memberships.php:258
|
2647 |
#: adminpages/reports/memberships.php:265
|
2648 |
+
#: adminpages/reports/memberships.php:278
|
2649 |
#: adminpages/reports/memberships.php:294 adminpages/reports/sales.php:187
|
2650 |
#: adminpages/reports/sales.php:195 adminpages/reports/sales.php:196
|
2651 |
#: adminpages/reports/sales.php:204
|
2655 |
#: adminpages/reports/memberships.php:279 adminpages/reports/sales.php:205
|
2656 |
#: adminpages/reports/memberships.php:259
|
2657 |
#: adminpages/reports/memberships.php:266
|
2658 |
+
#: adminpages/reports/memberships.php:279
|
2659 |
#: adminpages/reports/memberships.php:295 adminpages/reports/sales.php:188
|
2660 |
#: adminpages/reports/sales.php:196 adminpages/reports/sales.php:197
|
2661 |
#: adminpages/reports/sales.php:205
|
2665 |
#: adminpages/reports/memberships.php:280 adminpages/reports/sales.php:206
|
2666 |
#: adminpages/reports/memberships.php:260
|
2667 |
#: adminpages/reports/memberships.php:267
|
2668 |
+
#: adminpages/reports/memberships.php:280
|
2669 |
#: adminpages/reports/memberships.php:296 adminpages/reports/sales.php:189
|
2670 |
#: adminpages/reports/sales.php:197 adminpages/reports/sales.php:198
|
2671 |
#: adminpages/reports/sales.php:206
|
2674 |
|
2675 |
#: adminpages/reports/memberships.php:283
|
2676 |
#: adminpages/reports/memberships.php:270
|
2677 |
+
#: adminpages/reports/memberships.php:283
|
2678 |
msgid "Signups vs. All Cancellations"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
#: adminpages/reports/memberships.php:284
|
2682 |
#: adminpages/reports/memberships.php:263
|
2683 |
#: adminpages/reports/memberships.php:271
|
2684 |
+
#: adminpages/reports/memberships.php:284
|
2685 |
#: adminpages/reports/memberships.php:299
|
2686 |
msgid "Signups vs. Cancellations"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
#: adminpages/reports/memberships.php:285
|
2690 |
#: adminpages/reports/memberships.php:272
|
2691 |
+
#: adminpages/reports/memberships.php:285
|
2692 |
msgid "Signups vs. Expirations"
|
2693 |
msgstr ""
|
2694 |
|
2702 |
#: adminpages/reports/memberships.php:277
|
2703 |
#: adminpages/reports/memberships.php:279
|
2704 |
#: adminpages/reports/memberships.php:288
|
2705 |
+
#: adminpages/reports/memberships.php:290
|
2706 |
+
#: adminpages/reports/memberships.php:301
|
2707 |
#: adminpages/reports/memberships.php:304
|
2708 |
#: adminpages/reports/memberships.php:315 adminpages/reports/sales.php:195
|
2709 |
#: adminpages/reports/sales.php:203 adminpages/reports/sales.php:204
|
2716 |
#: adminpages/reports/memberships.php:317 adminpages/reports/sales.php:239
|
2717 |
#: adminpages/reports/memberships.php:295
|
2718 |
#: adminpages/reports/memberships.php:304
|
2719 |
+
#: adminpages/reports/memberships.php:317
|
2720 |
#: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:222
|
2721 |
#: adminpages/reports/sales.php:230 adminpages/reports/sales.php:231
|
2722 |
#: adminpages/reports/sales.php:239
|
2789 |
msgid "Subtotal"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
+
#: adminpages/updates.php:14 adminpages/updates.php:11
|
2793 |
msgid "Updating Paid Memberships Pro"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: adminpages/updates.php:21 adminpages/updates.php:18
|
2797 |
msgid "Updates are processing. This may take a few minutes to complete."
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: adminpages/updates.php:27 adminpages/updates.php:23
|
2801 |
msgid "Update complete."
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: classes/class.memberorder.php:699 classes/class.memberorder.php:553
|
2805 |
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
2806 |
#: classes/class.memberorder.php:573 classes/class.memberorder.php:644
|
2807 |
#: classes/class.memberorder.php:697 includes/cleanup.php:24
|
2840 |
|
2841 |
#: classes/class.pmproemail.php:240 classes/class.pmproemail.php:249
|
2842 |
#: classes/class.pmproemail.php:258 classes/class.pmproemail.php:337
|
2843 |
+
#: classes/class.pmproemail.php:346 classes/class.pmproemail.php:659
|
2844 |
+
#: classes/gateways/class.pmprogateway_braintree.php:368
|
2845 |
+
#: classes/gateways/class.pmprogateway_stripe.php:540 pages/checkout.php:76
|
2846 |
+
#: pages/checkout.php:86 pages/checkout.php:617 pages/confirmation.php:52
|
2847 |
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
2848 |
#: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
|
2849 |
#: classes/class.pmproemail.php:227 classes/class.pmproemail.php:228
|
2877 |
msgstr ""
|
2878 |
|
2879 |
#: classes/class.pmproemail.php:265 classes/class.pmproemail.php:358
|
2880 |
+
#: classes/class.pmproemail.php:665 classes/class.pmproemail.php:241
|
2881 |
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
2882 |
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
|
2883 |
#: classes/class.pmproemail.php:325 classes/class.pmproemail.php:328
|
2927 |
msgid "Credit Card on File Expiring Soon at %s"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: classes/class.pmproemail.php:619 classes/class.pmproemail.php:501
|
2931 |
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
2932 |
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
|
2933 |
#, php-format
|
2934 |
msgid "INVOICE for %s membership"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
+
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:563
|
2938 |
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
2939 |
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
|
2940 |
#, php-format
|
2941 |
msgid "Your trial at %s is ending soon"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: classes/class.pmproemail.php:724 classes/class.pmproemail.php:596
|
2945 |
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
2946 |
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
|
2947 |
#, php-format
|
2948 |
msgid "Your membership at %s has ended"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: classes/class.pmproemail.php:749 classes/class.pmproemail.php:621
|
2952 |
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
2953 |
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
|
2954 |
#, php-format
|
2955 |
msgid "Your membership at %s will end soon"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:641
|
2959 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
2960 |
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
|
2961 |
#, php-format
|
2962 |
msgid "Your membership at %s has been changed"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
+
#: classes/class.pmproemail.php:773 classes/class.pmproemail.php:811
|
2966 |
#: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
|
2967 |
#: classes/class.pmproemail.php:771 classes/class.pmproemail.php:800
|
2968 |
#: classes/class.pmproemail.php:809
|
2970 |
msgid "The new level is %s"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: classes/class.pmproemail.php:775 classes/class.pmproemail.php:647
|
2974 |
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
2975 |
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
|
2976 |
msgid "Your membership has been cancelled"
|
2977 |
msgstr ""
|
2978 |
|
2979 |
+
#: classes/class.pmproemail.php:779 classes/class.pmproemail.php:817
|
2980 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
2981 |
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
2982 |
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
|
2986 |
msgid "This membership will expire on %s"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
+
#: classes/class.pmproemail.php:783 classes/class.pmproemail.php:821
|
2990 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
2991 |
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
2992 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
|
2995 |
msgid "This membership does not expire"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: classes/class.pmproemail.php:807 classes/class.pmproemail.php:679
|
2999 |
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
3000 |
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
|
3001 |
#, php-format
|
3002 |
msgid "Membership for %s at %s has been changed"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: classes/class.pmproemail.php:813 classes/class.pmproemail.php:799
|
3006 |
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
|
3007 |
msgid "Membership has been cancelled"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: classes/class.pmproemail.php:850 classes/class.pmproemail.php:848
|
3011 |
msgid "Invoice for Order #: "
|
3012 |
msgstr ""
|
3013 |
|
3103 |
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
3104 |
#: paid-memberships-pro.php:122 paid-memberships-pro.php:123
|
3105 |
#: paid-memberships-pro.php:130 paid-memberships-pro.php:131
|
3106 |
+
#: paid-memberships-pro.php:132 paid-memberships-pro.php:133
|
3107 |
msgid "Authorize.net"
|
3108 |
msgstr ""
|
3109 |
|
3160 |
#: classes/gateways/class.pmprogateway_braintree.php:76
|
3161 |
#: paid-memberships-pro.php:123 paid-memberships-pro.php:124
|
3162 |
#: paid-memberships-pro.php:131 paid-memberships-pro.php:132
|
3163 |
+
#: paid-memberships-pro.php:133 paid-memberships-pro.php:134
|
3164 |
msgid "Braintree Payments"
|
3165 |
msgstr ""
|
3166 |
|
3228 |
msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: classes/gateways/class.pmprogateway_braintree.php:286
|
3232 |
+
#: classes/gateways/class.pmprogateway_stripe.php:427 pages/checkout.php:503
|
3233 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
3234 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
3235 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
3244 |
msgid "Payment Information"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: classes/gateways/class.pmprogateway_braintree.php:287
|
3248 |
+
#: classes/gateways/class.pmprogateway_stripe.php:428 pages/checkout.php:504
|
3249 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
3250 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
3251 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
3261 |
msgid "We Accept %s"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: classes/gateways/class.pmprogateway_braintree.php:321
|
3265 |
+
#: classes/gateways/class.pmprogateway_stripe.php:493 pages/billing.php:263
|
3266 |
#: pages/checkout.php:570
|
3267 |
#: classes/gateways/class.pmprogateway_braintree.php:303
|
3268 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
3279 |
msgid "Card Number"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: classes/gateways/class.pmprogateway_braintree.php:359
|
3283 |
+
#: classes/gateways/class.pmprogateway_stripe.php:531 pages/billing.php:301
|
3284 |
+
#: pages/checkout.php:608
|
3285 |
#: classes/gateways/class.pmprogateway_braintree.php:340
|
3286 |
#: classes/gateways/class.pmprogateway_braintree.php:353
|
3287 |
#: classes/gateways/class.pmprogateway_braintree.php:355
|
3297 |
msgid "CVV"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
+
#: classes/gateways/class.pmprogateway_braintree.php:360
|
3301 |
+
#: classes/gateways/class.pmprogateway_stripe.php:532 pages/billing.php:302
|
3302 |
+
#: pages/checkout.php:609
|
3303 |
#: classes/gateways/class.pmprogateway_braintree.php:341
|
3304 |
#: classes/gateways/class.pmprogateway_braintree.php:354
|
3305 |
#: classes/gateways/class.pmprogateway_braintree.php:356
|
3315 |
msgid "what's this?"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: classes/gateways/class.pmprogateway_braintree.php:370
|
3319 |
+
#: classes/gateways/class.pmprogateway_stripe.php:542 pages/checkout.php:88
|
3320 |
+
#: pages/checkout.php:619
|
3321 |
#: classes/gateways/class.pmprogateway_braintree.php:351
|
3322 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
3323 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
3333 |
msgid "Apply"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: classes/gateways/class.pmprogateway_braintree.php:425
|
3337 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1072
|
3338 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
3339 |
#: classes/gateways/class.pmprogateway_braintree.php:406
|
3340 |
#: classes/gateways/class.pmprogateway_braintree.php:419
|
3349 |
msgid "Unknown error: Initial payment failed."
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: classes/gateways/class.pmprogateway_braintree.php:484
|
3353 |
#: classes/gateways/class.pmprogateway_braintree.php:120
|
3354 |
#: classes/gateways/class.pmprogateway_braintree.php:465
|
3355 |
#: classes/gateways/class.pmprogateway_braintree.php:478
|
3357 |
msgid "Error during settlement:"
|
3358 |
msgstr ""
|
3359 |
|
3360 |
+
#: classes/gateways/class.pmprogateway_braintree.php:493
|
3361 |
#: classes/gateways/class.pmprogateway_braintree.php:129
|
3362 |
#: classes/gateways/class.pmprogateway_braintree.php:474
|
3363 |
#: classes/gateways/class.pmprogateway_braintree.php:487
|
3365 |
msgid "Error during charge:"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: classes/gateways/class.pmprogateway_braintree.php:585
|
3369 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
3370 |
#: classes/gateways/class.pmprogateway_braintree.php:221
|
3371 |
#: classes/gateways/class.pmprogateway_braintree.php:566
|
3374 |
msgid "Failed to update customer."
|
3375 |
msgstr ""
|
3376 |
|
3377 |
+
#: classes/gateways/class.pmprogateway_braintree.php:633
|
3378 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
3379 |
#: classes/gateways/class.pmprogateway_braintree.php:269
|
3380 |
#: classes/gateways/class.pmprogateway_braintree.php:614
|
3383 |
msgid "Failed to create customer."
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: classes/gateways/class.pmprogateway_braintree.php:640
|
3387 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
3388 |
#: classes/gateways/class.pmprogateway_braintree.php:276
|
3389 |
#: classes/gateways/class.pmprogateway_braintree.php:621
|
3392 |
msgid "Error creating customer record with Braintree:"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: classes/gateways/class.pmprogateway_braintree.php:740
|
3396 |
#: classes/gateways/class.pmprogateway_braintree.php:344
|
3397 |
#: classes/gateways/class.pmprogateway_braintree.php:345
|
3398 |
#: classes/gateways/class.pmprogateway_braintree.php:376
|
3402 |
msgid "Error subscribing customer to plan with Braintree:"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: classes/gateways/class.pmprogateway_braintree.php:755
|
3406 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
3407 |
#: classes/gateways/class.pmprogateway_braintree.php:360
|
3408 |
#: classes/gateways/class.pmprogateway_braintree.php:391
|
3412 |
msgid "Failed to subscribe with Braintree:"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
+
#: classes/gateways/class.pmprogateway_braintree.php:793
|
3416 |
+
#: classes/gateways/class.pmprogateway_braintree.php:806
|
3417 |
+
#: classes/gateways/class.pmprogateway_braintree.php:813
|
3418 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
3419 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
3420 |
#: classes/gateways/class.pmprogateway_braintree.php:410
|
3451 |
#: classes/gateways/class.pmprogateway_check.php:48
|
3452 |
#: paid-memberships-pro.php:116 paid-memberships-pro.php:117
|
3453 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
3454 |
+
#: paid-memberships-pro.php:126 paid-memberships-pro.php:127
|
3455 |
msgid "Pay by Check"
|
3456 |
msgstr ""
|
3457 |
|
3565 |
#: classes/gateways/class.pmprogateway_paypal.php:57
|
3566 |
#: paid-memberships-pro.php:119 paid-memberships-pro.php:120
|
3567 |
#: paid-memberships-pro.php:127 paid-memberships-pro.php:128
|
3568 |
+
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
3569 |
msgid "PayPal Website Payments Pro"
|
3570 |
msgstr ""
|
3571 |
|
3689 |
#: classes/gateways/class.pmprogateway_paypal.php:184
|
3690 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3691 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
3692 |
+
#: pages/checkout.php:729 classes/gateways/class.pmprogateway_paypal.php:184
|
3693 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:408
|
3694 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3695 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
3703 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3704 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
3705 |
#: classes/gateways/class.pmprogateway_twocheckout.php:203
|
3706 |
+
#: pages/checkout.php:729 classes/gateways/class.pmprogateway_paypal.php:184
|
3707 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:408
|
3708 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:418
|
3709 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:208
|
3716 |
msgid "Submit and Confirm"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
+
#: classes/gateways/class.pmprogateway_paypal.php:608
|
3720 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:752
|
3721 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:466
|
3722 |
#: classes/gateways/class.pmprogateway_paypal.php:385
|
3745 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:73
|
3746 |
#: paid-memberships-pro.php:118 paid-memberships-pro.php:119
|
3747 |
#: paid-memberships-pro.php:126 paid-memberships-pro.php:127
|
3748 |
+
#: paid-memberships-pro.php:128 paid-memberships-pro.php:129
|
3749 |
msgid "PayPal Express"
|
3750 |
msgstr ""
|
3751 |
|
3777 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
3778 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:122
|
3779 |
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
3780 |
+
#: paid-memberships-pro.php:131 paid-memberships-pro.php:132
|
3781 |
msgid "PayPal Standard"
|
3782 |
msgstr ""
|
3783 |
|
3804 |
#: classes/gateways/class.pmprogateway_stripe.php:126
|
3805 |
#: paid-memberships-pro.php:117 paid-memberships-pro.php:118
|
3806 |
#: paid-memberships-pro.php:125 paid-memberships-pro.php:126
|
3807 |
+
#: paid-memberships-pro.php:127 paid-memberships-pro.php:128
|
3808 |
msgid "Stripe"
|
3809 |
msgstr ""
|
3810 |
|
3868 |
msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
+
#: classes/gateways/class.pmprogateway_stripe.php:612
|
3872 |
#: classes/gateways/class.pmprogateway_stripe.php:567
|
3873 |
#: classes/gateways/class.pmprogateway_stripe.php:568
|
3874 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
3877 |
msgid "Subscription Updates"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: classes/gateways/class.pmprogateway_stripe.php:616
|
3881 |
#: classes/gateways/class.pmprogateway_stripe.php:571
|
3882 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
3883 |
#: classes/gateways/class.pmprogateway_stripe.php:582
|
3888 |
"at predefined times. Be sure to click Update Profile after making changes."
|
3889 |
msgstr ""
|
3890 |
|
3891 |
+
#: classes/gateways/class.pmprogateway_stripe.php:618
|
3892 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
3893 |
#: classes/gateways/class.pmprogateway_stripe.php:574
|
3894 |
#: classes/gateways/class.pmprogateway_stripe.php:584
|
3899 |
"at predefined times. Be sure to click Update User after making changes."
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: classes/gateways/class.pmprogateway_stripe.php:623 pages/billing.php:347
|
3903 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
3904 |
#: classes/gateways/class.pmprogateway_stripe.php:579
|
3905 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
3910 |
msgid "Update"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: classes/gateways/class.pmprogateway_stripe.php:816
|
3914 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
3915 |
#: classes/gateways/class.pmprogateway_stripe.php:770
|
3916 |
#: classes/gateways/class.pmprogateway_stripe.php:780
|
3919 |
msgid "Could not cancel the old subscription. Updates have not been processed."
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1260
|
3923 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
3924 |
#: classes/gateways/class.pmprogateway_stripe.php:192
|
3925 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
3932 |
#: classes/gateways/class.pmprogateway_stripe.php:1214
|
3933 |
#: classes/gateways/class.pmprogateway_stripe.php:1218
|
3934 |
#: classes/gateways/class.pmprogateway_stripe.php:1246
|
3935 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1256
|
3936 |
msgid "Error creating customer record with Stripe:"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1317
|
3940 |
#: classes/gateways/class.pmprogateway_stripe.php:1275
|
3941 |
#: classes/gateways/class.pmprogateway_stripe.php:1303
|
3942 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1313
|
3943 |
msgid "Error getting subscription with Stripe:"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1467
|
3947 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
3948 |
#: classes/gateways/class.pmprogateway_stripe.php:279
|
3949 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
3964 |
#: classes/gateways/class.pmprogateway_stripe.php:1421
|
3965 |
#: classes/gateways/class.pmprogateway_stripe.php:1425
|
3966 |
#: classes/gateways/class.pmprogateway_stripe.php:1453
|
3967 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1463
|
3968 |
msgid "Error creating plan with Stripe:"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1498
|
3972 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
3973 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
3974 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
3984 |
#: classes/gateways/class.pmprogateway_stripe.php:1452
|
3985 |
#: classes/gateways/class.pmprogateway_stripe.php:1456
|
3986 |
#: classes/gateways/class.pmprogateway_stripe.php:1484
|
3987 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1494
|
3988 |
msgid "Error subscribing customer to plan with Stripe:"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1594
|
3992 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
3993 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
3994 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
4001 |
#: classes/gateways/class.pmprogateway_stripe.php:1548
|
4002 |
#: classes/gateways/class.pmprogateway_stripe.php:1552
|
4003 |
#: classes/gateways/class.pmprogateway_stripe.php:1580
|
4004 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1590
|
4005 |
msgid "Could not cancel old subscription."
|
4006 |
msgstr ""
|
4007 |
|
4008 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1611
|
4009 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
4010 |
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
4011 |
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
4015 |
#: classes/gateways/class.pmprogateway_stripe.php:1565
|
4016 |
#: classes/gateways/class.pmprogateway_stripe.php:1569
|
4017 |
#: classes/gateways/class.pmprogateway_stripe.php:1597
|
4018 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1607
|
4019 |
msgid "Could not find the customer."
|
4020 |
msgstr ""
|
4021 |
|
4026 |
#: classes/gateways/class.pmprogateway_twocheckout.php:60
|
4027 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
4028 |
#: paid-memberships-pro.php:132 paid-memberships-pro.php:133
|
4029 |
+
#: paid-memberships-pro.php:134 paid-memberships-pro.php:135
|
4030 |
msgid "2Checkout"
|
4031 |
msgstr ""
|
4032 |
|
4385 |
msgid "Vietnamese Dong"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
+
#: includes/functions.php:315 includes/functions.php:160
|
4389 |
#: includes/functions.php:196 includes/functions.php:200
|
4390 |
#: includes/functions.php:202 includes/functions.php:203
|
4391 |
#: includes/functions.php:204 includes/functions.php:207
|
4394 |
msgid "The price for membership is <strong>%s</strong> now"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
+
#: includes/functions.php:317 includes/functions.php:202
|
4398 |
#: includes/functions.php:204 includes/functions.php:205
|
4399 |
#: includes/functions.php:206 includes/functions.php:209
|
4400 |
#: includes/functions.php:245
|
4402 |
msgid "<strong>%s</strong> now"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
+
#: includes/functions.php:326 includes/functions.php:169
|
4406 |
#: includes/functions.php:205 includes/functions.php:211
|
4407 |
#: includes/functions.php:213 includes/functions.php:214
|
4408 |
#: includes/functions.php:215 includes/functions.php:218
|
4411 |
msgid " and then <strong>%s per %s for %d more %s</strong>."
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: includes/functions.php:330 includes/functions.php:258
|
4415 |
#, php-format
|
4416 |
msgid " and then <strong>%s every %d %s for %d more payments</strong>."
|
4417 |
msgstr ""
|
4418 |
|
4419 |
+
#: includes/functions.php:335 includes/functions.php:178
|
4420 |
#: includes/functions.php:214 includes/functions.php:220
|
4421 |
#: includes/functions.php:222 includes/functions.php:223
|
4422 |
#: includes/functions.php:224 includes/functions.php:227
|
4425 |
msgid " and then <strong>%s after %d %s</strong>."
|
4426 |
msgstr ""
|
4427 |
|
4428 |
+
#: includes/functions.php:343 includes/functions.php:228
|
4429 |
#: includes/functions.php:229 includes/functions.php:230
|
4430 |
#: includes/functions.php:231 includes/functions.php:235
|
4431 |
#: includes/functions.php:271
|
4433 |
msgid "The price for membership is <strong>%s per %s</strong>."
|
4434 |
msgstr ""
|
4435 |
|
4436 |
+
#: includes/functions.php:345 includes/functions.php:230
|
4437 |
#: includes/functions.php:233 includes/functions.php:237
|
4438 |
#: includes/functions.php:273
|
4439 |
#, php-format
|
4440 |
msgid "<strong>%s per %s</strong>."
|
4441 |
msgstr ""
|
4442 |
|
4443 |
+
#: includes/functions.php:350 includes/functions.php:233
|
4444 |
#: includes/functions.php:234 includes/functions.php:235
|
4445 |
#: includes/functions.php:238 includes/functions.php:242
|
4446 |
#: includes/functions.php:278
|
4448 |
msgid "The price for membership is <strong>%s every %d %s</strong>."
|
4449 |
msgstr ""
|
4450 |
|
4451 |
+
#: includes/functions.php:352 includes/functions.php:237
|
4452 |
#: includes/functions.php:240 includes/functions.php:244
|
4453 |
#: includes/functions.php:280
|
4454 |
#, php-format
|
4455 |
msgid "<strong>%s every %d %s</strong>."
|
4456 |
msgstr ""
|
4457 |
|
4458 |
+
#: includes/functions.php:357 includes/functions.php:184
|
4459 |
#: includes/functions.php:220 includes/functions.php:228
|
4460 |
#: includes/functions.php:238 includes/functions.php:239
|
4461 |
#: includes/functions.php:240 includes/functions.php:242
|
4465 |
msgid " and then <strong>%s per %s</strong>."
|
4466 |
msgstr ""
|
4467 |
|
4468 |
+
#: includes/functions.php:361 includes/functions.php:188
|
4469 |
#: includes/functions.php:224 includes/functions.php:232
|
4470 |
#: includes/functions.php:242 includes/functions.php:243
|
4471 |
#: includes/functions.php:244 includes/functions.php:246
|
4475 |
msgid " and then <strong>%s every %d %s</strong>."
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: includes/functions.php:379 includes/functions.php:202
|
4479 |
#: includes/functions.php:238 includes/functions.php:249
|
4480 |
#: includes/functions.php:260 includes/functions.php:261
|
4481 |
#: includes/functions.php:262 includes/functions.php:264
|
4484 |
msgid "After your initial payment, your first payment is Free."
|
4485 |
msgstr ""
|
4486 |
|
4487 |
+
#: includes/functions.php:383 includes/functions.php:206
|
4488 |
#: includes/functions.php:242 includes/functions.php:253
|
4489 |
#: includes/functions.php:264 includes/functions.php:265
|
4490 |
#: includes/functions.php:266 includes/functions.php:268
|
4494 |
msgid "After your initial payment, your first %d payments are Free."
|
4495 |
msgstr ""
|
4496 |
|
4497 |
+
#: includes/functions.php:390 includes/functions.php:213
|
4498 |
#: includes/functions.php:249 includes/functions.php:260
|
4499 |
#: includes/functions.php:271 includes/functions.php:272
|
4500 |
#: includes/functions.php:273 includes/functions.php:275
|
4504 |
msgid "After your initial payment, your first payment will cost %s."
|
4505 |
msgstr ""
|
4506 |
|
4507 |
+
#: includes/functions.php:394 includes/functions.php:217
|
4508 |
#: includes/functions.php:253 includes/functions.php:264
|
4509 |
#: includes/functions.php:275 includes/functions.php:276
|
4510 |
#: includes/functions.php:277 includes/functions.php:279
|
4514 |
msgid "After your initial payment, your first %d payments will cost %s."
|
4515 |
msgstr ""
|
4516 |
|
4517 |
+
#: includes/functions.php:405 includes/functions.php:228
|
4518 |
#: includes/functions.php:264 includes/functions.php:275
|
4519 |
#: includes/functions.php:286 includes/functions.php:287
|
4520 |
#: includes/functions.php:288 includes/functions.php:290
|
4524 |
msgid "Customers in %s will be charged %s%% tax."
|
4525 |
msgstr ""
|
4526 |
|
4527 |
+
#: includes/functions.php:419 includes/functions.php:242
|
4528 |
#: includes/functions.php:278 includes/functions.php:289
|
4529 |
#: includes/functions.php:300 includes/functions.php:301
|
4530 |
#: includes/functions.php:302 includes/functions.php:304
|
4534 |
msgid "Membership expires after %d %s."
|
4535 |
msgstr ""
|
4536 |
|
4537 |
+
#: includes/functions.php:766 includes/functions.php:491
|
4538 |
#: includes/functions.php:514 includes/functions.php:525
|
4539 |
#: includes/functions.php:536 includes/functions.php:537
|
4540 |
#: includes/functions.php:538 includes/functions.php:545
|
4544 |
msgid "User ID not found."
|
4545 |
msgstr ""
|
4546 |
|
4547 |
+
#: includes/functions.php:786 includes/functions.php:508
|
4548 |
#: includes/functions.php:531 includes/functions.php:542
|
4549 |
#: includes/functions.php:553 includes/functions.php:554
|
4550 |
#: includes/functions.php:555 includes/functions.php:562
|
4555 |
msgid "Invalid level."
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: includes/functions.php:797 includes/functions.php:520
|
4559 |
#: includes/functions.php:542 includes/functions.php:553
|
4560 |
#: includes/functions.php:564 includes/functions.php:565
|
4561 |
#: includes/functions.php:566 includes/functions.php:573
|
4566 |
msgid "not changing?"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
+
#: includes/functions.php:814 includes/functions.php:887
|
4570 |
+
#: includes/functions.php:911 includes/functions.php:537
|
4571 |
#: includes/functions.php:559 includes/functions.php:570
|
4572 |
#: includes/functions.php:581 includes/functions.php:582
|
4573 |
#: includes/functions.php:583 includes/functions.php:590
|
4590 |
msgid "Error interacting with database"
|
4591 |
msgstr ""
|
4592 |
|
4593 |
+
#: includes/functions.php:953 includes/functions.php:992
|
4594 |
#: includes/functions.php:629 includes/functions.php:651
|
4595 |
#: includes/functions.php:667 includes/functions.php:668
|
4596 |
#: includes/functions.php:678 includes/functions.php:681
|
4609 |
msgid "Membership level not found."
|
4610 |
msgstr ""
|
4611 |
|
4612 |
+
#: includes/functions.php:1362 includes/functions.php:1100
|
4613 |
#: includes/functions.php:1101 includes/functions.php:1118
|
4614 |
#: includes/functions.php:1142 includes/functions.php:1143
|
4615 |
#: includes/functions.php:1150 includes/functions.php:1157
|
4618 |
msgid "No code was given to check."
|
4619 |
msgstr ""
|
4620 |
|
4621 |
+
#: includes/functions.php:1371 includes/functions.php:1050
|
4622 |
#: includes/functions.php:1072 includes/functions.php:1088
|
4623 |
#: includes/functions.php:1099 includes/functions.php:1102
|
4624 |
#: includes/functions.php:1109 includes/functions.php:1110
|
4630 |
msgid "The discount code could not be found."
|
4631 |
msgstr ""
|
4632 |
|
4633 |
+
#: includes/functions.php:1386 includes/functions.php:1066
|
4634 |
#: includes/functions.php:1088 includes/functions.php:1104
|
4635 |
#: includes/functions.php:1115 includes/functions.php:1118
|
4636 |
#: includes/functions.php:1124 includes/functions.php:1125
|
4643 |
msgid "This discount code goes into effect on %s."
|
4644 |
msgstr ""
|
4645 |
|
4646 |
+
#: includes/functions.php:1393 includes/functions.php:1075
|
4647 |
#: includes/functions.php:1097 includes/functions.php:1113
|
4648 |
#: includes/functions.php:1124 includes/functions.php:1127
|
4649 |
#: includes/functions.php:1131 includes/functions.php:1132
|
4656 |
msgid "This discount code expired on %s."
|
4657 |
msgstr ""
|
4658 |
|
4659 |
+
#: includes/functions.php:1403 includes/functions.php:1087
|
4660 |
#: includes/functions.php:1109 includes/functions.php:1125
|
4661 |
#: includes/functions.php:1136 includes/functions.php:1139
|
4662 |
#: includes/functions.php:1141 includes/functions.php:1142
|
4668 |
msgid "This discount code is no longer valid."
|
4669 |
msgstr ""
|
4670 |
|
4671 |
+
#: includes/functions.php:1416 includes/functions.php:1102
|
4672 |
#: includes/functions.php:1124 includes/functions.php:1140
|
4673 |
#: includes/functions.php:1151 includes/functions.php:1154
|
4674 |
#: includes/functions.php:1155 includes/functions.php:1164
|
4680 |
msgid "This discount code does not apply to this membership level."
|
4681 |
msgstr ""
|
4682 |
|
4683 |
+
#: includes/functions.php:1442 includes/functions.php:1110
|
4684 |
#: includes/functions.php:1132 includes/functions.php:1148
|
4685 |
#: includes/functions.php:1159 includes/functions.php:1162
|
4686 |
#: includes/functions.php:1172 includes/functions.php:1180
|
4692 |
msgid "This discount code is okay."
|
4693 |
msgstr ""
|
4694 |
|
4695 |
+
#: includes/functions.php:1469 includes/functions.php:1134
|
4696 |
#: includes/functions.php:1156 includes/functions.php:1172
|
4697 |
#: includes/functions.php:1183 includes/functions.php:1186
|
4698 |
#: includes/functions.php:1196 includes/functions.php:1205
|
4704 |
msgid "and"
|
4705 |
msgstr ""
|
4706 |
|
4707 |
+
#: includes/functions.php:1697 includes/functions.php:1319
|
4708 |
#: includes/functions.php:1341 includes/functions.php:1361
|
4709 |
#: includes/functions.php:1372 includes/functions.php:1375
|
4710 |
#: includes/functions.php:1385 includes/functions.php:1394
|
4717 |
msgid "Sign Up for !!name!! Now"
|
4718 |
msgstr ""
|
4719 |
|
4720 |
+
#: includes/functions.php:1703 includes/functions.php:1325
|
4721 |
#: includes/functions.php:1347 includes/functions.php:1367
|
4722 |
#: includes/functions.php:1378 includes/functions.php:1381
|
4723 |
#: includes/functions.php:1391 includes/functions.php:1400
|
4730 |
msgid "Please specify a level id."
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#: includes/init.php:258 includes/profile.php:39 includes/init.php:229
|
4734 |
#: includes/init.php:232 includes/init.php:233 includes/init.php:235
|
4735 |
#: includes/init.php:237 includes/init.php:245 includes/init.php:253
|
4736 |
#: includes/profile.php:37 includes/profile.php:39
|
4872 |
"checkbox is selected below."
|
4873 |
msgstr ""
|
4874 |
|
4875 |
+
#: includes/updates.php:110 includes/updates.php:97
|
4876 |
msgid "Paid Memberships Pro Data Update Required"
|
4877 |
msgstr ""
|
4878 |
|
4879 |
+
#: includes/updates.php:115 includes/updates.php:102
|
4880 |
msgid "Start the Update"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
+
#: includes/updates.php:136 includes/updates.php:123
|
4884 |
msgid "All Paid Memberships Pro updates have finished."
|
4885 |
msgstr ""
|
4886 |
|
4887 |
+
#: includes/updates/upgrade_1.php:7 includes/upgradecheck.php:401
|
4888 |
#: includes/upgradecheck.php:410 includes/upgradecheck.php:422
|
4889 |
#: includes/upgradecheck.php:442 includes/upgradecheck.php:542
|
4890 |
+
#: includes/upgradecheck.php:561 includes/upgradecheck.php:563
|
4891 |
#, php-format
|
4892 |
msgid ""
|
4893 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Register</a>"
|
4894 |
msgstr ""
|
4895 |
|
4896 |
+
#: includes/updates/upgrade_1.php:10 includes/upgradecheck.php:404
|
4897 |
#: includes/upgradecheck.php:413 includes/upgradecheck.php:425
|
4898 |
#: includes/upgradecheck.php:445 includes/upgradecheck.php:545
|
4899 |
+
#: includes/upgradecheck.php:564 includes/upgradecheck.php:566
|
4900 |
#, php-format
|
4901 |
msgid ""
|
4902 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
|
4903 |
"<a href=\"%s\">Register</a>"
|
4904 |
msgstr ""
|
4905 |
|
4906 |
+
#: includes/updates/upgrade_1.php:14 includes/upgradecheck.php:408
|
4907 |
#: includes/upgradecheck.php:417 includes/upgradecheck.php:429
|
4908 |
#: includes/upgradecheck.php:449 includes/upgradecheck.php:549
|
4909 |
+
#: includes/upgradecheck.php:568 includes/upgradecheck.php:570
|
4910 |
msgid ""
|
4911 |
"This content is for !!levels!! members only. Visit the site and log in/"
|
4912 |
"register to read."
|
4913 |
msgstr ""
|
4914 |
|
4915 |
+
#: pages/billing.php:26 pages/billing.php:14 pages/billing.php:23
|
4916 |
#, php-format
|
4917 |
msgid "Logged in as <strong>%s</strong>."
|
4918 |
msgstr ""
|
4919 |
|
4920 |
+
#: pages/billing.php:26 pages/billing.php:14 pages/billing.php:23
|
4921 |
msgid "logout"
|
4922 |
msgstr ""
|
4923 |
|
4924 |
+
#: pages/billing.php:28 pages/cancel.php:52 pages/invoice.php:109
|
4925 |
#: pages/levels.php:35 shortcodes/pmpro_account.php:44
|
4926 |
#: shortcodes/pmpro_account.php:126 pages/account.php:12 pages/account.php:18
|
4927 |
#: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
|
4931 |
msgid "Level"
|
4932 |
msgstr ""
|
4933 |
|
4934 |
+
#: pages/billing.php:30 pages/account.php:14 pages/billing.php:18
|
4935 |
#: pages/billing.php:27
|
4936 |
msgid "Membership Fee"
|
4937 |
msgstr ""
|
4938 |
|
4939 |
+
#: pages/billing.php:34 pages/account.php:18 pages/billing.php:22
|
4940 |
#: pages/billing.php:31 pages/levels.php:70
|
4941 |
#, php-format
|
4942 |
msgid "%s every %d %s."
|
4943 |
msgstr ""
|
4944 |
|
4945 |
+
#: pages/billing.php:36 pages/account.php:20 pages/billing.php:24
|
4946 |
#: pages/billing.php:33 pages/levels.php:66
|
4947 |
#, php-format
|
4948 |
msgid "%s per %s."
|
4949 |
msgstr ""
|
4950 |
|
4951 |
+
#: pages/billing.php:45 pages/account.php:25 pages/account.php:29
|
4952 |
#: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
|
4953 |
msgid "Duration"
|
4954 |
msgstr ""
|
4955 |
|
4956 |
+
#: pages/billing.php:55 pages/billing.php:39 pages/billing.php:43
|
4957 |
#: pages/billing.php:52
|
4958 |
msgid ""
|
4959 |
"Your payment subscription is managed by PayPal. Please <a href=\"http://www."
|
4960 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
4961 |
msgstr ""
|
4962 |
|
4963 |
+
#: pages/billing.php:81 pages/checkout.php:326 pages/billing.php:65
|
4964 |
#: pages/billing.php:69 pages/billing.php:78 pages/checkout.php:305
|
4965 |
#: pages/checkout.php:307 pages/checkout.php:309 pages/checkout.php:318
|
4966 |
#: pages/checkout.php:321 pages/checkout.php:324 pages/checkout.php:326
|
4968 |
msgid "First Name"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: pages/billing.php:85 pages/checkout.php:330 pages/billing.php:69
|
4972 |
#: pages/billing.php:73 pages/billing.php:82 pages/checkout.php:309
|
4973 |
#: pages/checkout.php:311 pages/checkout.php:313 pages/checkout.php:322
|
4974 |
#: pages/checkout.php:325 pages/checkout.php:328 pages/checkout.php:330
|
4976 |
msgid "Last Name"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: pages/billing.php:89 pages/checkout.php:334 pages/billing.php:73
|
4980 |
#: pages/billing.php:77 pages/billing.php:86 pages/checkout.php:313
|
4981 |
#: pages/checkout.php:315 pages/checkout.php:317 pages/checkout.php:326
|
4982 |
#: pages/checkout.php:329 pages/checkout.php:332 pages/checkout.php:334
|
4984 |
msgid "Address 1"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
+
#: pages/billing.php:93 pages/checkout.php:338 pages/billing.php:77
|
4988 |
#: pages/billing.php:81 pages/billing.php:90 pages/checkout.php:317
|
4989 |
#: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:330
|
4990 |
#: pages/checkout.php:333 pages/checkout.php:336 pages/checkout.php:338
|
4992 |
msgid "Address 2"
|
4993 |
msgstr ""
|
4994 |
|
4995 |
+
#: pages/billing.php:103 pages/checkout.php:348 pages/billing.php:87
|
4996 |
#: pages/billing.php:91 pages/billing.php:100 pages/checkout.php:327
|
4997 |
#: pages/checkout.php:329 pages/checkout.php:331 pages/checkout.php:340
|
4998 |
#: pages/checkout.php:343 pages/checkout.php:346 pages/checkout.php:348
|
5000 |
msgid "City"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
+
#: pages/billing.php:107 pages/checkout.php:352 pages/billing.php:91
|
5004 |
#: pages/billing.php:95 pages/billing.php:104 pages/checkout.php:331
|
5005 |
#: pages/checkout.php:333 pages/checkout.php:335 pages/checkout.php:344
|
5006 |
#: pages/checkout.php:347 pages/checkout.php:350 pages/checkout.php:352
|
5008 |
msgid "State"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
+
#: pages/billing.php:111 pages/checkout.php:356 pages/billing.php:95
|
5012 |
#: pages/billing.php:99 pages/billing.php:108 pages/checkout.php:335
|
5013 |
#: pages/checkout.php:337 pages/checkout.php:339 pages/checkout.php:348
|
5014 |
#: pages/checkout.php:351 pages/checkout.php:354 pages/checkout.php:356
|
5016 |
msgid "Postal Code"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: pages/billing.php:120 pages/checkout.php:365 pages/billing.php:104
|
5020 |
#: pages/billing.php:108 pages/billing.php:117 pages/checkout.php:344
|
5021 |
#: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:357
|
5022 |
#: pages/checkout.php:360 pages/checkout.php:363 pages/checkout.php:365
|
5024 |
msgid "City, State Zip"
|
5025 |
msgstr ""
|
5026 |
|
5027 |
+
#: pages/billing.php:173 pages/checkout.php:418 pages/billing.php:157
|
5028 |
#: pages/billing.php:161 pages/billing.php:170 pages/checkout.php:397
|
5029 |
#: pages/checkout.php:399 pages/checkout.php:401 pages/checkout.php:410
|
5030 |
#: pages/checkout.php:413 pages/checkout.php:416 pages/checkout.php:418
|
5032 |
msgid "Country"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
+
#: pages/billing.php:198 pages/checkout.php:443 pages/billing.php:182
|
5036 |
#: pages/billing.php:186 pages/billing.php:195 pages/checkout.php:422
|
5037 |
#: pages/checkout.php:424 pages/checkout.php:426 pages/checkout.php:435
|
5038 |
#: pages/checkout.php:438 pages/checkout.php:441 pages/checkout.php:443
|
5040 |
msgid "Phone"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
+
#: pages/billing.php:209 pages/checkout.php:220 pages/checkout.php:457
|
5044 |
#: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
|
5045 |
#: pages/checkout.php:204 pages/checkout.php:207 pages/checkout.php:209
|
5046 |
#: pages/checkout.php:216 pages/checkout.php:218 pages/checkout.php:220
|
5050 |
msgid "E-mail Address"
|
5051 |
msgstr ""
|
5052 |
|
5053 |
+
#: pages/billing.php:213 pages/checkout.php:466 pages/billing.php:197
|
5054 |
#: pages/billing.php:201 pages/billing.php:210 pages/checkout.php:445
|
5055 |
#: pages/checkout.php:447 pages/checkout.php:449 pages/checkout.php:458
|
5056 |
#: pages/checkout.php:462 pages/checkout.php:464 pages/checkout.php:466
|
5058 |
msgid "Confirm E-mail"
|
5059 |
msgstr ""
|
5060 |
|
5061 |
+
#: pages/billing.php:234 pages/billing.php:217 pages/billing.php:221
|
5062 |
#: pages/billing.php:230 pages/billing.php:231
|
5063 |
msgid "Credit Card Information"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
+
#: pages/billing.php:235 pages/billing.php:217 pages/billing.php:221
|
5067 |
#: pages/billing.php:230 pages/billing.php:232
|
5068 |
#, php-format
|
5069 |
msgid "We accept %s"
|
5070 |
msgstr ""
|
5071 |
|
5072 |
+
#: pages/billing.php:364 pages/billing.php:309 pages/billing.php:313
|
5073 |
#: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
|
5074 |
#: pages/billing.php:360
|
5075 |
msgid ""
|
5214 |
msgid "Check Out with a Credit Card Here"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
+
#: pages/checkout.php:697 pages/checkout.php:277 pages/checkout.php:284
|
5218 |
#: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
|
5219 |
#: pages/checkout.php:681 pages/checkout.php:690 pages/checkout.php:696
|
5220 |
#, php-format
|
5221 |
msgid "I agree to the %s"
|
5222 |
msgstr ""
|
5223 |
|
5224 |
+
#: pages/checkout.php:717 pages/checkout.php:667 pages/checkout.php:674
|
5225 |
#: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
|
5226 |
#: pages/checkout.php:701 pages/checkout.php:710 pages/checkout.php:716
|
5227 |
msgid "Complete Payment"
|
5228 |
msgstr ""
|
5229 |
|
5230 |
+
#: pages/checkout.php:739 pages/checkout.php:687 pages/checkout.php:694
|
5231 |
#: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
|
5232 |
#: pages/checkout.php:723 pages/checkout.php:732 pages/checkout.php:738
|
5233 |
msgid "Processing..."
|
5369 |
#: adminpages/orders.php:448 paid-memberships-pro.php:115
|
5370 |
#: paid-memberships-pro.php:116 paid-memberships-pro.php:123
|
5371 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
5372 |
+
#: paid-memberships-pro.php:126
|
5373 |
msgid "Testing Only"
|
5374 |
msgstr ""
|
5375 |
|
5376 |
#: paid-memberships-pro.php:131 paid-memberships-pro.php:120
|
5377 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:128
|
5378 |
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
5379 |
+
#: paid-memberships-pro.php:131
|
5380 |
msgid "PayPal Payflow Pro/PayPal Pro"
|
5381 |
msgstr ""
|
5382 |
|
5383 |
#: paid-memberships-pro.php:136 paid-memberships-pro.php:125
|
5384 |
#: paid-memberships-pro.php:126 paid-memberships-pro.php:133
|
5385 |
#: paid-memberships-pro.php:134 paid-memberships-pro.php:135
|
5386 |
+
#: paid-memberships-pro.php:136
|
5387 |
msgid "Cybersource"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
#: paid-memberships-pro.php:157 paid-memberships-pro.php:156
|
5391 |
+
#: paid-memberships-pro.php:157
|
5392 |
msgid "Once a month"
|
5393 |
msgstr ""
|
5394 |
|
5562 |
#: preheaders/checkout.php:581 preheaders/checkout.php:550
|
5563 |
#: preheaders/checkout.php:552 preheaders/checkout.php:569
|
5564 |
#: preheaders/checkout.php:571 preheaders/checkout.php:575
|
5565 |
+
#: preheaders/checkout.php:581 preheaders/checkout.php:785
|
5566 |
+
#: preheaders/checkout.php:792 preheaders/checkout.php:797
|
5567 |
+
#: preheaders/checkout.php:825 preheaders/checkout.php:844
|
5568 |
+
#: preheaders/checkout.php:859 preheaders/checkout.php:860
|
5569 |
msgid ""
|
5570 |
"Your payment was accepted, but there was an error setting up your account. "
|
5571 |
"Please contact us."
|
5572 |
msgstr ""
|
5573 |
|
5574 |
+
#: preheaders/checkout.php:754 preheaders/checkout.php:691
|
5575 |
#: preheaders/checkout.php:693 preheaders/checkout.php:710
|
5576 |
#: preheaders/checkout.php:712 preheaders/checkout.php:722
|
5577 |
+
#: preheaders/checkout.php:730 preheaders/checkout.php:953
|
5578 |
+
#: preheaders/checkout.php:960 preheaders/checkout.php:970
|
5579 |
+
#: preheaders/checkout.php:983 preheaders/checkout.php:1030
|
5580 |
+
#: preheaders/checkout.php:1045 preheaders/checkout.php:1046
|
5581 |
msgid ""
|
5582 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
5583 |
"authorized, but we cancelled the order immediately. You should not try to "
|
5584 |
"submit this form again. Please contact the site owner to fix this issue."
|
5585 |
msgstr ""
|
5586 |
|
5587 |
+
#: preheaders/checkout.php:757 preheaders/checkout.php:694
|
5588 |
#: preheaders/checkout.php:696 preheaders/checkout.php:713
|
5589 |
#: preheaders/checkout.php:715 preheaders/checkout.php:725
|
5590 |
+
#: preheaders/checkout.php:733 preheaders/checkout.php:956
|
5591 |
+
#: preheaders/checkout.php:963 preheaders/checkout.php:973
|
5592 |
+
#: preheaders/checkout.php:988 preheaders/checkout.php:1035
|
5593 |
+
#: preheaders/checkout.php:1050 preheaders/checkout.php:1051
|
5594 |
msgid ""
|
5595 |
"IMPORTANT: Something went wrong during membership creation. Your credit card "
|
5596 |
"was charged, but we couldn't assign your membership. You should not submit "
|
5597 |
"this form again. Please contact the site owner to fix this issue."
|
5598 |
msgstr ""
|
5599 |
|
5600 |
+
#: preheaders/checkout.php:768 preheaders/checkout.php:705
|
5601 |
#: preheaders/checkout.php:707 preheaders/checkout.php:724
|
5602 |
#: preheaders/checkout.php:726 preheaders/checkout.php:736
|
5603 |
+
#: preheaders/checkout.php:744 preheaders/checkout.php:967
|
5604 |
+
#: preheaders/checkout.php:974 preheaders/checkout.php:984
|
5605 |
+
#: preheaders/checkout.php:1001 preheaders/checkout.php:1048
|
5606 |
+
#: preheaders/checkout.php:1063 preheaders/checkout.php:1064
|
5607 |
#, php-format
|
5608 |
msgid ""
|
5609 |
"You must <a href=\"%s\">set up a Payment Gateway</a> before any payments "
|
5610 |
"will be processed."
|
5611 |
msgstr ""
|
5612 |
|
5613 |
+
#: preheaders/checkout.php:770 preheaders/checkout.php:707
|
5614 |
#: preheaders/checkout.php:709 preheaders/checkout.php:726
|
5615 |
#: preheaders/checkout.php:728 preheaders/checkout.php:738
|
5616 |
+
#: preheaders/checkout.php:746 preheaders/checkout.php:969
|
5617 |
+
#: preheaders/checkout.php:976 preheaders/checkout.php:986
|
5618 |
+
#: preheaders/checkout.php:1003 preheaders/checkout.php:1050
|
5619 |
+
#: preheaders/checkout.php:1065 preheaders/checkout.php:1066
|
5620 |
msgid "A Payment Gateway must be set up before any payments will be processed."
|
5621 |
msgstr ""
|
5622 |
|
5626 |
msgid "Membership expired email sent to %s. "
|
5627 |
msgstr ""
|
5628 |
|
5629 |
+
#: scheduled/crons.php:99 scheduled/crons.php:27 scheduled/crons.php:74
|
5630 |
#: scheduled/crons.php:80 scheduled/crons.php:84 scheduled/crons.php:88
|
5631 |
#, php-format
|
5632 |
msgid "Membership expiring email sent to %s. "
|
5633 |
msgstr ""
|
5634 |
|
5635 |
+
#: scheduled/crons.php:175 scheduled/crons.php:143 scheduled/crons.php:152
|
5636 |
#: scheduled/crons.php:157 scheduled/crons.php:164
|
5637 |
#, php-format
|
5638 |
msgid "Credit card expiring email sent to %s. "
|
5639 |
msgstr ""
|
5640 |
|
5641 |
+
#: scheduled/crons.php:231 scheduled/crons.php:104 scheduled/crons.php:196
|
5642 |
#: scheduled/crons.php:208 scheduled/crons.php:210 scheduled/crons.php:220
|
5643 |
#, php-format
|
5644 |
msgid "Trial ending email sent to %s. "
|
5657 |
msgid "The <strong>%s</strong> code has been applied to your order."
|
5658 |
msgstr ""
|
5659 |
|
5660 |
+
#: services/authnet-silent-post.php:145 services/authnet-silent-post.php:133
|
5661 |
#: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
|
5662 |
#: services/authnet-silent-post.php:144
|
5663 |
msgid ""
|
5665 |
"Information From Authorize.net"
|
5666 |
msgstr ""
|
5667 |
|
5668 |
+
#: services/stripe-webhook.php:290 services/stripe-webhook.php:176
|
5669 |
#: services/stripe-webhook.php:194 services/stripe-webhook.php:270
|
5670 |
#: services/stripe-webhook.php:271 services/stripe-webhook.php:272
|
5671 |
+
#: services/stripe-webhook.php:283
|
5672 |
#, php-format
|
5673 |
msgid ""
|
5674 |
"%s has had their payment subscription cancelled by Stripe. Please check that "
|
pages/billing.php
CHANGED
@@ -2,6 +2,9 @@
|
|
2 |
global $wpdb, $current_user, $pmpro_msg, $pmpro_msgt, $show_paypal_link;
|
3 |
global $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth, $ExpirationYear;
|
4 |
|
|
|
|
|
|
|
5 |
/**
|
6 |
* Filter to set if PMPro uses email or text as the type for email field inputs.
|
7 |
*
|
@@ -292,10 +295,11 @@
|
|
292 |
$pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
|
293 |
if($pmpro_show_cvv)
|
294 |
{
|
|
|
295 |
?>
|
296 |
<div>
|
297 |
-
<label for="CVV"><?php
|
298 |
-
<input class="input" id="CVV" <?php if($gateway != "stripe" && $gateway != "braintree") { ?>name="CVV"<?php } ?> type="text" size="4" value="<?php if(!empty($_REQUEST['CVV'])) { echo esc_attr($_REQUEST['CVV']); }?>" class=" <?php echo pmpro_getClassForField("CVV");?>" <?php if($gateway == "braintree") { ?>data-encrypted-name="cvv"<?php } ?> /> <small>(<a href="javascript:void(0);" onclick="javascript:window.open('<?php echo pmpro_https_filter(
|
299 |
</div>
|
300 |
<?php
|
301 |
}
|
2 |
global $wpdb, $current_user, $pmpro_msg, $pmpro_msgt, $show_paypal_link;
|
3 |
global $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth, $ExpirationYear;
|
4 |
|
5 |
+
if (! is_user_logged_in())
|
6 |
+
wp_redirect(pmpro_url('levels'));
|
7 |
+
|
8 |
/**
|
9 |
* Filter to set if PMPro uses email or text as the type for email field inputs.
|
10 |
*
|
295 |
$pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
|
296 |
if($pmpro_show_cvv)
|
297 |
{
|
298 |
+
$cvv_template = pmpro_loadTemplate('popup-cvv', 'url', 'pages', 'html');
|
299 |
?>
|
300 |
<div>
|
301 |
+
<label for="CVV"><?php _e('CVV', 'pmpro');?></label>
|
302 |
+
<input class="input" id="CVV" <?php if($gateway != "stripe" && $gateway != "braintree") { ?>name="CVV"<?php } ?> type="text" size="4" value="<?php if(!empty($_REQUEST['CVV'])) { echo esc_attr($_REQUEST['CVV']); }?>" class=" <?php echo pmpro_getClassForField("CVV");?>" <?php if($gateway == "braintree") { ?>data-encrypted-name="cvv"<?php } ?> /> <small>(<a href="javascript:void(0);" onclick="javascript:window.open('<?php echo pmpro_https_filter($cvv_template); ?>,'cvv','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=600, height=475');"><?php _e("what's this?", 'pmpro');?></a>)</small>
|
303 |
</div>
|
304 |
<?php
|
305 |
}
|
pages/checkout.php
CHANGED
@@ -602,10 +602,11 @@
|
|
602 |
$pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
|
603 |
if($pmpro_show_cvv)
|
604 |
{
|
|
|
605 |
?>
|
606 |
<div class="pmpro_payment-cvv">
|
607 |
<label for="CVV"><?php _e('CVV', 'pmpro');?></label>
|
608 |
-
<input class="input" id="CVV" name="CVV" type="text" size="4" value="<?php if(!empty($_REQUEST['CVV'])) { echo esc_attr($_REQUEST['CVV']); }?>" class=" <?php echo pmpro_getClassForField("CVV");?>" /> <small>(<a href="javascript:void(0);" onclick="javascript:window.open('<?php echo pmpro_https_filter(
|
609 |
</div>
|
610 |
<?php
|
611 |
}
|
602 |
$pmpro_show_cvv = apply_filters("pmpro_show_cvv", true);
|
603 |
if($pmpro_show_cvv)
|
604 |
{
|
605 |
+
$cvv_template = pmpro_loadTemplate('popup-cvv', 'url', 'pages', 'html');
|
606 |
?>
|
607 |
<div class="pmpro_payment-cvv">
|
608 |
<label for="CVV"><?php _e('CVV', 'pmpro');?></label>
|
609 |
+
<input class="input" id="CVV" name="CVV" type="text" size="4" value="<?php if(!empty($_REQUEST['CVV'])) { echo esc_attr($_REQUEST['CVV']); }?>" class=" <?php echo pmpro_getClassForField("CVV");?>" /> <small>(<a href="javascript:void(0);" onclick="javascript:window.open('<?php echo pmpro_https_filter($cvv_template); ?>,'cvv','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=600, height=475');"><?php _e("what's this?", 'pmpro');?></a>)</small>
|
610 |
</div>
|
611 |
<?php
|
612 |
}
|
pages/confirmation.php
CHANGED
@@ -102,7 +102,7 @@
|
|
102 |
?>
|
103 |
<ul>
|
104 |
<li><strong><?php _e('Account', 'pmpro');?>:</strong> <?php echo $current_user->display_name?> (<?php echo $current_user->user_email?>)</li>
|
105 |
-
<li><strong><?php _e('Membership Level', 'pmpro');?>:</strong> <?php if(!empty($current_user->membership_level)) echo $current_user->membership_level->name; else
|
106 |
</ul>
|
107 |
<?php
|
108 |
}
|
102 |
?>
|
103 |
<ul>
|
104 |
<li><strong><?php _e('Account', 'pmpro');?>:</strong> <?php echo $current_user->display_name?> (<?php echo $current_user->user_email?>)</li>
|
105 |
+
<li><strong><?php _e('Membership Level', 'pmpro');?>:</strong> <?php if(!empty($current_user->membership_level)) echo $current_user->membership_level->name; else _e("Pending", "pmpro");?></li>
|
106 |
</ul>
|
107 |
<?php
|
108 |
}
|
pages/levels.php
CHANGED
@@ -73,7 +73,7 @@ if($pmpro_msg)
|
|
73 |
|
74 |
<?php
|
75 |
//if it's a one-time-payment level, offer a link to renew
|
76 |
-
if( pmpro_isLevelExpiringSoon( $current_user->membership_level) ) {
|
77 |
?>
|
78 |
<a class="pmpro_btn pmpro_btn-select" href="<?php echo pmpro_url("checkout", "?level=" . $level->id, "https")?>"><?php _e('Renew', 'pmpro');?></a>
|
79 |
<?php
|
73 |
|
74 |
<?php
|
75 |
//if it's a one-time-payment level, offer a link to renew
|
76 |
+
if( pmpro_isLevelExpiringSoon( $current_user->membership_level) && $current_user->membership_level->allow_signups ) {
|
77 |
?>
|
78 |
<a class="pmpro_btn pmpro_btn-select" href="<?php echo pmpro_url("checkout", "?level=" . $level->id, "https")?>"><?php _e('Renew', 'pmpro');?></a>
|
79 |
<?php
|
paid-memberships-pro.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Paid Memberships Pro
|
4 |
Plugin URI: http://www.paidmembershipspro.com
|
5 |
Description: Plugin to Handle Memberships
|
6 |
-
Version: 1.8.
|
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.
|
17 |
define("PMPRO_USER_AGENT", "Paid Memberships Pro v" . PMPRO_VERSION . "; " . site_url());
|
18 |
|
19 |
//if the session has been started yet, start it (ignore if running from command line)
|
3 |
Plugin Name: Paid Memberships Pro
|
4 |
Plugin URI: http://www.paidmembershipspro.com
|
5 |
Description: Plugin to Handle Memberships
|
6 |
+
Version: 1.8.9
|
7 |
Author: Stranger Studios
|
8 |
Author URI: http://www.strangerstudios.com
|
9 |
*/
|
13 |
*/
|
14 |
|
15 |
//version constant
|
16 |
+
define("PMPRO_VERSION", "1.8.9");
|
17 |
define("PMPRO_USER_AGENT", "Paid Memberships Pro v" . PMPRO_VERSION . "; " . site_url());
|
18 |
|
19 |
//if the session has been started yet, start it (ignore if running from command line)
|
preheaders/checkout.php
CHANGED
@@ -616,6 +616,20 @@
|
|
616 |
{
|
617 |
do_action('pmpro_checkout_before_change_membership_level', $user_id, $morder);
|
618 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
619 |
//calculate the end date
|
620 |
if (!empty($pmpro_level->expiration_number)) {
|
621 |
$enddate = "'" . date("Y-m-d", strtotime("+ " . $pmpro_level->expiration_number . " " . $pmpro_level->expiration_period, current_time("timestamp"))) . "'";
|
@@ -623,15 +637,25 @@
|
|
623 |
$enddate = "NULL";
|
624 |
}
|
625 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
626 |
//update membership_user table.
|
627 |
if (!empty($discount_code) && !empty($use_discount_code))
|
628 |
$discount_code_id = $wpdb->get_var("SELECT id FROM $wpdb->pmpro_discount_codes WHERE code = '" . esc_sql($discount_code) . "' LIMIT 1");
|
629 |
else
|
630 |
$discount_code_id = "";
|
631 |
|
632 |
-
|
633 |
-
$startdate = apply_filters("pmpro_checkout_start_date", "'" . current_time("mysql") . "'", $user_id, $pmpro_level);
|
634 |
-
|
635 |
$custom_level = array(
|
636 |
'user_id' => $user_id,
|
637 |
'membership_id' => $pmpro_level->id,
|
616 |
{
|
617 |
do_action('pmpro_checkout_before_change_membership_level', $user_id, $morder);
|
618 |
|
619 |
+
//start date is NOW() but filterable below
|
620 |
+
$startdate = "'" . current_time("mysql") . "'";
|
621 |
+
|
622 |
+
/**
|
623 |
+
* Filter the start date for the membership/subscription.
|
624 |
+
*
|
625 |
+
* @since 1.8.9
|
626 |
+
*
|
627 |
+
* @param string $startdate, datetime formatsted for MySQL (NOW() or YYYY-MM-DD)
|
628 |
+
* @param int $user_id, ID of the user checking out
|
629 |
+
* @param object $pmpro_level, object of level being checked out for
|
630 |
+
*/
|
631 |
+
$startdate = apply_filters("pmpro_checkout_start_date", $startdate, $user_id, $pmpro_level);
|
632 |
+
|
633 |
//calculate the end date
|
634 |
if (!empty($pmpro_level->expiration_number)) {
|
635 |
$enddate = "'" . date("Y-m-d", strtotime("+ " . $pmpro_level->expiration_number . " " . $pmpro_level->expiration_period, current_time("timestamp"))) . "'";
|
637 |
$enddate = "NULL";
|
638 |
}
|
639 |
|
640 |
+
/**
|
641 |
+
* Filter the end date for the membership/subscription.
|
642 |
+
*
|
643 |
+
* @since 1.8.9
|
644 |
+
*
|
645 |
+
* @param string $enddate, datetime formatsted for MySQL (YYYY-MM-DD)
|
646 |
+
* @param int $user_id, ID of the user checking out
|
647 |
+
* @param object $pmpro_level, object of level being checked out for
|
648 |
+
* @param string $startdate, startdate calculated above
|
649 |
+
*/
|
650 |
+
$enddate = apply_filters("pmpro_checkout_end_date", $enddate, $user_id, $pmpro_level, $startdate);
|
651 |
+
|
652 |
//update membership_user table.
|
653 |
if (!empty($discount_code) && !empty($use_discount_code))
|
654 |
$discount_code_id = $wpdb->get_var("SELECT id FROM $wpdb->pmpro_discount_codes WHERE code = '" . esc_sql($discount_code) . "' LIMIT 1");
|
655 |
else
|
656 |
$discount_code_id = "";
|
657 |
|
658 |
+
|
|
|
|
|
659 |
$custom_level = array(
|
660 |
'user_id' => $user_id,
|
661 |
'membership_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.
|
6 |
-
Stable tag: 1.8.
|
7 |
|
8 |
A revenue-generating machine for membership sites. Unlimited levels with recurring payment, protected content and member management.
|
9 |
|
@@ -115,6 +115,23 @@ 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.8.2 =
|
119 |
* BUG: Fixed bug with new order creation.
|
120 |
|
2 |
Contributors: strangerstudios
|
3 |
Tags: memberships, membership, authorize.net, ecommerce, paypal, stripe, braintree, restrict access, restrict content, directory site, payflow
|
4 |
Requires at least: 3.5
|
5 |
+
Tested up to: 4.5
|
6 |
+
Stable tag: 1.8.9
|
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.9 =
|
119 |
+
* BUG: Fixed bug with recurring orders and TwoCheckout.
|
120 |
+
* BUG: Fixed bug where some non-members (membership_id was 0 or NULL) were being processed for expiration.
|
121 |
+
* BUG: Fixed bug where the address/street wasn't showing up when printing orders from the dashboard.
|
122 |
+
* BUG: Fixed bug where the Stripe class would sometimes show its billing and payment fields even if a secondary gateway was chosen.
|
123 |
+
* BUG: Making sure $this->total is set for new orders and available to the pmpro_add_order, pmpro_added_order filters.
|
124 |
+
* BUG: Fixed bug where email templates were not being loaded out of the /paid-memberships-pro/languages/email/ directory. (Thanks, menardmam on wordpress.org)
|
125 |
+
* BUG: No longer showing a "renew" link on the membership account or membership levels pages if the user's level is not allowing sign ups.
|
126 |
+
* BUG: Fixed bug where the expiration script might try to run on deleted or expired users.
|
127 |
+
* BUG/ENHANCEMENT: Change membership shortcode to call pmpro_hasMembershipLevel when checking for level="" as well. This ensures the pmpro_has_membership_level filter runs, which some addons/etc need.
|
128 |
+
* ENHANCEMENT: Updated categories list on the edit levels page to show nested categories.
|
129 |
+
* ENHANCEMENT: Now adding a pmpro-no-access class (similar to the pmpro-has-access class) to the post element if a user doesn't have access to that post.
|
130 |
+
* ENHANCEMENT: Added pmpro_checkout_end_date filter, similar to pmpro_checkout_start_date. Takes params $enddate, $user_id, $pmpro_level, $startdate.
|
131 |
+
|
132 |
+
= 1.8.8.3 =
|
133 |
+
* BUG: Fixed issue in pmpro_has_membership_access() that was causing issues on some sites, specifically sites running PMPro Series.
|
134 |
+
|
135 |
= 1.8.8.2 =
|
136 |
* BUG: Fixed bug with new order creation.
|
137 |
|
scheduled/crons.php
CHANGED
@@ -57,17 +57,28 @@ function pmpro_cron_expiration_warnings()
|
|
57 |
$pmpro_email_days_before_expiration = apply_filters("pmpro_email_days_before_expiration", 7);
|
58 |
|
59 |
//look for memberships that are going to expire within one week (but we haven't emailed them within a week)
|
60 |
-
$sqlQuery =
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
if(defined('PMPRO_CRON_LIMIT'))
|
73 |
$sqlQuery .= " LIMIT " . PMPRO_CRON_LIMIT;
|
57 |
$pmpro_email_days_before_expiration = apply_filters("pmpro_email_days_before_expiration", 7);
|
58 |
|
59 |
//look for memberships that are going to expire within one week (but we haven't emailed them within a week)
|
60 |
+
$sqlQuery = $wpdb->prepare(
|
61 |
+
"SELECT mu.user_id, mu.membership_id, mu.startdate, mu.enddate
|
62 |
+
FROM {$wpdb->pmpro_memberships_users} AS mu
|
63 |
+
LEFT JOIN {$wpdb->usermeta} AS um ON um.user_id = mu.user_id AND um.meta_key = %s
|
64 |
+
INNER JOIN {$wpdb->users} AS u ON u.ID = mu.user_id AND (
|
65 |
+
mu.membership_id <> 0 OR
|
66 |
+
mu.membership_id <> NULL OR
|
67 |
+
mu.membership_id <> 'NULL'
|
68 |
+
)
|
69 |
+
WHERE mu.status = 'active'
|
70 |
+
AND mu.enddate IS NOT NULL
|
71 |
+
AND mu.enddate <> ''
|
72 |
+
AND mu.enddate <> '0000-00-00 00:00:00'
|
73 |
+
AND DATE_SUB(mu.enddate, INTERVAL %d Day) <= %s
|
74 |
+
AND (um.meta_value IS NULL OR DATE_ADD(um.meta_value, INTERVAL %d Day) <= %s)
|
75 |
+
ORDER BY mu.enddate",
|
76 |
+
"pmpro_expiration_notice",
|
77 |
+
$pmpro_email_days_before_expiration,
|
78 |
+
$today,
|
79 |
+
$pmpro_email_days_before_expiration,
|
80 |
+
$today
|
81 |
+
);
|
82 |
|
83 |
if(defined('PMPRO_CRON_LIMIT'))
|
84 |
$sqlQuery .= " LIMIT " . PMPRO_CRON_LIMIT;
|
services/ipnhandler.php
CHANGED
@@ -70,21 +70,34 @@
|
|
70 |
{
|
71 |
//trial, get the order
|
72 |
$morder = new MemberOrder($item_number);
|
73 |
-
$morder->getMembershipLevel();
|
74 |
-
$morder->getUser();
|
75 |
|
76 |
-
//
|
77 |
-
if(empty($
|
78 |
-
|
79 |
-
|
80 |
-
//update membership
|
81 |
-
if(pmpro_ipnChangeMembershipLevel($txn_id, $morder))
|
82 |
-
{
|
83 |
-
ipnlog("Checkout processed (" . $morder->code . ") success!");
|
84 |
-
}
|
85 |
else
|
86 |
{
|
87 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
}
|
89 |
}
|
90 |
else
|
@@ -105,17 +118,31 @@
|
|
105 |
{
|
106 |
//first payment, get order
|
107 |
$morder = new MemberOrder($_POST['item_number']);
|
108 |
-
$morder->getMembershipLevel();
|
109 |
-
$morder->getUser();
|
110 |
|
111 |
-
//
|
112 |
-
if(
|
113 |
-
|
114 |
-
ipnlog("Checkout processed (" . $morder->code . ") success!");
|
115 |
-
}
|
116 |
else
|
117 |
{
|
118 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
119 |
}
|
120 |
|
121 |
pmpro_ipnExit();
|
@@ -139,17 +166,32 @@
|
|
139 |
{
|
140 |
//initial payment, get the order
|
141 |
$morder = new MemberOrder($item_number);
|
142 |
-
$morder->getMembershipLevel();
|
143 |
-
$morder->getUser();
|
144 |
|
145 |
-
//
|
146 |
-
if(
|
147 |
-
|
148 |
-
ipnlog("Checkout processed (" . $morder->code . ") success!");
|
149 |
-
}
|
150 |
else
|
151 |
{
|
152 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
}
|
154 |
|
155 |
pmpro_ipnExit();
|
@@ -479,6 +521,9 @@
|
|
479 |
//filter for level
|
480 |
$morder->membership_level = apply_filters("pmpro_ipnhandler_level", $morder->membership_level, $morder->user_id);
|
481 |
|
|
|
|
|
|
|
482 |
//fix expiration date
|
483 |
if(!empty($morder->membership_level->expiration_number))
|
484 |
{
|
@@ -489,6 +534,9 @@
|
|
489 |
$enddate = "NULL";
|
490 |
}
|
491 |
|
|
|
|
|
|
|
492 |
//get discount code
|
493 |
$morder->getDiscountCode();
|
494 |
if(!empty($morder->discount_code))
|
@@ -500,8 +548,7 @@
|
|
500 |
else
|
501 |
$discount_code_id = "";
|
502 |
|
503 |
-
|
504 |
-
$startdate = apply_filters("pmpro_checkout_start_date", "'" . current_time('mysql') . "'", $morder->user_id, $morder->membership_level);
|
505 |
|
506 |
//custom level to change user to
|
507 |
$custom_level = array(
|
70 |
{
|
71 |
//trial, get the order
|
72 |
$morder = new MemberOrder($item_number);
|
|
|
|
|
73 |
|
74 |
+
//No order?
|
75 |
+
if(empty($morder) || empty($morder->id))
|
76 |
+
ipnlog("ERROR: No order found item_number/code = " . $item_number . ".");
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
else
|
78 |
{
|
79 |
+
//get some more order info
|
80 |
+
$morder->getMembershipLevel();
|
81 |
+
$morder->getUser();
|
82 |
+
|
83 |
+
//no txn_id on these, so let's use the subscr_id
|
84 |
+
if(empty($txn_id))
|
85 |
+
$txn_id = $subscr_id;
|
86 |
+
|
87 |
+
//Check that the corresponding order has a $0 initial payment as well
|
88 |
+
if((float)$amount != (float)$morder->total)
|
89 |
+
ipnlog("ERROR: PayPal subscription #" . $_POST['subscr_id'] . " initial payment amount (" . $amount . ") is not the same as the PMPro order #" . $morder->code . " (" . $morder->total . ").");
|
90 |
+
else {
|
91 |
+
//update membership
|
92 |
+
if(pmpro_ipnChangeMembershipLevel($txn_id, $morder))
|
93 |
+
{
|
94 |
+
ipnlog("Checkout processed (" . $morder->code . ") success!");
|
95 |
+
}
|
96 |
+
else
|
97 |
+
{
|
98 |
+
ipnlog("ERROR: Couldn't change level for order (" . $morder->code . ").");
|
99 |
+
}
|
100 |
+
}
|
101 |
}
|
102 |
}
|
103 |
else
|
118 |
{
|
119 |
//first payment, get order
|
120 |
$morder = new MemberOrder($_POST['item_number']);
|
|
|
|
|
121 |
|
122 |
+
//No order?
|
123 |
+
if(empty($morder) || empty($morder->id))
|
124 |
+
ipnlog("ERROR: No order found item_number/code = " . $item_number . ".");
|
|
|
|
|
125 |
else
|
126 |
{
|
127 |
+
//get some more order info
|
128 |
+
$morder->getMembershipLevel();
|
129 |
+
$morder->getUser();
|
130 |
+
|
131 |
+
//Check that the corresponding order has the same amount as what we're getting from PayPal
|
132 |
+
$amount = $_POST['mc_gross'];
|
133 |
+
if((float)$amount != (float)$morder->total)
|
134 |
+
ipnlog("ERROR: PayPal transaction #" . $_POST['tnx_id'] . " amount (" . $amount . ") is not the same as the PMPro order #" . $morder->code . " (" . $morder->total . ").");
|
135 |
+
else {
|
136 |
+
//update membership
|
137 |
+
if(pmpro_ipnChangeMembershipLevel($txn_id, $morder))
|
138 |
+
{
|
139 |
+
ipnlog("Checkout processed (" . $morder->code . ") success!");
|
140 |
+
}
|
141 |
+
else
|
142 |
+
{
|
143 |
+
ipnlog("ERROR: Couldn't change level for order (" . $morder->code . ").");
|
144 |
+
}
|
145 |
+
}
|
146 |
}
|
147 |
|
148 |
pmpro_ipnExit();
|
166 |
{
|
167 |
//initial payment, get the order
|
168 |
$morder = new MemberOrder($item_number);
|
|
|
|
|
169 |
|
170 |
+
//No order?
|
171 |
+
if(empty($morder) || empty($morder->id))
|
172 |
+
ipnlog("ERROR: No order found item_number/code = " . $item_number . ".");
|
|
|
|
|
173 |
else
|
174 |
{
|
175 |
+
//get some more order info
|
176 |
+
$morder->getMembershipLevel();
|
177 |
+
$morder->getUser();
|
178 |
+
|
179 |
+
//Check that the corresponding order has the same amount
|
180 |
+
$amount = $_POST['mc_gross'];
|
181 |
+
if((float)$amount != (float)$morder->total)
|
182 |
+
ipnlog("ERROR: PayPal transaction #" . $_POST['txn_id'] . " amount (" . $amount . ") is not the same as the PMPro order #" . $morder->code . " (" . $morder->total . ").");
|
183 |
+
else
|
184 |
+
{
|
185 |
+
//update membership
|
186 |
+
if(pmpro_ipnChangeMembershipLevel($txn_id, $morder))
|
187 |
+
{
|
188 |
+
ipnlog("Checkout processed (" . $morder->code . ") success!");
|
189 |
+
}
|
190 |
+
else
|
191 |
+
{
|
192 |
+
ipnlog("ERROR: Couldn't change level for order (" . $morder->code . ").");
|
193 |
+
}
|
194 |
+
}
|
195 |
}
|
196 |
|
197 |
pmpro_ipnExit();
|
521 |
//filter for level
|
522 |
$morder->membership_level = apply_filters("pmpro_ipnhandler_level", $morder->membership_level, $morder->user_id);
|
523 |
|
524 |
+
//set the start date to current_time('timestamp') but allow filters (documented in preheaders/checkout.php)
|
525 |
+
$startdate = apply_filters("pmpro_checkout_start_date", "'" . current_time('mysql') . "'", $morder->user_id, $morder->membership_level);
|
526 |
+
|
527 |
//fix expiration date
|
528 |
if(!empty($morder->membership_level->expiration_number))
|
529 |
{
|
534 |
$enddate = "NULL";
|
535 |
}
|
536 |
|
537 |
+
//filter the enddate (documented in preheaders/checkout.php)
|
538 |
+
$enddate = apply_filters("pmpro_checkout_end_date", $enddate, $morder->user_id, $morder->membership_level, $startdate);
|
539 |
+
|
540 |
//get discount code
|
541 |
$morder->getDiscountCode();
|
542 |
if(!empty($morder->discount_code))
|
548 |
else
|
549 |
$discount_code_id = "";
|
550 |
|
551 |
+
|
|
|
552 |
|
553 |
//custom level to change user to
|
554 |
$custom_level = array(
|
services/twocheckout-ins.php
CHANGED
@@ -263,6 +263,9 @@
|
|
263 |
//filter for level
|
264 |
$morder->membership_level = apply_filters("pmpro_inshandler_level", $morder->membership_level, $morder->user_id);
|
265 |
|
|
|
|
|
|
|
266 |
//fix expiration date
|
267 |
if(!empty($morder->membership_level->expiration_number))
|
268 |
{
|
@@ -273,6 +276,9 @@
|
|
273 |
$enddate = "NULL";
|
274 |
}
|
275 |
|
|
|
|
|
|
|
276 |
//get discount code
|
277 |
$morder->getDiscountCode();
|
278 |
if(!empty($morder->discount_code))
|
@@ -284,8 +290,7 @@
|
|
284 |
else
|
285 |
$discount_code_id = "";
|
286 |
|
287 |
-
|
288 |
-
$startdate = apply_filters("pmpro_checkout_start_date", "'" . current_time('mysql') . "'", $morder->user_id, $morder->membership_level);
|
289 |
|
290 |
//custom level to change user to
|
291 |
$custom_level = array(
|
263 |
//filter for level
|
264 |
$morder->membership_level = apply_filters("pmpro_inshandler_level", $morder->membership_level, $morder->user_id);
|
265 |
|
266 |
+
//set the start date to current_time('mysql') but allow filters (documented in preheaders/checkout.php)
|
267 |
+
$startdate = apply_filters("pmpro_checkout_start_date", "'" . current_time('mysql') . "'", $morder->user_id, $morder->membership_level);
|
268 |
+
|
269 |
//fix expiration date
|
270 |
if(!empty($morder->membership_level->expiration_number))
|
271 |
{
|
276 |
$enddate = "NULL";
|
277 |
}
|
278 |
|
279 |
+
//filter the enddate (documented in preheaders/checkout.php)
|
280 |
+
$enddate = apply_filters("pmpro_checkout_end_date", $enddate, $morder->user_id, $morder->membership_level, $startdate);
|
281 |
+
|
282 |
//get discount code
|
283 |
$morder->getDiscountCode();
|
284 |
if(!empty($morder->discount_code))
|
290 |
else
|
291 |
$discount_code_id = "";
|
292 |
|
293 |
+
|
|
|
294 |
|
295 |
//custom level to change user to
|
296 |
$custom_level = array(
|
shortcodes/membership.php
CHANGED
@@ -24,7 +24,7 @@ function pmpro_shortcode_membership($atts, $content=null, $code="")
|
|
24 |
//guilty until proven innocent :)
|
25 |
$hasaccess = false;
|
26 |
|
27 |
-
//
|
28 |
if(!empty($level) || $level === "0")
|
29 |
{
|
30 |
//they specified a level(s)
|
@@ -37,17 +37,17 @@ function pmpro_shortcode_membership($atts, $content=null, $code="")
|
|
37 |
{
|
38 |
//they specified just one level
|
39 |
$levels = array($level);
|
40 |
-
}
|
41 |
-
|
42 |
-
if(pmpro_hasMembershipLevel($levels))
|
43 |
-
$hasaccess = true;
|
44 |
}
|
45 |
else
|
46 |
{
|
47 |
-
//didn't specify a membership level, so
|
48 |
-
|
49 |
-
$hasaccess = true;
|
50 |
}
|
|
|
|
|
|
|
|
|
51 |
|
52 |
//is there a delay?
|
53 |
if($hasaccess && !empty($delay))
|
24 |
//guilty until proven innocent :)
|
25 |
$hasaccess = false;
|
26 |
|
27 |
+
//figure out which level/levels to check
|
28 |
if(!empty($level) || $level === "0")
|
29 |
{
|
30 |
//they specified a level(s)
|
37 |
{
|
38 |
//they specified just one level
|
39 |
$levels = array($level);
|
40 |
+
}
|
|
|
|
|
|
|
41 |
}
|
42 |
else
|
43 |
{
|
44 |
+
//didn't specify a membership level, so use false so pmpro_hasMembershipLevel checks for any level
|
45 |
+
$levels = false;
|
|
|
46 |
}
|
47 |
+
|
48 |
+
//check their level
|
49 |
+
if(pmpro_hasMembershipLevel($levels))
|
50 |
+
$hasaccess = true;
|
51 |
|
52 |
//is there a delay?
|
53 |
if($hasaccess && !empty($delay))
|
shortcodes/pmpro_account.php
CHANGED
@@ -57,7 +57,7 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
|
|
57 |
<div class="pmpro_actionlinks">
|
58 |
<?php do_action("pmpro_member_action_links_before"); ?>
|
59 |
|
60 |
-
<?php if( pmpro_isLevelExpiringSoon( $current_user->membership_level) ) { ?>
|
61 |
<a href="<?php echo pmpro_url("checkout", "?level=" . $current_user->membership_level->id, "https")?>"><?php _e("Renew", "pmpro");?></a>
|
62 |
<?php } ?>
|
63 |
|
@@ -98,7 +98,7 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
|
|
98 |
|
99 |
<?php if(in_array('profile', $sections)) { ?>
|
100 |
<div id="pmpro_account-profile" class="pmpro_box">
|
101 |
-
<?php
|
102 |
<h3><?php _e("My Account", "pmpro");?></h3>
|
103 |
<?php if($current_user->user_firstname) { ?>
|
104 |
<p><?php echo $current_user->user_firstname?> <?php echo $current_user->user_lastname?></p>
|
@@ -143,7 +143,7 @@ function pmpro_shortcode_account($atts, $content=null, $code="")
|
|
143 |
?>
|
144 |
<tr id="pmpro_account-invoice-<?php echo $invoice->code; ?>">
|
145 |
<td><a href="<?php echo pmpro_url("invoice", "?invoice=" . $invoice->code)?>"><?php echo date(get_option("date_format"), $invoice->timestamp)?></td>
|
146 |
-
<td><?php echo $invoice->membership_level->name
|
147 |
<td><?php echo pmpro_formatPrice($invoice->total)?></td>
|
148 |
</tr>
|
149 |
<?php
|
57 |
<div class="pmpro_actionlinks">
|
58 |
<?php do_action("pmpro_member_action_links_before"); ?>
|
59 |
|
60 |
+
<?php if( $current_user->membership_level->allow_signups && pmpro_isLevelExpiringSoon( $current_user->membership_level) ) { ?>
|
61 |
<a href="<?php echo pmpro_url("checkout", "?level=" . $current_user->membership_level->id, "https")?>"><?php _e("Renew", "pmpro");?></a>
|
62 |
<?php } ?>
|
63 |
|
98 |
|
99 |
<?php if(in_array('profile', $sections)) { ?>
|
100 |
<div id="pmpro_account-profile" class="pmpro_box">
|
101 |
+
<?php wp_get_current_user(); ?>
|
102 |
<h3><?php _e("My Account", "pmpro");?></h3>
|
103 |
<?php if($current_user->user_firstname) { ?>
|
104 |
<p><?php echo $current_user->user_firstname?> <?php echo $current_user->user_lastname?></p>
|
143 |
?>
|
144 |
<tr id="pmpro_account-invoice-<?php echo $invoice->code; ?>">
|
145 |
<td><a href="<?php echo pmpro_url("invoice", "?invoice=" . $invoice->code)?>"><?php echo date(get_option("date_format"), $invoice->timestamp)?></td>
|
146 |
+
<td><?php if(!empty($invoice->membership_level)) echo $invoice->membership_level->name; else echo __("N/A", "pmpro");?></td>
|
147 |
<td><?php echo pmpro_formatPrice($invoice->total)?></td>
|
148 |
</tr>
|
149 |
<?php
|