Version Description
- 2021-04-30 =
- ENHANCEMENT: Added
pmpro_membership_content_filter
filter to let other plugins change how PMPro filters member content. - ENHANCEMENT: Improved de_DE email template translation. (Thanks, biker238 on GitHub)
- ENHANCEMENT: Added
pmpro_change_level
filter. - ENHANCEMENT: Improved display of prices on invoices and added pmpro_display_price_parts function and filters so plugins like the upcoming AvaTax add on can add subtotals to the price displays.
- ENHANCEMENT: Added a pmpro_after_all_membesrhip_level_changes hook that fires at the end of the page load and can be used to process all membership changes in bulk.
- ENHANCEMENT: The "User" column on the orders page now shows the username and email.
- ENHANCEMENT: Added a pmpro_stripe_create_subscription_array filter. (Thanks, ermGit on GitHub)
- BUG FIX/ENHANCEMENT: pmpro_change_level returns true now if the function is called to change a users level to one they already have.
- BUG FIX/ENHANCEMENT: No longer calling $order->updateTimestamp() on orders adminpage.
- BUG FIX/ENHANCEMENT: Updated conditional to check street instead of name when displaying billing address on Invoice/Confirmation.
- BUG FIX/ENHANCEMENT: Improved localization and added missing strings to translation.
- BUG FIX/ENHANCEMENT: Updated to use `get_user_locale1 to load localization.
- BUG FIX/ENHANCEMENT: Now Preserving existing values for
post__not_in
andcategory__not_in
when filtering search and archive queries. - BUG FIX/ENHANCEMENT: Fixed sorting of the Membership Level column on the Users List table in the WP admin dashboard.
- BUG FIX/ENHANCEMENT: Added a pmpro_sort_levels_by_order function and using it in various places to make sure levels are listed in the order they are in on the PMPro settings page.
- BUG FIX/ENHANCEMENT: Added an extra check in the pmpro_is_checkout function that helps with issues that were coming up in some add ons.
- BUG FIX/ENHANCEMENT: The level cache now takes into account the $include_active parameter.
- BUG FIX/ENHANCEMENT: The CSS class is now properly added to the body tag when a PMPro page block is used on a page.
- BUG FIX/EHNANCEMENT: Better timezone handling in sales reports.
- BUG FIX/ENHANCEMENT: Fixed a few places where we might think a free order was paid if using a currency with more or less than 2 decimal places.
- BUG FIX: Fixed deprecated jQuery functions in pmpro-admin.js.
- BUG FIX: Fixed warning for a missing/deleted level in the pmpro_post_classes function.
- BUG FIX: Default
pmpro_longform_address
to true on Billing Information page. - BUG FIX: Fixed
pmpro_twocheckout_validate
filter. - BUG FIX: Fixed variables passed to the
pmpro_discount_code_used
filter. - BUG FIX: CZK currency should have 2 decimals.
- BUG FIX: Avoiding a redirect loop if the login page is deleted. (Thanks, George Stephanis)
- BUG FIX: Fixed the password reset link in new user notification email when not using pretty permalinks.
- BUG FIX: Fixed issues with password reset URLs on multisite networks.
- BUG FIX: Fixed the issue where sales weren't showing up on report charts sometimes on the 31st of the month.
Download this release
Release Info
Developer | strangerstudios |
Plugin | Paid Memberships Pro |
Version | 2.5.8 |
Comparing to | |
See all releases |
Code changes from version 2.5.7 to 2.5.8
- CHANGELOG.txt +32 -0
- adminpages/advancedsettings.php +1 -0
- adminpages/discountcodes.php +1 -0
- adminpages/orders.php +11 -12
- adminpages/reports/login.php +1 -0
- adminpages/reports/memberships.php +2 -19
- adminpages/reports/sales.php +19 -4
- adminpages/templates/orders-email.php +25 -21
- adminpages/templates/orders-print.php +18 -14
- classes/class.memberorder.php +4 -0
- classes/gateways/class.pmprogateway_stripe.php +2 -2
- css/frontend.css +11 -0
- includes/content.php +19 -5
- includes/currencies.php +1 -1
- includes/functions.php +186 -6
- includes/init.php +5 -6
- includes/localization.php +1 -1
- includes/login.php +13 -26
- includes/metaboxes.php +1 -0
- js/pmpro-admin.js +5 -5
- languages/email/de_DE/admin_change.html +3 -3
- languages/email/de_DE/admin_change_admin.html +1 -1
- languages/email/de_DE/billing.html +4 -4
- languages/email/de_DE/billing_admin.html +2 -2
- languages/email/de_DE/billing_failure.html +2 -2
- languages/email/de_DE/billing_failure_admin.html +1 -1
- languages/email/de_DE/cancel.html +2 -2
- languages/email/de_DE/cancel_admin.html +2 -2
- languages/email/de_DE/checkout_check.html +3 -3
- languages/email/de_DE/checkout_check_admin.html +2 -2
- languages/email/de_DE/checkout_express.html +3 -3
- languages/email/de_DE/checkout_express_admin.html +2 -2
- languages/email/de_DE/checkout_free.html +2 -2
- languages/email/de_DE/checkout_free_admin.html +1 -1
- languages/email/de_DE/checkout_freetrial.html +3 -3
- languages/email/de_DE/checkout_freetrial_admin.html +2 -2
- languages/email/de_DE/checkout_paid.html +4 -4
- languages/email/de_DE/checkout_paid_admin.html +2 -2
- languages/email/de_DE/checkout_trial.html +4 -4
- languages/email/de_DE/checkout_trial_admin.html +2 -2
- languages/email/de_DE/credit_card_expiring.html +2 -2
- languages/email/de_DE/footer.html +1 -1
- languages/email/de_DE/invoice.html +4 -4
- languages/email/de_DE/membership_expired.html +2 -2
- languages/email/de_DE/membership_expiring.html +2 -2
- languages/email/de_DE/trial_ending.html +3 -3
- languages/paid-memberships-pro.mo +0 -0
- languages/paid-memberships-pro.po +843 -782
- languages/paid-memberships-pro.pot +843 -782
- pages/billing.php +1 -1
- pages/confirmation.php +10 -15
- pages/invoice.php +10 -15
- pages/levels.php +2 -20
- paid-memberships-pro.php +3 -3
- preheaders/checkout.php +1 -1
- preheaders/levels.php +8 -19
- readme.txt +34 -2
- services/twocheckout-ins.php +2 -2
CHANGELOG.txt
CHANGED
@@ -1,4 +1,36 @@
|
|
1 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
= 2.5.7 - 2021-03-10 =
|
3 |
* ENHANCEMENT: Added a pmpro_checkout_message filter that can be used to filter error messages shown at checkout.
|
4 |
* BUG FIX/ENHANCEMENT: Now making sure some billing address fields are available for the billing failure emails sent during the PayPal IPN handler.
|
1 |
== Changelog ==
|
2 |
+
= 2.5.8 - 2021-04-30 =
|
3 |
+
* ENHANCEMENT: Added `pmpro_membership_content_filter` filter to let other plugins change how PMPro filters member content.
|
4 |
+
* ENHANCEMENT: Improved de_DE email template translation. (Thanks, biker238 on GitHub)
|
5 |
+
* ENHANCEMENT: Added `pmpro_change_level` filter.
|
6 |
+
* ENHANCEMENT: Improved display of prices on invoices and added pmpro_display_price_parts function and filters so plugins like the upcoming AvaTax add on can add subtotals to the price displays.
|
7 |
+
* ENHANCEMENT: Added a pmpro_after_all_membesrhip_level_changes hook that fires at the end of the page load and can be used to process all membership changes in bulk.
|
8 |
+
* ENHANCEMENT: The "User" column on the orders page now shows the username and email.
|
9 |
+
* ENHANCEMENT: Added a pmpro_stripe_create_subscription_array filter. (Thanks, ermGit on GitHub)
|
10 |
+
* BUG FIX/ENHANCEMENT: pmpro_change_level returns true now if the function is called to change a user’s level to one they already have.
|
11 |
+
* BUG FIX/ENHANCEMENT: No longer calling $order->updateTimestamp() on orders adminpage.
|
12 |
+
* BUG FIX/ENHANCEMENT: Updated conditional to check ‘street’ instead of ‘name’ when displaying billing address on Invoice/Confirmation.
|
13 |
+
* BUG FIX/ENHANCEMENT: Improved localization and added missing strings to translation.
|
14 |
+
* BUG FIX/ENHANCEMENT: Updated to use `get_user_locale1 to load localization.
|
15 |
+
* BUG FIX/ENHANCEMENT: Now Preserving existing values for `post__not_in` and `category__not_in` when filtering search and archive queries.
|
16 |
+
* BUG FIX/ENHANCEMENT: Fixed sorting of the Membership Level column on the Users List table in the WP admin dashboard.
|
17 |
+
* BUG FIX/ENHANCEMENT: Added a pmpro_sort_levels_by_order function and using it in various places to make sure levels are listed in the order they are in on the PMPro settings page.
|
18 |
+
* BUG FIX/ENHANCEMENT: Added an extra check in the pmpro_is_checkout function that helps with issues that were coming up in some add ons.
|
19 |
+
* BUG FIX/ENHANCEMENT: The level cache now takes into account the $include_active parameter.
|
20 |
+
* BUG FIX/ENHANCEMENT: The CSS class is now properly added to the body tag when a PMPro page block is used on a page.
|
21 |
+
* BUG FIX/EHNANCEMENT: Better timezone handling in sales reports.
|
22 |
+
* BUG FIX/ENHANCEMENT: Fixed a few places where we might think a free order was paid if using a currency with more or less than 2 decimal places.
|
23 |
+
* BUG FIX: Fixed deprecated jQuery functions in pmpro-admin.js.
|
24 |
+
* BUG FIX: Fixed warning for a missing/deleted level in the pmpro_post_classes function.
|
25 |
+
* BUG FIX: Default `pmpro_longform_address` to true on Billing Information page.
|
26 |
+
* BUG FIX: Fixed `pmpro_twocheckout_validate` filter.
|
27 |
+
* BUG FIX: Fixed variables passed to the `pmpro_discount_code_used` filter.
|
28 |
+
* BUG FIX: CZK currency should have 2 decimals.
|
29 |
+
* BUG FIX: Avoiding a redirect loop if the login page is deleted. (Thanks, George Stephanis)
|
30 |
+
* BUG FIX: Fixed the password reset link in new user notification email when not using pretty permalinks.
|
31 |
+
* BUG FIX: Fixed issues with password reset URLs on multisite networks.
|
32 |
+
* BUG FIX: Fixed the issue where sales weren't showing up on report charts sometimes on the 31st of the month.
|
33 |
+
|
34 |
= 2.5.7 - 2021-03-10 =
|
35 |
* ENHANCEMENT: Added a pmpro_checkout_message filter that can be used to filter error messages shown at checkout.
|
36 |
* BUG FIX/ENHANCEMENT: Now making sure some billing address fields are available for the billing failure emails sent during the PayPal IPN handler.
|
adminpages/advancedsettings.php
CHANGED
@@ -363,6 +363,7 @@ if ( function_exists( 'pmpro_displayAds' ) && pmpro_displayAds() ) {
|
|
363 |
|
364 |
$sqlQuery = "SELECT * FROM $wpdb->pmpro_membership_levels ";
|
365 |
$levels = $wpdb->get_results($sqlQuery, OBJECT);
|
|
|
366 |
foreach($levels as $level)
|
367 |
{
|
368 |
?>
|
363 |
|
364 |
$sqlQuery = "SELECT * FROM $wpdb->pmpro_membership_levels ";
|
365 |
$levels = $wpdb->get_results($sqlQuery, OBJECT);
|
366 |
+
$levels = pmpro_sort_levels_by_order( $levels );
|
367 |
foreach($levels as $level)
|
368 |
{
|
369 |
?>
|
adminpages/discountcodes.php
CHANGED
@@ -537,6 +537,7 @@
|
|
537 |
<div class="pmpro_discount_levels">
|
538 |
<?php
|
539 |
$levels = $wpdb->get_results("SELECT * FROM $wpdb->pmpro_membership_levels");
|
|
|
540 |
foreach($levels as $level)
|
541 |
{
|
542 |
//if this level is already managed for this discount code, use the code values
|
537 |
<div class="pmpro_discount_levels">
|
538 |
<?php
|
539 |
$levels = $wpdb->get_results("SELECT * FROM $wpdb->pmpro_membership_levels");
|
540 |
+
$levels = pmpro_sort_levels_by_order( $levels );
|
541 |
foreach($levels as $level)
|
542 |
{
|
543 |
//if this level is already managed for this discount code, use the code values
|
adminpages/orders.php
CHANGED
@@ -277,6 +277,14 @@ if ( ! empty( $_REQUEST['save'] ) ) {
|
|
277 |
global $allowedposttags;
|
278 |
$order->notes = wp_kses( wp_unslash( $_REQUEST['notes'] ), $allowedposttags );
|
279 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
280 |
|
281 |
// affiliate stuff
|
282 |
$affiliates = apply_filters( 'pmpro_orders_show_affiliate_ids', false );
|
@@ -298,15 +306,6 @@ if ( ! empty( $_REQUEST['save'] ) ) {
|
|
298 |
// save
|
299 |
if ( $order->saveOrder() !== false && $nonceokay ) {
|
300 |
$order_id = $order->id;
|
301 |
-
|
302 |
-
// handle timestamp
|
303 |
-
if ( $order->updateTimestamp( intval( $_POST['ts_year'] ), intval( $_POST['ts_month'] ), intval( $_POST['ts_day'] ), intval( $_POST['ts_hour'] ) . ':' . intval( $_POST['ts_minute'] ) . ':00' ) !== false ) {
|
304 |
-
$pmpro_msg = __( 'Order saved successfully.', 'paid-memberships-pro' );
|
305 |
-
$pmpro_msgt = 'success';
|
306 |
-
} else {
|
307 |
-
$pmpro_msg = __( 'Error updating order timestamp.', 'paid-memberships-pro' );
|
308 |
-
$pmpro_msgt = 'error';
|
309 |
-
}
|
310 |
} else {
|
311 |
$pmpro_msg = __( 'Error saving order.', 'paid-memberships-pro' );
|
312 |
$pmpro_msgt = 'error';
|
@@ -1068,7 +1067,7 @@ if ( function_exists( 'pmpro_add_email_order_modal' ) ) {
|
|
1068 |
|
1069 |
<?php
|
1070 |
// Note: only orders belonging to current levels can be filtered. There is no option for orders belonging to deleted levels
|
1071 |
-
$levels = pmpro_getAllLevels( true, true );
|
1072 |
?>
|
1073 |
<select id="l" name="l">
|
1074 |
<?php foreach ( $levels as $level ) { ?>
|
@@ -1320,7 +1319,7 @@ if ( function_exists( 'pmpro_add_email_order_modal' ) ) {
|
|
1320 |
<tr class="thead">
|
1321 |
<th><?php esc_html_e( 'ID', 'paid-memberships-pro' ); ?></th>
|
1322 |
<th><?php esc_html_e( 'Code', 'paid-memberships-pro' ); ?></th>
|
1323 |
-
<th><?php esc_html_e( '
|
1324 |
<?php do_action( 'pmpro_orders_extra_cols_header', $order_ids ); ?>
|
1325 |
<th><?php esc_html_e( 'Level', 'paid-memberships-pro' ); ?></th>
|
1326 |
<th><?php esc_html_e( 'Total', 'paid-memberships-pro' ); ?></th>
|
@@ -1388,7 +1387,7 @@ if ( function_exists( 'pmpro_add_email_order_modal' ) ) {
|
|
1388 |
<td class="username column-username">
|
1389 |
<?php $order->getUser(); ?>
|
1390 |
<?php if ( ! empty( $order->user ) ) { ?>
|
1391 |
-
<a href="user-edit.php?user_id=<?php echo esc_attr( $order->user->ID ); ?>"><?php echo esc_html( $order->user->user_login );
|
1392 |
<?php } elseif ( $order->user_id > 0 ) { ?>
|
1393 |
[<?php esc_html_e( 'deleted', 'paid-memberships-pro' ); ?>]
|
1394 |
<?php } else { ?>
|
277 |
global $allowedposttags;
|
278 |
$order->notes = wp_kses( wp_unslash( $_REQUEST['notes'] ), $allowedposttags );
|
279 |
}
|
280 |
+
if ( ! in_array( 'timestamp', $read_only_fields ) && isset( $_POST['ts_year'] ) && isset( $_POST['ts_month'] ) && isset( $_POST['ts_day'] ) && isset( $_POST['ts_hour'] ) && isset( $_POST['ts_minute'] ) ) {
|
281 |
+
$year = intval( $_POST['ts_year'] );
|
282 |
+
$month = intval( $_POST['ts_month'] );
|
283 |
+
$day = intval( $_POST['ts_day'] );
|
284 |
+
$hour = intval( $_POST['ts_hour'] );
|
285 |
+
$minute = intval( $_POST['ts_minute'] );
|
286 |
+
$order->timestamp = $date = get_gmt_from_date( $year . '-' . $month . '-' . $day . ' ' . $hour . ':' . $minute . ':00' , 'U' );;
|
287 |
+
}
|
288 |
|
289 |
// affiliate stuff
|
290 |
$affiliates = apply_filters( 'pmpro_orders_show_affiliate_ids', false );
|
306 |
// save
|
307 |
if ( $order->saveOrder() !== false && $nonceokay ) {
|
308 |
$order_id = $order->id;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
} else {
|
310 |
$pmpro_msg = __( 'Error saving order.', 'paid-memberships-pro' );
|
311 |
$pmpro_msgt = 'error';
|
1067 |
|
1068 |
<?php
|
1069 |
// Note: only orders belonging to current levels can be filtered. There is no option for orders belonging to deleted levels
|
1070 |
+
$levels = pmpro_sort_levels_by_order( pmpro_getAllLevels( true, true ) );
|
1071 |
?>
|
1072 |
<select id="l" name="l">
|
1073 |
<?php foreach ( $levels as $level ) { ?>
|
1319 |
<tr class="thead">
|
1320 |
<th><?php esc_html_e( 'ID', 'paid-memberships-pro' ); ?></th>
|
1321 |
<th><?php esc_html_e( 'Code', 'paid-memberships-pro' ); ?></th>
|
1322 |
+
<th><?php esc_html_e( 'User', 'paid-memberships-pro' ); ?></th>
|
1323 |
<?php do_action( 'pmpro_orders_extra_cols_header', $order_ids ); ?>
|
1324 |
<th><?php esc_html_e( 'Level', 'paid-memberships-pro' ); ?></th>
|
1325 |
<th><?php esc_html_e( 'Total', 'paid-memberships-pro' ); ?></th>
|
1387 |
<td class="username column-username">
|
1388 |
<?php $order->getUser(); ?>
|
1389 |
<?php if ( ! empty( $order->user ) ) { ?>
|
1390 |
+
<a href="user-edit.php?user_id=<?php echo esc_attr( $order->user->ID ); ?>"><?php echo esc_html( $order->user->user_login ); ?> (<?php echo esc_html( $order->user->user_email ); ?>)</a>
|
1391 |
<?php } elseif ( $order->user_id > 0 ) { ?>
|
1392 |
[<?php esc_html_e( 'deleted', 'paid-memberships-pro' ); ?>]
|
1393 |
<?php } else { ?>
|
adminpages/reports/login.php
CHANGED
@@ -105,6 +105,7 @@ function pmpro_report_login_page()
|
|
105 |
<option value="all" <?php if($l == "all") { ?>selected="selected"<?php } ?>><?php _e('All Levels', 'paid-memberships-pro')?></option>
|
106 |
<?php
|
107 |
$levels = $wpdb->get_results("SELECT id, name FROM $wpdb->pmpro_membership_levels ORDER BY name");
|
|
|
108 |
foreach($levels as $level)
|
109 |
{
|
110 |
?>
|
105 |
<option value="all" <?php if($l == "all") { ?>selected="selected"<?php } ?>><?php _e('All Levels', 'paid-memberships-pro')?></option>
|
106 |
<?php
|
107 |
$levels = $wpdb->get_results("SELECT id, name FROM $wpdb->pmpro_membership_levels ORDER BY name");
|
108 |
+
$levels = pmpro_sort_levels_by_order( $levels );
|
109 |
foreach($levels as $level)
|
110 |
{
|
111 |
?>
|
adminpages/reports/memberships.php
CHANGED
@@ -31,25 +31,7 @@ function pmpro_report_memberships_widget() {
|
|
31 |
global $wpdb;
|
32 |
|
33 |
//get levels to show stats on first 3
|
34 |
-
$pmpro_levels = pmpro_getAllLevels(true, true);
|
35 |
-
|
36 |
-
$pmpro_level_order = pmpro_getOption('level_order');
|
37 |
-
|
38 |
-
if(!empty($pmpro_level_order))
|
39 |
-
{
|
40 |
-
$order = explode(',',$pmpro_level_order);
|
41 |
-
|
42 |
-
//reorder array
|
43 |
-
$reordered_levels = array();
|
44 |
-
foreach($order as $level_id) {
|
45 |
-
foreach($pmpro_levels as $key=>$level) {
|
46 |
-
if($level_id == $level->id)
|
47 |
-
$reordered_levels[$key] = $pmpro_levels[$key];
|
48 |
-
}
|
49 |
-
}
|
50 |
-
|
51 |
-
$pmpro_levels = $reordered_levels;
|
52 |
-
}
|
53 |
|
54 |
$pmpro_levels = apply_filters( 'pmpro_report_levels', $pmpro_levels );
|
55 |
?>
|
@@ -375,6 +357,7 @@ function pmpro_report_memberships_page()
|
|
375 |
<option value="free-levels" <?php if(isset($_REQUEST['level']) && $_REQUEST['level'] == "free-levels"){?> selected="selected" <?php }?>><?php _e( 'All Free Levels', 'paid-memberships-pro' ); ?></option>
|
376 |
<?php
|
377 |
$levels = $wpdb->get_results("SELECT id, name FROM $wpdb->pmpro_membership_levels ORDER BY name");
|
|
|
378 |
foreach($levels as $level)
|
379 |
{
|
380 |
?>
|
31 |
global $wpdb;
|
32 |
|
33 |
//get levels to show stats on first 3
|
34 |
+
$pmpro_levels = pmpro_sort_levels_by_order( pmpro_getAllLevels(true, true) );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
|
36 |
$pmpro_levels = apply_filters( 'pmpro_report_levels', $pmpro_levels );
|
37 |
?>
|
357 |
<option value="free-levels" <?php if(isset($_REQUEST['level']) && $_REQUEST['level'] == "free-levels"){?> selected="selected" <?php }?>><?php _e( 'All Free Levels', 'paid-memberships-pro' ); ?></option>
|
358 |
<?php
|
359 |
$levels = $wpdb->get_results("SELECT id, name FROM $wpdb->pmpro_membership_levels ORDER BY name");
|
360 |
+
$levels = pmpro_sort_levels_by_order( $levels );
|
361 |
foreach($levels as $level)
|
362 |
{
|
363 |
?>
|
adminpages/reports/sales.php
CHANGED
@@ -152,7 +152,7 @@ function pmpro_report_sales_page()
|
|
152 |
if($period == "daily")
|
153 |
{
|
154 |
$startdate = $year . '-' . substr("0" . $month, strlen($month) - 1, 2) . '-01';
|
155 |
-
$enddate = $year . '-' . substr("0" . $month, strlen($month) - 1, 2) . '-
|
156 |
$date_function = 'DAY';
|
157 |
$currently_in_period = ( intval( date( 'Y' ) ) == $year && intval( date( 'n' ) ) == $month );
|
158 |
}
|
@@ -173,17 +173,22 @@ function pmpro_report_sales_page()
|
|
173 |
//testing or live data
|
174 |
$gateway_environment = pmpro_getOption("gateway_environment");
|
175 |
|
|
|
|
|
|
|
|
|
|
|
176 |
//get data
|
177 |
-
$sqlQuery = "SELECT $date_function(o.timestamp) as date, $type_function(o.total) as value FROM $wpdb->pmpro_membership_orders o ";
|
178 |
|
179 |
if ( ! empty( $discount_code ) ) {
|
180 |
$sqlQuery .= "LEFT JOIN $wpdb->pmpro_discount_codes_uses dc ON o.id = dc.order_id ";
|
181 |
}
|
182 |
|
183 |
-
$sqlQuery .= "WHERE o.total > 0 AND o.timestamp >= '
|
184 |
|
185 |
if(!empty($enddate))
|
186 |
-
$sqlQuery .= "AND o.timestamp <=
|
187 |
|
188 |
if(!empty($l))
|
189 |
$sqlQuery .= "AND o.membership_id IN(" . esc_sql( $l ) . ") ";
|
@@ -311,6 +316,7 @@ function pmpro_report_sales_page()
|
|
311 |
<option value="" <?php if(!$l) { ?>selected="selected"<?php } ?>><?php _e('All Levels', 'paid-memberships-pro' );?></option>
|
312 |
<?php
|
313 |
$levels = $wpdb->get_results("SELECT id, name FROM $wpdb->pmpro_membership_levels ORDER BY name");
|
|
|
314 |
foreach($levels as $level)
|
315 |
{
|
316 |
?>
|
@@ -477,6 +483,9 @@ function pmpro_getSales($period, $levels = NULL)
|
|
477 |
|
478 |
$gateway_environment = pmpro_getOption("gateway_environment");
|
479 |
|
|
|
|
|
|
|
480 |
//build query
|
481 |
global $wpdb;
|
482 |
$sqlQuery = "SELECT COUNT(*) FROM $wpdb->pmpro_membership_orders WHERE total > 0 AND status NOT IN('refunded', 'review', 'token', 'error') AND timestamp >= '" . esc_sql( $startdate ) . "' AND gateway_environment = '" . esc_sql( $gateway_environment ) . "' ";
|
@@ -523,6 +532,9 @@ function pmpro_get_prices_paid( $period, $count = NULL ) {
|
|
523 |
$startdate = '1970-01-01';
|
524 |
}
|
525 |
|
|
|
|
|
|
|
526 |
$gateway_environment = pmpro_getOption( 'gateway_environment' );
|
527 |
|
528 |
// Build query.
|
@@ -583,6 +595,9 @@ function pmpro_getRevenue($period, $levels = NULL)
|
|
583 |
else
|
584 |
$startdate = "";
|
585 |
|
|
|
|
|
|
|
586 |
$gateway_environment = pmpro_getOption("gateway_environment");
|
587 |
|
588 |
//build query
|
152 |
if($period == "daily")
|
153 |
{
|
154 |
$startdate = $year . '-' . substr("0" . $month, strlen($month) - 1, 2) . '-01';
|
155 |
+
$enddate = $year . '-' . substr("0" . $month, strlen($month) - 1, 2) . '-' . date_i18n('t', strtotime( $startdate ) );
|
156 |
$date_function = 'DAY';
|
157 |
$currently_in_period = ( intval( date( 'Y' ) ) == $year && intval( date( 'n' ) ) == $month );
|
158 |
}
|
173 |
//testing or live data
|
174 |
$gateway_environment = pmpro_getOption("gateway_environment");
|
175 |
|
176 |
+
// Get the estimated second offset to convert from GMT time to local.This is not perfect as daylight
|
177 |
+
// savings time can come and go in the middle of a month, but it's a tradeoff that we are making
|
178 |
+
// for performance so that we don't need to go through each order manually to calculate the local time.
|
179 |
+
$tz_offset = strtotime( $startdate ) - strtotime( get_gmt_from_date( $startdate . " 00:00:00" ) );
|
180 |
+
|
181 |
//get data
|
182 |
+
$sqlQuery = "SELECT $date_function( DATE_ADD( o.timestamp, INTERVAL $tz_offset SECOND ) ) as date, $type_function(o.total) as value FROM $wpdb->pmpro_membership_orders o ";
|
183 |
|
184 |
if ( ! empty( $discount_code ) ) {
|
185 |
$sqlQuery .= "LEFT JOIN $wpdb->pmpro_discount_codes_uses dc ON o.id = dc.order_id ";
|
186 |
}
|
187 |
|
188 |
+
$sqlQuery .= "WHERE o.total > 0 AND o.timestamp >= DATE_ADD( '$startdate' , INTERVAL - $tz_offset SECOND ) AND o.status NOT IN('refunded', 'review', 'token', 'error') AND o.gateway_environment = '" . esc_sql( $gateway_environment ) . "' ";
|
189 |
|
190 |
if(!empty($enddate))
|
191 |
+
$sqlQuery .= "AND o.timestamp <= DATE_ADD( '$enddate 23:59:59' , INTERVAL - $tz_offset SECOND )";
|
192 |
|
193 |
if(!empty($l))
|
194 |
$sqlQuery .= "AND o.membership_id IN(" . esc_sql( $l ) . ") ";
|
316 |
<option value="" <?php if(!$l) { ?>selected="selected"<?php } ?>><?php _e('All Levels', 'paid-memberships-pro' );?></option>
|
317 |
<?php
|
318 |
$levels = $wpdb->get_results("SELECT id, name FROM $wpdb->pmpro_membership_levels ORDER BY name");
|
319 |
+
$levels = pmpro_sort_levels_by_order( $levels );
|
320 |
foreach($levels as $level)
|
321 |
{
|
322 |
?>
|
483 |
|
484 |
$gateway_environment = pmpro_getOption("gateway_environment");
|
485 |
|
486 |
+
// Convert from local to UTC.
|
487 |
+
$startdate = get_gmt_from_date( $startdate );
|
488 |
+
|
489 |
//build query
|
490 |
global $wpdb;
|
491 |
$sqlQuery = "SELECT COUNT(*) FROM $wpdb->pmpro_membership_orders WHERE total > 0 AND status NOT IN('refunded', 'review', 'token', 'error') AND timestamp >= '" . esc_sql( $startdate ) . "' AND gateway_environment = '" . esc_sql( $gateway_environment ) . "' ";
|
532 |
$startdate = '1970-01-01';
|
533 |
}
|
534 |
|
535 |
+
// Convert from local to UTC.
|
536 |
+
$startdate = get_gmt_from_date( $startdate );
|
537 |
+
|
538 |
$gateway_environment = pmpro_getOption( 'gateway_environment' );
|
539 |
|
540 |
// Build query.
|
595 |
else
|
596 |
$startdate = "";
|
597 |
|
598 |
+
// Convert from local to UTC.
|
599 |
+
$startdate = get_gmt_from_date( $startdate );
|
600 |
+
|
601 |
$gateway_environment = pmpro_getOption("gateway_environment");
|
602 |
|
603 |
//build query
|
adminpages/templates/orders-email.php
CHANGED
@@ -15,12 +15,12 @@
|
|
15 |
</tr>
|
16 |
<tr>
|
17 |
<td>
|
18 |
-
<?php echo __( 'Date:', 'paid-memberships-pro' ) . ' ' . date_i18n( '
|
19 |
</td>
|
20 |
</tr>
|
21 |
<?php if(!empty($order->billing->name)): ?>
|
22 |
<tr>
|
23 |
-
<td>
|
24 |
<strong><?php _e( 'Bill to:', 'paid-memberships-pro' ); ?></strong><br>
|
25 |
<?php
|
26 |
echo pmpro_formatAddress(
|
@@ -41,29 +41,33 @@
|
|
41 |
<tbody>
|
42 |
<tr>
|
43 |
<td colspan="2">
|
44 |
-
<table style="width:100%;border-width:
|
45 |
<tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
|
46 |
-
<th style="text-align:center;border-width:1px;border-style:solid;border-collapse:collapse;"><?php _e('ID', 'paid-memberships-pro' ); ?></th>
|
47 |
-
<th style="border-width:1px;border-style:solid;border-collapse:collapse;"><?php _e('Item', 'paid-memberships-pro' ); ?></th>
|
48 |
-
<th style="border-width:1px;border-style:solid;border-collapse:collapse;"><?php _e('Price', 'paid-memberships-pro' ); ?></th>
|
49 |
</tr>
|
50 |
<tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
|
51 |
-
<td style="text-align:center;border-width:1px;border-style:solid;border-collapse:collapse;"><?php echo $level->id; ?></td>
|
52 |
-
<td style="border-width:1px;border-style:solid;border-collapse:collapse;"><?php echo $level->name; ?></td>
|
53 |
-
<td style="text-align:right;"><?php echo $order->subtotal; ?></td>
|
54 |
-
</tr>
|
55 |
-
<tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
|
56 |
-
<th colspan="2" style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;"><?php _e('Subtotal', 'paid-memberships-pro' ); ?></th>
|
57 |
-
<td style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;"><?php echo $order->subtotal; ?></td>
|
58 |
-
</tr>
|
59 |
-
<tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
|
60 |
-
<th colspan="2" style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;"><?php _e('Tax', 'paid-memberships-pro' ); ?></th>
|
61 |
-
<td style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;"><?php echo $order->tax; ?></td>
|
62 |
-
</tr>
|
63 |
-
<tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
|
64 |
-
<th colspan="2" style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;"><?php _e('Total', 'paid-memberships-pro' ); ?></th>
|
65 |
-
<th style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;"><?php echo pmpro_escape_price( pmpro_formatPrice( $order->total ) ); ?></th>
|
66 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
</table>
|
68 |
</td>
|
69 |
</tr>
|
15 |
</tr>
|
16 |
<tr>
|
17 |
<td>
|
18 |
+
<?php echo __( 'Date:', 'paid-memberships-pro' ) . ' ' . date_i18n( get_option( 'date_format' ), $order->getTimestamp() ); ?>
|
19 |
</td>
|
20 |
</tr>
|
21 |
<?php if(!empty($order->billing->name)): ?>
|
22 |
<tr>
|
23 |
+
<td style="padding-bottom:10px;">
|
24 |
<strong><?php _e( 'Bill to:', 'paid-memberships-pro' ); ?></strong><br>
|
25 |
<?php
|
26 |
echo pmpro_formatAddress(
|
41 |
<tbody>
|
42 |
<tr>
|
43 |
<td colspan="2">
|
44 |
+
<table style="width:100%;border-width:0px;border-collapse:collapse;">
|
45 |
<tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
|
46 |
+
<th style="text-align:center;border-width:1px;border-style:solid;border-collapse:collapse;padding:4px;"><?php _e('ID', 'paid-memberships-pro' ); ?></th>
|
47 |
+
<th style="border-width:1px;border-style:solid;border-collapse:collapse;padding:4px;"><?php _e('Item', 'paid-memberships-pro' ); ?></th>
|
48 |
+
<th style="border-width:1px;border-style:solid;border-collapse:collapse;padding:4px;"><?php _e('Price', 'paid-memberships-pro' ); ?></th>
|
49 |
</tr>
|
50 |
<tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
|
51 |
+
<td style="text-align:center;border-width:1px;border-style:solid;border-collapse:collapse;padding:4px;"><?php echo $level->id; ?></td>
|
52 |
+
<td style="border-width:1px;border-style:solid;border-collapse:collapse;padding:4px;"><?php echo $level->name; ?></td>
|
53 |
+
<td style="border-width:1px;border-style:solid;border-collapse:collapse;text-align:right;padding:4px;"><?php echo pmpro_escape_price( pmpro_formatPrice( $order->subtotal ) ); ?></td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
</tr>
|
55 |
+
<?php
|
56 |
+
if ( (float)$order->total > 0 ) {
|
57 |
+
$pmpro_price_parts = pmpro_get_price_parts( $order, 'array' );
|
58 |
+
foreach ( $pmpro_price_parts as $pmpro_price_part ) { ?>
|
59 |
+
<tr style="border-width:1px;border-style:solid;border-collapse:collapse;padding:4px;">
|
60 |
+
<th colspan="2" style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;padding:4px;">
|
61 |
+
<?php esc_html_e( $pmpro_price_part['label'] ); ?>
|
62 |
+
</th>
|
63 |
+
<td style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;padding:4px;">
|
64 |
+
<?php esc_html_e( $pmpro_price_part['value'] ); ?>
|
65 |
+
</td>
|
66 |
+
</tr>
|
67 |
+
<?php
|
68 |
+
}
|
69 |
+
}
|
70 |
+
?>
|
71 |
</table>
|
72 |
</td>
|
73 |
</tr>
|
adminpages/templates/orders-print.php
CHANGED
@@ -70,7 +70,7 @@
|
|
70 |
$order->billing->phone
|
71 |
); ?>
|
72 |
</p>
|
73 |
-
<table class="invoice">
|
74 |
<tr>
|
75 |
<th><?php _e('ID', 'paid-memberships-pro' ); ?></th>
|
76 |
<th><?php _e('Item', 'paid-memberships-pro' ); ?></th>
|
@@ -79,20 +79,24 @@
|
|
79 |
<tr>
|
80 |
<td class="aligncenter"><?php echo $level->id; ?></td>
|
81 |
<td><?php echo $level->name; ?></td>
|
82 |
-
<td class="alignright"><?php echo $order->subtotal; ?></td>
|
83 |
-
</tr>
|
84 |
-
<tr>
|
85 |
-
<th colspan="2" class="alignright"><?php _e('Subtotal', 'paid-memberships-pro' ); ?></th>
|
86 |
-
<td class="alignright"><?php echo $order->subtotal; ?></td>
|
87 |
-
</tr>
|
88 |
-
<tr>
|
89 |
-
<th colspan="2" class="alignright"><?php _e('Tax', 'paid-memberships-pro' ); ?></th>
|
90 |
-
<td class="alignright"><?php echo $order->tax; ?></td>
|
91 |
-
</tr>
|
92 |
-
<tr>
|
93 |
-
<th colspan="2" class="alignright"><?php _e('Total', 'paid-memberships-pro' ); ?></th>
|
94 |
-
<th class="alignright"><?php echo pmpro_escape_price( pmpro_formatPrice( $order->total ) ); ?></th>
|
95 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
</table>
|
97 |
</main>
|
98 |
</body>
|
70 |
$order->billing->phone
|
71 |
); ?>
|
72 |
</p>
|
73 |
+
<table class="invoice" style="border-width:0px;border-collapse:collapse;">
|
74 |
<tr>
|
75 |
<th><?php _e('ID', 'paid-memberships-pro' ); ?></th>
|
76 |
<th><?php _e('Item', 'paid-memberships-pro' ); ?></th>
|
79 |
<tr>
|
80 |
<td class="aligncenter"><?php echo $level->id; ?></td>
|
81 |
<td><?php echo $level->name; ?></td>
|
82 |
+
<td class="alignright"><?php echo pmpro_escape_price( pmpro_formatPrice( $order->subtotal ) ); ?></td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
</tr>
|
84 |
+
<?php
|
85 |
+
if ( (float)$order->total > 0 ) {
|
86 |
+
$pmpro_price_parts = pmpro_get_price_parts( $order, 'array' );
|
87 |
+
foreach ( $pmpro_price_parts as $pmpro_price_part ) { ?>
|
88 |
+
<tr style="border-width:1px;border-style:solid;border-collapse:collapse;">
|
89 |
+
<th colspan="2" style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;">
|
90 |
+
<?php esc_html_e( $pmpro_price_part['label'] ); ?>
|
91 |
+
</th>
|
92 |
+
<td style="text-align:right;border-width:1px;border-style:solid;border-collapse:collapse;">
|
93 |
+
<?php esc_html_e( $pmpro_price_part['value'] ); ?>
|
94 |
+
</td>
|
95 |
+
</tr>
|
96 |
+
<?php
|
97 |
+
}
|
98 |
+
}
|
99 |
+
?>
|
100 |
</table>
|
101 |
</main>
|
102 |
</body>
|
classes/class.memberorder.php
CHANGED
@@ -600,6 +600,10 @@
|
|
600 |
* Change the timestamp of an order by passing in year, month, day, time.
|
601 |
*
|
602 |
* $time should be adjusted for local timezone.
|
|
|
|
|
|
|
|
|
603 |
*/
|
604 |
function updateTimestamp($year, $month, $day, $time = NULL)
|
605 |
{
|
600 |
* Change the timestamp of an order by passing in year, month, day, time.
|
601 |
*
|
602 |
* $time should be adjusted for local timezone.
|
603 |
+
*
|
604 |
+
* NOTE: This function should no longer be used. Instead, set the timestamp
|
605 |
+
* for the order directly and call the MemberOrder->saveOrder() function.
|
606 |
+
* This function is no longer used on the /adminpages/orders.php page.
|
607 |
*/
|
608 |
function updateTimestamp($year, $month, $day, $time = NULL)
|
609 |
{
|
classes/gateways/class.pmprogateway_stripe.php
CHANGED
@@ -2154,7 +2154,7 @@ class PMProGateway_stripe extends PMProGateway {
|
|
2154 |
// subscribe to the plan
|
2155 |
try {
|
2156 |
$subscription = array( "plan" => $order->code );
|
2157 |
-
$result = $this->
|
2158 |
} catch ( \Throwable $e ) {
|
2159 |
//try to delete the plan
|
2160 |
$plan->delete();
|
@@ -2978,7 +2978,7 @@ class PMProGateway_stripe extends PMProGateway {
|
|
2978 |
'pending_setup_intent.payment_method',
|
2979 |
),
|
2980 |
);
|
2981 |
-
$order->subscription = Stripe_Subscription::create( $params );
|
2982 |
} catch ( Stripe\Error\Base $e ) {
|
2983 |
$order->error = $e->getMessage();
|
2984 |
return false;
|
2154 |
// subscribe to the plan
|
2155 |
try {
|
2156 |
$subscription = array( "plan" => $order->code );
|
2157 |
+
$result = $this->create_subscription( $order );
|
2158 |
} catch ( \Throwable $e ) {
|
2159 |
//try to delete the plan
|
2160 |
$plan->delete();
|
2978 |
'pending_setup_intent.payment_method',
|
2979 |
),
|
2980 |
);
|
2981 |
+
$order->subscription = Stripe_Subscription::create( apply_filters( 'pmpro_stripe_create_subscription_array', $params ) );
|
2982 |
} catch ( Stripe\Error\Base $e ) {
|
2983 |
$order->error = $e->getMessage();
|
2984 |
return false;
|
css/frontend.css
CHANGED
@@ -279,6 +279,17 @@ select.pmpro_error {
|
|
279 |
#pmpro_message_bottom {
|
280 |
margin-bottom: 1em;
|
281 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
/*---------------------------------------
|
283 |
Membership Checkout
|
284 |
---------------------------------------*/
|
279 |
#pmpro_message_bottom {
|
280 |
margin-bottom: 1em;
|
281 |
}
|
282 |
+
|
283 |
+
/*---------------------------------------
|
284 |
+
Display Price Parts
|
285 |
+
---------------------------------------*/
|
286 |
+
.pmpro_price_part_span {
|
287 |
+
display: block;
|
288 |
+
}
|
289 |
+
.pmpro_price_part_label:after {
|
290 |
+
content: ": ";
|
291 |
+
}
|
292 |
+
|
293 |
/*---------------------------------------
|
294 |
Membership Checkout
|
295 |
---------------------------------------*/
|
includes/content.php
CHANGED
@@ -81,6 +81,9 @@ function pmpro_has_membership_access($post_id = NULL, $user_id = NULL, $return_m
|
|
81 |
}
|
82 |
else
|
83 |
{
|
|
|
|
|
|
|
84 |
//we need to see if the user has access
|
85 |
foreach($post_membership_levels as $level)
|
86 |
{
|
@@ -145,9 +148,8 @@ function pmpro_search_filter($query)
|
|
145 |
if( ! $query->is_admin && $query->is_search && empty( $query->query['post_parent'] ) ) {
|
146 |
//avoiding post_parent queries for now
|
147 |
if( empty( $query->query_vars['post_parent'] ) ) {
|
148 |
-
$query->set('post__not_in', $pmpro_pages );
|
149 |
}
|
150 |
-
$query->set('post__not_in', $pmpro_pages ); // id of page or post
|
151 |
}
|
152 |
|
153 |
// If this is a post type query, get the queried post types into an array.
|
@@ -223,7 +225,7 @@ function pmpro_search_filter($query)
|
|
223 |
if( $hidden_page_ids ) {
|
224 |
//avoiding post_parent queries for now
|
225 |
if( empty( $query->query_vars['post_parent'] ) ) {
|
226 |
-
$query->set( 'post__not_in', $hidden_page_ids );
|
227 |
}
|
228 |
}
|
229 |
|
@@ -248,7 +250,7 @@ function pmpro_search_filter($query)
|
|
248 |
|
249 |
//make this work
|
250 |
if( $hidden_cat_ids ) {
|
251 |
-
|
252 |
|
253 |
//filter so posts in this member's categories are allowed
|
254 |
add_action( 'posts_where', 'pmpro_posts_where_unhide_cats' );
|
@@ -298,6 +300,16 @@ function pmpro_membership_content_filter( $content, $skipcheck = false ) {
|
|
298 |
$hasaccess = $hasaccess[0];
|
299 |
}
|
300 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
|
302 |
if( $hasaccess ) {
|
303 |
//all good, return content
|
@@ -481,7 +493,9 @@ function pmpro_post_classes( $classes, $class, $post_id ) {
|
|
481 |
if( ! empty( $post_levels[1] ) ) {
|
482 |
$classes[] = 'pmpro-level-required';
|
483 |
foreach( $post_levels[1] as $post_level ) {
|
484 |
-
|
|
|
|
|
485 |
}
|
486 |
}
|
487 |
if(!empty($post_levels[0]) && $post_levels[0] == true) {
|
81 |
}
|
82 |
else
|
83 |
{
|
84 |
+
// Reorder the $post_membership_levels to match sorted order.
|
85 |
+
$post_membership_levels = pmpro_sort_levels_by_order( $post_membership_levels );
|
86 |
+
|
87 |
//we need to see if the user has access
|
88 |
foreach($post_membership_levels as $level)
|
89 |
{
|
148 |
if( ! $query->is_admin && $query->is_search && empty( $query->query['post_parent'] ) ) {
|
149 |
//avoiding post_parent queries for now
|
150 |
if( empty( $query->query_vars['post_parent'] ) ) {
|
151 |
+
$query->set( 'post__not_in', array_merge( $query->get('post__not_in'), array_values( $pmpro_pages ) ) );
|
152 |
}
|
|
|
153 |
}
|
154 |
|
155 |
// If this is a post type query, get the queried post types into an array.
|
225 |
if( $hidden_page_ids ) {
|
226 |
//avoiding post_parent queries for now
|
227 |
if( empty( $query->query_vars['post_parent'] ) ) {
|
228 |
+
$query->set( 'post__not_in', array_merge( $query->get('post__not_in'), $hidden_page_ids ) );
|
229 |
}
|
230 |
}
|
231 |
|
250 |
|
251 |
//make this work
|
252 |
if( $hidden_cat_ids ) {
|
253 |
+
$query->set( 'category__not_in', array_merge( $query->get( 'category__not_in' ), $hidden_cat_ids ) );
|
254 |
|
255 |
//filter so posts in this member's categories are allowed
|
256 |
add_action( 'posts_where', 'pmpro_posts_where_unhide_cats' );
|
300 |
$hasaccess = $hasaccess[0];
|
301 |
}
|
302 |
}
|
303 |
+
|
304 |
+
/**
|
305 |
+
* Filter to let other plugins change how PMPro filters member content.
|
306 |
+
* If anything other than false is returned, that value will overwrite
|
307 |
+
* the $content variable and no further processing is done in this function.
|
308 |
+
*/
|
309 |
+
$content_filter = apply_filters( 'pmpro_membership_content_filter', false, $content, $hasaccess );
|
310 |
+
if ( $content_filter !== false ) {
|
311 |
+
return $content_filter;
|
312 |
+
}
|
313 |
|
314 |
if( $hasaccess ) {
|
315 |
//all good, return content
|
493 |
if( ! empty( $post_levels[1] ) ) {
|
494 |
$classes[] = 'pmpro-level-required';
|
495 |
foreach( $post_levels[1] as $post_level ) {
|
496 |
+
if ( isset( $post_level[0] ) ) {
|
497 |
+
$classes[] = 'pmpro-level-' . $post_level[0];
|
498 |
+
}
|
499 |
}
|
500 |
}
|
501 |
if(!empty($post_levels[0]) && $post_levels[0] == true) {
|
includes/currencies.php
CHANGED
@@ -26,7 +26,7 @@
|
|
26 |
'CNY' => __('Chinese Yuan', 'paid-memberships-pro' ),
|
27 |
'CZK' => array(
|
28 |
'name' => __('Czech Koruna', 'paid-memberships-pro' ),
|
29 |
-
'decimals' => '
|
30 |
'thousands_separator' => ' ',
|
31 |
'decimal_separator' => ',',
|
32 |
'symbol' => ' Kč',
|
26 |
'CNY' => __('Chinese Yuan', 'paid-memberships-pro' ),
|
27 |
'CZK' => array(
|
28 |
'name' => __('Czech Koruna', 'paid-memberships-pro' ),
|
29 |
+
'decimals' => '2',
|
30 |
'thousands_separator' => ' ',
|
31 |
'decimal_separator' => ',',
|
32 |
'symbol' => ' Kč',
|
includes/functions.php
CHANGED
@@ -391,7 +391,7 @@ function pmpro_getLevelCost( &$level, $tags = true, $short = false ) {
|
|
391 |
}
|
392 |
|
393 |
// recurring part
|
394 |
-
if ( $level->billing_amount
|
395 |
if ( $level->billing_limit > 1 ) {
|
396 |
if ( $level->cycle_number == '1' ) {
|
397 |
$r .= sprintf( __( ' and then <strong>%1$s per %2$s for %3$d more %4$s</strong>.', 'paid-memberships-pro' ), pmpro_formatPrice( $level->billing_amount ), pmpro_translate_billing_period( $level->cycle_period ), $level->billing_limit, pmpro_translate_billing_period( $level->cycle_period, $level->billing_limit ) );
|
@@ -432,7 +432,7 @@ function pmpro_getLevelCost( &$level, $tags = true, $short = false ) {
|
|
432 |
|
433 |
// trial part
|
434 |
if ( $level->trial_limit ) {
|
435 |
-
if ( $level->trial_amount
|
436 |
if ( $level->trial_limit == '1' ) {
|
437 |
$r .= ' ' . __( 'After your initial payment, your first payment is Free.', 'paid-memberships-pro' );
|
438 |
} else {
|
@@ -472,7 +472,7 @@ function pmpro_getLevelsCost( &$levels, $tags = true, $short = false ) {
|
|
472 |
$trialperiods = 0;
|
473 |
foreach ( $levels as $curlevel ) {
|
474 |
$initpmt += $curlevel->initial_payment;
|
475 |
-
if ( $curlevel->billing_amount
|
476 |
if ( array_key_exists( $curlevel->cycle_period, $recurpmts ) ) {
|
477 |
if ( array_key_exists( $curlevel->cycle_number, $recurpmts[ $curlevel->cycle_period ] ) ) {
|
478 |
if ( array_key_exists( $curlevel->billing_limit, $recurpmts[ $curlevel->cycle_period ][ $curlevel->cycle_number ] ) ) {
|
@@ -972,6 +972,12 @@ function pmpro_changeMembershipLevel( $level, $user_id = null, $old_level_status
|
|
972 |
// make sure user id is int for security
|
973 |
$user_id = intval( $user_id );
|
974 |
|
|
|
|
|
|
|
|
|
|
|
|
|
975 |
if ( empty( $level ) ) {
|
976 |
$level = 0;
|
977 |
} else if ( is_array( $level ) ) {
|
@@ -1002,14 +1008,21 @@ function pmpro_changeMembershipLevel( $level, $user_id = null, $old_level_status
|
|
1002 |
if ( ! is_array( $level ) ) {
|
1003 |
// are they even changing?
|
1004 |
if ( pmpro_hasMembershipLevel( $level, $user_id ) ) {
|
1005 |
-
|
1006 |
-
return false; // not changing
|
1007 |
}
|
1008 |
}
|
1009 |
|
1010 |
// get all active membershipships for this user
|
1011 |
$old_levels = pmpro_getMembershipLevelsForUser( $user_id );
|
1012 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1013 |
// get level id
|
1014 |
if ( is_array( $level ) ) {
|
1015 |
$level_id = $level['membership_id']; // custom level
|
@@ -1176,6 +1189,8 @@ function pmpro_changeMembershipLevel( $level, $user_id = null, $old_level_status
|
|
1176 |
// remove levels cache for user
|
1177 |
$cache_key = 'user_' . $user_id . '_levels';
|
1178 |
wp_cache_delete( $cache_key, 'pmpro' );
|
|
|
|
|
1179 |
|
1180 |
// update user data and call action
|
1181 |
pmpro_set_current_user();
|
@@ -1191,6 +1206,38 @@ function pmpro_changeMembershipLevel( $level, $user_id = null, $old_level_status
|
|
1191 |
return true;
|
1192 |
}
|
1193 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1194 |
/**
|
1195 |
* Function to list WordPress categories in hierarchical format.
|
1196 |
*
|
@@ -2001,7 +2048,7 @@ function pmpro_getMembershipLevelsForUser( $user_id = null, $include_inactive =
|
|
2001 |
* reduces future MySQL requests. If there is an external object cache like Redis then it will be
|
2002 |
* persisted until the user level changes.
|
2003 |
**/
|
2004 |
-
$cache_key = 'user_' . $user_id . '_levels';
|
2005 |
$levels = wp_cache_get( $cache_key, 'pmpro' );
|
2006 |
|
2007 |
if ( $levels === false ) {
|
@@ -2295,6 +2342,40 @@ function pmpro_getLevelAtCheckout( $level_id = null, $discount_code = null ) {
|
|
2295 |
return $pmpro_level;
|
2296 |
}
|
2297 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2298 |
function pmpro_getCheckoutButton( $level_id, $button_text = null, $classes = null ) {
|
2299 |
if ( ! empty( $level_id ) ) {
|
2300 |
// get level
|
@@ -2718,6 +2799,97 @@ function pmpro_is_ready() {
|
|
2718 |
return $r;
|
2719 |
}
|
2720 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2721 |
/**
|
2722 |
* Format a price per the currency settings.
|
2723 |
*
|
@@ -3235,6 +3407,14 @@ function pmpro_is_checkout() {
|
|
3235 |
$is_checkout = true;
|
3236 |
}
|
3237 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3238 |
/**
|
3239 |
* Filter for pmpro_is_checkout return value.
|
3240 |
* @since 2.1
|
391 |
}
|
392 |
|
393 |
// recurring part
|
394 |
+
if ( (float)$level->billing_amount > 0 ) {
|
395 |
if ( $level->billing_limit > 1 ) {
|
396 |
if ( $level->cycle_number == '1' ) {
|
397 |
$r .= sprintf( __( ' and then <strong>%1$s per %2$s for %3$d more %4$s</strong>.', 'paid-memberships-pro' ), pmpro_formatPrice( $level->billing_amount ), pmpro_translate_billing_period( $level->cycle_period ), $level->billing_limit, pmpro_translate_billing_period( $level->cycle_period, $level->billing_limit ) );
|
432 |
|
433 |
// trial part
|
434 |
if ( $level->trial_limit ) {
|
435 |
+
if ( (float)$level->trial_amount > 0 ) {
|
436 |
if ( $level->trial_limit == '1' ) {
|
437 |
$r .= ' ' . __( 'After your initial payment, your first payment is Free.', 'paid-memberships-pro' );
|
438 |
} else {
|
472 |
$trialperiods = 0;
|
473 |
foreach ( $levels as $curlevel ) {
|
474 |
$initpmt += $curlevel->initial_payment;
|
475 |
+
if ( (float)$curlevel->billing_amount > 0 ) {
|
476 |
if ( array_key_exists( $curlevel->cycle_period, $recurpmts ) ) {
|
477 |
if ( array_key_exists( $curlevel->cycle_number, $recurpmts[ $curlevel->cycle_period ] ) ) {
|
478 |
if ( array_key_exists( $curlevel->billing_limit, $recurpmts[ $curlevel->cycle_period ][ $curlevel->cycle_number ] ) ) {
|
972 |
// make sure user id is int for security
|
973 |
$user_id = intval( $user_id );
|
974 |
|
975 |
+
/**
|
976 |
+
* Filter the level passed in.
|
977 |
+
* @since 2.5.8
|
978 |
+
*/
|
979 |
+
$level = apply_filters( 'pmpro_change_level', $level, $user_id, $old_level_status, $cancel_level );
|
980 |
+
|
981 |
if ( empty( $level ) ) {
|
982 |
$level = 0;
|
983 |
} else if ( is_array( $level ) ) {
|
1008 |
if ( ! is_array( $level ) ) {
|
1009 |
// are they even changing?
|
1010 |
if ( pmpro_hasMembershipLevel( $level, $user_id ) ) {
|
1011 |
+
return;
|
|
|
1012 |
}
|
1013 |
}
|
1014 |
|
1015 |
// get all active membershipships for this user
|
1016 |
$old_levels = pmpro_getMembershipLevelsForUser( $user_id );
|
1017 |
|
1018 |
+
global $pmpro_old_user_levels;
|
1019 |
+
if ( empty( $pmpro_old_user_levels ) ) {
|
1020 |
+
$pmpro_old_user_levels = array();
|
1021 |
+
}
|
1022 |
+
if ( ! array_key_exists( $user_id, $pmpro_old_user_levels ) ) {
|
1023 |
+
$pmpro_old_user_levels[$user_id] = empty( $old_levels ) ? array() : $old_levels;
|
1024 |
+
}
|
1025 |
+
|
1026 |
// get level id
|
1027 |
if ( is_array( $level ) ) {
|
1028 |
$level_id = $level['membership_id']; // custom level
|
1189 |
// remove levels cache for user
|
1190 |
$cache_key = 'user_' . $user_id . '_levels';
|
1191 |
wp_cache_delete( $cache_key, 'pmpro' );
|
1192 |
+
wp_cache_delete( $cache_key . '_all', 'pmpro' );
|
1193 |
+
wp_cache_delete( $cache_key . '_active', 'pmpro' );
|
1194 |
|
1195 |
// update user data and call action
|
1196 |
pmpro_set_current_user();
|
1206 |
return true;
|
1207 |
}
|
1208 |
|
1209 |
+
/**
|
1210 |
+
* Runs after all membership level changes have been performed.
|
1211 |
+
*
|
1212 |
+
* @param mixed $filter_contents to not break the wp_redirect filter.
|
1213 |
+
*/
|
1214 |
+
function pmpro_do_action_after_all_membership_level_changes( $filter_contents = null ) {
|
1215 |
+
global $pmpro_old_user_levels;
|
1216 |
+
if ( empty( $pmpro_old_user_levels ) ) {
|
1217 |
+
// No level changes occured, return.
|
1218 |
+
return $filter_contents;
|
1219 |
+
}
|
1220 |
+
|
1221 |
+
// Clear global so that we don't run twice for same level changes
|
1222 |
+
$pmpro_old_user_levels_copy = $pmpro_old_user_levels;
|
1223 |
+
$pmpro_old_user_levels = null;
|
1224 |
+
|
1225 |
+
/**
|
1226 |
+
* Run code after all membership level changes have occured. Users who have had changes
|
1227 |
+
* will be stored in the global $pmpro_old_user_levels array.
|
1228 |
+
*
|
1229 |
+
* @since 2.6
|
1230 |
+
* @param array $pmpro_old_user_levels_copy array of user_id => array( old_level_objs )
|
1231 |
+
*/
|
1232 |
+
do_action( 'pmpro_after_all_membership_level_changes', $pmpro_old_user_levels_copy );
|
1233 |
+
|
1234 |
+
return $filter_contents;
|
1235 |
+
}
|
1236 |
+
add_action( 'template_redirect', 'pmpro_do_action_after_all_membership_level_changes', 2 );
|
1237 |
+
add_filter( 'wp_redirect', 'pmpro_do_action_after_all_membership_level_changes', 100 );
|
1238 |
+
add_action( 'pmpro_membership_post_membership_expiry', 'pmpro_do_action_after_all_membership_level_changes' );
|
1239 |
+
add_action( 'shutdown', 'pmpro_do_action_after_all_membership_level_changes' );
|
1240 |
+
|
1241 |
/**
|
1242 |
* Function to list WordPress categories in hierarchical format.
|
1243 |
*
|
2048 |
* reduces future MySQL requests. If there is an external object cache like Redis then it will be
|
2049 |
* persisted until the user level changes.
|
2050 |
**/
|
2051 |
+
$cache_key = 'user_' . $user_id . '_levels' . ( $include_inactive ? '_all' : '_active' );
|
2052 |
$levels = wp_cache_get( $cache_key, 'pmpro' );
|
2053 |
|
2054 |
if ( $levels === false ) {
|
2342 |
return $pmpro_level;
|
2343 |
}
|
2344 |
|
2345 |
+
/**
|
2346 |
+
* Get an ordered list of level objects or level IDs.
|
2347 |
+
*
|
2348 |
+
* @param array $pmpro_levels An array of level objects or level IDs to be reordered.
|
2349 |
+
* @return array $pmpro_levels An ordered array of level objects or level IDs.
|
2350 |
+
*
|
2351 |
+
*/
|
2352 |
+
function pmpro_sort_levels_by_order( $pmpro_levels ) {
|
2353 |
+
$pmpro_level_order = pmpro_getOption( 'level_order' );
|
2354 |
+
|
2355 |
+
// No custom sort order, just return.
|
2356 |
+
if ( empty( $pmpro_level_order ) ) {
|
2357 |
+
return $pmpro_levels;
|
2358 |
+
}
|
2359 |
+
|
2360 |
+
// Convert the level order option to an array.
|
2361 |
+
$sort_order = explode( ',',$pmpro_level_order );
|
2362 |
+
|
2363 |
+
// Reorder the array.
|
2364 |
+
$reordered_levels = array();
|
2365 |
+
foreach ( $sort_order as $level_id ) {
|
2366 |
+
foreach ( $pmpro_levels as $key => $level ) {
|
2367 |
+
if ( ! empty ( $level->id ) && $level_id == $level->id ) {
|
2368 |
+
$reordered_levels[] = $pmpro_levels[$key];
|
2369 |
+
} elseif ( ! empty( $level ) && is_string( $level ) && $level_id == $level ) {
|
2370 |
+
$reordered_levels[] = $pmpro_levels[$key];
|
2371 |
+
}
|
2372 |
+
}
|
2373 |
+
}
|
2374 |
+
$pmpro_levels = $reordered_levels;
|
2375 |
+
|
2376 |
+
return $pmpro_levels;
|
2377 |
+
}
|
2378 |
+
|
2379 |
function pmpro_getCheckoutButton( $level_id, $button_text = null, $classes = null ) {
|
2380 |
if ( ! empty( $level_id ) ) {
|
2381 |
// get level
|
2799 |
return $r;
|
2800 |
}
|
2801 |
|
2802 |
+
/**
|
2803 |
+
* Display Invoice Price Data with Parts
|
2804 |
+
*
|
2805 |
+
* @param object $pmpro_invoice The full order object.
|
2806 |
+
* @param string $format Format of the return value. Accepts array, span, list, or line_breaks.
|
2807 |
+
*
|
2808 |
+
* @return array|string $price_parts The array or formatted HTML string to display price parts and total.
|
2809 |
+
*
|
2810 |
+
*/
|
2811 |
+
function pmpro_get_price_parts( $pmpro_invoice, $format = 'array' ) {
|
2812 |
+
$pmpro_price_parts = array();
|
2813 |
+
|
2814 |
+
if ( ! empty( $pmpro_invoice->subtotal ) && $pmpro_invoice->subtotal != $pmpro_invoice->total ) {
|
2815 |
+
$pmpro_price_parts['subtotal'] = array(
|
2816 |
+
'label' => __( 'Subtotal', 'paid-memberships-pro' ),
|
2817 |
+
'value' => pmpro_escape_price( pmpro_formatPrice( $pmpro_invoice->subtotal ) ),
|
2818 |
+
);
|
2819 |
+
}
|
2820 |
+
|
2821 |
+
if ( ! empty( $pmpro_invoice->tax ) ) {
|
2822 |
+
$pmpro_price_parts['tax'] = array(
|
2823 |
+
'label' => __( 'Tax', 'paid-memberships-pro' ),
|
2824 |
+
'value' => pmpro_escape_price( pmpro_formatPrice( $pmpro_invoice->tax ) ),
|
2825 |
+
);
|
2826 |
+
}
|
2827 |
+
|
2828 |
+
if ( ! empty( $pmpro_invoice->couponamount ) ) {
|
2829 |
+
// We don't even use this but it is in the database so it could be shown here.
|
2830 |
+
$pmpro_price_parts['couponamount'] = array(
|
2831 |
+
'label' => __( 'Coupon', 'paid-memberships-pro' ),
|
2832 |
+
'value' => pmpro_escape_price( pmpro_formatPrice( $pmpro_invoice->couponamount ) ),
|
2833 |
+
);
|
2834 |
+
}
|
2835 |
+
|
2836 |
+
/**
|
2837 |
+
* Filter to modify the price parts, add parts, or modify the display. Does not include the order total.
|
2838 |
+
*
|
2839 |
+
* @param array $pmpro_price_parts The array of price parts not including the total.
|
2840 |
+
* @param string $format Format of the return value passed to the function.
|
2841 |
+
* @param object $pmpro_invoice The full order object.
|
2842 |
+
*
|
2843 |
+
* @return array $pmpro_price_parts Filtered array of price parts not including the total.
|
2844 |
+
*
|
2845 |
+
*/
|
2846 |
+
$pmpro_price_parts = apply_filters( 'pmpro_get_price_parts', $pmpro_price_parts, $pmpro_invoice );
|
2847 |
+
|
2848 |
+
$pmpro_price_parts_with_total = $pmpro_price_parts;
|
2849 |
+
|
2850 |
+
if ( ! empty( $pmpro_invoice->total ) ) {
|
2851 |
+
$pmpro_price_parts_with_total['total'] = array(
|
2852 |
+
'label' => __( 'Total', 'paid-memberships-pro' ),
|
2853 |
+
'value' => pmpro_escape_price( pmpro_formatPrice( $pmpro_invoice->total ) ),
|
2854 |
+
);
|
2855 |
+
}
|
2856 |
+
|
2857 |
+
/**
|
2858 |
+
* Filter including the total price to modify the price parts, add parts, or modify the display.
|
2859 |
+
*
|
2860 |
+
* @param array $pmpro_price_parts The array of price parts including the total.
|
2861 |
+
* @param string $format Format of the return value passed to the function.
|
2862 |
+
* @param object $pmpro_invoice The full order object.
|
2863 |
+
*
|
2864 |
+
* @return array $pmpro_price_parts Filtered array of price parts not including the total.
|
2865 |
+
*
|
2866 |
+
*/
|
2867 |
+
$pmpro_price_parts_with_total = apply_filters( 'pmpro_get_price_parts_with_total', $pmpro_price_parts_with_total, $pmpro_invoice );
|
2868 |
+
|
2869 |
+
if ( $format == 'array' ) {
|
2870 |
+
return $pmpro_price_parts_with_total;
|
2871 |
+
} else {
|
2872 |
+
// Start building our formatted return string.
|
2873 |
+
$pmpro_price = '';
|
2874 |
+
if ( $format == 'span' ) {
|
2875 |
+
foreach ( $pmpro_price_parts_with_total as $key => $pmpro_price_part ) {
|
2876 |
+
$pmpro_price .= '<span class="' . pmpro_get_element_class( 'pmpro_price_part_span pmpro_price_part-' . $key, 'pmpro_price_part-' . $key ) . '"><span class="' . pmpro_get_element_class( 'pmpro_price_part_label' ) . '">' . esc_html( $pmpro_price_part['label'] ) . '</span> <span class="' . pmpro_get_element_class( 'pmpro_price_part_price' ) . '">' . esc_html( $pmpro_price_part['value'] ) . '</span></span>';
|
2877 |
+
}
|
2878 |
+
} elseif ( $format == 'list' ) {
|
2879 |
+
$pmpro_price .= '<ul class="' . pmpro_get_element_class( 'pmpro_price_part_list' ) . '">';
|
2880 |
+
foreach ( $pmpro_price_parts_with_total as $key => $pmpro_price_part ) {
|
2881 |
+
$pmpro_price .= '<li class="' . pmpro_get_element_class( 'pmpro_price_part-' . $key, 'pmpro_price_part-' . $key ) . '"><span class="' . pmpro_get_element_class( 'pmpro_price_part_label' ) . '">' . esc_html( $pmpro_price_part['label'] ) . '</span> <span class="' . pmpro_get_element_class( 'pmpro_price_part_price' ) . '">' . esc_html( $pmpro_price_part['value'] ) . '</span></li>';
|
2882 |
+
}
|
2883 |
+
} else {
|
2884 |
+
// Default to each line separate by breaks.
|
2885 |
+
foreach ( $pmpro_price_parts_with_total as $key => $pmpro_price_part ) {
|
2886 |
+
$pmpro_price .= '<span class="' . pmpro_get_element_class( 'pmpro_price_part-' . $key, 'pmpro_price_part-' . $key ) . '"><span class="' . pmpro_get_element_class( 'pmpro_price_part_label' ) . '">' . esc_html( $pmpro_price_part['label'] ) . '</span> <span class="' . pmpro_get_element_class( 'pmpro_price_part_price' ) . '">' . esc_html( $pmpro_price_part['value'] ) . '</span></span><br />';
|
2887 |
+
}
|
2888 |
+
}
|
2889 |
+
}
|
2890 |
+
return $pmpro_price;
|
2891 |
+
}
|
2892 |
+
|
2893 |
/**
|
2894 |
* Format a price per the currency settings.
|
2895 |
*
|
3407 |
$is_checkout = true;
|
3408 |
}
|
3409 |
|
3410 |
+
// If it's not checkout, let's try one last time to see if it is.
|
3411 |
+
if ( ! $is_checkout && function_exists( 'pmpro_getLevelAtCheckout' ) ) {
|
3412 |
+
$level = pmpro_getLevelAtCheckout();
|
3413 |
+
if ( isset( $level->id ) ) {
|
3414 |
+
$is_checkout = true;
|
3415 |
+
}
|
3416 |
+
}
|
3417 |
+
|
3418 |
/**
|
3419 |
* Filter for pmpro_is_checkout return value.
|
3420 |
* @since 2.1
|
includes/init.php
CHANGED
@@ -69,7 +69,7 @@ function pmpro_wp()
|
|
69 |
//run the appropriate preheader function
|
70 |
foreach($pmpro_core_pages as $pmpro_page_name => $pmpro_page_id)
|
71 |
{
|
72 |
-
if(!empty($post->post_content) && strpos($post->post_content, "[pmpro_" . $pmpro_page_name . "]") !== false)
|
73 |
{
|
74 |
//preheader
|
75 |
require_once(PMPRO_DIR . "/preheaders/" . $pmpro_page_name . ".php");
|
@@ -179,7 +179,6 @@ function pmpro_manage_users_columns($columns) {
|
|
179 |
|
180 |
function pmpro_sortable_column($columns)
|
181 |
{
|
182 |
-
// $columns['pmpro_membership_level'] = ['level', 'desc'];
|
183 |
$columns['pmpro_membership_level'] = array( 'level', 'desc' );
|
184 |
return $columns;
|
185 |
}
|
@@ -206,11 +205,11 @@ function pmpro_sortable_column_query( $query ) {
|
|
206 |
$vars = $query->query_vars;
|
207 |
|
208 |
if ( $vars['orderby'] == 'level' ){
|
209 |
-
$order = pmpro_sanitize_with_safelist( $vars['order'], array( 'asc', 'desc' ) );
|
210 |
-
|
211 |
if ( ! empty( $order ) ) {
|
212 |
-
$query->query_from .= " LEFT JOIN
|
213 |
-
$query->query_orderby = "ORDER BY
|
214 |
}
|
215 |
}
|
216 |
}
|
69 |
//run the appropriate preheader function
|
70 |
foreach($pmpro_core_pages as $pmpro_page_name => $pmpro_page_id)
|
71 |
{
|
72 |
+
if(!empty($post->post_content) && ( strpos($post->post_content, "[pmpro_" . $pmpro_page_name . "]") !== false || has_block( 'pmpro/' . $pmpro_page_name . '-page', $post ) ) )
|
73 |
{
|
74 |
//preheader
|
75 |
require_once(PMPRO_DIR . "/preheaders/" . $pmpro_page_name . ".php");
|
179 |
|
180 |
function pmpro_sortable_column($columns)
|
181 |
{
|
|
|
182 |
$columns['pmpro_membership_level'] = array( 'level', 'desc' );
|
183 |
return $columns;
|
184 |
}
|
205 |
$vars = $query->query_vars;
|
206 |
|
207 |
if ( $vars['orderby'] == 'level' ){
|
208 |
+
$order = pmpro_sanitize_with_safelist( $vars['order'], array( 'asc', 'desc', 'ASC', 'DESC' ) );
|
209 |
+
|
210 |
if ( ! empty( $order ) ) {
|
211 |
+
$query->query_from .= " LEFT JOIN $wpdb->pmpro_memberships_users AS pmpro_mu ON $wpdb->users.ID = pmpro_mu.user_id AND pmpro_mu.status = 'active' LEFT JOIN $wpdb->pmpro_membership_levels AS pmpro_ml ON pmpro_mu.membership_id = pmpro_ml.id";
|
212 |
+
$query->query_orderby = "ORDER BY pmpro_ml.name " . esc_sql( $order ) . ", $wpdb->users.user_registered";
|
213 |
}
|
214 |
}
|
215 |
}
|
includes/localization.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
function pmpro_load_textdomain()
|
3 |
{
|
4 |
//get the locale
|
5 |
-
$locale = apply_filters("plugin_locale",
|
6 |
$mofile = "paid-memberships-pro-" . $locale . ".mo";
|
7 |
|
8 |
//paths to local (plugin) and global (WP) language files
|
2 |
function pmpro_load_textdomain()
|
3 |
{
|
4 |
//get the locale
|
5 |
+
$locale = apply_filters("plugin_locale", get_user_locale(), "paid-memberships-pro");
|
6 |
$mofile = "paid-memberships-pro-" . $locale . ".mo";
|
7 |
|
8 |
//paths to local (plugin) and global (WP) language files
|
includes/login.php
CHANGED
@@ -114,8 +114,12 @@ function pmpro_login_url_filter( $login_url='', $redirect='' ) {
|
|
114 |
// Check for a PMPro Login page.
|
115 |
$login_page_id = pmpro_getOption( 'login_page_id' );
|
116 |
if ( ! empty ( $login_page_id ) ) {
|
117 |
-
$
|
118 |
-
|
|
|
|
|
|
|
|
|
119 |
if ( ! empty( $redirect ) ) {
|
120 |
$login_url = add_query_arg( 'redirect_to', urlencode( $redirect ), $login_url ) ;
|
121 |
}
|
@@ -468,7 +472,7 @@ function pmpro_login_forms_handler( $show_menu = true, $show_logout_link = true,
|
|
468 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_login_wrap' ); ?>">
|
469 |
<?php
|
470 |
if ( ! pmpro_is_login_page() ) {
|
471 |
-
echo $before_title .
|
472 |
}
|
473 |
?>
|
474 |
<?php
|
@@ -490,7 +494,7 @@ function pmpro_login_forms_handler( $show_menu = true, $show_logout_link = true,
|
|
490 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_lost_password_wrap' ); ?>">
|
491 |
<?php
|
492 |
if ( ! pmpro_is_login_page() ) {
|
493 |
-
echo $before_title .
|
494 |
}
|
495 |
?>
|
496 |
<p class="<?php echo pmpro_get_element_class( 'pmpro_lost_password-instructions' ); ?>">
|
@@ -510,7 +514,7 @@ function pmpro_login_forms_handler( $show_menu = true, $show_logout_link = true,
|
|
510 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_reset_password_wrap' ); ?>">
|
511 |
<?php
|
512 |
if ( ! pmpro_is_login_page() ) {
|
513 |
-
echo $before_title .
|
514 |
}
|
515 |
?>
|
516 |
<?php pmpro_reset_password_form(); ?>
|
@@ -811,39 +815,22 @@ add_action( 'login_form_resetpass', 'pmpro_do_password_reset' );
|
|
811 |
*
|
812 |
* @since 2.3
|
813 |
*/
|
814 |
-
function pmpro_password_reset_email_filter( $message, $key, $user_login
|
815 |
|
816 |
$login_page_id = pmpro_getOption( 'login_page_id' );
|
817 |
if ( ! empty ( $login_page_id ) ) {
|
818 |
$login_url = get_permalink( $login_page_id );
|
819 |
if ( strpos( $login_url, '?' ) ) {
|
820 |
// Login page permalink contains a '?', so we need to replace the '?' already in the login URL with '&'.
|
821 |
-
$message = str_replace(
|
822 |
}
|
823 |
-
$message = str_replace( site_url( 'wp-login.php' ), $login_url, $message );
|
824 |
-
}
|
825 |
-
|
826 |
-
return $message;
|
827 |
-
}
|
828 |
-
add_filter( 'retrieve_password_message', 'pmpro_password_reset_email_filter', 20, 4 );
|
829 |
-
|
830 |
-
/**
|
831 |
-
* Replace the default login URL in the new user notification email
|
832 |
-
* with the membership account page login URL instead.
|
833 |
-
*
|
834 |
-
* @since 2.3.4
|
835 |
-
*/
|
836 |
-
function pmpro_new_user_notification_email_filter( $message, $user, $blogname ) {
|
837 |
-
|
838 |
-
$login_page_id = pmpro_getOption( 'login_page_id' );
|
839 |
-
if ( ! empty ( $login_page_id ) ) {
|
840 |
-
$login_url = get_permalink( $login_page_id );
|
841 |
$message = str_replace( network_site_url( 'wp-login.php' ), $login_url, $message );
|
842 |
}
|
843 |
|
844 |
return $message;
|
845 |
}
|
846 |
-
add_filter( '
|
|
|
847 |
|
848 |
/**
|
849 |
* Authenticate the frontend user login.
|
114 |
// Check for a PMPro Login page.
|
115 |
$login_page_id = pmpro_getOption( 'login_page_id' );
|
116 |
if ( ! empty ( $login_page_id ) ) {
|
117 |
+
$login_page_permalink = get_permalink( $login_page_id );
|
118 |
+
// If the page or permalink is unavailable, don't override the url here.
|
119 |
+
if ( $login_page_permalink ) {
|
120 |
+
$login_url = $login_page_permalink;
|
121 |
+
}
|
122 |
+
|
123 |
if ( ! empty( $redirect ) ) {
|
124 |
$login_url = add_query_arg( 'redirect_to', urlencode( $redirect ), $login_url ) ;
|
125 |
}
|
472 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_login_wrap' ); ?>">
|
473 |
<?php
|
474 |
if ( ! pmpro_is_login_page() ) {
|
475 |
+
echo $before_title . esc_html__( 'Log In', 'paid-memberships-pro' ) . $after_title;
|
476 |
}
|
477 |
?>
|
478 |
<?php
|
494 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_lost_password_wrap' ); ?>">
|
495 |
<?php
|
496 |
if ( ! pmpro_is_login_page() ) {
|
497 |
+
echo $before_title . esc_html__( 'Password Reset', 'paid-memberships-pro' ) . $after_title;
|
498 |
}
|
499 |
?>
|
500 |
<p class="<?php echo pmpro_get_element_class( 'pmpro_lost_password-instructions' ); ?>">
|
514 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_reset_password_wrap' ); ?>">
|
515 |
<?php
|
516 |
if ( ! pmpro_is_login_page() ) {
|
517 |
+
echo $before_title . esc_html__( 'Reset Password', 'paid-memberships-pro' ) . $after_title;
|
518 |
}
|
519 |
?>
|
520 |
<?php pmpro_reset_password_form(); ?>
|
815 |
*
|
816 |
* @since 2.3
|
817 |
*/
|
818 |
+
function pmpro_password_reset_email_filter( $message, $key, $user_login ) {
|
819 |
|
820 |
$login_page_id = pmpro_getOption( 'login_page_id' );
|
821 |
if ( ! empty ( $login_page_id ) ) {
|
822 |
$login_url = get_permalink( $login_page_id );
|
823 |
if ( strpos( $login_url, '?' ) ) {
|
824 |
// Login page permalink contains a '?', so we need to replace the '?' already in the login URL with '&'.
|
825 |
+
$message = str_replace( network_site_url( 'wp-login.php' ) . '?', $login_url . '&', $message );
|
826 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
827 |
$message = str_replace( network_site_url( 'wp-login.php' ), $login_url, $message );
|
828 |
}
|
829 |
|
830 |
return $message;
|
831 |
}
|
832 |
+
add_filter( 'retrieve_password_message', 'pmpro_password_reset_email_filter', 20, 3 );
|
833 |
+
add_filter( 'wp_new_user_notification_email', 'pmpro_password_reset_email_filter', 10, 3 );
|
834 |
|
835 |
/**
|
836 |
* Authenticate the frontend user login.
|
includes/metaboxes.php
CHANGED
@@ -5,6 +5,7 @@
|
|
5 |
function pmpro_page_meta() {
|
6 |
global $post, $wpdb;
|
7 |
$membership_levels = pmpro_getAllLevels( true, true );
|
|
|
8 |
$page_levels = $wpdb->get_col( "SELECT membership_id FROM {$wpdb->pmpro_memberships_pages} WHERE page_id = '" . intval( $post->ID ) . "'" );
|
9 |
?>
|
10 |
<ul id="membershipschecklist" class="list:category categorychecklist form-no-clear">
|
5 |
function pmpro_page_meta() {
|
6 |
global $post, $wpdb;
|
7 |
$membership_levels = pmpro_getAllLevels( true, true );
|
8 |
+
$membership_levels = pmpro_sort_levels_by_order( $membership_levels );
|
9 |
$page_levels = $wpdb->get_col( "SELECT membership_id FROM {$wpdb->pmpro_memberships_pages} WHERE page_id = '" . intval( $post->ID ) . "'" );
|
10 |
?>
|
11 |
<ul id="membershipschecklist" class="list:category categorychecklist form-no-clear">
|
js/pmpro-admin.js
CHANGED
@@ -43,7 +43,7 @@ function pmpro_toggle_elements_by_selector( selector, checked ) {
|
|
43 |
* @since v2.1
|
44 |
*/
|
45 |
jQuery(document).ready(function() {
|
46 |
-
jQuery( 'input[pmpro_toggle_trigger_for]' ).
|
47 |
pmpro_toggle_elements_by_selector( jQuery( this ).attr( 'pmpro_toggle_trigger_for' ), jQuery( this ).prop( 'checked' ) );
|
48 |
});
|
49 |
});
|
@@ -81,13 +81,13 @@ jQuery(document).ready(function() {
|
|
81 |
}
|
82 |
|
83 |
// Disable the webhook buttons if the API keys aren't complete yet.
|
84 |
-
jQuery('#stripe_publishablekey,#stripe_secretkey').
|
85 |
pmpro_stripe_check_api_keys();
|
86 |
});
|
87 |
pmpro_stripe_check_api_keys();
|
88 |
|
89 |
// AJAX call to create webhook.
|
90 |
-
|
91 |
event.preventDefault();
|
92 |
|
93 |
var postData = {
|
@@ -120,7 +120,7 @@ jQuery(document).ready(function() {
|
|
120 |
});
|
121 |
|
122 |
// AJAX call to delete webhook.
|
123 |
-
|
124 |
event.preventDefault();
|
125 |
|
126 |
var postData = {
|
@@ -153,7 +153,7 @@ jQuery(document).ready(function() {
|
|
153 |
});
|
154 |
|
155 |
// AJAX call to rebuild webhook.
|
156 |
-
|
157 |
event.preventDefault();
|
158 |
|
159 |
var postData = {
|
43 |
* @since v2.1
|
44 |
*/
|
45 |
jQuery(document).ready(function() {
|
46 |
+
jQuery( 'input[pmpro_toggle_trigger_for]' ).on( 'change', function() {
|
47 |
pmpro_toggle_elements_by_selector( jQuery( this ).attr( 'pmpro_toggle_trigger_for' ), jQuery( this ).prop( 'checked' ) );
|
48 |
});
|
49 |
});
|
81 |
}
|
82 |
|
83 |
// Disable the webhook buttons if the API keys aren't complete yet.
|
84 |
+
jQuery('#stripe_publishablekey,#stripe_secretkey').on('change keyup', function() {
|
85 |
pmpro_stripe_check_api_keys();
|
86 |
});
|
87 |
pmpro_stripe_check_api_keys();
|
88 |
|
89 |
// AJAX call to create webhook.
|
90 |
+
jQuery('#pmpro_stripe_create_webhook').on( 'click', function(event){
|
91 |
event.preventDefault();
|
92 |
|
93 |
var postData = {
|
120 |
});
|
121 |
|
122 |
// AJAX call to delete webhook.
|
123 |
+
jQuery('#pmpro_stripe_delete_webhook').on( 'click', function(event){
|
124 |
event.preventDefault();
|
125 |
|
126 |
var postData = {
|
153 |
});
|
154 |
|
155 |
// AJAX call to rebuild webhook.
|
156 |
+
jQuery('#pmpro_stripe_rebuild_webhook').on( 'click', function(event){
|
157 |
event.preventDefault();
|
158 |
|
159 |
var postData = {
|
languages/email/de_DE/admin_change.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
-
<p>Ein Administrator von !!sitename!! hat Ihr Paket
|
2 |
|
3 |
<p>!!membership_change!!.</p>
|
4 |
|
5 |
-
<p>Wenn Sie diese
|
6 |
|
7 |
-
<p>Hier
|
1 |
+
<p>Ein Administrator von !!sitename!! hat Ihr Paket geändert.</p>
|
2 |
|
3 |
<p>!!membership_change!!.</p>
|
4 |
|
5 |
+
<p>Wenn Sie diese Änderung nicht veranlasst haben und mehr Informationen benötigen, kotaktieren Sie uns bitte unter !!siteemail!!</p>
|
6 |
|
7 |
+
<p>Hier können Sie sich in Ihren Account einloggen: !!login_link!!</p>
|
languages/email/de_DE/admin_change_admin.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<p>Ein Administrator von !!sitename!! hat das Paket
|
2 |
|
3 |
<p>!!membership_change!!.</p>
|
4 |
|
1 |
+
<p>Ein Administrator von !!sitename!! hat das Paket geändert.</p>
|
2 |
|
3 |
<p>!!membership_change!!.</p>
|
4 |
|
languages/email/de_DE/billing.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<p>Ihre Zahlungsinformationen bei !!sitename!! wurden
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>
|
@@ -8,9 +8,9 @@
|
|
8 |
|
9 |
<p>
|
10 |
!!cardtype!!: !!accountnumber!!<br />
|
11 |
-
|
12 |
</p>
|
13 |
|
14 |
-
<p>Wenn Sie diese
|
15 |
|
16 |
-
<p>Hier
|
1 |
+
<p>Ihre Zahlungsinformationen bei !!sitename!! wurden geändert.</p>
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>
|
8 |
|
9 |
<p>
|
10 |
!!cardtype!!: !!accountnumber!!<br />
|
11 |
+
Gültig bis: !!expirationmonth!!/!!expirationyear!!
|
12 |
</p>
|
13 |
|
14 |
+
<p>Wenn Sie diese Änderung nicht veranlasst haben, kontaktieren Sie uns bitte unter !!siteemail!!</p>
|
15 |
|
16 |
+
<p>Hier können Sie sich in Ihren Account einloggen: !!login_link!!</p>
|
languages/email/de_DE/billing_admin.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<p>Die Zahlungsinformationen
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>
|
@@ -11,7 +11,7 @@
|
|
11 |
|
12 |
<p>
|
13 |
!!cardtype!!: !!accountnumber!!<br />
|
14 |
-
|
15 |
</p>
|
16 |
|
17 |
<p>Wordpress Login: !!login_link!!</p>
|
1 |
+
<p>Die Zahlungsinformationen für !!display_name!! bei !!sitename!! wurden geändert.</p>
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>
|
11 |
|
12 |
<p>
|
13 |
!!cardtype!!: !!accountnumber!!<br />
|
14 |
+
Gültig bis: !!expirationmonth!!/!!expirationyear!!
|
15 |
</p>
|
16 |
|
17 |
<p>Wordpress Login: !!login_link!!</p>
|
languages/email/de_DE/billing_failure.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<p>Die aktuelle Abo-Zahlung
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>Die aktuell bei uns hinterlegten Zahlungsinformationen lauten:</p>
|
@@ -7,5 +7,5 @@
|
|
7 |
|
8 |
<p>
|
9 |
!!cardtype!!: !!accountnumber!!<br />
|
10 |
-
|
11 |
</p>
|
1 |
+
<p>Die aktuelle Abo-Zahlung für ihr Paket auf !!sitename!! ist fehlgeschlagen. <strong>Klicken Sie bitte auf den folgenden Link, um sich einzuloggen und Ihre Zahlungsinformationen zu aktualisieren, da Ihr Account sonst gesperrt wird: !!login_link!!</strong></p>
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>Die aktuell bei uns hinterlegten Zahlungsinformationen lauten:</p>
|
7 |
|
8 |
<p>
|
9 |
!!cardtype!!: !!accountnumber!!<br />
|
10 |
+
Gültig bis: !!expirationmonth!!/!!expirationyear!!
|
11 |
</p>
|
languages/email/de_DE/billing_failure_admin.html
CHANGED
@@ -7,5 +7,5 @@
|
|
7 |
|
8 |
<p>
|
9 |
!!cardtype!!: !!accountnumber!!<br />
|
10 |
-
|
11 |
</p>
|
7 |
|
8 |
<p>
|
9 |
!!cardtype!!: !!accountnumber!!<br />
|
10 |
+
Gültig bis: !!expirationmonth!!/!!expirationyear!!
|
11 |
</p>
|
languages/email/de_DE/cancel.html
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
-
<p>Ihr Account bei !!sitename!! wurde
|
2 |
|
3 |
-
<p>Wenn Sie diese
|
1 |
+
<p>Ihr Account bei !!sitename!! wurde gelöscht.</p>
|
2 |
|
3 |
+
<p>Wenn Sie diese Löschung nicht veranlasst haben und Sie mehr Informationen benötigen, kontaktieren Sie uns bitte unter !!siteemail!!</p>
|
languages/email/de_DE/cancel_admin.html
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
<p>Der Zugang
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>Paket: !!membership_level_name!!</p>
|
5 |
<p>Datum der Anmeldung: !!startdate!!</p>
|
6 |
-
<p>Datum der
|
7 |
|
8 |
<p>Wordpress Login: !!login_link!!</p>
|
1 |
+
<p>Der Zugang für !!user_login!! bei !!sitename!! wurde gelöscht.</p>
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>Paket: !!membership_level_name!!</p>
|
5 |
<p>Datum der Anmeldung: !!startdate!!</p>
|
6 |
+
<p>Datum der Löschung: !!enddate!!</p>
|
7 |
|
8 |
<p>Wordpress Login: !!login_link!!</p>
|
languages/email/de_DE/checkout_check.html
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
<p>Danke
|
2 |
|
3 |
!!instructions!!
|
4 |
|
5 |
-
<p>Untenstehend finden Sie die Details zu Ihrem Account und eine Rechnung
|
6 |
|
7 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
8 |
<p>Paket: !!membership_level_name!!</p>
|
@@ -14,4 +14,4 @@
|
|
14 |
Gesamt: !!invoice_total!!
|
15 |
</p>
|
16 |
|
17 |
-
<p>Hier
|
1 |
+
<p>Danke für Ihre Anmeldung bei !!sitename!!. Ihr Zugang ist nun aktiv.</p>
|
2 |
|
3 |
!!instructions!!
|
4 |
|
5 |
+
<p>Untenstehend finden Sie die Details zu Ihrem Account und eine Rechnung für Ihre Zahlung.</p>
|
6 |
|
7 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
8 |
<p>Paket: !!membership_level_name!!</p>
|
14 |
Gesamt: !!invoice_total!!
|
15 |
</p>
|
16 |
|
17 |
+
<p>Hier können Sie sich in Ihren Account einloggen: !!login_link!!</p>
|
languages/email/de_DE/checkout_check_admin.html
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
<p>Es gibt eine neue Registrierung bei !!sitename!!.</p>
|
2 |
|
3 |
-
<p><strong>Als Zahlungsart wurde die Zahlung per Scheck
|
4 |
|
5 |
-
<p>Untenstehend die Details
|
6 |
|
7 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
8 |
<p>Paket: !!membership_level_name!!</p>
|
1 |
<p>Es gibt eine neue Registrierung bei !!sitename!!.</p>
|
2 |
|
3 |
+
<p><strong>Als Zahlungsart wurde die Zahlung per Scheck ausgewählt.</strong></p>
|
4 |
|
5 |
+
<p>Untenstehend die Details über den neuen Account und die Rechnung für die aktuelle Zahlung.</p>
|
6 |
|
7 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
8 |
<p>Paket: !!membership_level_name!!</p>
|
languages/email/de_DE/checkout_express.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
<p>Vielen Dank
|
2 |
-
<p>Untenstehend finden Sie die Details zu Ihrem Account und eine Rechnung
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
@@ -11,4 +11,4 @@
|
|
11 |
Gesamt: !!invoice_total!!
|
12 |
</p>
|
13 |
|
14 |
-
<p>Hier
|
1 |
+
<p>Vielen Dank für Ihre Anmeldung bei !!sitename!!. Ihr Zugang ist nun aktiv.</p>
|
2 |
+
<p>Untenstehend finden Sie die Details zu Ihrem Account und eine Rechnung für Ihre Zahlung.</p>
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
11 |
Gesamt: !!invoice_total!!
|
12 |
</p>
|
13 |
|
14 |
+
<p>Hier können Sie sich in Ihren Account einloggen: !!login_link!!</p>
|
languages/email/de_DE/checkout_express_admin.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<p>Es gibt eine neue Registrierung bei !!sitename!!.</p>
|
2 |
-
<p>Untenstehend die Details
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
@@ -7,7 +7,7 @@
|
|
7 |
!!membership_expiration!! !!discount_code!!
|
8 |
|
9 |
<p>
|
10 |
-
|
11 |
Gesamt: !!invoice_total!!
|
12 |
</p>
|
13 |
|
1 |
<p>Es gibt eine neue Registrierung bei !!sitename!!.</p>
|
2 |
+
<p>Untenstehend die Details über den neuen Account und die Rechnung für die aktuelle Zahlung.</p>
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
7 |
!!membership_expiration!! !!discount_code!!
|
8 |
|
9 |
<p>
|
10 |
+
Rechnung #!!invoice_id!! am !!invoice_date!!<br />
|
11 |
Gesamt: !!invoice_total!!
|
12 |
</p>
|
13 |
|
languages/email/de_DE/checkout_free.html
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
<p>Vielen Dank
|
2 |
<p>Untenstehend die Details zu Ihrem Account.</p>
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
6 |
!!membership_expiration!! !!discount_code!!
|
7 |
|
8 |
-
<p>Hier
|
1 |
+
<p>Vielen Dank für Ihre Anmeldung bei !!sitename!!. Ihr Zugang ist nun aktiv.</p>
|
2 |
<p>Untenstehend die Details zu Ihrem Account.</p>
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
6 |
!!membership_expiration!! !!discount_code!!
|
7 |
|
8 |
+
<p>Hier können Sie sich in Ihren Account einloggen: !!login_link!!</p>
|
languages/email/de_DE/checkout_free_admin.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<p>Es gibt eine neue Registrierung bei !!sitename!!.</p>
|
2 |
-
<p>Untenstehend die Details
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
1 |
<p>Es gibt eine neue Registrierung bei !!sitename!!.</p>
|
2 |
+
<p>Untenstehend die Details über den neuen Account.</p>
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
languages/email/de_DE/checkout_freetrial.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<p>Vielen Dank
|
2 |
<p>Untenstehend finden Sie die Details zu Ihrem Account.</p>
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
@@ -13,7 +13,7 @@
|
|
13 |
|
14 |
<p>
|
15 |
!!cardtype!!: !!accountnumber!!<br />
|
16 |
-
|
17 |
</p>
|
18 |
|
19 |
-
<p>Hier
|
1 |
+
<p>Vielen Dank für Ihre Anmeldung bei !!sitename!!. Ihr Zugang ist nun aktiv.</p>
|
2 |
<p>Untenstehend finden Sie die Details zu Ihrem Account.</p>
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
13 |
|
14 |
<p>
|
15 |
!!cardtype!!: !!accountnumber!!<br />
|
16 |
+
Gültig bis: !!expirationmonth!!/!!expirationyear!!
|
17 |
</p>
|
18 |
|
19 |
+
<p>Hier können Sie sich in Ihren Account einloggen: !!login_link!!</p>
|
languages/email/de_DE/checkout_freetrial_admin.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<p>Es gibt eine neue Registrierung bei !!sitename!!.</p>
|
2 |
-
<p>Untenstehend die Details
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
@@ -13,7 +13,7 @@
|
|
13 |
|
14 |
<p>
|
15 |
!!cardtype!!: !!accountnumber!!<br />
|
16 |
-
|
17 |
</p>
|
18 |
|
19 |
<p>Wordpress Login: !!login_link!!</p>
|
1 |
<p>Es gibt eine neue Registrierung bei !!sitename!!.</p>
|
2 |
+
<p>Untenstehend die Details über den neuen Account und die Rechnung für die aktuelle Zahlung.</p>
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
13 |
|
14 |
<p>
|
15 |
!!cardtype!!: !!accountnumber!!<br />
|
16 |
+
Gültig bis: !!expirationmonth!!/!!expirationyear!!
|
17 |
</p>
|
18 |
|
19 |
<p>Wordpress Login: !!login_link!!</p>
|
languages/email/de_DE/checkout_paid.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
<p>Vielen Dank
|
2 |
-
<p>Untenstehend finden Sie die Details zu Ihrem Account und eine Rechnung
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
@@ -17,7 +17,7 @@
|
|
17 |
|
18 |
<p>
|
19 |
!!cardtype!!: !!accountnumber!!<br />
|
20 |
-
|
21 |
</p>
|
22 |
|
23 |
-
<p>Hier
|
1 |
+
<p>Vielen Dank für Ihre Anmeldung bei !!sitename!!. Ihr Zugang ist nun aktiv.</p>
|
2 |
+
<p>Untenstehend finden Sie die Details zu Ihrem Account und eine Rechnung für Ihre Zahlung.</p>
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
17 |
|
18 |
<p>
|
19 |
!!cardtype!!: !!accountnumber!!<br />
|
20 |
+
Gültig bis: !!expirationmonth!!/!!expirationyear!!
|
21 |
</p>
|
22 |
|
23 |
+
<p>Hier können Sie sich in Ihren Account einloggen: !!login_link!!</p>
|
languages/email/de_DE/checkout_paid_admin.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<p>Es gibt eine neue Registrierung bei !!sitename!!.</p>
|
2 |
-
<p>Untenstehend die Details
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
@@ -17,7 +17,7 @@
|
|
17 |
|
18 |
<p>
|
19 |
!!cardtype!!: !!accountnumber!!<br />
|
20 |
-
|
21 |
</p>
|
22 |
|
23 |
<p>Wordpress Login: !!login_link!!</p>
|
1 |
<p>Es gibt eine neue Registrierung bei !!sitename!!.</p>
|
2 |
+
<p>Untenstehend die Details über den neuen Account und die Rechnung für die aktuelle Zahlung.</p>
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
17 |
|
18 |
<p>
|
19 |
!!cardtype!!: !!accountnumber!!<br />
|
20 |
+
Gültig bis: !!expirationmonth!!/!!expirationyear!!
|
21 |
</p>
|
22 |
|
23 |
<p>Wordpress Login: !!login_link!!</p>
|
languages/email/de_DE/checkout_trial.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
<p>Vielen Dank
|
2 |
-
<p>Untenstehend finden Sie die Details zu Ihrem Account und eine Rechnung
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
@@ -17,7 +17,7 @@
|
|
17 |
|
18 |
<p>
|
19 |
!!cardtype!!: !!accountnumber!!<br />
|
20 |
-
|
21 |
</p>
|
22 |
|
23 |
-
<p>Hier
|
1 |
+
<p>Vielen Dank für Ihre Anmeldung bei !!sitename!!. Ihr Zugang ist nun aktiv.</p>
|
2 |
+
<p>Untenstehend finden Sie die Details zu Ihrem Account und eine Rechnung für Ihre Zahlung.</p>
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
17 |
|
18 |
<p>
|
19 |
!!cardtype!!: !!accountnumber!!<br />
|
20 |
+
Gültig bis: !!expirationmonth!!/!!expirationyear!!
|
21 |
</p>
|
22 |
|
23 |
+
<p>Hier können Sie sich in Ihren Account einloggen: !!login_link!!</p>
|
languages/email/de_DE/checkout_trial_admin.html
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<p>Es gibt eine neue Registrierung bei !!sitename!!.</p>
|
2 |
-
<p>Untenstehend die Details
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
@@ -17,7 +17,7 @@
|
|
17 |
|
18 |
<p>
|
19 |
!!cardtype!!: !!accountnumber!!<br />
|
20 |
-
|
21 |
</p>
|
22 |
|
23 |
<p>Wordpress Login: !!login_link!!</p>
|
1 |
<p>Es gibt eine neue Registrierung bei !!sitename!!.</p>
|
2 |
+
<p>Untenstehend die Details über den neuen Account und die Rechnung für die aktuelle Zahlung.</p>
|
3 |
|
4 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
5 |
<p>Paket: !!membership_level_name!!</p>
|
17 |
|
18 |
<p>
|
19 |
!!cardtype!!: !!accountnumber!!<br />
|
20 |
+
Gültig bis: !!expirationmonth!!/!!expirationyear!!
|
21 |
</p>
|
22 |
|
23 |
<p>Wordpress Login: !!login_link!!</p>
|
languages/email/de_DE/credit_card_expiring.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
<p>Die
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>Ihre aktuellen Zahlungsinformationen:</p>
|
@@ -9,5 +9,5 @@
|
|
9 |
|
10 |
<p>
|
11 |
!!cardtype!!: !!accountnumber!!<br />
|
12 |
-
|
13 |
</p>
|
1 |
+
<p>Die Gültigkeit der Kreditkarte, die Sie für Ihren Zugang bei !!sitename!! angegeben haben, wird in Kürze ablaufen. <strong>Klicken Sie bitte auf den folgenden Link, um Ihre Zahlungsinformationen zu aktualisieren, damit Ihr Account nicht deaktiviert wird: !!login_link!!</strong></p>
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>Ihre aktuellen Zahlungsinformationen:</p>
|
9 |
|
10 |
<p>
|
11 |
!!cardtype!!: !!accountnumber!!<br />
|
12 |
+
Gültig bis: !!expirationmonth!!/!!expirationyear!!
|
13 |
</p>
|
languages/email/de_DE/footer.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
<p>
|
2 |
-
|
3 |
Ihr !!sitename!! Team
|
4 |
</p>
|
1 |
<p>
|
2 |
+
Mit freundlichen Grüßen,<br />
|
3 |
Ihr !!sitename!! Team
|
4 |
</p>
|
languages/email/de_DE/invoice.html
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
<p>Vielen Dank
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>
|
5 |
-
Rechnung #!!invoice_id!!
|
6 |
Gesamt: !!invoice_total!!
|
7 |
</p>
|
8 |
<p>
|
@@ -12,8 +12,8 @@
|
|
12 |
|
13 |
<p>
|
14 |
!!cardtype!!: !!accountnumber!!<br />
|
15 |
-
|
16 |
</p>
|
17 |
|
18 |
-
<p>Hier
|
19 |
<p>Um diese Rechnung online abzurufen, klicken Sie bitte hier: !!invoice_link!!</p>
|
1 |
+
<p>Vielen Dank für Ihre Anmeldung bei !!sitename!!. Untenstehend finden Sie die Rechnung zur Ihrer aktuellen Zahlung.</p>
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>
|
5 |
+
Rechnung #!!invoice_id!! vom !!invoice_date!!<br />
|
6 |
Gesamt: !!invoice_total!!
|
7 |
</p>
|
8 |
<p>
|
12 |
|
13 |
<p>
|
14 |
!!cardtype!!: !!accountnumber!!<br />
|
15 |
+
Gültig bis: !!expirationmonth!!/!!expirationyear!!
|
16 |
</p>
|
17 |
|
18 |
+
<p>Hier können Sie sich in Ihren Account einloggen: !!login_link!!</p>
|
19 |
<p>Um diese Rechnung online abzurufen, klicken Sie bitte hier: !!invoice_link!!</p>
|
languages/email/de_DE/membership_expired.html
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<p>Ihr Zugang auf !!sitename!! ist abgelaufen.</p>
|
2 |
|
3 |
-
<p>Vielen Dank
|
4 |
|
5 |
<p>Unsere aktuellen Konditionen finden Sie hier: !!levels_link!!</p>
|
6 |
|
7 |
-
<p>Hier
|
1 |
<p>Ihr Zugang auf !!sitename!! ist abgelaufen.</p>
|
2 |
|
3 |
+
<p>Vielen Dank für Ihre Unterstützung.</p>
|
4 |
|
5 |
<p>Unsere aktuellen Konditionen finden Sie hier: !!levels_link!!</p>
|
6 |
|
7 |
+
<p>Hier können Sie sich in Ihren Account einloggen: !!login_link!!</p>
|
languages/email/de_DE/membership_expiring.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
-
<p>Vielen Dank
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>Paket: !!membership_level_name!!</p>
|
5 |
|
6 |
-
<p>Hier
|
1 |
+
<p>Vielen Dank für Ihre Anmeldung bei !!sitename!!. Dies ist eine Erinnerung, dass Ihr Zugang am !!enddate!! abläuft.</p>
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>Paket: !!membership_level_name!!</p>
|
5 |
|
6 |
+
<p>Hier können Sie sich in Ihren Account einloggen: !!login_link!!</p>
|
languages/email/de_DE/trial_ending.html
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
<p>Vielen Dank
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>Paket: !!membership_level_name!!</p>
|
5 |
|
6 |
-
<p>Die Kosten
|
7 |
|
8 |
-
<p>Hier
|
1 |
+
<p>Vielen Dank für Ihre Anmeldung bei !!sitename!!. Ihre Testperiode endet am !!trial_end!!.</p>
|
2 |
|
3 |
<p>Account: !!display_name!! (!!user_email!!)</p>
|
4 |
<p>Paket: !!membership_level_name!!</p>
|
5 |
|
6 |
+
<p>Die Kosten für den Zugang ändern sich dann von !!trial_amount!! auf !!billing_amount!! jede(n) !!cycle_number!! !!cycle_period!!(s).</p>
|
7 |
|
8 |
+
<p>Hier können Sie sich in Ihren Account einloggen: !!login_link!!</p>
|
languages/paid-memberships-pro.mo
CHANGED
Binary file
|
languages/paid-memberships-pro.po
CHANGED
@@ -6,7 +6,7 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: paid-memberships-pro\n"
|
8 |
"Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
|
9 |
-
"POT-Creation-Date: 2021-
|
10 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11 |
"Last-Translator: \n"
|
12 |
"Language-Team: Stranger Studios <info@paidmembershipspro.com>\n"
|
@@ -64,7 +64,7 @@ msgstr ""
|
|
64 |
msgid "Check Again"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: adminpages/addons.php:94 adminpages/orders.php:
|
68 |
#: adminpages/addons.php:79 adminpages/addons.php:92 adminpages/addons.php:93
|
69 |
#: adminpages/addons.php:94 adminpages/orders.php:605 adminpages/orders.php:712
|
70 |
#: adminpages/orders.php:741 adminpages/orders.php:850
|
@@ -183,8 +183,8 @@ msgstr ""
|
|
183 |
msgid "Activate %s"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: adminpages/addons.php:230 adminpages/discountcodes.php:
|
187 |
-
#: adminpages/membershiplevels.php:807 adminpages/orders.php:
|
188 |
#: adminpages/addons.php:213 adminpages/addons.php:216
|
189 |
#: adminpages/addons.php:229 adminpages/addons.php:230
|
190 |
#: adminpages/addons.php:231 adminpages/discountcodes.php:771
|
@@ -194,9 +194,10 @@ msgstr ""
|
|
194 |
#: adminpages/membershiplevels.php:779 adminpages/membershiplevels.php:784
|
195 |
#: adminpages/membershiplevels.php:789 adminpages/membershiplevels.php:794
|
196 |
#: adminpages/membershiplevels.php:801 adminpages/membershiplevels.php:803
|
197 |
-
#: adminpages/
|
198 |
-
#: adminpages/orders.php:
|
199 |
-
#: adminpages/orders.php:
|
|
|
200 |
msgid "Delete"
|
201 |
msgstr ""
|
202 |
|
@@ -231,9 +232,9 @@ msgstr ""
|
|
231 |
msgid "WordPress.org"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: adminpages/addons.php:248 adminpages/orders.php:
|
235 |
-
#: adminpages/orders.php:
|
236 |
-
#: adminpages/orders.php:
|
237 |
#: shortcodes/pmpro_account.php:241 adminpages/addons.php:231
|
238 |
#: adminpages/addons.php:234 adminpages/addons.php:247
|
239 |
#: adminpages/addons.php:248 adminpages/addons.php:249
|
@@ -484,8 +485,8 @@ msgstr ""
|
|
484 |
msgid "Members"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: adminpages/admin_header.php:229 adminpages/discountcodes.php:
|
488 |
-
#: adminpages/orders.php:
|
489 |
#: includes/adminpages.php:52 includes/adminpages.php:167
|
490 |
#: adminpages/admin_header.php:196 adminpages/admin_header.php:197
|
491 |
#: adminpages/admin_header.php:204 adminpages/admin_header.php:212
|
@@ -540,7 +541,7 @@ msgstr ""
|
|
540 |
msgid "License"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: adminpages/admin_header.php:252 adminpages/discountcodes.php:
|
544 |
#: adminpages/admin_header.php:215 adminpages/admin_header.php:220
|
545 |
#: adminpages/admin_header.php:227 adminpages/admin_header.php:235
|
546 |
#: adminpages/admin_header.php:252 adminpages/discountcodes.php:552
|
@@ -555,7 +556,7 @@ msgstr ""
|
|
555 |
|
556 |
#: adminpages/admin_header.php:252 adminpages/membershiplevels.php:764
|
557 |
#: adminpages/pagesettings.php:98 includes/compatibility/beaver-builder.php:134
|
558 |
-
#: includes/metaboxes.php:
|
559 |
#: adminpages/admin_header.php:149 adminpages/admin_header.php:150
|
560 |
#: adminpages/admin_header.php:159 adminpages/admin_header.php:171
|
561 |
#: adminpages/admin_header.php:184 adminpages/admin_header.php:215
|
@@ -570,14 +571,15 @@ msgstr ""
|
|
570 |
#: adminpages/membershiplevels.php:700 adminpages/membershiplevels.php:702
|
571 |
#: adminpages/membershiplevels.php:728 adminpages/membershiplevels.php:745
|
572 |
#: adminpages/membershiplevels.php:750 adminpages/membershiplevels.php:755
|
573 |
-
#: adminpages/membershiplevels.php:760 adminpages/
|
574 |
-
#: adminpages/pagesettings.php:
|
575 |
-
#: adminpages/pagesettings.php:
|
576 |
-
#:
|
577 |
-
#: includes/adminpages.php:
|
578 |
-
#: includes/adminpages.php:
|
579 |
-
#: includes/adminpages.php:
|
580 |
-
#: includes/adminpages.php:
|
|
|
581 |
#: includes/compatibility/beaver-builder.php:134 includes/metaboxes.php:126
|
582 |
#: includes/metaboxes.php:130 includes/metaboxes.php:131
|
583 |
#: includes/metaboxes.php:132
|
@@ -635,8 +637,8 @@ msgstr ""
|
|
635 |
msgid "Payment Gateway & SSL Settings"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: adminpages/admin_header.php:268 adminpages/orders.php:
|
639 |
-
#: adminpages/orders.php:
|
640 |
#: shortcodes/pmpro_account.php:161 adminpages/admin_header.php:131
|
641 |
#: adminpages/admin_header.php:152 adminpages/admin_header.php:162
|
642 |
#: adminpages/admin_header.php:171 adminpages/admin_header.php:183
|
@@ -839,7 +841,7 @@ msgstr ""
|
|
839 |
#: adminpages/membershiplevels.php:527 adminpages/membershiplevels.php:570
|
840 |
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:589
|
841 |
#: adminpages/membershiplevels.php:594 adminpages/membershiplevels.php:599
|
842 |
-
#: adminpages/membershiplevels.php:604
|
843 |
msgid "Content Settings"
|
844 |
msgstr ""
|
845 |
|
@@ -930,7 +932,7 @@ msgid "Use reCAPTCHA?"
|
|
930 |
msgstr ""
|
931 |
|
932 |
#: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:337
|
933 |
-
#: adminpages/advancedsettings.php:
|
934 |
#: adminpages/membershiplevels.php:824 adminpages/paymentsettings.php:259
|
935 |
#: classes/gateways/class.pmprogateway_stripe.php:401
|
936 |
#: classes/gateways/class.pmprogateway_stripe.php:415
|
@@ -962,14 +964,14 @@ msgstr ""
|
|
962 |
#: adminpages/membershiplevels.php:779 adminpages/membershiplevels.php:796
|
963 |
#: adminpages/membershiplevels.php:801 adminpages/membershiplevels.php:806
|
964 |
#: adminpages/membershiplevels.php:811 adminpages/membershiplevels.php:818
|
965 |
-
#: adminpages/membershiplevels.php:820 adminpages/
|
966 |
-
#: adminpages/paymentsettings.php:
|
967 |
-
#: adminpages/paymentsettings.php:
|
968 |
-
#: adminpages/paymentsettings.php:
|
969 |
-
#: adminpages/paymentsettings.php:
|
970 |
-
#: adminpages/paymentsettings.php:
|
971 |
-
#: adminpages/paymentsettings.php:
|
972 |
-
#: adminpages/paymentsettings.php:461
|
973 |
#: classes/gateways/class.pmprogateway_stripe.php:173
|
974 |
#: classes/gateways/class.pmprogateway_stripe.php:174
|
975 |
#: classes/gateways/class.pmprogateway_stripe.php:184
|
@@ -1108,8 +1110,8 @@ msgstr ""
|
|
1108 |
msgid "Activity Email Frequency"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:
|
1112 |
-
#: adminpages/reports/sales.php:
|
1113 |
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:258
|
1114 |
#: adminpages/reports/memberships.php:265
|
1115 |
#: adminpages/reports/memberships.php:278
|
@@ -1128,8 +1130,8 @@ msgstr ""
|
|
1128 |
msgid "Weekly"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:
|
1132 |
-
#: adminpages/reports/sales.php:
|
1133 |
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:259
|
1134 |
#: adminpages/reports/memberships.php:266
|
1135 |
#: adminpages/reports/memberships.php:279
|
@@ -1167,7 +1169,7 @@ msgstr ""
|
|
1167 |
#: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:516
|
1168 |
#: adminpages/membershiplevels.php:518 adminpages/membershiplevels.php:524
|
1169 |
#: adminpages/membershiplevels.php:529 adminpages/membershiplevels.php:534
|
1170 |
-
#: adminpages/membershiplevels.php:537
|
1171 |
msgid "Other Settings"
|
1172 |
msgstr ""
|
1173 |
|
@@ -1215,7 +1217,7 @@ msgstr ""
|
|
1215 |
msgid "Choose Levels to Hide Ads From"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: adminpages/advancedsettings.php:
|
1219 |
#: adminpages/advancedsettings.php:190 adminpages/advancedsettings.php:203
|
1220 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1221 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
@@ -1224,7 +1226,7 @@ msgstr ""
|
|
1224 |
msgid "Redirect all traffic from registration page to /susbcription/?"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: adminpages/advancedsettings.php:
|
1228 |
#: adminpages/advancedsettings.php:190 adminpages/advancedsettings.php:203
|
1229 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1230 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
@@ -1233,7 +1235,7 @@ msgstr ""
|
|
1233 |
msgid "multisite only"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: adminpages/advancedsettings.php:
|
1237 |
#: adminpages/paymentsettings.php:260
|
1238 |
#: classes/gateways/class.pmprogateway_stripe.php:403
|
1239 |
#: classes/gateways/class.pmprogateway_stripe.php:417
|
@@ -1255,14 +1257,14 @@ msgstr ""
|
|
1255 |
#: adminpages/membershiplevels.php:796 adminpages/membershiplevels.php:801
|
1256 |
#: adminpages/membershiplevels.php:806 adminpages/membershiplevels.php:811
|
1257 |
#: adminpages/membershiplevels.php:818 adminpages/membershiplevels.php:820
|
1258 |
-
#: adminpages/
|
1259 |
-
#: adminpages/paymentsettings.php:
|
1260 |
-
#: adminpages/paymentsettings.php:
|
1261 |
-
#: adminpages/paymentsettings.php:
|
1262 |
-
#: adminpages/paymentsettings.php:
|
1263 |
-
#: adminpages/paymentsettings.php:
|
1264 |
-
#: adminpages/paymentsettings.php:
|
1265 |
-
#: adminpages/paymentsettings.php:462
|
1266 |
#: classes/gateways/class.pmprogateway_stripe.php:174
|
1267 |
#: classes/gateways/class.pmprogateway_stripe.php:175
|
1268 |
#: classes/gateways/class.pmprogateway_stripe.php:185
|
@@ -1296,23 +1298,23 @@ msgstr ""
|
|
1296 |
msgid "Yes"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: adminpages/advancedsettings.php:
|
1300 |
#: adminpages/advancedsettings.php:472
|
1301 |
msgid "Uninstall PMPro on deletion?"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: adminpages/advancedsettings.php:
|
1305 |
#: adminpages/advancedsettings.php:477
|
1306 |
msgid "Yes - Delete all PMPro Data."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: adminpages/advancedsettings.php:
|
1310 |
msgid ""
|
1311 |
"To delete all PMPro data from the database, set to Yes, deactivate PMPro, "
|
1312 |
"and then click to delete PMPro from the plugins page."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: adminpages/advancedsettings.php:
|
1316 |
#: adminpages/paymentsettings.php:290 adminpages/advancedsettings.php:284
|
1317 |
#: adminpages/advancedsettings.php:355 adminpages/advancedsettings.php:359
|
1318 |
#: adminpages/advancedsettings.php:368 adminpages/advancedsettings.php:375
|
@@ -1340,7 +1342,7 @@ msgid "Welcome to Paid Memberships Pro"
|
|
1340 |
msgstr ""
|
1341 |
|
1342 |
#: adminpages/dashboard.php:19 adminpages/reports/sales.php:20
|
1343 |
-
#: adminpages/reports/sales.php:
|
1344 |
#: classes/class-pmpro-admin-activity-email.php:103 adminpages/dashboard.php:19
|
1345 |
#: adminpages/dashboard.php:20 adminpages/reports/sales.php:20
|
1346 |
#: adminpages/reports/sales.php:180 adminpages/reports/sales.php:189
|
@@ -1351,7 +1353,7 @@ msgid "Sales and Revenue"
|
|
1351 |
msgstr ""
|
1352 |
|
1353 |
#: adminpages/dashboard.php:26 adminpages/reports/memberships.php:18
|
1354 |
-
#: adminpages/reports/memberships.php:
|
1355 |
#: adminpages/dashboard.php:27 adminpages/reports/memberships.php:18
|
1356 |
#: adminpages/reports/memberships.php:252
|
1357 |
#: adminpages/reports/memberships.php:259
|
@@ -1390,6 +1392,7 @@ msgstr ""
|
|
1390 |
|
1391 |
#: adminpages/dashboard.php:113 adminpages/membershiplevels.php:751
|
1392 |
#: adminpages/dashboard.php:113 adminpages/membershiplevels.php:747
|
|
|
1393 |
msgid "Create a Membership Level"
|
1394 |
msgstr ""
|
1395 |
|
@@ -1530,18 +1533,18 @@ msgstr ""
|
|
1530 |
msgid "Translation Dashboard"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: adminpages/dashboard.php:219 adminpages/
|
1534 |
-
#:
|
1535 |
-
#:
|
1536 |
-
#: adminpages/dashboard.php:
|
1537 |
-
#: adminpages/
|
1538 |
-
#: adminpages/memberslist.php:
|
1539 |
-
#: adminpages/memberslist.php:
|
1540 |
-
#: adminpages/orders.php:
|
1541 |
-
#: adminpages/orders.php:
|
1542 |
-
#:
|
1543 |
-
#: classes/class.memberorder.php:
|
1544 |
-
#: classes/class.memberorder.php:
|
1545 |
#: pages/account.php:76 pages/checkout.php:118 pages/checkout.php:121
|
1546 |
#: pages/checkout.php:167 pages/checkout.php:168 pages/checkout.php:171
|
1547 |
#: pages/checkout.php:173 pages/checkout.php:175 pages/checkout.php:180
|
@@ -1554,9 +1557,9 @@ msgid "Username"
|
|
1554 |
msgstr ""
|
1555 |
|
1556 |
#: adminpages/dashboard.php:220 adminpages/dashboard.php:288
|
1557 |
-
#: adminpages/orders.php:
|
1558 |
#: includes/privacy.php:241 pages/billing.php:58 pages/cancel.php:60
|
1559 |
-
#: pages/invoice.php:
|
1560 |
#: shortcodes/pmpro_account.php:211 adminpages/dashboard.php:216
|
1561 |
#: adminpages/dashboard.php:220 adminpages/dashboard.php:284
|
1562 |
#: adminpages/dashboard.php:288 adminpages/dashboard.php:292
|
@@ -1572,15 +1575,16 @@ msgstr ""
|
|
1572 |
#: pages/cancel.php:61 pages/invoice.php:89 pages/invoice.php:101
|
1573 |
#: pages/invoice.php:102 pages/invoice.php:103 pages/invoice.php:104
|
1574 |
#: pages/invoice.php:109 pages/invoice.php:112 pages/invoice.php:113
|
1575 |
-
#: pages/
|
1576 |
-
#: shortcodes/pmpro_account.php:
|
1577 |
-
#: shortcodes/pmpro_account.php:
|
1578 |
-
#: shortcodes/pmpro_account.php:
|
1579 |
-
#: shortcodes/pmpro_account.php:
|
|
|
1580 |
msgid "Level"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: adminpages/dashboard.php:221 adminpages/reports/login.php:
|
1584 |
#: adminpages/dashboard.php:217 adminpages/dashboard.php:221
|
1585 |
#: adminpages/dashboard.php:225 adminpages/memberslist.php:120
|
1586 |
#: adminpages/memberslist.php:153 adminpages/memberslist.php:163
|
@@ -1591,8 +1595,8 @@ msgstr ""
|
|
1591 |
msgid "Joined"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: adminpages/dashboard.php:222 adminpages/discountcodes.php:
|
1595 |
-
#: adminpages/reports/login.php:
|
1596 |
#: adminpages/dashboard.php:218 adminpages/dashboard.php:222
|
1597 |
#: adminpages/dashboard.php:226 adminpages/discountcodes.php:550
|
1598 |
#: adminpages/discountcodes.php:560 adminpages/discountcodes.php:588
|
@@ -1612,7 +1616,7 @@ msgstr ""
|
|
1612 |
msgid "Expires"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: adminpages/dashboard.php:228 adminpages/reports/login.php:
|
1616 |
#: classes/class-pmpro-members-list-table.php:226 adminpages/dashboard.php:224
|
1617 |
#: adminpages/dashboard.php:228 adminpages/dashboard.php:232
|
1618 |
#: adminpages/memberslist.php:195 adminpages/memberslist.php:223
|
@@ -1633,8 +1637,8 @@ msgid "View All Members "
|
|
1633 |
msgstr ""
|
1634 |
|
1635 |
#: adminpages/dashboard.php:286 adminpages/discountcodes.php:449
|
1636 |
-
#: adminpages/discountcodes.php:
|
1637 |
-
#: adminpages/orders.php:
|
1638 |
#: adminpages/dashboard.php:286 adminpages/dashboard.php:290
|
1639 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
1640 |
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
|
@@ -1664,7 +1668,7 @@ msgstr ""
|
|
1664 |
msgid "Code"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: adminpages/dashboard.php:287
|
1668 |
#: classes/gateways/class.pmprogateway_payflowpro.php:117
|
1669 |
#: adminpages/dashboard.php:283 adminpages/dashboard.php:287
|
1670 |
#: adminpages/dashboard.php:291 adminpages/orders.php:599
|
@@ -1682,10 +1686,9 @@ msgstr ""
|
|
1682 |
msgid "User"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: adminpages/dashboard.php:289 adminpages/orders.php:
|
1686 |
-
#: adminpages/orders.php:
|
1687 |
-
#:
|
1688 |
-
#: pages/confirmation.php:103 pages/invoice.php:93 adminpages/dashboard.php:285
|
1689 |
#: adminpages/dashboard.php:289 adminpages/dashboard.php:293
|
1690 |
#: adminpages/orders.php:320 adminpages/orders.php:370
|
1691 |
#: adminpages/orders.php:442 adminpages/orders.php:471
|
@@ -1704,15 +1707,16 @@ msgstr ""
|
|
1704 |
#: adminpages/templates/orders-email.php:64
|
1705 |
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
1706 |
#: pages/confirmation.php:95 pages/confirmation.php:96
|
1707 |
-
#: pages/confirmation.php:98 pages/confirmation.php:99
|
1708 |
-
#: pages/
|
1709 |
-
#: pages/invoice.php:
|
1710 |
-
#: pages/invoice.php:89
|
|
|
1711 |
msgid "Total"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: adminpages/dashboard.php:290 adminpages/orders.php:
|
1715 |
-
#: adminpages/orders.php:
|
1716 |
#: pages/invoice.php:28 shortcodes/pmpro_account.php:213
|
1717 |
#: adminpages/dashboard.php:286 adminpages/dashboard.php:290
|
1718 |
#: adminpages/dashboard.php:294 adminpages/orders.php:373
|
@@ -1736,8 +1740,8 @@ msgstr ""
|
|
1736 |
msgid "Status"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: adminpages/dashboard.php:291 adminpages/orders.php:
|
1740 |
-
#: adminpages/orders.php:
|
1741 |
#: shortcodes/pmpro_account.php:210 adminpages/dashboard.php:287
|
1742 |
#: adminpages/dashboard.php:291 adminpages/dashboard.php:295
|
1743 |
#: adminpages/orders.php:442 adminpages/orders.php:492
|
@@ -1758,13 +1762,14 @@ msgstr ""
|
|
1758 |
#: pages/invoice.php:87 pages/invoice.php:99 pages/invoice.php:100
|
1759 |
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:105
|
1760 |
#: pages/invoice.php:107 pages/invoice.php:110 pages/invoice.php:111
|
1761 |
-
#:
|
1762 |
-
#: shortcodes/pmpro_account.php:
|
1763 |
-
#: shortcodes/pmpro_account.php:
|
|
|
1764 |
msgid "Date"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: adminpages/dashboard.php:298 adminpages/orders.php:
|
1768 |
#: adminpages/dashboard.php:294 adminpages/dashboard.php:298
|
1769 |
#: adminpages/dashboard.php:302 adminpages/orders.php:674
|
1770 |
#: adminpages/orders.php:977 adminpages/orders.php:995
|
@@ -1779,7 +1784,7 @@ msgid "No orders found."
|
|
1779 |
msgstr ""
|
1780 |
|
1781 |
#: adminpages/dashboard.php:315 adminpages/dashboard.php:330
|
1782 |
-
#: adminpages/orders.php:
|
1783 |
#: adminpages/dashboard.php:311 adminpages/dashboard.php:315
|
1784 |
#: adminpages/dashboard.php:319 adminpages/dashboard.php:326
|
1785 |
#: adminpages/dashboard.php:330 adminpages/orders.php:630
|
@@ -1796,7 +1801,7 @@ msgid "deleted"
|
|
1796 |
msgstr ""
|
1797 |
|
1798 |
#: adminpages/dashboard.php:317 adminpages/dashboard.php:332
|
1799 |
-
#: adminpages/orders.php:
|
1800 |
#: adminpages/dashboard.php:313 adminpages/dashboard.php:317
|
1801 |
#: adminpages/dashboard.php:321 adminpages/dashboard.php:328
|
1802 |
#: adminpages/dashboard.php:332 adminpages/orders.php:1275
|
@@ -1906,7 +1911,7 @@ msgstr ""
|
|
1906 |
msgid "Error deleting code. Please try again."
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: adminpages/discountcodes.php:352 adminpages/discountcodes.php:
|
1910 |
#: adminpages/discountcodes.php:251 adminpages/discountcodes.php:254
|
1911 |
#: adminpages/discountcodes.php:255 adminpages/discountcodes.php:256
|
1912 |
#: adminpages/discountcodes.php:261 adminpages/discountcodes.php:305
|
@@ -1934,7 +1939,7 @@ msgstr ""
|
|
1934 |
msgid "Edit Discount Code"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: adminpages/discountcodes.php:375 adminpages/discountcodes.php:
|
1938 |
#: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
|
1939 |
#: adminpages/discountcodes.php:270 adminpages/discountcodes.php:271
|
1940 |
#: adminpages/discountcodes.php:276 adminpages/discountcodes.php:320
|
@@ -1948,9 +1953,9 @@ msgstr ""
|
|
1948 |
msgid "Add New Discount Code"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: adminpages/discountcodes.php:444 adminpages/discountcodes.php:
|
1952 |
#: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:779
|
1953 |
-
#: adminpages/orders.php:
|
1954 |
#: adminpages/templates/orders-email.php:46
|
1955 |
#: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
|
1956 |
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
|
@@ -1977,25 +1982,25 @@ msgstr ""
|
|
1977 |
#: adminpages/membershiplevels.php:715 adminpages/membershiplevels.php:741
|
1978 |
#: adminpages/membershiplevels.php:758 adminpages/membershiplevels.php:763
|
1979 |
#: adminpages/membershiplevels.php:768 adminpages/membershiplevels.php:773
|
1980 |
-
#: adminpages/membershiplevels.php:775 adminpages/
|
1981 |
-
#: adminpages/memberslist.php:
|
1982 |
-
#: adminpages/memberslist.php:
|
1983 |
-
#: adminpages/
|
1984 |
-
#: adminpages/orders.php:
|
1985 |
-
#: adminpages/orders.php:
|
1986 |
-
#: adminpages/orders.php:
|
1987 |
-
#: adminpages/orders.php:
|
1988 |
-
#: adminpages/orders.php:
|
1989 |
-
#: adminpages/orders.php:
|
1990 |
-
#: adminpages/orders.php:
|
1991 |
-
#: adminpages/reports/login.php:
|
1992 |
-
#: adminpages/reports/login.php:
|
1993 |
-
#: adminpages/templates/orders-email.php:46
|
1994 |
#: adminpages/templates/orders-print.php:75
|
1995 |
msgid "ID"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#: adminpages/discountcodes.php:445 adminpages/orders.php:
|
1999 |
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
2000 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
|
2001 |
#: adminpages/discountcodes.php:317 adminpages/discountcodes.php:382
|
@@ -2023,7 +2028,7 @@ msgstr ""
|
|
2023 |
#: adminpages/discountcodes.php:505
|
2024 |
#: classes/gateways/class.pmprogateway_braintree.php:479
|
2025 |
#: classes/gateways/class.pmprogateway_stripe.php:1086 pages/billing.php:363
|
2026 |
-
#: pages/checkout.php:
|
2027 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
2028 |
#: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
|
2029 |
#: adminpages/discountcodes.php:442 adminpages/discountcodes.php:483
|
@@ -2072,15 +2077,15 @@ msgstr ""
|
|
2072 |
#: pages/billing.php:316 pages/billing.php:317 pages/billing.php:319
|
2073 |
#: pages/billing.php:321 pages/billing.php:322 pages/billing.php:330
|
2074 |
#: pages/billing.php:339 pages/billing.php:342 pages/billing.php:363
|
2075 |
-
#: pages/checkout.php:
|
2076 |
-
#: pages/checkout.php:
|
2077 |
-
#: pages/checkout.php:
|
2078 |
-
#: pages/checkout.php:
|
2079 |
-
#: pages/checkout.php:582 pages/checkout.php:585
|
2080 |
msgid "Expiration Date"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: adminpages/discountcodes.php:523 adminpages/discountcodes.php:
|
2084 |
#: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
|
2085 |
#: adminpages/discountcodes.php:389 adminpages/discountcodes.php:390
|
2086 |
#: adminpages/discountcodes.php:395 adminpages/discountcodes.php:460
|
@@ -2111,7 +2116,7 @@ msgstr ""
|
|
2111 |
msgid "Which Levels Will This Code Apply To?"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: adminpages/discountcodes.php:
|
2115 |
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
|
2116 |
#: adminpages/discountcodes.php:431 adminpages/discountcodes.php:432
|
2117 |
#: adminpages/discountcodes.php:437 adminpages/discountcodes.php:510
|
@@ -2127,7 +2132,7 @@ msgstr ""
|
|
2127 |
msgid "Initial Payment"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: adminpages/discountcodes.php:
|
2131 |
#: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
|
2132 |
#: adminpages/discountcodes.php:441 adminpages/discountcodes.php:442
|
2133 |
#: adminpages/discountcodes.php:443 adminpages/discountcodes.php:448
|
@@ -2141,7 +2146,7 @@ msgstr ""
|
|
2141 |
msgid "The initial amount collected at registration."
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: adminpages/discountcodes.php:
|
2145 |
#: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
|
2146 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:447
|
2147 |
#: adminpages/discountcodes.php:448 adminpages/discountcodes.php:453
|
@@ -2156,7 +2161,7 @@ msgstr ""
|
|
2156 |
msgid "Recurring Subscription"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: adminpages/discountcodes.php:
|
2160 |
#: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
|
2161 |
#: adminpages/discountcodes.php:447 adminpages/discountcodes.php:448
|
2162 |
#: adminpages/discountcodes.php:449 adminpages/discountcodes.php:454
|
@@ -2171,7 +2176,7 @@ msgstr ""
|
|
2171 |
msgid "Check if this level has a recurring subscription payment."
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: adminpages/discountcodes.php:
|
2175 |
#: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
|
2176 |
#: adminpages/discountcodes.php:452 adminpages/discountcodes.php:453
|
2177 |
#: adminpages/discountcodes.php:458 adminpages/discountcodes.php:531
|
@@ -2185,7 +2190,7 @@ msgstr ""
|
|
2185 |
msgid "Billing Amount"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: adminpages/discountcodes.php:
|
2189 |
#: classes/gateways/class.pmprogateway_stripe.php:1263
|
2190 |
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:605
|
2191 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
@@ -2222,7 +2227,7 @@ msgstr ""
|
|
2222 |
msgid "per"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: adminpages/discountcodes.php:
|
2226 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2227 |
#: classes/gateways/class.pmprogateway_stripe.php:1129
|
2228 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
@@ -2247,6 +2252,7 @@ msgstr ""
|
|
2247 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2248 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2249 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
|
|
2250 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2251 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2252 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
@@ -2276,7 +2282,7 @@ msgstr ""
|
|
2276 |
msgid "Day(s)"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: adminpages/discountcodes.php:
|
2280 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2281 |
#: classes/gateways/class.pmprogateway_stripe.php:1131
|
2282 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
@@ -2301,6 +2307,7 @@ msgstr ""
|
|
2301 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2302 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2303 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
|
|
2304 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2305 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2306 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
@@ -2330,7 +2337,7 @@ msgstr ""
|
|
2330 |
msgid "Month(s)"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: adminpages/discountcodes.php:
|
2334 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2335 |
#: classes/gateways/class.pmprogateway_stripe.php:1130
|
2336 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
@@ -2355,6 +2362,7 @@ msgstr ""
|
|
2355 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2356 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2357 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
|
|
2358 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2359 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2360 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
@@ -2384,7 +2392,7 @@ msgstr ""
|
|
2384 |
msgid "Week(s)"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: adminpages/discountcodes.php:
|
2388 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2389 |
#: classes/gateways/class.pmprogateway_stripe.php:1132
|
2390 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
@@ -2409,6 +2417,7 @@ msgstr ""
|
|
2409 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2410 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2411 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
|
|
2412 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2413 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2414 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
@@ -2438,7 +2447,7 @@ msgstr ""
|
|
2438 |
msgid "Year(s)"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: adminpages/discountcodes.php:
|
2442 |
#: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
|
2443 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:475
|
2444 |
#: adminpages/discountcodes.php:476 adminpages/discountcodes.php:481
|
@@ -2453,7 +2462,7 @@ msgstr ""
|
|
2453 |
msgid "The amount to be billed one cycle after the initial payment."
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: adminpages/discountcodes.php:
|
2457 |
#: adminpages/discountcodes.php:619 adminpages/membershiplevels.php:366
|
2458 |
#: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
|
2459 |
#: adminpages/membershiplevels.php:389 adminpages/membershiplevels.php:390
|
@@ -2465,12 +2474,12 @@ msgid ""
|
|
2465 |
"or \"Year\"."
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: adminpages/discountcodes.php:
|
2469 |
#: adminpages/discountcodes.php:621 adminpages/membershiplevels.php:450
|
2470 |
msgid "Stripe integration does not allow billing periods longer than 1 year."
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: adminpages/discountcodes.php:
|
2474 |
#: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
|
2475 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:480
|
2476 |
#: adminpages/discountcodes.php:481 adminpages/discountcodes.php:486
|
@@ -2486,7 +2495,7 @@ msgstr ""
|
|
2486 |
msgid "Billing Cycle Limit"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: adminpages/discountcodes.php:
|
2490 |
#: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
|
2491 |
#: adminpages/discountcodes.php:482 adminpages/discountcodes.php:483
|
2492 |
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:489
|
@@ -2505,7 +2514,7 @@ msgid ""
|
|
2505 |
"initial payment. Set to zero if membership is indefinite."
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: adminpages/discountcodes.php:
|
2509 |
#: adminpages/discountcodes.php:633 adminpages/membershiplevels.php:386
|
2510 |
#: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
|
2511 |
#: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:410
|
@@ -2518,7 +2527,7 @@ msgid ""
|
|
2518 |
"set an expiration date below."
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: adminpages/discountcodes.php:
|
2522 |
#: adminpages/discountcodes.php:642 adminpages/membershiplevels.php:477
|
2523 |
#: adminpages/membershiplevels.php:478 adminpages/membershiplevels.php:480
|
2524 |
#, php-format
|
@@ -2528,7 +2537,7 @@ msgid ""
|
|
2528 |
"\">Stripe Billing Limits Add On</a>."
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: adminpages/discountcodes.php:
|
2532 |
#: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
|
2533 |
#: adminpages/discountcodes.php:487 adminpages/discountcodes.php:488
|
2534 |
#: adminpages/discountcodes.php:489 adminpages/discountcodes.php:494
|
@@ -2544,7 +2553,7 @@ msgstr ""
|
|
2544 |
msgid "Custom Trial"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: adminpages/discountcodes.php:
|
2548 |
#: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
|
2549 |
#: adminpages/discountcodes.php:488 adminpages/discountcodes.php:489
|
2550 |
#: adminpages/discountcodes.php:490 adminpages/discountcodes.php:495
|
@@ -2561,7 +2570,7 @@ msgstr ""
|
|
2561 |
msgid "Check to add a custom trial period."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: adminpages/discountcodes.php:
|
2565 |
#: adminpages/discountcodes.php:654 adminpages/membershiplevels.php:398
|
2566 |
#: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
|
2567 |
#: adminpages/membershiplevels.php:421 adminpages/membershiplevels.php:422
|
@@ -2574,7 +2583,7 @@ msgid ""
|
|
2574 |
"trials by setting an initial payment different from the billing amount."
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: adminpages/discountcodes.php:
|
2578 |
#: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
|
2579 |
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:493
|
2580 |
#: adminpages/discountcodes.php:494 adminpages/discountcodes.php:499
|
@@ -2591,7 +2600,7 @@ msgstr ""
|
|
2591 |
msgid "Trial Billing Amount"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: adminpages/discountcodes.php:
|
2595 |
#: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
|
2596 |
#: adminpages/discountcodes.php:503 adminpages/discountcodes.php:504
|
2597 |
#: adminpages/discountcodes.php:505 adminpages/discountcodes.php:510
|
@@ -2608,7 +2617,7 @@ msgstr ""
|
|
2608 |
msgid "for the first"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: adminpages/discountcodes.php:
|
2612 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
|
2613 |
#: adminpages/discountcodes.php:505 adminpages/discountcodes.php:506
|
2614 |
#: adminpages/discountcodes.php:507 adminpages/discountcodes.php:512
|
@@ -2625,7 +2634,7 @@ msgstr ""
|
|
2625 |
msgid "subscription payments"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: adminpages/discountcodes.php:
|
2629 |
#: adminpages/discountcodes.php:675 adminpages/membershiplevels.php:406
|
2630 |
#: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
|
2631 |
#: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:443
|
@@ -2638,7 +2647,7 @@ msgid ""
|
|
2638 |
"Stripe integration currently does not support trial amounts greater than $0."
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#: adminpages/discountcodes.php:
|
2642 |
#: adminpages/discountcodes.php:677 adminpages/membershiplevels.php:410
|
2643 |
#: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
|
2644 |
#: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:447
|
@@ -2652,7 +2661,7 @@ msgid ""
|
|
2652 |
"$0."
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: adminpages/discountcodes.php:
|
2656 |
#: adminpages/discountcodes.php:679 adminpages/membershiplevels.php:414
|
2657 |
#: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
|
2658 |
#: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:451
|
@@ -2665,7 +2674,7 @@ msgid ""
|
|
2665 |
"Payflow integration currently does not support trial amounts greater than $0."
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: adminpages/discountcodes.php:
|
2669 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
|
2670 |
#: adminpages/discountcodes.php:510 adminpages/discountcodes.php:511
|
2671 |
#: adminpages/discountcodes.php:512 adminpages/discountcodes.php:517
|
@@ -2679,11 +2688,11 @@ msgstr ""
|
|
2679 |
#: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:527
|
2680 |
#: adminpages/membershiplevels.php:533 adminpages/membershiplevels.php:538
|
2681 |
#: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:544
|
2682 |
-
#: adminpages/membershiplevels.php:546
|
2683 |
msgid "Membership Expiration"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: adminpages/discountcodes.php:
|
2687 |
#: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
|
2688 |
#: adminpages/discountcodes.php:512 adminpages/discountcodes.php:513
|
2689 |
#: adminpages/discountcodes.php:518 adminpages/discountcodes.php:591
|
@@ -2697,10 +2706,11 @@ msgstr ""
|
|
2697 |
#: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:534
|
2698 |
#: adminpages/membershiplevels.php:539 adminpages/membershiplevels.php:544
|
2699 |
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:547
|
|
|
2700 |
msgid "Check this to set when membership access expires."
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: adminpages/discountcodes.php:
|
2704 |
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
|
2705 |
#: adminpages/discountcodes.php:515 adminpages/discountcodes.php:516
|
2706 |
#: adminpages/discountcodes.php:517 adminpages/discountcodes.php:522
|
@@ -2714,11 +2724,11 @@ msgstr ""
|
|
2714 |
#: adminpages/membershiplevels.php:530 adminpages/membershiplevels.php:532
|
2715 |
#: adminpages/membershiplevels.php:549 adminpages/membershiplevels.php:554
|
2716 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:560
|
2717 |
-
#: adminpages/membershiplevels.php:562
|
2718 |
msgid "Expires In"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
-
#: adminpages/discountcodes.php:
|
2722 |
#: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
|
2723 |
#: adminpages/discountcodes.php:529 adminpages/discountcodes.php:530
|
2724 |
#: adminpages/discountcodes.php:535 adminpages/discountcodes.php:608
|
@@ -2732,13 +2742,14 @@ msgstr ""
|
|
2732 |
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:562
|
2733 |
#: adminpages/membershiplevels.php:567 adminpages/membershiplevels.php:572
|
2734 |
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:575
|
|
|
2735 |
msgid ""
|
2736 |
"Set the duration of membership access. Note that the any future payments "
|
2737 |
"(recurring subscription, if any) will be cancelled when the membership "
|
2738 |
"expires."
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
#: adminpages/discountcodes.php:
|
2742 |
#: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
|
2743 |
#: adminpages/discountcodes.php:557 adminpages/discountcodes.php:558
|
2744 |
#: adminpages/discountcodes.php:563 adminpages/discountcodes.php:636
|
@@ -2747,33 +2758,33 @@ msgstr ""
|
|
2747 |
msgid "Memberships Discount Codes"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: adminpages/discountcodes.php:
|
2751 |
msgid "No Discount Codes Found"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: adminpages/discountcodes.php:
|
2755 |
#: adminpages/discountcodes.php:718 adminpages/discountcodes.php:719
|
2756 |
#: adminpages/discountcodes.php:752
|
2757 |
msgid ""
|
2758 |
"Discount codes allow you to override your membership level's default pricing."
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#: adminpages/discountcodes.php:
|
2762 |
msgid "Create a Discount Code"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
-
#: adminpages/discountcodes.php:
|
2766 |
msgid "Documentation: Discount Codes"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
#: adminpages/discountcodes.php:
|
2770 |
#: adminpages/discountcodes.php:728 adminpages/discountcodes.php:729
|
2771 |
#: adminpages/discountcodes.php:730 adminpages/discountcodes.php:763
|
2772 |
#, php-format
|
2773 |
msgid "%d discount codes found."
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: adminpages/discountcodes.php:
|
2777 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
|
2778 |
#: adminpages/discountcodes.php:567 adminpages/discountcodes.php:568
|
2779 |
#: adminpages/discountcodes.php:573 adminpages/discountcodes.php:646
|
@@ -2783,7 +2794,7 @@ msgstr ""
|
|
2783 |
msgid "Search Discount Codes"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: adminpages/discountcodes.php:
|
2787 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
|
2788 |
#: adminpages/discountcodes.php:569 adminpages/discountcodes.php:570
|
2789 |
#: adminpages/discountcodes.php:571 adminpages/discountcodes.php:576
|
@@ -2796,7 +2807,7 @@ msgstr ""
|
|
2796 |
msgid "Search"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#: adminpages/discountcodes.php:
|
2800 |
#: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
|
2801 |
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
|
2802 |
#: adminpages/discountcodes.php:594 adminpages/discountcodes.php:667
|
@@ -2806,35 +2817,37 @@ msgstr ""
|
|
2806 |
msgid "Starts"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
-
#: adminpages/discountcodes.php:
|
2810 |
-
#: adminpages/orders.php:
|
2811 |
#: adminpages/discountcodes.php:766 adminpages/discountcodes.php:767
|
2812 |
#: adminpages/discountcodes.php:773 adminpages/discountcodes.php:775
|
2813 |
#: adminpages/discountcodes.php:807 adminpages/membershiplevels.php:760
|
2814 |
#: adminpages/membershiplevels.php:777 adminpages/membershiplevels.php:782
|
2815 |
#: adminpages/membershiplevels.php:787 adminpages/membershiplevels.php:792
|
2816 |
#: adminpages/membershiplevels.php:799 adminpages/membershiplevels.php:801
|
2817 |
-
#: adminpages/
|
2818 |
-
#: adminpages/orders.php:
|
2819 |
-
#: adminpages/orders.php:
|
|
|
2820 |
msgid "Edit"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
#: adminpages/discountcodes.php:
|
2824 |
-
#: adminpages/orders.php:
|
2825 |
#: adminpages/discountcodes.php:769 adminpages/discountcodes.php:770
|
2826 |
#: adminpages/discountcodes.php:776 adminpages/discountcodes.php:778
|
2827 |
#: adminpages/discountcodes.php:810 adminpages/membershiplevels.php:761
|
2828 |
#: adminpages/membershiplevels.php:778 adminpages/membershiplevels.php:783
|
2829 |
#: adminpages/membershiplevels.php:788 adminpages/membershiplevels.php:793
|
2830 |
#: adminpages/membershiplevels.php:800 adminpages/membershiplevels.php:802
|
2831 |
-
#: adminpages/
|
2832 |
-
#: adminpages/orders.php:
|
2833 |
-
#: adminpages/orders.php:
|
|
|
2834 |
msgid "Copy"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: adminpages/discountcodes.php:
|
2838 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
2839 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
2840 |
#: adminpages/discountcodes.php:653 adminpages/discountcodes.php:658
|
@@ -2850,7 +2863,7 @@ msgid ""
|
|
2850 |
"code anymore."
|
2851 |
msgstr ""
|
2852 |
|
2853 |
-
#: adminpages/discountcodes.php:
|
2854 |
#: adminpages/discountcodes.php:776 adminpages/discountcodes.php:777
|
2855 |
#: adminpages/discountcodes.php:783 adminpages/discountcodes.php:785
|
2856 |
#: adminpages/discountcodes.php:817
|
@@ -3200,7 +3213,7 @@ msgid "Add New Membership Level"
|
|
3200 |
msgstr ""
|
3201 |
|
3202 |
#: adminpages/membershiplevels.php:354 adminpages/membershiplevels.php:780
|
3203 |
-
#: adminpages/reports/login.php:
|
3204 |
#: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
|
3205 |
#: adminpages/membershiplevels.php:319 adminpages/membershiplevels.php:329
|
3206 |
#: adminpages/membershiplevels.php:351 adminpages/membershiplevels.php:353
|
@@ -3215,9 +3228,9 @@ msgstr ""
|
|
3215 |
#: adminpages/membershiplevels.php:742 adminpages/membershiplevels.php:759
|
3216 |
#: adminpages/membershiplevels.php:764 adminpages/membershiplevels.php:769
|
3217 |
#: adminpages/membershiplevels.php:774 adminpages/membershiplevels.php:776
|
3218 |
-
#: adminpages/
|
3219 |
-
#: adminpages/reports/login.php:
|
3220 |
-
#: adminpages/reports/login.php:180
|
3221 |
msgid "Name"
|
3222 |
msgstr ""
|
3223 |
|
@@ -3248,6 +3261,7 @@ msgstr ""
|
|
3248 |
#: adminpages/membershiplevels.php:743 adminpages/membershiplevels.php:760
|
3249 |
#: adminpages/membershiplevels.php:765 adminpages/membershiplevels.php:770
|
3250 |
#: adminpages/membershiplevels.php:775 adminpages/membershiplevels.php:777
|
|
|
3251 |
msgid "Billing Details"
|
3252 |
msgstr ""
|
3253 |
|
@@ -3321,7 +3335,7 @@ msgstr ""
|
|
3321 |
#: adminpages/membershiplevels.php:520 adminpages/membershiplevels.php:522
|
3322 |
#: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:533
|
3323 |
#: adminpages/membershiplevels.php:538 adminpages/membershiplevels.php:539
|
3324 |
-
#: adminpages/membershiplevels.php:541
|
3325 |
msgid "Disable New Signups"
|
3326 |
msgstr ""
|
3327 |
|
@@ -3333,7 +3347,7 @@ msgstr ""
|
|
3333 |
#: adminpages/membershiplevels.php:521 adminpages/membershiplevels.php:523
|
3334 |
#: adminpages/membershiplevels.php:529 adminpages/membershiplevels.php:534
|
3335 |
#: adminpages/membershiplevels.php:539 adminpages/membershiplevels.php:540
|
3336 |
-
#: adminpages/membershiplevels.php:542
|
3337 |
msgid ""
|
3338 |
"Check to hide this level from the membership levels page and disable "
|
3339 |
"registration."
|
@@ -3342,6 +3356,7 @@ msgstr ""
|
|
3342 |
#: adminpages/membershiplevels.php:562 adminpages/membershiplevels.php:545
|
3343 |
#: adminpages/membershiplevels.php:550 adminpages/membershiplevels.php:555
|
3344 |
#: adminpages/membershiplevels.php:556 adminpages/membershiplevels.php:558
|
|
|
3345 |
#, php-format
|
3346 |
msgid ""
|
3347 |
"Optional: Allow more customizable expiration dates using the <a href=\"%s\" "
|
@@ -3353,6 +3368,7 @@ msgstr ""
|
|
3353 |
#: adminpages/membershiplevels.php:548 adminpages/membershiplevels.php:565
|
3354 |
#: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:575
|
3355 |
#: adminpages/membershiplevels.php:576 adminpages/membershiplevels.php:578
|
|
|
3356 |
#, php-format
|
3357 |
msgid ""
|
3358 |
"WARNING: This level is set with both a recurring billing amount and an "
|
@@ -3364,7 +3380,7 @@ msgstr ""
|
|
3364 |
#: adminpages/membershiplevels.php:624 adminpages/membershiplevels.php:588
|
3365 |
#: adminpages/membershiplevels.php:605 adminpages/membershiplevels.php:610
|
3366 |
#: adminpages/membershiplevels.php:615 adminpages/membershiplevels.php:618
|
3367 |
-
#: adminpages/membershiplevels.php:620
|
3368 |
#, php-format
|
3369 |
msgid ""
|
3370 |
"Non-members will not see posts in these categories. You can <a href=\"%s\" "
|
@@ -3374,7 +3390,7 @@ msgstr ""
|
|
3374 |
#: adminpages/membershiplevels.php:628 adminpages/membershiplevels.php:592
|
3375 |
#: adminpages/membershiplevels.php:609 adminpages/membershiplevels.php:614
|
3376 |
#: adminpages/membershiplevels.php:619 adminpages/membershiplevels.php:622
|
3377 |
-
#: adminpages/membershiplevels.php:624
|
3378 |
#, php-format
|
3379 |
msgid ""
|
3380 |
"Non-members will see the title and excerpt for posts in these categories. "
|
@@ -3385,7 +3401,7 @@ msgstr ""
|
|
3385 |
#: adminpages/membershiplevels.php:631 adminpages/membershiplevels.php:595
|
3386 |
#: adminpages/membershiplevels.php:612 adminpages/membershiplevels.php:617
|
3387 |
#: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
|
3388 |
-
#: adminpages/membershiplevels.php:627
|
3389 |
#, php-format
|
3390 |
msgid ""
|
3391 |
"Non-members will see the title only for posts in these categories. You can "
|
@@ -3402,6 +3418,7 @@ msgstr ""
|
|
3402 |
#: adminpages/membershiplevels.php:602 adminpages/membershiplevels.php:619
|
3403 |
#: adminpages/membershiplevels.php:624 adminpages/membershiplevels.php:629
|
3404 |
#: adminpages/membershiplevels.php:632 adminpages/membershiplevels.php:634
|
|
|
3405 |
msgid "Categories"
|
3406 |
msgstr ""
|
3407 |
|
@@ -3412,11 +3429,11 @@ msgstr ""
|
|
3412 |
#: adminpages/membershiplevels.php:584 adminpages/membershiplevels.php:610
|
3413 |
#: adminpages/membershiplevels.php:627 adminpages/membershiplevels.php:632
|
3414 |
#: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:640
|
3415 |
-
#: adminpages/membershiplevels.php:642
|
3416 |
msgid "Save Level"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: adminpages/membershiplevels.php:647 adminpages/orders.php:
|
3420 |
#: includes/profile.php:546 includes/profile.php:670 pages/billing.php:414
|
3421 |
#: pages/cancel.php:86 shortcodes/pmpro_account.php:106
|
3422 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
|
@@ -3426,34 +3443,37 @@ msgstr ""
|
|
3426 |
#: adminpages/membershiplevels.php:611 adminpages/membershiplevels.php:628
|
3427 |
#: adminpages/membershiplevels.php:633 adminpages/membershiplevels.php:638
|
3428 |
#: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:643
|
3429 |
-
#: adminpages/
|
3430 |
-
#: adminpages/orders.php:
|
3431 |
-
#: adminpages/orders.php:
|
3432 |
-
#: adminpages/orders.php:
|
3433 |
-
#: adminpages/orders.php:
|
3434 |
-
#: adminpages/orders.php:
|
3435 |
-
#: adminpages/orders.php:
|
3436 |
-
#:
|
3437 |
-
#: includes/profile.php:
|
3438 |
-
#:
|
3439 |
-
#: pages/billing.php:
|
3440 |
-
#: pages/billing.php:
|
3441 |
-
#: pages/billing.php:
|
3442 |
-
#: pages/billing.php:
|
3443 |
-
#: pages/billing.php:
|
3444 |
-
#: pages/billing.php:
|
3445 |
-
#: pages/cancel.php:
|
|
|
3446 |
#: shortcodes/pmpro_account.php:72 shortcodes/pmpro_account.php:73
|
3447 |
#: shortcodes/pmpro_account.php:106
|
3448 |
msgid "Cancel"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
#: adminpages/membershiplevels.php:750 adminpages/membershiplevels.php:791
|
3452 |
-
#: adminpages/membershiplevels.php:746 adminpages/membershiplevels.php:
|
|
|
3453 |
msgid "No Membership Levels Found"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
#: adminpages/membershiplevels.php:752 adminpages/membershiplevels.php:748
|
|
|
3457 |
msgid "Video: Membership Levels"
|
3458 |
msgstr ""
|
3459 |
|
@@ -3477,7 +3497,8 @@ msgstr ""
|
|
3477 |
#: adminpages/membershiplevels.php:744 adminpages/membershiplevels.php:747
|
3478 |
#: adminpages/membershiplevels.php:749 adminpages/membershiplevels.php:752
|
3479 |
#: adminpages/membershiplevels.php:754 adminpages/membershiplevels.php:755
|
3480 |
-
#: adminpages/membershiplevels.php:757
|
|
|
3481 |
msgid "Search Levels"
|
3482 |
msgstr ""
|
3483 |
|
@@ -3491,6 +3512,7 @@ msgstr ""
|
|
3491 |
#: adminpages/membershiplevels.php:702 adminpages/membershiplevels.php:728
|
3492 |
#: adminpages/membershiplevels.php:745 adminpages/membershiplevels.php:750
|
3493 |
#: adminpages/membershiplevels.php:755 adminpages/membershiplevels.php:761
|
|
|
3494 |
msgid "Add New Level"
|
3495 |
msgstr ""
|
3496 |
|
@@ -3502,6 +3524,7 @@ msgstr ""
|
|
3502 |
#: adminpages/membershiplevels.php:731 adminpages/membershiplevels.php:748
|
3503 |
#: adminpages/membershiplevels.php:753 adminpages/membershiplevels.php:758
|
3504 |
#: adminpages/membershiplevels.php:763 adminpages/membershiplevels.php:765
|
|
|
3505 |
msgid "Drag and drop membership levels to reorder them on the Levels page."
|
3506 |
msgstr ""
|
3507 |
|
@@ -3518,14 +3541,16 @@ msgstr ""
|
|
3518 |
#: adminpages/membershiplevels.php:744 adminpages/membershiplevels.php:761
|
3519 |
#: adminpages/membershiplevels.php:766 adminpages/membershiplevels.php:771
|
3520 |
#: adminpages/membershiplevels.php:776 adminpages/membershiplevels.php:778
|
3521 |
-
#:
|
3522 |
-
#: pages/
|
3523 |
-
#: pages/confirmation.php:
|
3524 |
-
#: pages/confirmation.php:
|
|
|
3525 |
#: pages/confirmation.php:89 pages/invoice.php:62 pages/invoice.php:63
|
3526 |
#: pages/invoice.php:64 pages/invoice.php:68 pages/invoice.php:70
|
3527 |
-
#: pages/invoice.php:72 pages/invoice.php:73
|
3528 |
-
#: shortcodes/pmpro_account.php:
|
|
|
3529 |
msgid "Expiration"
|
3530 |
msgstr ""
|
3531 |
|
@@ -3540,6 +3565,7 @@ msgstr ""
|
|
3540 |
#: adminpages/membershiplevels.php:745 adminpages/membershiplevels.php:762
|
3541 |
#: adminpages/membershiplevels.php:767 adminpages/membershiplevels.php:772
|
3542 |
#: adminpages/membershiplevels.php:777 adminpages/membershiplevels.php:779
|
|
|
3543 |
msgid "Allow Signups"
|
3544 |
msgstr ""
|
3545 |
|
@@ -3554,7 +3580,7 @@ msgstr ""
|
|
3554 |
#: adminpages/membershiplevels.php:762 adminpages/membershiplevels.php:779
|
3555 |
#: adminpages/membershiplevels.php:784 adminpages/membershiplevels.php:789
|
3556 |
#: adminpages/membershiplevels.php:794 adminpages/membershiplevels.php:801
|
3557 |
-
#: adminpages/membershiplevels.php:803
|
3558 |
#, php-format
|
3559 |
msgid ""
|
3560 |
"Are you sure you want to delete membership level %s? All subscriptions will "
|
@@ -3572,7 +3598,7 @@ msgstr ""
|
|
3572 |
#: adminpages/membershiplevels.php:767 adminpages/membershiplevels.php:784
|
3573 |
#: adminpages/membershiplevels.php:789 adminpages/membershiplevels.php:794
|
3574 |
#: adminpages/membershiplevels.php:799 adminpages/membershiplevels.php:806
|
3575 |
-
#: adminpages/membershiplevels.php:808
|
3576 |
msgid "FREE"
|
3577 |
msgstr ""
|
3578 |
|
@@ -3587,7 +3613,7 @@ msgstr ""
|
|
3587 |
#: adminpages/membershiplevels.php:776 adminpages/membershiplevels.php:793
|
3588 |
#: adminpages/membershiplevels.php:798 adminpages/membershiplevels.php:803
|
3589 |
#: adminpages/membershiplevels.php:808 adminpages/membershiplevels.php:815
|
3590 |
-
#: adminpages/membershiplevels.php:817
|
3591 |
msgid "After"
|
3592 |
msgstr ""
|
3593 |
|
@@ -3600,7 +3626,7 @@ msgstr ""
|
|
3600 |
msgid "Members List"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
-
#: adminpages/memberslist.php:21 adminpages/orders.php:
|
3604 |
#: adminpages/memberslist.php:21 adminpages/memberslist.php:26
|
3605 |
#: adminpages/orders.php:522 adminpages/orders.php:591
|
3606 |
#: adminpages/orders.php:698 adminpages/orders.php:727
|
@@ -3642,27 +3668,7 @@ msgstr ""
|
|
3642 |
msgid "Error deleting order."
|
3643 |
msgstr ""
|
3644 |
|
3645 |
-
#: adminpages/orders.php:
|
3646 |
-
#: adminpages/orders.php:169 adminpages/orders.php:270
|
3647 |
-
#: adminpages/orders.php:284 adminpages/orders.php:285
|
3648 |
-
#: adminpages/orders.php:295 adminpages/orders.php:296
|
3649 |
-
#: adminpages/orders.php:297 adminpages/orders.php:298
|
3650 |
-
#: adminpages/orders.php:301 adminpages/orders.php:304
|
3651 |
-
#: adminpages/orders.php:314
|
3652 |
-
msgid "Order saved successfully."
|
3653 |
-
msgstr ""
|
3654 |
-
|
3655 |
-
#: adminpages/orders.php:307 adminpages/orders.php:124
|
3656 |
-
#: adminpages/orders.php:174 adminpages/orders.php:275
|
3657 |
-
#: adminpages/orders.php:287 adminpages/orders.php:288
|
3658 |
-
#: adminpages/orders.php:298 adminpages/orders.php:299
|
3659 |
-
#: adminpages/orders.php:300 adminpages/orders.php:301
|
3660 |
-
#: adminpages/orders.php:304 adminpages/orders.php:307
|
3661 |
-
#: adminpages/orders.php:317
|
3662 |
-
msgid "Error updating order timestamp."
|
3663 |
-
msgstr ""
|
3664 |
-
|
3665 |
-
#: adminpages/orders.php:311 adminpages/orders.php:130
|
3666 |
#: adminpages/orders.php:180 adminpages/orders.php:281
|
3667 |
#: adminpages/orders.php:291 adminpages/orders.php:292
|
3668 |
#: adminpages/orders.php:302 adminpages/orders.php:303
|
@@ -3672,8 +3678,8 @@ msgstr ""
|
|
3672 |
msgid "Error saving order."
|
3673 |
msgstr ""
|
3674 |
|
3675 |
-
#: adminpages/orders.php:
|
3676 |
-
#: classes/class.memberorder.php:
|
3677 |
#: adminpages/orders.php:245 adminpages/orders.php:317
|
3678 |
#: adminpages/orders.php:321 adminpages/orders.php:346
|
3679 |
#: adminpages/orders.php:352 adminpages/orders.php:362
|
@@ -3684,11 +3690,11 @@ msgstr ""
|
|
3684 |
#: classes/class.memberorder.php:763 classes/class.memberorder.php:814
|
3685 |
#: classes/class.memberorder.php:859 classes/class.memberorder.php:860
|
3686 |
#: classes/class.memberorder.php:872 classes/class.memberorder.php:945
|
3687 |
-
#: classes/class.memberorder.php:947
|
3688 |
msgid "Order"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
-
#: adminpages/orders.php:
|
3692 |
#: pages/confirmation.php:49 pages/invoice.php:22 adminpages/orders.php:370
|
3693 |
#: adminpages/orders.php:371 adminpages/orders.php:375
|
3694 |
#: adminpages/orders.php:383 adminpages/orders.php:1341
|
@@ -3700,7 +3706,7 @@ msgstr ""
|
|
3700 |
msgid "Print"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
-
#: adminpages/orders.php:
|
3704 |
#: adminpages/orders.php:247 adminpages/orders.php:319
|
3705 |
#: adminpages/orders.php:323 adminpages/orders.php:348
|
3706 |
#: adminpages/orders.php:354 adminpages/orders.php:364
|
@@ -3709,7 +3715,7 @@ msgstr ""
|
|
3709 |
msgid "New Order"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
-
#: adminpages/orders.php:
|
3713 |
#: adminpages/orders.php:270 adminpages/orders.php:342
|
3714 |
#: adminpages/orders.php:359 adminpages/orders.php:371
|
3715 |
#: adminpages/orders.php:390 adminpages/orders.php:401
|
@@ -3720,7 +3726,7 @@ msgstr ""
|
|
3720 |
msgid "Randomly generated for you."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
-
#: adminpages/orders.php:
|
3724 |
#: adminpages/orders.php:275 adminpages/orders.php:347
|
3725 |
#: adminpages/orders.php:364 adminpages/orders.php:376
|
3726 |
#: adminpages/orders.php:395 adminpages/orders.php:406
|
@@ -3731,7 +3737,7 @@ msgstr ""
|
|
3731 |
msgid "User ID"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: adminpages/orders.php:
|
3735 |
#: adminpages/orders.php:284 adminpages/orders.php:356
|
3736 |
#: adminpages/orders.php:376 adminpages/orders.php:385
|
3737 |
#: adminpages/orders.php:407 adminpages/orders.php:418
|
@@ -3741,7 +3747,7 @@ msgstr ""
|
|
3741 |
msgid "Membership Level ID"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
-
#: adminpages/orders.php:
|
3745 |
#: adminpages/orders.php:293 adminpages/orders.php:365
|
3746 |
#: adminpages/orders.php:389 adminpages/orders.php:394
|
3747 |
#: adminpages/orders.php:420 adminpages/orders.php:431
|
@@ -3751,7 +3757,7 @@ msgstr ""
|
|
3751 |
msgid "Billing Name"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: adminpages/orders.php:
|
3755 |
#: adminpages/orders.php:301 adminpages/orders.php:373
|
3756 |
#: adminpages/orders.php:401 adminpages/orders.php:402
|
3757 |
#: adminpages/orders.php:432 adminpages/orders.php:443
|
@@ -3761,7 +3767,7 @@ msgstr ""
|
|
3761 |
msgid "Billing Street"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
-
#: adminpages/orders.php:
|
3765 |
#: adminpages/orders.php:258 adminpages/orders.php:308
|
3766 |
#: adminpages/orders.php:380 adminpages/orders.php:409
|
3767 |
#: adminpages/orders.php:412 adminpages/orders.php:443
|
@@ -3772,7 +3778,7 @@ msgstr ""
|
|
3772 |
msgid "Billing City"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: adminpages/orders.php:
|
3776 |
#: adminpages/orders.php:315 adminpages/orders.php:387
|
3777 |
#: adminpages/orders.php:416 adminpages/orders.php:423
|
3778 |
#: adminpages/orders.php:454 adminpages/orders.php:465
|
@@ -3782,7 +3788,7 @@ msgstr ""
|
|
3782 |
msgid "Billing State"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: adminpages/orders.php:
|
3786 |
#: adminpages/orders.php:272 adminpages/orders.php:322
|
3787 |
#: adminpages/orders.php:394 adminpages/orders.php:423
|
3788 |
#: adminpages/orders.php:434 adminpages/orders.php:465
|
@@ -3793,7 +3799,7 @@ msgstr ""
|
|
3793 |
msgid "Billing Postal Code"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
-
#: adminpages/orders.php:
|
3797 |
#: adminpages/orders.php:279 adminpages/orders.php:329
|
3798 |
#: adminpages/orders.php:401 adminpages/orders.php:430
|
3799 |
#: adminpages/orders.php:445 adminpages/orders.php:476
|
@@ -3804,7 +3810,7 @@ msgstr ""
|
|
3804 |
msgid "Billing Country"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: adminpages/orders.php:
|
3808 |
#: adminpages/orders.php:337 adminpages/orders.php:409
|
3809 |
#: adminpages/orders.php:438 adminpages/orders.php:457
|
3810 |
#: adminpages/orders.php:488 adminpages/orders.php:499
|
@@ -3814,14 +3820,14 @@ msgstr ""
|
|
3814 |
msgid "Billing Phone"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: adminpages/orders.php:
|
3818 |
#: classes/class.pmproemail.php:313 classes/class.pmproemail.php:322
|
3819 |
#: classes/class.pmproemail.php:331 classes/class.pmproemail.php:413
|
3820 |
-
#: classes/class.pmproemail.php:422 classes/class.pmproemail.php:
|
3821 |
-
#: classes/class.pmproemail.php:
|
3822 |
#: classes/gateways/class.pmprogateway_braintree.php:509
|
3823 |
-
#: classes/gateways/class.pmprogateway_stripe.php:1099 pages/checkout.php:
|
3824 |
-
#: pages/checkout.php:
|
3825 |
#: pages/invoice.php:40 adminpages/orders.php:560 adminpages/orders.php:564
|
3826 |
#: adminpages/orders.php:565 adminpages/orders.php:573
|
3827 |
#: adminpages/orders.php:575 adminpages/orders.php:1307
|
@@ -3905,19 +3911,19 @@ msgstr ""
|
|
3905 |
#: pages/checkout.php:78 pages/checkout.php:81 pages/checkout.php:83
|
3906 |
#: pages/checkout.php:85 pages/checkout.php:86 pages/checkout.php:89
|
3907 |
#: pages/checkout.php:92 pages/checkout.php:93 pages/checkout.php:96
|
3908 |
-
#: pages/checkout.php:
|
3909 |
-
#: pages/checkout.php:
|
3910 |
-
#: pages/checkout.php:
|
3911 |
-
#: pages/checkout.php:
|
3912 |
-
#: pages/checkout.php:
|
3913 |
-
#: pages/confirmation.php:51 pages/confirmation.php:52
|
3914 |
#: pages/confirmation.php:57 pages/confirmation.php:58 pages/invoice.php:32
|
3915 |
#: pages/invoice.php:33 pages/invoice.php:34 pages/invoice.php:40
|
3916 |
msgid "Discount Code"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
-
#: adminpages/orders.php:
|
3920 |
-
#: classes/class.pmproemail.php:
|
3921 |
#: includes/profile.php:34 adminpages/orders.php:571 adminpages/orders.php:575
|
3922 |
#: adminpages/orders.php:576 adminpages/orders.php:578
|
3923 |
#: adminpages/orders.php:584 adminpages/orders.php:586
|
@@ -3935,7 +3941,7 @@ msgstr ""
|
|
3935 |
msgid "None"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: adminpages/orders.php:
|
3939 |
#: adminpages/orders.php:346 adminpages/orders.php:418
|
3940 |
#: adminpages/orders.php:447 adminpages/orders.php:470
|
3941 |
#: adminpages/orders.php:501 adminpages/orders.php:512
|
@@ -3946,26 +3952,25 @@ msgstr ""
|
|
3946 |
msgid "Sub Total"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: adminpages/orders.php:
|
3950 |
-
#: adminpages/
|
3951 |
-
#:
|
3952 |
-
#: adminpages/orders.php:
|
3953 |
-
#: adminpages/orders.php:
|
3954 |
-
#: adminpages/orders.php:
|
3955 |
-
#: adminpages/orders.php:
|
3956 |
-
#: adminpages/orders.php:
|
3957 |
-
#: adminpages/orders.php:608 adminpages/orders.php:610
|
3958 |
-
#: adminpages/templates/orders-email.php:60
|
3959 |
#: adminpages/templates/orders-print.php:89 includes/privacy.php:277
|
3960 |
#: pages/confirmation.php:91 pages/confirmation.php:92
|
3961 |
-
#: pages/confirmation.php:94 pages/confirmation.php:95
|
3962 |
-
#: pages/
|
3963 |
-
#: pages/invoice.php:
|
3964 |
-
#: pages/invoice.php:85
|
|
|
3965 |
msgid "Tax"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
-
#: adminpages/orders.php:
|
3969 |
#: adminpages/orders.php:362 adminpages/orders.php:434
|
3970 |
#: adminpages/orders.php:463 adminpages/orders.php:492
|
3971 |
#: adminpages/orders.php:523 adminpages/orders.php:534
|
@@ -3975,7 +3980,7 @@ msgstr ""
|
|
3975 |
msgid "Coupon Amount"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: adminpages/orders.php:
|
3979 |
#: adminpages/orders.php:380 adminpages/orders.php:452
|
3980 |
#: adminpages/orders.php:481 adminpages/orders.php:518
|
3981 |
#: adminpages/orders.php:549 adminpages/orders.php:560
|
@@ -3986,7 +3991,7 @@ msgstr ""
|
|
3986 |
msgid "Payment Type"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
-
#: adminpages/orders.php:
|
3990 |
#: adminpages/orders.php:385 adminpages/orders.php:457
|
3991 |
#: adminpages/orders.php:486 adminpages/orders.php:528
|
3992 |
#: adminpages/orders.php:559 adminpages/orders.php:570
|
@@ -3997,10 +4002,10 @@ msgstr ""
|
|
3997 |
msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
3998 |
msgstr ""
|
3999 |
|
4000 |
-
#: adminpages/orders.php:
|
4001 |
#: classes/gateways/class.pmprogateway_braintree.php:466
|
4002 |
#: classes/gateways/class.pmprogateway_stripe.php:1069 includes/privacy.php:293
|
4003 |
-
#: pages/billing.php:321 pages/checkout.php:
|
4004 |
#: adminpages/orders.php:389 adminpages/orders.php:461
|
4005 |
#: adminpages/orders.php:490 adminpages/orders.php:532
|
4006 |
#: adminpages/orders.php:563 adminpages/orders.php:574
|
@@ -4054,15 +4059,15 @@ msgstr ""
|
|
4054 |
#: pages/billing.php:268 pages/billing.php:271 pages/billing.php:274
|
4055 |
#: pages/billing.php:275 pages/billing.php:279 pages/billing.php:280
|
4056 |
#: pages/billing.php:288 pages/billing.php:294 pages/billing.php:297
|
4057 |
-
#: pages/billing.php:321 pages/checkout.php:
|
4058 |
-
#: pages/checkout.php:
|
4059 |
-
#: pages/checkout.php:
|
4060 |
-
#: pages/checkout.php:
|
4061 |
-
#: pages/checkout.php:534 pages/checkout.php:537
|
4062 |
msgid "Card Type"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
-
#: adminpages/orders.php:
|
4066 |
#: adminpages/orders.php:394 adminpages/orders.php:466
|
4067 |
#: adminpages/orders.php:495 adminpages/orders.php:540
|
4068 |
#: adminpages/orders.php:571 adminpages/orders.php:582
|
@@ -4073,7 +4078,7 @@ msgstr ""
|
|
4073 |
msgid "e.g. Visa, MasterCard, AMEX, etc"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: adminpages/orders.php:
|
4077 |
#: classes/gateways/class.pmprogateway_twocheckout.php:138
|
4078 |
#: includes/privacy.php:297 adminpages/orders.php:348 adminpages/orders.php:398
|
4079 |
#: adminpages/orders.php:470 adminpages/orders.php:499
|
@@ -4091,7 +4096,7 @@ msgstr ""
|
|
4091 |
msgid "Account Number"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: adminpages/orders.php:
|
4095 |
#: adminpages/orders.php:403 adminpages/orders.php:475
|
4096 |
#: adminpages/orders.php:504 adminpages/orders.php:553
|
4097 |
#: adminpages/orders.php:584 adminpages/orders.php:595
|
@@ -4102,7 +4107,7 @@ msgstr ""
|
|
4102 |
msgid "Obscure all but last 4 digits."
|
4103 |
msgstr ""
|
4104 |
|
4105 |
-
#: adminpages/orders.php:
|
4106 |
#: adminpages/orders.php:358 adminpages/orders.php:408
|
4107 |
#: adminpages/orders.php:480 adminpages/orders.php:509
|
4108 |
#: adminpages/orders.php:561 adminpages/orders.php:592
|
@@ -4114,7 +4119,7 @@ msgstr ""
|
|
4114 |
msgid "Expiration Month"
|
4115 |
msgstr ""
|
4116 |
|
4117 |
-
#: adminpages/orders.php:
|
4118 |
#: adminpages/orders.php:415 adminpages/orders.php:487
|
4119 |
#: adminpages/orders.php:516 adminpages/orders.php:569
|
4120 |
#: adminpages/orders.php:600 adminpages/orders.php:611
|
@@ -4125,8 +4130,8 @@ msgstr ""
|
|
4125 |
msgid "Expiration Year"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: adminpages/orders.php:
|
4129 |
-
#: classes/class.memberorder.php:
|
4130 |
#: adminpages/orders.php:394 adminpages/orders.php:444
|
4131 |
#: adminpages/orders.php:516 adminpages/orders.php:545
|
4132 |
#: adminpages/orders.php:604 adminpages/orders.php:612
|
@@ -4146,11 +4151,11 @@ msgstr ""
|
|
4146 |
#: classes/class.memberorder.php:815 classes/class.memberorder.php:860
|
4147 |
#: classes/class.memberorder.php:861 classes/class.memberorder.php:873
|
4148 |
#: classes/class.memberorder.php:946 classes/class.memberorder.php:948
|
4149 |
-
#: includes/privacy.php:313
|
4150 |
msgid "Gateway"
|
4151 |
msgstr ""
|
4152 |
|
4153 |
-
#: adminpages/orders.php:
|
4154 |
#: includes/privacy.php:317 adminpages/orders.php:411 adminpages/orders.php:461
|
4155 |
#: adminpages/orders.php:462 adminpages/orders.php:534
|
4156 |
#: adminpages/orders.php:563 adminpages/orders.php:633
|
@@ -4167,7 +4172,7 @@ msgstr ""
|
|
4167 |
msgid "Gateway Environment"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: adminpages/orders.php:
|
4171 |
#: adminpages/orders.php:415 adminpages/orders.php:465
|
4172 |
#: adminpages/orders.php:466 adminpages/orders.php:538
|
4173 |
#: adminpages/orders.php:567 adminpages/orders.php:640
|
@@ -4183,7 +4188,7 @@ msgstr ""
|
|
4183 |
msgid "Sandbox/Testing"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: adminpages/orders.php:
|
4187 |
#: adminpages/orders.php:416 adminpages/orders.php:466
|
4188 |
#: adminpages/orders.php:467 adminpages/orders.php:539
|
4189 |
#: adminpages/orders.php:568 adminpages/orders.php:642
|
@@ -4199,7 +4204,7 @@ msgstr ""
|
|
4199 |
msgid "Live/Production"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
-
#: adminpages/orders.php:
|
4203 |
#: adminpages/orders.php:473 adminpages/orders.php:474
|
4204 |
#: adminpages/orders.php:546 adminpages/orders.php:575
|
4205 |
#: adminpages/orders.php:650 adminpages/orders.php:681
|
@@ -4211,7 +4216,7 @@ msgstr ""
|
|
4211 |
msgid "Payment Transaction ID"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
-
#: adminpages/orders.php:
|
4215 |
#: adminpages/orders.php:478 adminpages/orders.php:479
|
4216 |
#: adminpages/orders.php:551 adminpages/orders.php:580
|
4217 |
#: adminpages/orders.php:659 adminpages/orders.php:690
|
@@ -4222,7 +4227,7 @@ msgstr ""
|
|
4222 |
msgid "Generated by the gateway. Useful to cross reference orders."
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
#: adminpages/orders.php:
|
4226 |
#: includes/privacy.php:325 adminpages/orders.php:432 adminpages/orders.php:482
|
4227 |
#: adminpages/orders.php:483 adminpages/orders.php:555
|
4228 |
#: adminpages/orders.php:584 adminpages/orders.php:664
|
@@ -4235,11 +4240,11 @@ msgstr ""
|
|
4235 |
#: classes/class.memberorder.php:816 classes/class.memberorder.php:861
|
4236 |
#: classes/class.memberorder.php:862 classes/class.memberorder.php:874
|
4237 |
#: classes/class.memberorder.php:947 classes/class.memberorder.php:949
|
4238 |
-
#: includes/privacy.php:325
|
4239 |
msgid "Subscription Transaction ID"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
-
#: adminpages/orders.php:
|
4243 |
#: adminpages/orders.php:487 adminpages/orders.php:488
|
4244 |
#: adminpages/orders.php:560 adminpages/orders.php:589
|
4245 |
#: adminpages/orders.php:674 adminpages/orders.php:705
|
@@ -4250,11 +4255,11 @@ msgstr ""
|
|
4250 |
msgid "Generated by the gateway. Useful to cross reference subscriptions."
|
4251 |
msgstr ""
|
4252 |
|
4253 |
-
#: adminpages/orders.php:
|
4254 |
msgid "at"
|
4255 |
msgstr ""
|
4256 |
|
4257 |
-
#: adminpages/orders.php:
|
4258 |
#: adminpages/orders.php:527 adminpages/orders.php:599
|
4259 |
#: adminpages/orders.php:628 adminpages/orders.php:716
|
4260 |
#: adminpages/orders.php:747 adminpages/orders.php:758
|
@@ -4265,7 +4270,7 @@ msgstr ""
|
|
4265 |
msgid "Affiliate ID"
|
4266 |
msgstr ""
|
4267 |
|
4268 |
-
#: adminpages/orders.php:
|
4269 |
#: adminpages/orders.php:535 adminpages/orders.php:607
|
4270 |
#: adminpages/orders.php:636 adminpages/orders.php:728
|
4271 |
#: adminpages/orders.php:759 adminpages/orders.php:770
|
@@ -4276,14 +4281,14 @@ msgstr ""
|
|
4276 |
msgid "Affiliate SubID"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
-
#: adminpages/orders.php:
|
4280 |
#: adminpages/orders.php:884 adminpages/orders.php:888
|
4281 |
#: adminpages/orders.php:893 adminpages/orders.php:894
|
4282 |
#: adminpages/orders.php:903 adminpages/orders.php:907
|
4283 |
msgid "TOS Consent"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
-
#: adminpages/orders.php:
|
4287 |
#: adminpages/orders.php:545 adminpages/orders.php:617
|
4288 |
#: adminpages/orders.php:646 adminpages/orders.php:742
|
4289 |
#: adminpages/orders.php:773 adminpages/orders.php:784
|
@@ -4294,7 +4299,7 @@ msgstr ""
|
|
4294 |
msgid "Notes"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
-
#: adminpages/orders.php:
|
4298 |
#: adminpages/orders.php:560 adminpages/orders.php:632
|
4299 |
#: adminpages/orders.php:661 adminpages/orders.php:764
|
4300 |
#: adminpages/orders.php:795 adminpages/orders.php:806
|
@@ -4305,7 +4310,7 @@ msgstr ""
|
|
4305 |
msgid "Save Order"
|
4306 |
msgstr ""
|
4307 |
|
4308 |
-
#: adminpages/orders.php:
|
4309 |
#: adminpages/orders.php:571 adminpages/orders.php:678
|
4310 |
#: adminpages/orders.php:707 adminpages/orders.php:812
|
4311 |
#: adminpages/orders.php:843 adminpages/orders.php:854
|
@@ -4315,8 +4320,8 @@ msgstr ""
|
|
4315 |
msgid "Add New Order"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: adminpages/orders.php:
|
4319 |
-
#: adminpages/reports/memberships.php:
|
4320 |
#: classes/class-pmpro-members-list-table.php:623 adminpages/memberslist.php:30
|
4321 |
#: adminpages/orders.php:603 adminpages/orders.php:710
|
4322 |
#: adminpages/orders.php:739 adminpages/orders.php:848
|
@@ -4345,7 +4350,7 @@ msgstr ""
|
|
4345 |
msgid "Show"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
-
#: adminpages/orders.php:
|
4349 |
#: adminpages/orders.php:713 adminpages/orders.php:742
|
4350 |
#: adminpages/orders.php:852 adminpages/orders.php:883
|
4351 |
#: adminpages/orders.php:894 adminpages/orders.php:985
|
@@ -4355,7 +4360,7 @@ msgstr ""
|
|
4355 |
msgid "Within a Date Range"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
-
#: adminpages/orders.php:
|
4359 |
#: adminpages/orders.php:714 adminpages/orders.php:743
|
4360 |
#: adminpages/orders.php:854 adminpages/orders.php:885
|
4361 |
#: adminpages/orders.php:896 adminpages/orders.php:987
|
@@ -4365,7 +4370,7 @@ msgstr ""
|
|
4365 |
msgid "Predefined Date Range"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
-
#: adminpages/orders.php:
|
4369 |
#: adminpages/orders.php:715 adminpages/orders.php:744
|
4370 |
#: adminpages/orders.php:856 adminpages/orders.php:887
|
4371 |
#: adminpages/orders.php:898 adminpages/orders.php:989
|
@@ -4375,13 +4380,13 @@ msgstr ""
|
|
4375 |
msgid "Within a Level"
|
4376 |
msgstr ""
|
4377 |
|
4378 |
-
#: adminpages/orders.php:
|
4379 |
#: adminpages/orders.php:997 adminpages/orders.php:1002
|
4380 |
#: adminpages/orders.php:1012 adminpages/orders.php:1047
|
4381 |
msgid "With a Discount Code"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
-
#: adminpages/orders.php:
|
4385 |
#: adminpages/orders.php:716 adminpages/orders.php:745
|
4386 |
#: adminpages/orders.php:858 adminpages/orders.php:889
|
4387 |
#: adminpages/orders.php:900 adminpages/orders.php:991
|
@@ -4391,19 +4396,19 @@ msgstr ""
|
|
4391 |
msgid "Within a Status"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
-
#: adminpages/orders.php:
|
4395 |
#: adminpages/orders.php:1001 adminpages/orders.php:1006
|
4396 |
#: adminpages/orders.php:1016 adminpages/orders.php:1051
|
4397 |
msgid "Only Paid Orders"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: adminpages/orders.php:
|
4401 |
#: adminpages/orders.php:1003 adminpages/orders.php:1008
|
4402 |
#: adminpages/orders.php:1018 adminpages/orders.php:1053
|
4403 |
msgid "Only Free Orders"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: adminpages/orders.php:
|
4407 |
#: adminpages/orders.php:719 adminpages/orders.php:748
|
4408 |
#: adminpages/orders.php:861 adminpages/orders.php:892
|
4409 |
#: adminpages/orders.php:903 adminpages/orders.php:994
|
@@ -4413,7 +4418,7 @@ msgstr ""
|
|
4413 |
msgid "From"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
-
#: adminpages/orders.php:
|
4417 |
#: adminpages/orders.php:731 adminpages/orders.php:760
|
4418 |
#: adminpages/orders.php:876 adminpages/orders.php:907
|
4419 |
#: adminpages/orders.php:918 adminpages/orders.php:1009
|
@@ -4423,7 +4428,7 @@ msgstr ""
|
|
4423 |
msgid "To"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
-
#: adminpages/orders.php:
|
4427 |
#: adminpages/orders.php:743 adminpages/orders.php:772
|
4428 |
#: adminpages/orders.php:889 adminpages/orders.php:920
|
4429 |
#: adminpages/orders.php:931 adminpages/orders.php:1022
|
@@ -4433,8 +4438,8 @@ msgstr ""
|
|
4433 |
msgid "filter by "
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: adminpages/orders.php:
|
4437 |
-
#: adminpages/reports/memberships.php:
|
4438 |
#: adminpages/orders.php:1059 adminpages/reports/login.php:44
|
4439 |
#: adminpages/reports/login.php:50 adminpages/reports/memberships.php:47
|
4440 |
#: adminpages/reports/memberships.php:48 adminpages/reports/memberships.php:58
|
@@ -4445,11 +4450,11 @@ msgstr ""
|
|
4445 |
msgid "This Month"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
-
#: adminpages/orders.php:
|
4449 |
msgid "Last Month"
|
4450 |
msgstr ""
|
4451 |
|
4452 |
-
#: adminpages/orders.php:
|
4453 |
#: adminpages/reports/sales.php:52 adminpages/orders.php:1063
|
4454 |
#: adminpages/reports/memberships.php:48 adminpages/reports/memberships.php:53
|
4455 |
#: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:69
|
@@ -4459,11 +4464,11 @@ msgstr ""
|
|
4459 |
msgid "This Year"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: adminpages/orders.php:
|
4463 |
msgid "Last Year"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
-
#: adminpages/orders.php:
|
4467 |
#: adminpages/orders.php:780 adminpages/orders.php:809
|
4468 |
#: adminpages/orders.php:932 adminpages/orders.php:963
|
4469 |
#: adminpages/orders.php:969 adminpages/orders.php:1060
|
@@ -4473,7 +4478,7 @@ msgstr ""
|
|
4473 |
msgid "Filter"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: adminpages/orders.php:
|
4477 |
#: adminpages/orders.php:535 adminpages/orders.php:538
|
4478 |
#: adminpages/orders.php:777 adminpages/orders.php:780
|
4479 |
#: adminpages/orders.php:883 adminpages/orders.php:886
|
@@ -4491,7 +4496,7 @@ msgstr ""
|
|
4491 |
msgid "Search Orders"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: adminpages/orders.php:
|
4495 |
#: adminpages/orders.php:893 adminpages/orders.php:903
|
4496 |
#: adminpages/orders.php:930 adminpages/orders.php:959
|
4497 |
#: adminpages/orders.php:1096 adminpages/orders.php:1127
|
@@ -4503,7 +4508,7 @@ msgstr ""
|
|
4503 |
msgid "%d orders found."
|
4504 |
msgstr ""
|
4505 |
|
4506 |
-
#: adminpages/orders.php:
|
4507 |
#: adminpages/orders.php:603 adminpages/orders.php:651
|
4508 |
#: adminpages/orders.php:906 adminpages/orders.php:916
|
4509 |
#: adminpages/orders.php:943 adminpages/orders.php:954
|
@@ -4522,7 +4527,7 @@ msgstr ""
|
|
4522 |
msgid "Payment"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
-
#: adminpages/orders.php:
|
4526 |
#: adminpages/orders.php:908 adminpages/orders.php:918
|
4527 |
#: adminpages/orders.php:945 adminpages/orders.php:974
|
4528 |
#: adminpages/orders.php:1111 adminpages/orders.php:1142
|
@@ -4533,7 +4538,7 @@ msgstr ""
|
|
4533 |
msgid "Transaction IDs"
|
4534 |
msgstr ""
|
4535 |
|
4536 |
-
#: adminpages/orders.php:
|
4537 |
#: adminpages/orders.php:967 adminpages/orders.php:985
|
4538 |
#: adminpages/orders.php:995 adminpages/orders.php:998
|
4539 |
#: adminpages/orders.php:1027 adminpages/orders.php:1056
|
@@ -4550,7 +4555,7 @@ msgid ""
|
|
4550 |
"want to delete order %s?"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
-
#: adminpages/orders.php:
|
4554 |
#: adminpages/orders.php:956 adminpages/orders.php:974
|
4555 |
#: adminpages/orders.php:984 adminpages/orders.php:1013
|
4556 |
#: adminpages/orders.php:1042 adminpages/orders.php:1192
|
@@ -4562,7 +4567,7 @@ msgstr ""
|
|
4562 |
msgid "Subscription"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
-
#: adminpages/orders.php:
|
4566 |
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
4567 |
#: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
|
4568 |
#: adminpages/discountcodes.php:650 adminpages/discountcodes.php:655
|
@@ -4634,10 +4639,10 @@ msgstr ""
|
|
4634 |
msgid "Membership Invoice"
|
4635 |
msgstr ""
|
4636 |
|
|
|
|
|
4637 |
#: adminpages/pagesettings.php:99 includes/login.php:707 includes/menus.php:66
|
4638 |
-
#: includes/menus.php:70 includes/menus.php:160
|
4639 |
-
#: includes/login.php:707 includes/menus.php:66 includes/menus.php:70
|
4640 |
-
#: includes/menus.php:160
|
4641 |
msgid "Log In"
|
4642 |
msgstr ""
|
4643 |
|
@@ -5288,7 +5293,7 @@ msgstr ""
|
|
5288 |
msgid "Logins"
|
5289 |
msgstr ""
|
5290 |
|
5291 |
-
#: adminpages/reports/login.php:38 adminpages/reports/memberships.php:
|
5292 |
#: adminpages/reports/sales.php:50 adminpages/reports/login.php:38
|
5293 |
#: adminpages/reports/memberships.php:43 adminpages/reports/memberships.php:46
|
5294 |
#: adminpages/reports/memberships.php:62 adminpages/reports/memberships.php:67
|
@@ -5306,7 +5311,7 @@ msgstr ""
|
|
5306 |
msgid "Year to Date"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
-
#: adminpages/reports/login.php:62 adminpages/reports/memberships.php:
|
5310 |
#: adminpages/reports/sales.php:53 adminpages/reports/login.php:50
|
5311 |
#: adminpages/reports/login.php:62 adminpages/reports/memberships.php:49
|
5312 |
#: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:58
|
@@ -5317,7 +5322,7 @@ msgstr ""
|
|
5317 |
msgid "All Time"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: adminpages/reports/login.php:71 adminpages/reports/memberships.php:
|
5321 |
#: adminpages/reports/sales.php:99 adminpages/reports.php:26
|
5322 |
#: adminpages/reports.php:37 adminpages/reports.php:40
|
5323 |
#: adminpages/reports.php:41 adminpages/reports/login.php:71
|
@@ -5343,8 +5348,8 @@ msgstr ""
|
|
5343 |
msgid "All Users"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
-
#: adminpages/reports/login.php:105 adminpages/reports/memberships.php:
|
5347 |
-
#: adminpages/reports/sales.php:
|
5348 |
#: classes/class-pmpro-members-list-table.php:625
|
5349 |
#: classes/class.pmproemail.php:182 classes/class.pmproemail.php:227
|
5350 |
#: adminpages/memberslist.php:32 adminpages/reports/login.php:67
|
@@ -5373,79 +5378,79 @@ msgstr ""
|
|
5373 |
msgid "All Levels"
|
5374 |
msgstr ""
|
5375 |
|
5376 |
-
#: adminpages/reports/login.php:
|
5377 |
#: adminpages/reports/login.php:148 adminpages/reports/login.php:164
|
5378 |
#: adminpages/reports/login.php:168 adminpages/reports/login.php:184
|
5379 |
msgid "Last Visit"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: adminpages/reports/login.php:
|
5383 |
msgid "Visits This Week"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#: adminpages/reports/login.php:
|
5387 |
#: adminpages/reports/login.php:28 adminpages/reports/login.php:147
|
5388 |
#: adminpages/reports/login.php:149 adminpages/reports/login.php:165
|
5389 |
#: adminpages/reports/login.php:169 adminpages/reports/login.php:186
|
5390 |
msgid "Visits This Month"
|
5391 |
msgstr ""
|
5392 |
|
5393 |
-
#: adminpages/reports/login.php:
|
5394 |
msgid "Visits This Year"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
-
#: adminpages/reports/login.php:
|
5398 |
#: adminpages/reports/login.php:29 adminpages/reports/login.php:188
|
5399 |
msgid "Visits All Time"
|
5400 |
msgstr ""
|
5401 |
|
5402 |
-
#: adminpages/reports/login.php:
|
5403 |
msgid "Views This Week"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
-
#: adminpages/reports/login.php:
|
5407 |
#: adminpages/reports/login.php:33 adminpages/reports/login.php:149
|
5408 |
#: adminpages/reports/login.php:151 adminpages/reports/login.php:167
|
5409 |
#: adminpages/reports/login.php:171 adminpages/reports/login.php:190
|
5410 |
msgid "Views This Month"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
-
#: adminpages/reports/login.php:
|
5414 |
msgid "Views This Year"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#: adminpages/reports/login.php:
|
5418 |
#: adminpages/reports/login.php:34 adminpages/reports/login.php:192
|
5419 |
msgid "Views All Time"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
#: adminpages/reports/login.php:
|
5423 |
#: adminpages/reports/login.php:153 adminpages/reports/login.php:169
|
5424 |
#: adminpages/reports/login.php:173 adminpages/reports/login.php:193
|
5425 |
msgid "Last Login"
|
5426 |
msgstr ""
|
5427 |
|
5428 |
-
#: adminpages/reports/login.php:
|
5429 |
msgid "Logins This Week"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
-
#: adminpages/reports/login.php:
|
5433 |
#: adminpages/reports/login.php:38 adminpages/reports/login.php:152
|
5434 |
#: adminpages/reports/login.php:154 adminpages/reports/login.php:170
|
5435 |
#: adminpages/reports/login.php:174 adminpages/reports/login.php:195
|
5436 |
msgid "Logins This Month"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
-
#: adminpages/reports/login.php:
|
5440 |
msgid "Logins This Year"
|
5441 |
msgstr ""
|
5442 |
|
5443 |
-
#: adminpages/reports/login.php:
|
5444 |
#: adminpages/reports/login.php:39 adminpages/reports/login.php:197
|
5445 |
msgid "Logins All Time"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: adminpages/reports/login.php:
|
5449 |
#: classes/class-pmpro-members-list-table.php:228
|
5450 |
#: adminpages/memberslist.php:195 adminpages/memberslist.php:223
|
5451 |
#: adminpages/memberslist.php:251 adminpages/memberslist.php:261
|
@@ -5460,19 +5465,19 @@ msgstr ""
|
|
5460 |
msgid "Search all levels"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#: adminpages/reports/memberships.php:
|
5464 |
#: adminpages/reports/memberships.php:40 adminpages/reports/memberships.php:48
|
5465 |
#: adminpages/reports/memberships.php:61 adminpages/reports/memberships.php:62
|
5466 |
msgid "Signups"
|
5467 |
msgstr ""
|
5468 |
|
5469 |
-
#: adminpages/reports/memberships.php:
|
5470 |
#: adminpages/reports/memberships.php:41 adminpages/reports/memberships.php:62
|
5471 |
#: adminpages/reports/memberships.php:63
|
5472 |
msgid "All Cancellations"
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
#: adminpages/reports/memberships.php:
|
5476 |
#: adminpages/reports/memberships.php:260
|
5477 |
#: adminpages/reports/memberships.php:267
|
5478 |
#: adminpages/reports/memberships.php:280
|
@@ -5486,7 +5491,7 @@ msgstr ""
|
|
5486 |
msgid "Annual"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
-
#: adminpages/reports/memberships.php:
|
5490 |
#: adminpages/reports/memberships.php:270
|
5491 |
#: adminpages/reports/memberships.php:283
|
5492 |
#: adminpages/reports/memberships.php:311
|
@@ -5495,7 +5500,7 @@ msgstr ""
|
|
5495 |
msgid "Signups vs. All Cancellations"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: adminpages/reports/memberships.php:
|
5499 |
#: adminpages/reports/memberships.php:263
|
5500 |
#: adminpages/reports/memberships.php:271
|
5501 |
#: adminpages/reports/memberships.php:284
|
@@ -5506,7 +5511,7 @@ msgstr ""
|
|
5506 |
msgid "Signups vs. Cancellations"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
-
#: adminpages/reports/memberships.php:
|
5510 |
#: adminpages/reports/memberships.php:272
|
5511 |
#: adminpages/reports/memberships.php:285
|
5512 |
#: adminpages/reports/memberships.php:313
|
@@ -5515,9 +5520,9 @@ msgstr ""
|
|
5515 |
msgid "Signups vs. Expirations"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: adminpages/reports/memberships.php:
|
5519 |
-
#: adminpages/reports/memberships.php:
|
5520 |
-
#: adminpages/reports/sales.php:
|
5521 |
#: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
|
5522 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
|
5523 |
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
|
@@ -5545,22 +5550,22 @@ msgstr ""
|
|
5545 |
msgid "for"
|
5546 |
msgstr ""
|
5547 |
|
5548 |
-
#: adminpages/reports/memberships.php:
|
5549 |
#: adminpages/reports/memberships.php:374
|
5550 |
msgid "All Paid Levels"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
-
#: adminpages/reports/memberships.php:
|
5554 |
#: adminpages/reports/memberships.php:375
|
5555 |
msgid "All Free Levels"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
-
#: adminpages/reports/memberships.php:
|
5559 |
#: adminpages/reports/memberships.php:394 adminpages/reports/sales.php:328
|
5560 |
msgid "All Codes"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: adminpages/reports/memberships.php:
|
5564 |
#: adminpages/reports/memberships.php:295
|
5565 |
#: adminpages/reports/memberships.php:304
|
5566 |
#: adminpages/reports/memberships.php:317
|
@@ -5578,7 +5583,7 @@ msgstr ""
|
|
5578 |
msgid "Sales and Revenue (Testing/Sandbox)"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#: adminpages/reports/sales.php:44 adminpages/reports/sales.php:
|
5582 |
#: adminpages/reports/sales.php:44 adminpages/reports/sales.php:45
|
5583 |
#: adminpages/reports/sales.php:46 adminpages/reports/sales.php:193
|
5584 |
#: adminpages/reports/sales.php:201 adminpages/reports/sales.php:202
|
@@ -5587,7 +5592,7 @@ msgstr ""
|
|
5587 |
msgid "Sales"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: adminpages/reports/sales.php:45 adminpages/reports/sales.php:
|
5591 |
#: adminpages/reports/sales.php:45 adminpages/reports/sales.php:46
|
5592 |
#: adminpages/reports/sales.php:47 adminpages/reports/sales.php:192
|
5593 |
#: adminpages/reports/sales.php:200 adminpages/reports/sales.php:201
|
@@ -5596,12 +5601,12 @@ msgstr ""
|
|
5596 |
msgid "Revenue"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#: adminpages/reports/sales.php:
|
5600 |
msgid ""
|
5601 |
"Average line calculated using data prior to current day, month, or year."
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: adminpages/reports/sales.php:
|
5605 |
#: adminpages/reports/sales.php:382
|
5606 |
msgid "Average*"
|
5607 |
msgstr ""
|
@@ -5633,24 +5638,13 @@ msgid "Item"
|
|
5633 |
msgstr ""
|
5634 |
|
5635 |
#: adminpages/templates/orders-email.php:48
|
5636 |
-
#: adminpages/templates/orders-print.php:77 pages/levels.php:
|
5637 |
#: adminpages/templates/orders-email.php:48
|
5638 |
#: adminpages/templates/orders-print.php:77 pages/levels.php:14
|
5639 |
#: pages/levels.php:36
|
5640 |
msgid "Price"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#: adminpages/templates/orders-email.php:56
|
5644 |
-
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:98
|
5645 |
-
#: pages/invoice.php:88 adminpages/templates/orders-email.php:56
|
5646 |
-
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:90
|
5647 |
-
#: pages/confirmation.php:91 pages/confirmation.php:93
|
5648 |
-
#: pages/confirmation.php:94 pages/invoice.php:72 pages/invoice.php:73
|
5649 |
-
#: pages/invoice.php:74 pages/invoice.php:75 pages/invoice.php:77
|
5650 |
-
#: pages/invoice.php:79 pages/invoice.php:83 pages/invoice.php:84
|
5651 |
-
msgid "Subtotal"
|
5652 |
-
msgstr ""
|
5653 |
-
|
5654 |
#: adminpages/updates.php:14 adminpages/updates.php:11
|
5655 |
#: adminpages/updates.php:14
|
5656 |
msgid "Updating Paid Memberships Pro"
|
@@ -5946,7 +5940,7 @@ msgstr ""
|
|
5946 |
msgid "—"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
-
#: classes/class.memberorder.php:
|
5950 |
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
5951 |
#: classes/class.memberorder.php:573 classes/class.memberorder.php:644
|
5952 |
#: classes/class.memberorder.php:697 classes/class.memberorder.php:699
|
@@ -5956,7 +5950,8 @@ msgstr ""
|
|
5956 |
#: classes/class.memberorder.php:743 classes/class.memberorder.php:760
|
5957 |
#: classes/class.memberorder.php:811 classes/class.memberorder.php:856
|
5958 |
#: classes/class.memberorder.php:868 classes/class.memberorder.php:941
|
5959 |
-
#: classes/class.memberorder.php:943
|
|
|
5960 |
#, php-format
|
5961 |
msgid ""
|
5962 |
"There was an error canceling the subscription for user with ID=%s. You will "
|
@@ -5964,31 +5959,32 @@ msgid ""
|
|
5964 |
"active."
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: classes/class.memberorder.php:
|
5968 |
#: classes/class.memberorder.php:744 classes/class.memberorder.php:761
|
5969 |
#: classes/class.memberorder.php:812 classes/class.memberorder.php:857
|
5970 |
#: classes/class.memberorder.php:869 classes/class.memberorder.php:942
|
5971 |
-
#: classes/class.memberorder.php:944
|
5972 |
msgid "User Email"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: classes/class.memberorder.php:
|
5976 |
#: classes/class.memberorder.php:745 classes/class.memberorder.php:762
|
5977 |
#: classes/class.memberorder.php:813 classes/class.memberorder.php:858
|
5978 |
#: classes/class.memberorder.php:859 classes/class.memberorder.php:871
|
5979 |
#: classes/class.memberorder.php:944 classes/class.memberorder.php:946
|
|
|
5980 |
msgid "User Display Name"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: classes/class.memberorder.php:
|
5984 |
#: classes/class.memberorder.php:876 classes/class.memberorder.php:949
|
5985 |
-
#: classes/class.memberorder.php:951
|
5986 |
msgid "Edit User"
|
5987 |
msgstr ""
|
5988 |
|
5989 |
-
#: classes/class.memberorder.php:
|
5990 |
#: classes/class.memberorder.php:877 classes/class.memberorder.php:950
|
5991 |
-
#: classes/class.memberorder.php:952
|
5992 |
msgid "Edit Order"
|
5993 |
msgstr ""
|
5994 |
|
@@ -6025,7 +6021,7 @@ msgid "Your membership confirmation for %s"
|
|
6025 |
msgstr ""
|
6026 |
|
6027 |
#: classes/class.pmproemail.php:338 classes/class.pmproemail.php:434
|
6028 |
-
#: classes/class.pmproemail.php:
|
6029 |
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
6030 |
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
|
6031 |
#: classes/class.pmproemail.php:285 classes/class.pmproemail.php:294
|
@@ -6073,7 +6069,7 @@ msgstr ""
|
|
6073 |
msgid "Billing information has been updated for %s at %s"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
-
#: classes/class.pmproemail.php:
|
6077 |
#: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
|
6078 |
#: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
|
6079 |
#: classes/class.pmproemail.php:496 classes/class.pmproemail.php:510
|
@@ -6083,7 +6079,7 @@ msgstr ""
|
|
6083 |
msgid "Membership Payment Failed at %s"
|
6084 |
msgstr ""
|
6085 |
|
6086 |
-
#: classes/class.pmproemail.php:
|
6087 |
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
|
6088 |
#: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
|
6089 |
#: classes/class.pmproemail.php:542 classes/class.pmproemail.php:557
|
@@ -6093,7 +6089,7 @@ msgstr ""
|
|
6093 |
msgid "Membership Payment Failed For %s at %s"
|
6094 |
msgstr ""
|
6095 |
|
6096 |
-
#: classes/class.pmproemail.php:
|
6097 |
#: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
|
6098 |
#: classes/class.pmproemail.php:569 classes/class.pmproemail.php:589
|
6099 |
#: classes/class.pmproemail.php:605 classes/class.pmproemail.php:612
|
@@ -6103,7 +6099,7 @@ msgstr ""
|
|
6103 |
msgid "Credit Card on File Expiring Soon at %s"
|
6104 |
msgstr ""
|
6105 |
|
6106 |
-
#: classes/class.pmproemail.php:
|
6107 |
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
6108 |
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
|
6109 |
#: classes/class.pmproemail.php:619 classes/class.pmproemail.php:639
|
@@ -6114,7 +6110,7 @@ msgstr ""
|
|
6114 |
msgid "INVOICE for %s membership"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: classes/class.pmproemail.php:
|
6118 |
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
6119 |
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
|
6120 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:710
|
@@ -6125,7 +6121,7 @@ msgstr ""
|
|
6125 |
msgid "Your trial at %s is ending soon"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
#: classes/class.pmproemail.php:
|
6129 |
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
6130 |
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
|
6131 |
#: classes/class.pmproemail.php:724 classes/class.pmproemail.php:744
|
@@ -6136,7 +6132,7 @@ msgstr ""
|
|
6136 |
msgid "Your membership at %s has ended"
|
6137 |
msgstr ""
|
6138 |
|
6139 |
-
#: classes/class.pmproemail.php:
|
6140 |
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
6141 |
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
|
6142 |
#: classes/class.pmproemail.php:749 classes/class.pmproemail.php:769
|
@@ -6147,7 +6143,7 @@ msgstr ""
|
|
6147 |
msgid "Your membership at %s will end soon"
|
6148 |
msgstr ""
|
6149 |
|
6150 |
-
#: classes/class.pmproemail.php:
|
6151 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
6152 |
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
|
6153 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:789
|
@@ -6158,7 +6154,7 @@ msgstr ""
|
|
6158 |
msgid "Your membership at %s has been changed"
|
6159 |
msgstr ""
|
6160 |
|
6161 |
-
#: classes/class.pmproemail.php:
|
6162 |
#: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
|
6163 |
#: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
|
6164 |
#: classes/class.pmproemail.php:793 classes/class.pmproemail.php:800
|
@@ -6174,7 +6170,7 @@ msgstr ""
|
|
6174 |
msgid "The new level is %s"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
-
#: classes/class.pmproemail.php:
|
6178 |
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
6179 |
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
|
6180 |
#: classes/class.pmproemail.php:775 classes/class.pmproemail.php:795
|
@@ -6184,7 +6180,7 @@ msgstr ""
|
|
6184 |
msgid "Your membership has been cancelled"
|
6185 |
msgstr ""
|
6186 |
|
6187 |
-
#: classes/class.pmproemail.php:
|
6188 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
6189 |
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
6190 |
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
|
@@ -6203,7 +6199,7 @@ msgstr ""
|
|
6203 |
msgid "This membership will expire on %s"
|
6204 |
msgstr ""
|
6205 |
|
6206 |
-
#: classes/class.pmproemail.php:
|
6207 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
6208 |
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
6209 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
|
@@ -6221,7 +6217,7 @@ msgstr ""
|
|
6221 |
msgid "This membership does not expire"
|
6222 |
msgstr ""
|
6223 |
|
6224 |
-
#: classes/class.pmproemail.php:
|
6225 |
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
6226 |
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
|
6227 |
#: classes/class.pmproemail.php:806 classes/class.pmproemail.php:807
|
@@ -6233,7 +6229,7 @@ msgstr ""
|
|
6233 |
msgid "Membership for %s at %s has been changed"
|
6234 |
msgstr ""
|
6235 |
|
6236 |
-
#: classes/class.pmproemail.php:
|
6237 |
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
|
6238 |
#: classes/class.pmproemail.php:812 classes/class.pmproemail.php:813
|
6239 |
#: classes/class.pmproemail.php:832 classes/class.pmproemail.php:865
|
@@ -6243,7 +6239,7 @@ msgstr ""
|
|
6243 |
msgid "Membership has been cancelled"
|
6244 |
msgstr ""
|
6245 |
|
6246 |
-
#: classes/class.pmproemail.php:
|
6247 |
#: classes/class.pmproemail.php:849 classes/class.pmproemail.php:850
|
6248 |
#: classes/class.pmproemail.php:869 classes/class.pmproemail.php:904
|
6249 |
#: classes/class.pmproemail.php:911 classes/class.pmproemail.php:919
|
@@ -6252,19 +6248,19 @@ msgstr ""
|
|
6252 |
msgid "Invoice for Order #: "
|
6253 |
msgstr ""
|
6254 |
|
6255 |
-
#: classes/class.pmproemail.php:
|
6256 |
#: classes/class.pmproemail.php:1014
|
6257 |
#, php-format
|
6258 |
msgid "Payment action required for your %s membership"
|
6259 |
msgstr ""
|
6260 |
|
6261 |
-
#: classes/class.pmproemail.php:
|
6262 |
#: classes/class.pmproemail.php:1051
|
6263 |
#, php-format
|
6264 |
msgid "Payment action required: membership for %s at %s"
|
6265 |
msgstr ""
|
6266 |
|
6267 |
-
#: classes/class.pmproemail.php:
|
6268 |
#: classes/class.pmproemail.php:955 classes/class.pmproemail.php:963
|
6269 |
#: classes/class.pmproemail.php:971 classes/class.pmproemail.php:972
|
6270 |
#: classes/class.pmproemail.php:1076 classes/class.pmproemail.php:1087
|
@@ -6705,7 +6701,7 @@ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
|
6705 |
msgstr ""
|
6706 |
|
6707 |
#: classes/gateways/class.pmprogateway_braintree.php:454
|
6708 |
-
#: classes/gateways/class.pmprogateway_stripe.php:1048 pages/checkout.php:
|
6709 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
6710 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
6711 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -6746,17 +6742,17 @@ msgstr ""
|
|
6746 |
#: classes/gateways/class.pmprogateway_stripe.php:902
|
6747 |
#: classes/gateways/class.pmprogateway_stripe.php:972
|
6748 |
#: classes/gateways/class.pmprogateway_stripe.php:1037
|
6749 |
-
#: classes/gateways/class.pmprogateway_stripe.php:1048 pages/checkout.php:
|
6750 |
-
#: pages/checkout.php:
|
6751 |
-
#: pages/checkout.php:
|
6752 |
-
#: pages/checkout.php:
|
6753 |
-
#: pages/checkout.php:
|
6754 |
-
#: pages/checkout.php:513
|
6755 |
msgid "Payment Information"
|
6756 |
msgstr ""
|
6757 |
|
6758 |
#: classes/gateways/class.pmprogateway_braintree.php:455
|
6759 |
-
#: classes/gateways/class.pmprogateway_stripe.php:1049 pages/checkout.php:
|
6760 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
6761 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
6762 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -6797,19 +6793,19 @@ msgstr ""
|
|
6797 |
#: classes/gateways/class.pmprogateway_stripe.php:903
|
6798 |
#: classes/gateways/class.pmprogateway_stripe.php:973
|
6799 |
#: classes/gateways/class.pmprogateway_stripe.php:1038
|
6800 |
-
#: classes/gateways/class.pmprogateway_stripe.php:1049 pages/checkout.php:
|
6801 |
-
#: pages/checkout.php:
|
6802 |
-
#: pages/checkout.php:
|
6803 |
-
#: pages/checkout.php:
|
6804 |
-
#: pages/checkout.php:
|
6805 |
-
#: pages/checkout.php:514
|
6806 |
#, php-format
|
6807 |
msgid "We Accept %s"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
#: classes/gateways/class.pmprogateway_braintree.php:475
|
6811 |
#: classes/gateways/class.pmprogateway_stripe.php:1082 pages/billing.php:359
|
6812 |
-
#: pages/checkout.php:
|
6813 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
6814 |
#: classes/gateways/class.pmprogateway_braintree.php:318
|
6815 |
#: classes/gateways/class.pmprogateway_braintree.php:321
|
@@ -6854,11 +6850,12 @@ msgstr ""
|
|
6854 |
#: pages/billing.php:311 pages/billing.php:312 pages/billing.php:313
|
6855 |
#: pages/billing.php:314 pages/billing.php:317 pages/billing.php:318
|
6856 |
#: pages/billing.php:326 pages/billing.php:335 pages/billing.php:337
|
6857 |
-
#: pages/billing.php:359 pages/checkout.php:
|
6858 |
-
#: pages/checkout.php:
|
6859 |
-
#: pages/checkout.php:
|
6860 |
-
#: pages/checkout.php:
|
6861 |
-
#: pages/checkout.php:
|
|
|
6862 |
msgid "Card Number"
|
6863 |
msgstr ""
|
6864 |
|
@@ -6902,7 +6899,7 @@ msgid "CVV"
|
|
6902 |
msgstr ""
|
6903 |
|
6904 |
#: classes/gateways/class.pmprogateway_braintree.php:504 pages/billing.php:399
|
6905 |
-
#: pages/checkout.php:
|
6906 |
#: classes/gateways/class.pmprogateway_braintree.php:354
|
6907 |
#: classes/gateways/class.pmprogateway_braintree.php:356
|
6908 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
@@ -6939,18 +6936,18 @@ msgstr ""
|
|
6939 |
#: pages/billing.php:352 pages/billing.php:353 pages/billing.php:355
|
6940 |
#: pages/billing.php:357 pages/billing.php:358 pages/billing.php:366
|
6941 |
#: pages/billing.php:375 pages/billing.php:381 pages/billing.php:399
|
6942 |
-
#: pages/checkout.php:
|
6943 |
-
#: pages/checkout.php:
|
6944 |
-
#: pages/checkout.php:
|
6945 |
-
#: pages/checkout.php:
|
6946 |
-
#: pages/checkout.php:
|
6947 |
-
#: pages/checkout.php:616
|
6948 |
msgid "what's this?"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
#: classes/gateways/class.pmprogateway_braintree.php:511
|
6952 |
-
#: classes/gateways/class.pmprogateway_stripe.php:1104 pages/checkout.php:
|
6953 |
-
#: pages/checkout.php:
|
6954 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
6955 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
6956 |
#: classes/gateways/class.pmprogateway_braintree.php:369
|
@@ -6994,20 +6991,21 @@ msgstr ""
|
|
6994 |
#: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:83
|
6995 |
#: pages/checkout.php:87 pages/checkout.php:88 pages/checkout.php:91
|
6996 |
#: pages/checkout.php:94 pages/checkout.php:95 pages/checkout.php:98
|
6997 |
-
#: pages/checkout.php:
|
6998 |
-
#: pages/checkout.php:
|
6999 |
-
#: pages/checkout.php:
|
7000 |
-
#: pages/checkout.php:
|
7001 |
-
#: pages/checkout.php:
|
|
|
7002 |
msgid "Apply"
|
7003 |
msgstr ""
|
7004 |
|
7005 |
#: classes/gateways/class.pmprogateway_braintree.php:570
|
7006 |
#: classes/gateways/class.pmprogateway_braintree.php:587
|
7007 |
#: classes/gateways/class.pmprogateway_braintree.php:677
|
7008 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7009 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7010 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7011 |
#: classes/gateways/class.pmprogateway_braintree.php:509
|
7012 |
#: classes/gateways/class.pmprogateway_braintree.php:524
|
7013 |
#: classes/gateways/class.pmprogateway_braintree.php:526
|
@@ -7138,7 +7136,7 @@ msgstr ""
|
|
7138 |
msgid "Error during charge:"
|
7139 |
msgstr ""
|
7140 |
|
7141 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7142 |
#: classes/gateways/class.pmprogateway_braintree.php:690
|
7143 |
#: classes/gateways/class.pmprogateway_braintree.php:731
|
7144 |
#: classes/gateways/class.pmprogateway_braintree.php:750
|
@@ -7150,7 +7148,7 @@ msgstr ""
|
|
7150 |
msgid "Failed to update customer: %s"
|
7151 |
msgstr ""
|
7152 |
|
7153 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7154 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
7155 |
#: classes/gateways/class.pmprogateway_braintree.php:221
|
7156 |
#: classes/gateways/class.pmprogateway_braintree.php:566
|
@@ -7171,7 +7169,7 @@ msgstr ""
|
|
7171 |
msgid "Failed to update customer."
|
7172 |
msgstr ""
|
7173 |
|
7174 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7175 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
7176 |
#: classes/gateways/class.pmprogateway_braintree.php:269
|
7177 |
#: classes/gateways/class.pmprogateway_braintree.php:614
|
@@ -7192,7 +7190,7 @@ msgstr ""
|
|
7192 |
msgid "Failed to create customer."
|
7193 |
msgstr ""
|
7194 |
|
7195 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7196 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
7197 |
#: classes/gateways/class.pmprogateway_braintree.php:276
|
7198 |
#: classes/gateways/class.pmprogateway_braintree.php:621
|
@@ -7213,7 +7211,7 @@ msgstr ""
|
|
7213 |
msgid "Error creating customer record with Braintree:"
|
7214 |
msgstr ""
|
7215 |
|
7216 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7217 |
#: classes/gateways/class.pmprogateway_braintree.php:933
|
7218 |
#: classes/gateways/class.pmprogateway_braintree.php:934
|
7219 |
#: classes/gateways/class.pmprogateway_braintree.php:935
|
@@ -7222,7 +7220,7 @@ msgstr ""
|
|
7222 |
msgid "Error subscribing customer to plan with Braintree: %s (%s)"
|
7223 |
msgstr ""
|
7224 |
|
7225 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7226 |
#: classes/gateways/class.pmprogateway_braintree.php:948
|
7227 |
#: classes/gateways/class.pmprogateway_braintree.php:949
|
7228 |
#: classes/gateways/class.pmprogateway_braintree.php:950
|
@@ -7231,8 +7229,8 @@ msgstr ""
|
|
7231 |
msgid "Failed to subscribe with Braintree: %s"
|
7232 |
msgstr ""
|
7233 |
|
7234 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7235 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7236 |
#: classes/gateways/class.pmprogateway_braintree.php:1019
|
7237 |
#: classes/gateways/class.pmprogateway_braintree.php:1020
|
7238 |
#: classes/gateways/class.pmprogateway_braintree.php:1021
|
@@ -7245,7 +7243,7 @@ msgstr ""
|
|
7245 |
msgid "Could not find the subscription. %s"
|
7246 |
msgstr ""
|
7247 |
|
7248 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7249 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
7250 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
7251 |
#: classes/gateways/class.pmprogateway_braintree.php:410
|
@@ -7303,7 +7301,7 @@ msgstr ""
|
|
7303 |
msgid "Could not find the subscription."
|
7304 |
msgstr ""
|
7305 |
|
7306 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7307 |
#: classes/gateways/class.pmprogateway_braintree.php:1083
|
7308 |
msgid "Error getting subscription with Braintree:"
|
7309 |
msgstr ""
|
@@ -7880,7 +7878,7 @@ msgid "Vendor"
|
|
7880 |
msgstr ""
|
7881 |
|
7882 |
#: classes/gateways/class.pmprogateway_payflowpro.php:125
|
7883 |
-
#: pages/checkout.php:
|
7884 |
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
|
7885 |
#: classes/gateways/class.pmprogateway_payflowpro.php:124
|
7886 |
#: classes/gateways/class.pmprogateway_payflowpro.php:125
|
@@ -8100,9 +8098,9 @@ msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
|
|
8100 |
msgstr ""
|
8101 |
|
8102 |
#: classes/gateways/class.pmprogateway_paypal.php:281
|
8103 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
8104 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:241
|
8105 |
-
#: pages/checkout.php:
|
8106 |
#: classes/gateways/class.pmprogateway_paypal.php:201
|
8107 |
#: classes/gateways/class.pmprogateway_paypal.php:268
|
8108 |
#: classes/gateways/class.pmprogateway_paypal.php:280
|
@@ -8119,18 +8117,19 @@ msgstr ""
|
|
8119 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:202
|
8120 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:229
|
8121 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:241
|
8122 |
-
#: pages/checkout.php:
|
8123 |
-
#: pages/checkout.php:
|
8124 |
-
#: pages/checkout.php:
|
8125 |
-
#: pages/checkout.php:
|
8126 |
-
#: pages/checkout.php:
|
|
|
8127 |
msgid "Check Out with PayPal"
|
8128 |
msgstr ""
|
8129 |
|
8130 |
#: classes/gateways/class.pmprogateway_paypal.php:287
|
8131 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
8132 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
8133 |
-
#: pages/checkout.php:
|
8134 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
8135 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
8136 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
@@ -8148,19 +8147,19 @@ msgstr ""
|
|
8148 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:234
|
8149 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
8150 |
#: pages/checkout.php:496 pages/checkout.php:509 pages/checkout.php:512
|
8151 |
-
#: pages/checkout.php:
|
8152 |
-
#: pages/checkout.php:
|
8153 |
-
#: pages/checkout.php:
|
8154 |
-
#: pages/checkout.php:
|
8155 |
-
#: pages/checkout.php:728 pages/checkout.php:729
|
8156 |
msgid "Submit and Check Out"
|
8157 |
msgstr ""
|
8158 |
|
8159 |
#: classes/gateways/class.pmprogateway_paypal.php:287
|
8160 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
8161 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
8162 |
#: classes/gateways/class.pmprogateway_twocheckout.php:205
|
8163 |
-
#: pages/checkout.php:
|
8164 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
8165 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
8166 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
@@ -8183,16 +8182,16 @@ msgstr ""
|
|
8183 |
#: classes/gateways/class.pmprogateway_twocheckout.php:205
|
8184 |
#: classes/gateways/class.pmprogateway_twocheckout.php:214
|
8185 |
#: pages/checkout.php:496 pages/checkout.php:509 pages/checkout.php:512
|
8186 |
-
#: pages/checkout.php:
|
8187 |
-
#: pages/checkout.php:
|
8188 |
-
#: pages/checkout.php:
|
8189 |
-
#: pages/checkout.php:
|
8190 |
-
#: pages/checkout.php:728 pages/checkout.php:729
|
8191 |
msgid "Submit and Confirm"
|
8192 |
msgstr ""
|
8193 |
|
8194 |
#: classes/gateways/class.pmprogateway_paypal.php:716
|
8195 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
8196 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:588
|
8197 |
#: classes/gateways/class.pmprogateway_paypal.php:385
|
8198 |
#: classes/gateways/class.pmprogateway_paypal.php:605
|
@@ -8253,8 +8252,8 @@ msgstr ""
|
|
8253 |
msgid "PayPal Express"
|
8254 |
msgstr ""
|
8255 |
|
8256 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
8257 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
8258 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:268
|
8259 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:278
|
8260 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
@@ -8279,6 +8278,10 @@ msgstr ""
|
|
8279 |
msgid "The PayPal Token was lost."
|
8280 |
msgstr ""
|
8281 |
|
|
|
|
|
|
|
|
|
8282 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:71
|
8283 |
#: paid-memberships-pro.php:163
|
8284 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
@@ -10984,7 +10987,7 @@ msgstr ""
|
|
10984 |
msgid "Profile Start Date Issue Detected and Fixed at %s"
|
10985 |
msgstr ""
|
10986 |
|
10987 |
-
#: includes/functions.php:
|
10988 |
#: includes/functions.php:160 includes/functions.php:196
|
10989 |
#: includes/functions.php:200 includes/functions.php:202
|
10990 |
#: includes/functions.php:203 includes/functions.php:204
|
@@ -11001,12 +11004,12 @@ msgstr ""
|
|
11001 |
msgid "The price for membership is <strong>%s</strong> now"
|
11002 |
msgstr ""
|
11003 |
|
11004 |
-
#: includes/functions.php:
|
11005 |
#: pages/levels.php:43 pages/levels.php:55
|
11006 |
msgid "Free"
|
11007 |
msgstr ""
|
11008 |
|
11009 |
-
#: includes/functions.php:
|
11010 |
#: includes/functions.php:202 includes/functions.php:204
|
11011 |
#: includes/functions.php:205 includes/functions.php:206
|
11012 |
#: includes/functions.php:209 includes/functions.php:245
|
@@ -11022,70 +11025,70 @@ msgstr ""
|
|
11022 |
msgid "<strong>%s</strong> now"
|
11023 |
msgstr ""
|
11024 |
|
11025 |
-
#: includes/functions.php:
|
11026 |
#: includes/functions.php:349 includes/functions.php:388
|
11027 |
#: includes/functions.php:393
|
11028 |
#, php-format
|
11029 |
msgid " and then <strong>%1$s per %2$s for %3$d more %4$s</strong>."
|
11030 |
msgstr ""
|
11031 |
|
11032 |
-
#: includes/functions.php:
|
11033 |
#: includes/functions.php:351 includes/functions.php:390
|
11034 |
#: includes/functions.php:395
|
11035 |
#, php-format
|
11036 |
msgid " and then <strong>%1$s every %2$d %3$s for %4$d more payments</strong>."
|
11037 |
msgstr ""
|
11038 |
|
11039 |
-
#: includes/functions.php:
|
11040 |
#: includes/functions.php:354 includes/functions.php:393
|
11041 |
#: includes/functions.php:398
|
11042 |
#, php-format
|
11043 |
msgid " and then <strong>%1$s after %2$d %3$s</strong>."
|
11044 |
msgstr ""
|
11045 |
|
11046 |
-
#: includes/functions.php:
|
11047 |
#: includes/functions.php:359 includes/functions.php:398
|
11048 |
#: includes/functions.php:403
|
11049 |
#, php-format
|
11050 |
msgid "The price for membership is <strong>%1$s per %2$s</strong>."
|
11051 |
msgstr ""
|
11052 |
|
11053 |
-
#: includes/functions.php:
|
11054 |
#: includes/functions.php:361 includes/functions.php:400
|
11055 |
#: includes/functions.php:405
|
11056 |
#, php-format
|
11057 |
msgid "<strong>%1$s per %2$s</strong>."
|
11058 |
msgstr ""
|
11059 |
|
11060 |
-
#: includes/functions.php:
|
11061 |
#: includes/functions.php:365 includes/functions.php:404
|
11062 |
#: includes/functions.php:409
|
11063 |
#, php-format
|
11064 |
msgid "The price for membership is <strong>%1$s every %2$d %3$s</strong>."
|
11065 |
msgstr ""
|
11066 |
|
11067 |
-
#: includes/functions.php:
|
11068 |
#: includes/functions.php:367 includes/functions.php:406
|
11069 |
#: includes/functions.php:411
|
11070 |
#, php-format
|
11071 |
msgid "<strong>%1$s every %2$d %3$s</strong>."
|
11072 |
msgstr ""
|
11073 |
|
11074 |
-
#: includes/functions.php:
|
11075 |
#: includes/functions.php:372 includes/functions.php:411
|
11076 |
#: includes/functions.php:416
|
11077 |
#, php-format
|
11078 |
msgid " and then <strong>%1$s per %2$s</strong>."
|
11079 |
msgstr ""
|
11080 |
|
11081 |
-
#: includes/functions.php:
|
11082 |
#: includes/functions.php:374 includes/functions.php:413
|
11083 |
#: includes/functions.php:418
|
11084 |
#, php-format
|
11085 |
msgid " and then <strong>%1$s every %2$d %3$s</strong>."
|
11086 |
msgstr ""
|
11087 |
|
11088 |
-
#: includes/functions.php:
|
11089 |
#: includes/functions.php:238 includes/functions.php:249
|
11090 |
#: includes/functions.php:260 includes/functions.php:261
|
11091 |
#: includes/functions.php:262 includes/functions.php:264
|
@@ -11098,7 +11101,7 @@ msgstr ""
|
|
11098 |
msgid "After your initial payment, your first payment is Free."
|
11099 |
msgstr ""
|
11100 |
|
11101 |
-
#: includes/functions.php:
|
11102 |
#: includes/functions.php:242 includes/functions.php:253
|
11103 |
#: includes/functions.php:264 includes/functions.php:265
|
11104 |
#: includes/functions.php:266 includes/functions.php:268
|
@@ -11112,7 +11115,7 @@ msgstr ""
|
|
11112 |
msgid "After your initial payment, your first %d payments are Free."
|
11113 |
msgstr ""
|
11114 |
|
11115 |
-
#: includes/functions.php:
|
11116 |
#: includes/functions.php:249 includes/functions.php:260
|
11117 |
#: includes/functions.php:271 includes/functions.php:272
|
11118 |
#: includes/functions.php:273 includes/functions.php:275
|
@@ -11125,14 +11128,14 @@ msgstr ""
|
|
11125 |
msgid "After your initial payment, your first payment will cost %s."
|
11126 |
msgstr ""
|
11127 |
|
11128 |
-
#: includes/functions.php:
|
11129 |
#: includes/functions.php:397 includes/functions.php:436
|
11130 |
#: includes/functions.php:441
|
11131 |
#, php-format
|
11132 |
msgid "After your initial payment, your first %1$d payments will cost %2$s."
|
11133 |
msgstr ""
|
11134 |
|
11135 |
-
#: includes/functions.php:
|
11136 |
#: includes/functions.php:388 includes/functions.php:407
|
11137 |
#: includes/functions.php:446 includes/functions.php:451
|
11138 |
#: includes/functions.php:489 includes/functions.php:508
|
@@ -11141,49 +11144,49 @@ msgstr ""
|
|
11141 |
msgid "Customers in %1$s will be charged %2$s%% tax."
|
11142 |
msgstr ""
|
11143 |
|
11144 |
-
#: includes/functions.php:
|
11145 |
#: includes/functions.php:465 includes/functions.php:504
|
11146 |
#: includes/functions.php:509
|
11147 |
#, php-format
|
11148 |
msgid "<strong>%1$s per %2$s for %3$d more %4$s</strong>"
|
11149 |
msgstr ""
|
11150 |
|
11151 |
-
#: includes/functions.php:
|
11152 |
#: includes/functions.php:467 includes/functions.php:506
|
11153 |
#: includes/functions.php:511
|
11154 |
#, php-format
|
11155 |
msgid "<strong>%1$s every %2$d %3$s for %4$d more payments</strong>"
|
11156 |
msgstr ""
|
11157 |
|
11158 |
-
#: includes/functions.php:
|
11159 |
#: includes/functions.php:470 includes/functions.php:509
|
11160 |
#: includes/functions.php:514
|
11161 |
#, php-format
|
11162 |
msgid "<strong>%1$s after %2$d %3$s</strong>"
|
11163 |
msgstr ""
|
11164 |
|
11165 |
-
#: includes/functions.php:
|
11166 |
#: includes/functions.php:473 includes/functions.php:512
|
11167 |
#: includes/functions.php:517
|
11168 |
#, php-format
|
11169 |
msgid "<strong>%1$s every %2$s</strong>"
|
11170 |
msgstr ""
|
11171 |
|
11172 |
-
#: includes/functions.php:
|
11173 |
#: includes/functions.php:475 includes/functions.php:514
|
11174 |
#: includes/functions.php:519
|
11175 |
#, php-format
|
11176 |
msgid "<strong>%1$s every %2$d %3$s</strong>"
|
11177 |
msgstr ""
|
11178 |
|
11179 |
-
#: includes/functions.php:
|
11180 |
#: includes/functions.php:497 includes/functions.php:511
|
11181 |
#: includes/functions.php:520 includes/functions.php:536
|
11182 |
#: includes/functions.php:541
|
11183 |
msgid "Trial pricing has been applied to the first payment."
|
11184 |
msgstr ""
|
11185 |
|
11186 |
-
#: includes/functions.php:
|
11187 |
#: includes/functions.php:499 includes/functions.php:513
|
11188 |
#: includes/functions.php:522 includes/functions.php:538
|
11189 |
#: includes/functions.php:543
|
@@ -11191,21 +11194,21 @@ msgstr ""
|
|
11191 |
msgid "Trial pricing has been applied to the first %d payments."
|
11192 |
msgstr ""
|
11193 |
|
11194 |
-
#: includes/functions.php:
|
11195 |
#: includes/functions.php:524 includes/functions.php:563
|
11196 |
#: includes/functions.php:568
|
11197 |
#, php-format
|
11198 |
msgid "Membership expires after %1$d %2$s."
|
11199 |
msgstr ""
|
11200 |
|
11201 |
-
#: includes/functions.php:
|
11202 |
#: includes/functions.php:543 includes/functions.php:582
|
11203 |
#: includes/functions.php:587
|
11204 |
#, php-format
|
11205 |
msgid "%1$s membership expires after %2$d %3$s"
|
11206 |
msgstr ""
|
11207 |
|
11208 |
-
#: includes/functions.php:
|
11209 |
#: includes/functions.php:514 includes/functions.php:525
|
11210 |
#: includes/functions.php:536 includes/functions.php:537
|
11211 |
#: includes/functions.php:538 includes/functions.php:545
|
@@ -11221,14 +11224,14 @@ msgstr ""
|
|
11221 |
msgid "User ID not found."
|
11222 |
msgstr ""
|
11223 |
|
11224 |
-
#: includes/functions.php:
|
11225 |
#: includes/functions.php:889 includes/functions.php:894
|
11226 |
#: includes/functions.php:913 includes/functions.php:952
|
11227 |
#: includes/functions.php:957 includes/functions.php:976
|
11228 |
msgid "No membership_id specified in pmpro_changeMembershipLevel."
|
11229 |
msgstr ""
|
11230 |
|
11231 |
-
#: includes/functions.php:
|
11232 |
#: includes/functions.php:508 includes/functions.php:531
|
11233 |
#: includes/functions.php:542 includes/functions.php:553
|
11234 |
#: includes/functions.php:554 includes/functions.php:555
|
@@ -11248,24 +11251,7 @@ msgstr ""
|
|
11248 |
msgid "Invalid level."
|
11249 |
msgstr ""
|
11250 |
|
11251 |
-
#: includes/functions.php:
|
11252 |
-
#: includes/functions.php:542 includes/functions.php:553
|
11253 |
-
#: includes/functions.php:564 includes/functions.php:565
|
11254 |
-
#: includes/functions.php:566 includes/functions.php:573
|
11255 |
-
#: includes/functions.php:597 includes/functions.php:598
|
11256 |
-
#: includes/functions.php:600 includes/functions.php:607
|
11257 |
-
#: includes/functions.php:623 includes/functions.php:646
|
11258 |
-
#: includes/functions.php:725 includes/functions.php:791
|
11259 |
-
#: includes/functions.php:797 includes/functions.php:911
|
11260 |
-
#: includes/functions.php:914 includes/functions.php:919
|
11261 |
-
#: includes/functions.php:938 includes/functions.php:976
|
11262 |
-
#: includes/functions.php:977 includes/functions.php:978
|
11263 |
-
#: includes/functions.php:982 includes/functions.php:987
|
11264 |
-
#: includes/functions.php:1001
|
11265 |
-
msgid "not changing?"
|
11266 |
-
msgstr ""
|
11267 |
-
|
11268 |
-
#: includes/functions.php:1057 includes/functions.php:537
|
11269 |
#: includes/functions.php:559 includes/functions.php:570
|
11270 |
#: includes/functions.php:581 includes/functions.php:582
|
11271 |
#: includes/functions.php:583 includes/functions.php:590
|
@@ -11296,7 +11282,7 @@ msgstr ""
|
|
11296 |
msgid "Error interacting with database"
|
11297 |
msgstr ""
|
11298 |
|
11299 |
-
#: includes/functions.php:
|
11300 |
#: includes/functions.php:1064 includes/functions.php:1067
|
11301 |
#: includes/functions.php:1077 includes/functions.php:1096
|
11302 |
#: includes/functions.php:1123 includes/functions.php:1127
|
@@ -11307,7 +11293,7 @@ msgstr ""
|
|
11307 |
msgid "Error interacting with database: %s"
|
11308 |
msgstr ""
|
11309 |
|
11310 |
-
#: includes/functions.php:
|
11311 |
#: includes/functions.php:629 includes/functions.php:651
|
11312 |
#: includes/functions.php:667 includes/functions.php:668
|
11313 |
#: includes/functions.php:678 includes/functions.php:681
|
@@ -11341,7 +11327,7 @@ msgstr ""
|
|
11341 |
msgid "Membership level not found."
|
11342 |
msgstr ""
|
11343 |
|
11344 |
-
#: includes/functions.php:
|
11345 |
#: includes/functions.php:1101 includes/functions.php:1118
|
11346 |
#: includes/functions.php:1142 includes/functions.php:1143
|
11347 |
#: includes/functions.php:1150 includes/functions.php:1157
|
@@ -11358,7 +11344,7 @@ msgstr ""
|
|
11358 |
msgid "No code was given to check."
|
11359 |
msgstr ""
|
11360 |
|
11361 |
-
#: includes/functions.php:
|
11362 |
#: includes/functions.php:1072 includes/functions.php:1088
|
11363 |
#: includes/functions.php:1099 includes/functions.php:1102
|
11364 |
#: includes/functions.php:1109 includes/functions.php:1110
|
@@ -11378,7 +11364,7 @@ msgstr ""
|
|
11378 |
msgid "The discount code could not be found."
|
11379 |
msgstr ""
|
11380 |
|
11381 |
-
#: includes/functions.php:
|
11382 |
#: includes/functions.php:1088 includes/functions.php:1104
|
11383 |
#: includes/functions.php:1115 includes/functions.php:1118
|
11384 |
#: includes/functions.php:1124 includes/functions.php:1125
|
@@ -11399,7 +11385,7 @@ msgstr ""
|
|
11399 |
msgid "This discount code goes into effect on %s."
|
11400 |
msgstr ""
|
11401 |
|
11402 |
-
#: includes/functions.php:
|
11403 |
#: includes/functions.php:1097 includes/functions.php:1113
|
11404 |
#: includes/functions.php:1124 includes/functions.php:1127
|
11405 |
#: includes/functions.php:1131 includes/functions.php:1132
|
@@ -11420,7 +11406,7 @@ msgstr ""
|
|
11420 |
msgid "This discount code expired on %s."
|
11421 |
msgstr ""
|
11422 |
|
11423 |
-
#: includes/functions.php:
|
11424 |
#: includes/functions.php:1109 includes/functions.php:1125
|
11425 |
#: includes/functions.php:1136 includes/functions.php:1139
|
11426 |
#: includes/functions.php:1141 includes/functions.php:1142
|
@@ -11440,7 +11426,7 @@ msgstr ""
|
|
11440 |
msgid "This discount code is no longer valid."
|
11441 |
msgstr ""
|
11442 |
|
11443 |
-
#: includes/functions.php:
|
11444 |
#: includes/functions.php:1124 includes/functions.php:1140
|
11445 |
#: includes/functions.php:1151 includes/functions.php:1154
|
11446 |
#: includes/functions.php:1155 includes/functions.php:1164
|
@@ -11460,7 +11446,7 @@ msgstr ""
|
|
11460 |
msgid "This discount code does not apply to this membership level."
|
11461 |
msgstr ""
|
11462 |
|
11463 |
-
#: includes/functions.php:
|
11464 |
#: includes/functions.php:1132 includes/functions.php:1148
|
11465 |
#: includes/functions.php:1159 includes/functions.php:1162
|
11466 |
#: includes/functions.php:1172 includes/functions.php:1180
|
@@ -11480,7 +11466,7 @@ msgstr ""
|
|
11480 |
msgid "This discount code is okay."
|
11481 |
msgstr ""
|
11482 |
|
11483 |
-
#: includes/functions.php:
|
11484 |
#: includes/functions.php:1156 includes/functions.php:1172
|
11485 |
#: includes/functions.php:1183 includes/functions.php:1186
|
11486 |
#: includes/functions.php:1196 includes/functions.php:1205
|
@@ -11500,7 +11486,7 @@ msgstr ""
|
|
11500 |
msgid "and"
|
11501 |
msgstr ""
|
11502 |
|
11503 |
-
#: includes/functions.php:
|
11504 |
#: includes/functions.php:1341 includes/functions.php:1361
|
11505 |
#: includes/functions.php:1372 includes/functions.php:1375
|
11506 |
#: includes/functions.php:1385 includes/functions.php:1394
|
@@ -11523,7 +11509,7 @@ msgstr ""
|
|
11523 |
msgid "Sign Up for !!name!! Now"
|
11524 |
msgstr ""
|
11525 |
|
11526 |
-
#: includes/functions.php:
|
11527 |
#: includes/functions.php:2054 includes/functions.php:2085
|
11528 |
#: includes/functions.php:2124 includes/functions.php:2126
|
11529 |
#: includes/functions.php:2179 includes/functions.php:2223
|
@@ -11532,8 +11518,27 @@ msgstr ""
|
|
11532 |
msgid "Sign Up Now"
|
11533 |
msgstr ""
|
11534 |
|
11535 |
-
#: includes/
|
11536 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11537 |
#: adminpages/orders.php:601 adminpages/orders.php:904
|
11538 |
#: adminpages/orders.php:914 adminpages/orders.php:941
|
11539 |
#: adminpages/orders.php:970 adminpages/orders.php:1107
|
@@ -11556,9 +11561,9 @@ msgstr ""
|
|
11556 |
#: pages/confirmation.php:105 pages/confirmation.php:113
|
11557 |
#: pages/confirmation.php:116 pages/confirmation.php:123
|
11558 |
#: pages/confirmation.php:124 pages/confirmation.php:126
|
11559 |
-
#: pages/confirmation.php:127 pages/
|
11560 |
-
#: pages/invoice.php:
|
11561 |
-
#: pages/invoice.php:70
|
11562 |
msgid "Membership Level"
|
11563 |
msgstr ""
|
11564 |
|
@@ -11618,174 +11623,179 @@ msgstr ""
|
|
11618 |
msgid "Years"
|
11619 |
msgstr ""
|
11620 |
|
11621 |
-
#: includes/login.php:
|
11622 |
#: includes/login.php:235 includes/login.php:251 includes/login.php:257
|
11623 |
#: includes/login.php:264 includes/login.php:275 includes/login.php:281
|
11624 |
#: includes/login.php:288
|
11625 |
msgid "Welcome"
|
11626 |
msgstr ""
|
11627 |
|
11628 |
-
#: includes/login.php:
|
11629 |
#: includes/login.php:237 includes/login.php:253 includes/login.php:259
|
11630 |
#: includes/login.php:266 includes/login.php:277 includes/login.php:283
|
11631 |
#: includes/login.php:290
|
11632 |
msgid "Lost Password"
|
11633 |
msgstr ""
|
11634 |
|
11635 |
-
#: includes/login.php:
|
11636 |
-
#: includes/login.php:
|
11637 |
-
#: includes/login.php:
|
11638 |
-
#: includes/login.php:
|
|
|
11639 |
msgid "Reset Password"
|
11640 |
msgstr ""
|
11641 |
|
11642 |
-
#: includes/login.php:
|
11643 |
#: includes/login.php:303 includes/login.php:309 includes/login.php:316
|
11644 |
#: includes/login.php:751 includes/login.php:820 includes/login.php:830
|
11645 |
#: includes/login.php:868
|
11646 |
msgid "There was a problem with your username or password."
|
11647 |
msgstr ""
|
11648 |
|
11649 |
-
#: includes/login.php:
|
11650 |
#: includes/login.php:313 includes/login.php:320
|
11651 |
msgid "Unknown username. Check again or try your email address."
|
11652 |
msgstr ""
|
11653 |
|
11654 |
-
#: includes/login.php:
|
11655 |
#: includes/login.php:317 includes/login.php:324
|
11656 |
msgid "Empty username. Please enter your username and try again."
|
11657 |
msgstr ""
|
11658 |
|
11659 |
-
#: includes/login.php:
|
11660 |
#: includes/login.php:321 includes/login.php:328
|
11661 |
msgid "Empty password. Please enter your password and try again."
|
11662 |
msgstr ""
|
11663 |
|
11664 |
-
#: includes/login.php:
|
11665 |
#: includes/login.php:325 includes/login.php:332
|
11666 |
msgid "The password you entered for the user is incorrect. Please try again."
|
11667 |
msgstr ""
|
11668 |
|
11669 |
-
#: includes/login.php:
|
11670 |
#: includes/login.php:329 includes/login.php:336
|
11671 |
msgid "Check your email for the confirmation link."
|
11672 |
msgstr ""
|
11673 |
|
11674 |
-
#: includes/login.php:
|
11675 |
#: includes/login.php:338 includes/login.php:345
|
11676 |
msgid "You are now logged out."
|
11677 |
msgstr ""
|
11678 |
|
11679 |
-
#: includes/login.php:
|
11680 |
#: includes/login.php:342 includes/login.php:349
|
11681 |
msgid "There was a problem logging you out."
|
11682 |
msgstr ""
|
11683 |
|
11684 |
-
#: includes/login.php:
|
11685 |
#: includes/login.php:353 includes/login.php:360
|
11686 |
msgid "Check your email for a link to reset your password."
|
11687 |
msgstr ""
|
11688 |
|
11689 |
-
#: includes/login.php:
|
11690 |
#: includes/login.php:356 includes/login.php:363
|
11691 |
msgid "There was an unexpected error regarding your email. Please try again"
|
11692 |
msgstr ""
|
11693 |
|
11694 |
-
#: includes/login.php:
|
11695 |
#: includes/login.php:366 includes/login.php:373
|
11696 |
msgid "Your reset password key is invalid."
|
11697 |
msgstr ""
|
11698 |
|
11699 |
-
#: includes/login.php:
|
11700 |
#: includes/login.php:370 includes/login.php:377
|
11701 |
msgid ""
|
11702 |
"Your reset password key is expired, please request a new key from the "
|
11703 |
"password reset page."
|
11704 |
msgstr ""
|
11705 |
|
11706 |
-
#: includes/login.php:
|
11707 |
#: includes/login.php:382 includes/login.php:389
|
11708 |
msgid "Your password has successfully been updated."
|
11709 |
msgstr ""
|
11710 |
|
11711 |
-
#: includes/login.php:
|
11712 |
#: includes/login.php:386 includes/login.php:393
|
11713 |
msgid "There was a problem updating your password"
|
11714 |
msgstr ""
|
11715 |
|
11716 |
-
#: includes/login.php:
|
11717 |
#: includes/login.php:400 includes/login.php:407
|
11718 |
msgid "There is no account with that username or email address."
|
11719 |
msgstr ""
|
11720 |
|
11721 |
-
#: includes/login.php:
|
11722 |
#: includes/login.php:404 includes/login.php:411
|
11723 |
msgid "Please enter a valid username."
|
11724 |
msgstr ""
|
11725 |
|
11726 |
-
#: includes/login.php:
|
11727 |
#: includes/login.php:408 includes/login.php:415
|
11728 |
msgid "You've entered an invalid email address."
|
11729 |
msgstr ""
|
11730 |
|
11731 |
-
#: includes/login.php:
|
11732 |
#: includes/login.php:406 includes/login.php:412 includes/login.php:419
|
11733 |
#: includes/profile.php:586 includes/profile.php:595 includes/profile.php:603
|
11734 |
#: includes/profile.php:604 includes/profile.php:624
|
11735 |
msgid "New passwords do not match."
|
11736 |
msgstr ""
|
11737 |
|
11738 |
-
#: includes/login.php:
|
11739 |
#: includes/login.php:410 includes/login.php:416 includes/login.php:423
|
11740 |
#: includes/profile.php:582 includes/profile.php:591 includes/profile.php:599
|
11741 |
#: includes/profile.php:600 includes/profile.php:620
|
11742 |
msgid "Please complete all fields."
|
11743 |
msgstr ""
|
11744 |
|
11745 |
-
#: includes/login.php:
|
11746 |
#: includes/login.php:427
|
11747 |
msgid ""
|
11748 |
"The email could not be sent. This site may not be correctly configured to "
|
11749 |
"send emails."
|
11750 |
msgstr ""
|
11751 |
|
11752 |
-
#: includes/login.php:
|
|
|
|
|
|
|
|
|
11753 |
msgid ""
|
11754 |
"Please enter your username or email address. You will receive a link to "
|
11755 |
"create a new password via email."
|
11756 |
msgstr ""
|
11757 |
|
11758 |
-
#: includes/login.php:
|
11759 |
msgid "You are already signed in."
|
11760 |
msgstr ""
|
11761 |
|
11762 |
-
#: includes/login.php:
|
11763 |
msgid "Username or Email Address"
|
11764 |
msgstr ""
|
11765 |
|
11766 |
-
#: includes/login.php:
|
11767 |
msgid "Get New Password"
|
11768 |
msgstr ""
|
11769 |
|
11770 |
-
#: includes/login.php:
|
11771 |
#: includes/login.php:651
|
11772 |
msgid ""
|
11773 |
"Your password reset link appears to be invalid. Please request a new link "
|
11774 |
"below."
|
11775 |
msgstr ""
|
11776 |
|
11777 |
-
#: includes/login.php:
|
11778 |
#: includes/login.php:653
|
11779 |
msgid "Your password reset link has expired. Please request a new link below."
|
11780 |
msgstr ""
|
11781 |
|
11782 |
-
#: includes/login.php:
|
11783 |
#: includes/profile.php:634 includes/profile.php:643 includes/profile.php:651
|
11784 |
#: includes/profile.php:652 includes/profile.php:672
|
11785 |
msgid "New Password"
|
11786 |
msgstr ""
|
11787 |
|
11788 |
-
#: includes/login.php:
|
11789 |
#: includes/login.php:587 includes/login.php:636 includes/login.php:642
|
11790 |
#: includes/login.php:680 includes/profile.php:637 includes/profile.php:646
|
11791 |
#: includes/profile.php:654 includes/profile.php:655 includes/profile.php:675
|
@@ -11793,46 +11803,46 @@ msgstr ""
|
|
11793 |
msgid "Strength Indicator"
|
11794 |
msgstr ""
|
11795 |
|
11796 |
-
#: includes/login.php:
|
11797 |
#: includes/profile.php:641 includes/profile.php:650 includes/profile.php:658
|
11798 |
#: includes/profile.php:659 includes/profile.php:679
|
11799 |
msgid "Confirm New Password"
|
11800 |
msgstr ""
|
11801 |
|
11802 |
-
#: includes/login.php:
|
11803 |
msgid "Join Now"
|
11804 |
msgstr ""
|
11805 |
|
11806 |
-
#: includes/login.php:
|
11807 |
msgid "Register"
|
11808 |
msgstr ""
|
11809 |
|
11810 |
-
#: includes/login.php:
|
11811 |
msgid "Lost Password?"
|
11812 |
msgstr ""
|
11813 |
|
11814 |
-
#: includes/login.php:
|
11815 |
msgid "Invalid Request"
|
11816 |
msgstr ""
|
11817 |
|
11818 |
-
#: includes/login.php:
|
11819 |
#, php-format
|
11820 |
msgid "Welcome, %s"
|
11821 |
msgstr ""
|
11822 |
|
11823 |
-
#: includes/login.php:
|
11824 |
#: includes/menus.php:169 shortcodes/pmpro_account.php:185
|
11825 |
#: includes/login.php:974 includes/menus.php:76 includes/menus.php:79
|
11826 |
#: includes/menus.php:169 shortcodes/pmpro_account.php:185
|
11827 |
msgid "Log Out"
|
11828 |
msgstr ""
|
11829 |
|
11830 |
-
#: includes/login.php:
|
11831 |
#: includes/login.php:969 includes/login.php:1007
|
11832 |
msgid "Missing request ID."
|
11833 |
msgstr ""
|
11834 |
|
11835 |
-
#: includes/login.php:
|
11836 |
#: includes/login.php:973 includes/login.php:1011
|
11837 |
msgid "Missing confirm key."
|
11838 |
msgstr ""
|
@@ -11854,7 +11864,7 @@ msgstr ""
|
|
11854 |
msgid "Log In Widget - PMPro"
|
11855 |
msgstr ""
|
11856 |
|
11857 |
-
#: includes/metaboxes.php:
|
11858 |
#: includes/metaboxes.php:38 includes/metaboxes.php:39
|
11859 |
#: includes/metaboxes.php:40
|
11860 |
msgid ""
|
@@ -11862,14 +11872,14 @@ msgid ""
|
|
11862 |
"category that requires membership."
|
11863 |
msgstr ""
|
11864 |
|
11865 |
-
#: includes/metaboxes.php:
|
11866 |
#: includes/metaboxes.php:99 includes/metaboxes.php:100
|
11867 |
#: includes/metaboxes.php:104 includes/metaboxes.php:105
|
11868 |
#: includes/metaboxes.php:106 includes/metaboxes.php:107
|
11869 |
msgid "Require Membership"
|
11870 |
msgstr ""
|
11871 |
|
11872 |
-
#: includes/metaboxes.php:
|
11873 |
#: includes/metaboxes.php:134 includes/metaboxes.php:135
|
11874 |
#: includes/metaboxes.php:136
|
11875 |
msgid ""
|
@@ -12131,7 +12141,7 @@ msgstr ""
|
|
12131 |
msgid "Your profile has been updated."
|
12132 |
msgstr ""
|
12133 |
|
12134 |
-
#: includes/profile.php:507 pages/billing.php:152 pages/checkout.php:
|
12135 |
#: includes/profile.php:490 includes/profile.php:499 includes/profile.php:507
|
12136 |
#: includes/profile.php:508 includes/profile.php:523 pages/billing.php:65
|
12137 |
#: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
|
@@ -12139,15 +12149,15 @@ msgstr ""
|
|
12139 |
#: pages/billing.php:104 pages/billing.php:107 pages/billing.php:108
|
12140 |
#: pages/billing.php:110 pages/billing.php:112 pages/billing.php:113
|
12141 |
#: pages/billing.php:121 pages/billing.php:130 pages/billing.php:152
|
12142 |
-
#: pages/checkout.php:
|
12143 |
-
#: pages/checkout.php:
|
12144 |
-
#: pages/checkout.php:
|
12145 |
-
#: pages/checkout.php:
|
12146 |
-
#: pages/checkout.php:333 pages/checkout.php:336
|
12147 |
msgid "First Name"
|
12148 |
msgstr ""
|
12149 |
|
12150 |
-
#: includes/profile.php:508 pages/billing.php:156 pages/checkout.php:
|
12151 |
#: includes/profile.php:491 includes/profile.php:500 includes/profile.php:508
|
12152 |
#: includes/profile.php:509 includes/profile.php:528 pages/billing.php:69
|
12153 |
#: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
|
@@ -12155,11 +12165,11 @@ msgstr ""
|
|
12155 |
#: pages/billing.php:108 pages/billing.php:111 pages/billing.php:112
|
12156 |
#: pages/billing.php:114 pages/billing.php:116 pages/billing.php:117
|
12157 |
#: pages/billing.php:125 pages/billing.php:134 pages/billing.php:156
|
12158 |
-
#: pages/checkout.php:
|
12159 |
-
#: pages/checkout.php:
|
12160 |
-
#: pages/checkout.php:
|
12161 |
-
#: pages/checkout.php:
|
12162 |
-
#: pages/checkout.php:337 pages/checkout.php:340
|
12163 |
msgid "Last Name"
|
12164 |
msgstr ""
|
12165 |
|
@@ -12351,31 +12361,33 @@ msgstr ""
|
|
12351 |
#: pages/account.php:105 pages/account.php:109 pages/billing.php:84
|
12352 |
#: pages/confirmation.php:61 pages/confirmation.php:63
|
12353 |
#: pages/confirmation.php:69 pages/confirmation.php:78
|
12354 |
-
#: pages/confirmation.php:79 pages/confirmation.php:82
|
12355 |
-
#: pages/
|
12356 |
-
#: pages/invoice.php:
|
|
|
12357 |
msgid "Payment Method"
|
12358 |
msgstr ""
|
12359 |
|
12360 |
#: pages/billing.php:86 pages/confirmation.php:85 pages/invoice.php:75
|
12361 |
#: pages/billing.php:86 pages/confirmation.php:79 pages/confirmation.php:80
|
12362 |
#: pages/confirmation.php:81 pages/confirmation.php:82
|
12363 |
-
#: pages/confirmation.php:83 pages/confirmation.php:
|
12364 |
-
#: pages/
|
12365 |
-
#: pages/invoice.php:
|
|
|
12366 |
msgid "ending in"
|
12367 |
msgstr ""
|
12368 |
|
12369 |
-
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:
|
12370 |
-
#: pages/invoice.php:
|
12371 |
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:111
|
12372 |
#: pages/confirmation.php:113 pages/confirmation.php:121
|
12373 |
#: pages/confirmation.php:124 pages/confirmation.php:131
|
12374 |
#: pages/confirmation.php:132 pages/confirmation.php:133
|
12375 |
-
#: pages/confirmation.php:134 pages/
|
12376 |
-
#: pages/invoice.php:
|
12377 |
-
#: pages/invoice.php:
|
12378 |
-
#: pages/invoice.php:144
|
12379 |
msgid "View Your Membership Account →"
|
12380 |
msgstr ""
|
12381 |
|
@@ -12393,7 +12405,7 @@ msgstr ""
|
|
12393 |
msgid "Your billing information cannot be updated at this time."
|
12394 |
msgstr ""
|
12395 |
|
12396 |
-
#: pages/billing.php:148 pages/checkout.php:
|
12397 |
#: pages/invoice.php:56 adminpages/memberslist.php:117
|
12398 |
#: adminpages/memberslist.php:150 adminpages/memberslist.php:160
|
12399 |
#: adminpages/memberslist.php:170 adminpages/memberslist.php:174
|
@@ -12402,132 +12414,132 @@ msgstr ""
|
|
12402 |
#: pages/billing.php:76 pages/billing.php:77 pages/billing.php:80
|
12403 |
#: pages/billing.php:100 pages/billing.php:103 pages/billing.php:104
|
12404 |
#: pages/billing.php:108 pages/billing.php:109 pages/billing.php:117
|
12405 |
-
#: pages/billing.php:126 pages/billing.php:148 pages/checkout.php:
|
12406 |
-
#: pages/checkout.php:
|
12407 |
-
#: pages/checkout.php:
|
12408 |
-
#: pages/checkout.php:
|
12409 |
-
#: pages/checkout.php:
|
12410 |
-
#: pages/checkout.php:
|
12411 |
-
#: pages/confirmation.php:
|
12412 |
-
#: pages/confirmation.php:
|
12413 |
-
#: pages/
|
12414 |
-
#: pages/invoice.php:56
|
12415 |
msgid "Billing Address"
|
12416 |
msgstr ""
|
12417 |
|
12418 |
-
#: pages/billing.php:162 pages/checkout.php:
|
12419 |
#: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
|
12420 |
#: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
|
12421 |
#: pages/billing.php:112 pages/billing.php:115 pages/billing.php:116
|
12422 |
#: pages/billing.php:118 pages/billing.php:120 pages/billing.php:121
|
12423 |
#: pages/billing.php:129 pages/billing.php:138 pages/billing.php:162
|
12424 |
-
#: pages/checkout.php:
|
12425 |
-
#: pages/checkout.php:
|
12426 |
-
#: pages/checkout.php:
|
12427 |
-
#: pages/checkout.php:
|
12428 |
-
#: pages/checkout.php:341 pages/checkout.php:344
|
12429 |
msgid "Address 1"
|
12430 |
msgstr ""
|
12431 |
|
12432 |
-
#: pages/billing.php:166 pages/checkout.php:
|
12433 |
#: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
|
12434 |
#: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
|
12435 |
#: pages/billing.php:116 pages/billing.php:119 pages/billing.php:120
|
12436 |
#: pages/billing.php:122 pages/billing.php:124 pages/billing.php:125
|
12437 |
#: pages/billing.php:133 pages/billing.php:142 pages/billing.php:166
|
12438 |
-
#: pages/checkout.php:
|
12439 |
-
#: pages/checkout.php:
|
12440 |
-
#: pages/checkout.php:
|
12441 |
-
#: pages/checkout.php:
|
12442 |
-
#: pages/checkout.php:345 pages/checkout.php:348
|
12443 |
msgid "Address 2"
|
12444 |
msgstr ""
|
12445 |
|
12446 |
-
#: pages/billing.php:176 pages/checkout.php:
|
12447 |
#: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
|
12448 |
#: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
|
12449 |
#: pages/billing.php:126 pages/billing.php:129 pages/billing.php:130
|
12450 |
#: pages/billing.php:132 pages/billing.php:134 pages/billing.php:135
|
12451 |
#: pages/billing.php:143 pages/billing.php:152 pages/billing.php:176
|
12452 |
-
#: pages/checkout.php:
|
12453 |
-
#: pages/checkout.php:
|
12454 |
-
#: pages/checkout.php:
|
12455 |
-
#: pages/checkout.php:
|
12456 |
-
#: pages/checkout.php:355 pages/checkout.php:358
|
12457 |
msgid "City"
|
12458 |
msgstr ""
|
12459 |
|
12460 |
-
#: pages/billing.php:180 pages/checkout.php:
|
12461 |
#: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
|
12462 |
#: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
|
12463 |
#: pages/billing.php:130 pages/billing.php:133 pages/billing.php:134
|
12464 |
#: pages/billing.php:136 pages/billing.php:138 pages/billing.php:139
|
12465 |
#: pages/billing.php:147 pages/billing.php:156 pages/billing.php:180
|
12466 |
-
#: pages/checkout.php:
|
12467 |
-
#: pages/checkout.php:
|
12468 |
-
#: pages/checkout.php:
|
12469 |
-
#: pages/checkout.php:
|
12470 |
-
#: pages/checkout.php:359 pages/checkout.php:362
|
12471 |
msgid "State"
|
12472 |
msgstr ""
|
12473 |
|
12474 |
-
#: pages/billing.php:184 pages/checkout.php:
|
12475 |
#: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
|
12476 |
#: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
|
12477 |
#: pages/billing.php:134 pages/billing.php:137 pages/billing.php:138
|
12478 |
#: pages/billing.php:140 pages/billing.php:142 pages/billing.php:143
|
12479 |
#: pages/billing.php:151 pages/billing.php:160 pages/billing.php:184
|
12480 |
-
#: pages/checkout.php:
|
12481 |
-
#: pages/checkout.php:
|
12482 |
-
#: pages/checkout.php:
|
12483 |
-
#: pages/checkout.php:
|
12484 |
-
#: pages/checkout.php:363 pages/checkout.php:366
|
12485 |
msgid "Postal Code"
|
12486 |
msgstr ""
|
12487 |
|
12488 |
-
#: pages/billing.php:193 pages/checkout.php:
|
12489 |
#: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
|
12490 |
#: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
|
12491 |
#: pages/billing.php:143 pages/billing.php:146 pages/billing.php:147
|
12492 |
#: pages/billing.php:149 pages/billing.php:151 pages/billing.php:152
|
12493 |
#: pages/billing.php:160 pages/billing.php:169 pages/billing.php:193
|
12494 |
-
#: pages/checkout.php:
|
12495 |
-
#: pages/checkout.php:
|
12496 |
-
#: pages/checkout.php:
|
12497 |
-
#: pages/checkout.php:
|
12498 |
-
#: pages/checkout.php:372 pages/checkout.php:375
|
12499 |
msgid "City, State Zip"
|
12500 |
msgstr ""
|
12501 |
|
12502 |
-
#: pages/billing.php:246 pages/checkout.php:
|
12503 |
#: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
|
12504 |
#: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
|
12505 |
#: pages/billing.php:196 pages/billing.php:199 pages/billing.php:200
|
12506 |
#: pages/billing.php:202 pages/billing.php:204 pages/billing.php:205
|
12507 |
#: pages/billing.php:213 pages/billing.php:222 pages/billing.php:246
|
12508 |
-
#: pages/checkout.php:
|
12509 |
-
#: pages/checkout.php:
|
12510 |
-
#: pages/checkout.php:
|
12511 |
-
#: pages/checkout.php:
|
12512 |
-
#: pages/checkout.php:425 pages/checkout.php:428
|
12513 |
msgid "Country"
|
12514 |
msgstr ""
|
12515 |
|
12516 |
-
#: pages/billing.php:271 pages/checkout.php:
|
12517 |
#: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
|
12518 |
#: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
|
12519 |
#: pages/billing.php:221 pages/billing.php:224 pages/billing.php:225
|
12520 |
#: pages/billing.php:227 pages/billing.php:229 pages/billing.php:230
|
12521 |
#: pages/billing.php:238 pages/billing.php:247 pages/billing.php:271
|
12522 |
-
#: pages/checkout.php:
|
12523 |
-
#: pages/checkout.php:
|
12524 |
-
#: pages/checkout.php:
|
12525 |
-
#: pages/checkout.php:
|
12526 |
-
#: pages/checkout.php:450 pages/checkout.php:453
|
12527 |
msgid "Phone"
|
12528 |
msgstr ""
|
12529 |
|
12530 |
-
#: pages/billing.php:282 pages/checkout.php:
|
12531 |
#: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
|
12532 |
#: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
|
12533 |
#: pages/billing.php:215 pages/billing.php:232 pages/billing.php:235
|
@@ -12537,25 +12549,26 @@ msgstr ""
|
|
12537 |
#: pages/checkout.php:197 pages/checkout.php:204 pages/checkout.php:205
|
12538 |
#: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:216
|
12539 |
#: pages/checkout.php:218 pages/checkout.php:220 pages/checkout.php:227
|
12540 |
-
#: pages/checkout.php:230 pages/checkout.php:
|
12541 |
-
#: pages/checkout.php:
|
12542 |
-
#: pages/checkout.php:
|
12543 |
-
#: pages/checkout.php:
|
12544 |
-
#: pages/checkout.php:
|
|
|
12545 |
msgid "Email Address"
|
12546 |
msgstr ""
|
12547 |
|
12548 |
-
#: pages/billing.php:286 pages/checkout.php:
|
12549 |
#: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
|
12550 |
#: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
|
12551 |
#: pages/billing.php:236 pages/billing.php:239 pages/billing.php:240
|
12552 |
#: pages/billing.php:242 pages/billing.php:244 pages/billing.php:245
|
12553 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:286
|
12554 |
-
#: pages/checkout.php:
|
12555 |
-
#: pages/checkout.php:
|
12556 |
-
#: pages/checkout.php:
|
12557 |
-
#: pages/checkout.php:
|
12558 |
-
#: pages/checkout.php:473 pages/checkout.php:476
|
12559 |
msgid "Confirm Email"
|
12560 |
msgstr ""
|
12561 |
|
@@ -12649,7 +12662,7 @@ msgstr ""
|
|
12649 |
msgid "Click here to go to the home page."
|
12650 |
msgstr ""
|
12651 |
|
12652 |
-
#: pages/checkout.php:
|
12653 |
#: pages/checkout.php:28 pages/checkout.php:30 pages/checkout.php:35
|
12654 |
#: pages/checkout.php:38 pages/checkout.php:41
|
12655 |
msgid ""
|
@@ -12657,14 +12670,14 @@ msgid ""
|
|
12657 |
"<strong>click the \"Complete Payment\" button</strong> to finish your order."
|
12658 |
msgstr ""
|
12659 |
|
12660 |
-
#: pages/checkout.php:
|
12661 |
#: pages/checkout.php:35 pages/checkout.php:40 pages/checkout.php:42
|
12662 |
#: pages/checkout.php:43 pages/checkout.php:46 pages/checkout.php:48
|
12663 |
#: pages/checkout.php:51
|
12664 |
msgid "change"
|
12665 |
msgstr ""
|
12666 |
|
12667 |
-
#: pages/checkout.php:
|
12668 |
#: pages/checkout.php:42 pages/checkout.php:43 pages/checkout.php:44
|
12669 |
#: pages/checkout.php:50 pages/checkout.php:51 pages/checkout.php:52
|
12670 |
#: pages/checkout.php:54 pages/checkout.php:55
|
@@ -12672,28 +12685,28 @@ msgstr ""
|
|
12672 |
msgid "You have selected the <strong>%s</strong> membership level."
|
12673 |
msgstr ""
|
12674 |
|
12675 |
-
#: pages/checkout.php:
|
12676 |
msgid "<p class=\""
|
12677 |
msgstr ""
|
12678 |
|
12679 |
-
#: pages/checkout.php:
|
12680 |
#: pages/checkout.php:79 pages/checkout.php:82
|
12681 |
msgid "Click here to change your discount code."
|
12682 |
msgstr ""
|
12683 |
|
12684 |
-
#: pages/checkout.php:
|
12685 |
#: pages/checkout.php:66 pages/checkout.php:68 pages/checkout.php:73
|
12686 |
#: pages/checkout.php:74 pages/checkout.php:81 pages/checkout.php:84
|
12687 |
msgid "Click here to enter your discount code"
|
12688 |
msgstr ""
|
12689 |
|
12690 |
-
#: pages/checkout.php:
|
12691 |
#: pages/checkout.php:66 pages/checkout.php:68 pages/checkout.php:73
|
12692 |
#: pages/checkout.php:74 pages/checkout.php:81 pages/checkout.php:84
|
12693 |
msgid "Do you have a discount code?"
|
12694 |
msgstr ""
|
12695 |
|
12696 |
-
#: pages/checkout.php:
|
12697 |
#: pages/checkout.php:160 pages/checkout.php:162 pages/checkout.php:163
|
12698 |
#: pages/checkout.php:165 pages/checkout.php:170 pages/checkout.php:172
|
12699 |
#: pages/checkout.php:173 pages/checkout.php:175 pages/checkout.php:182
|
@@ -12701,21 +12714,21 @@ msgstr ""
|
|
12701 |
msgid "Account Information"
|
12702 |
msgstr ""
|
12703 |
|
12704 |
-
#: pages/checkout.php:
|
12705 |
#: pages/checkout.php:160 pages/checkout.php:163 pages/checkout.php:165
|
12706 |
#: pages/checkout.php:171 pages/checkout.php:172 pages/checkout.php:174
|
12707 |
#: pages/checkout.php:176 pages/checkout.php:183 pages/checkout.php:186
|
12708 |
msgid "Already have an account?"
|
12709 |
msgstr ""
|
12710 |
|
12711 |
-
#: pages/checkout.php:
|
12712 |
#: pages/checkout.php:160 pages/checkout.php:163 pages/checkout.php:165
|
12713 |
#: pages/checkout.php:171 pages/checkout.php:172 pages/checkout.php:174
|
12714 |
#: pages/checkout.php:176 pages/checkout.php:183 pages/checkout.php:186
|
12715 |
msgid "Log in here"
|
12716 |
msgstr ""
|
12717 |
|
12718 |
-
#: pages/checkout.php:
|
12719 |
#: pages/checkout.php:184 pages/checkout.php:186 pages/checkout.php:189
|
12720 |
#: pages/checkout.php:191 pages/checkout.php:192 pages/checkout.php:198
|
12721 |
#: pages/checkout.php:200 pages/checkout.php:202 pages/checkout.php:209
|
@@ -12723,14 +12736,14 @@ msgstr ""
|
|
12723 |
msgid "Confirm Password"
|
12724 |
msgstr ""
|
12725 |
|
12726 |
-
#: pages/checkout.php:
|
12727 |
#: pages/checkout.php:205 pages/checkout.php:213 pages/checkout.php:216
|
12728 |
#: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
|
12729 |
#: pages/checkout.php:229 pages/checkout.php:236 pages/checkout.php:239
|
12730 |
msgid "Confirm Email Address"
|
12731 |
msgstr ""
|
12732 |
|
12733 |
-
#: pages/checkout.php:
|
12734 |
#: pages/checkout.php:218 pages/checkout.php:226 pages/checkout.php:232
|
12735 |
#: pages/checkout.php:235 pages/checkout.php:237 pages/checkout.php:244
|
12736 |
#: pages/checkout.php:246 pages/checkout.php:248 pages/checkout.php:255
|
@@ -12738,7 +12751,7 @@ msgstr ""
|
|
12738 |
msgid "Full Name"
|
12739 |
msgstr ""
|
12740 |
|
12741 |
-
#: pages/checkout.php:
|
12742 |
#: pages/checkout.php:219 pages/checkout.php:227 pages/checkout.php:233
|
12743 |
#: pages/checkout.php:236 pages/checkout.php:238 pages/checkout.php:245
|
12744 |
#: pages/checkout.php:247 pages/checkout.php:249 pages/checkout.php:256
|
@@ -12746,68 +12759,72 @@ msgstr ""
|
|
12746 |
msgid "LEAVE THIS BLANK"
|
12747 |
msgstr ""
|
12748 |
|
12749 |
-
#: pages/checkout.php:
|
12750 |
-
#: pages/checkout.php:
|
12751 |
-
#: pages/checkout.php:
|
12752 |
-
#: pages/checkout.php:
|
12753 |
-
#: pages/checkout.php:283
|
12754 |
#, php-format
|
12755 |
msgid ""
|
12756 |
"You are logged in as <strong>%s</strong>. If you would like to use a "
|
12757 |
"different account for this membership, <a href=\"%s\">log out now</a>."
|
12758 |
msgstr ""
|
12759 |
|
12760 |
-
#: pages/checkout.php:
|
12761 |
-
#: pages/checkout.php:
|
12762 |
-
#: pages/checkout.php:
|
12763 |
-
#: pages/checkout.php:
|
12764 |
-
#: pages/checkout.php:299
|
12765 |
msgid "Choose your Payment Method"
|
12766 |
msgstr ""
|
12767 |
|
12768 |
-
#: pages/checkout.php:
|
12769 |
-
#: pages/checkout.php:
|
12770 |
-
#: pages/checkout.php:
|
12771 |
-
#: pages/checkout.php:
|
12772 |
-
#: pages/checkout.php:307 pages/checkout.php:308
|
12773 |
msgid "Check Out with a Credit Card Here"
|
12774 |
msgstr ""
|
12775 |
|
12776 |
-
#: pages/checkout.php:
|
12777 |
#: classes/gateways/class.pmprogateway_stripe.php:638
|
12778 |
#: classes/gateways/class.pmprogateway_stripe.php:646
|
12779 |
#: classes/gateways/class.pmprogateway_stripe.php:653
|
12780 |
#: classes/gateways/class.pmprogateway_stripe.php:654
|
12781 |
-
#: classes/gateways/class.pmprogateway_stripe.php:655 pages/checkout.php:
|
12782 |
-
#: pages/checkout.php:
|
|
|
12783 |
msgid "Security Code (CVC)"
|
12784 |
msgstr ""
|
12785 |
|
12786 |
-
#: pages/checkout.php:
|
12787 |
-
#: pages/checkout.php:459 pages/checkout.php:
|
12788 |
-
#: pages/checkout.php:
|
12789 |
-
#: pages/checkout.php:
|
12790 |
-
#: pages/checkout.php:
|
12791 |
-
#: pages/checkout.php:
|
|
|
12792 |
#, php-format
|
12793 |
msgid "I agree to the %s"
|
12794 |
msgstr ""
|
12795 |
|
12796 |
-
#: pages/checkout.php:
|
12797 |
-
#: pages/checkout.php:500 pages/checkout.php:
|
12798 |
-
#: pages/checkout.php:
|
12799 |
-
#: pages/checkout.php:
|
12800 |
-
#: pages/checkout.php:
|
12801 |
-
#: pages/checkout.php:
|
|
|
12802 |
msgid "Complete Payment"
|
12803 |
msgstr ""
|
12804 |
|
12805 |
-
#: pages/checkout.php:
|
12806 |
-
#: pages/checkout.php:522 pages/checkout.php:
|
12807 |
-
#: pages/checkout.php:
|
12808 |
-
#: pages/checkout.php:
|
12809 |
-
#: pages/checkout.php:
|
12810 |
-
#: pages/checkout.php:
|
|
|
12811 |
msgid "Processing..."
|
12812 |
msgstr ""
|
12813 |
|
@@ -12839,14 +12856,15 @@ msgstr ""
|
|
12839 |
msgid "Invoice #%s on %s"
|
12840 |
msgstr ""
|
12841 |
|
12842 |
-
#: pages/confirmation.php:52 pages/confirmation.php:
|
12843 |
#: pages/confirmation.php:45 pages/confirmation.php:46
|
12844 |
#: pages/confirmation.php:51 pages/confirmation.php:52
|
12845 |
#: pages/confirmation.php:102 pages/confirmation.php:104
|
12846 |
#: pages/confirmation.php:112 pages/confirmation.php:115
|
12847 |
#: pages/confirmation.php:122 pages/confirmation.php:123
|
12848 |
-
#: pages/confirmation.php:125 pages/confirmation.php:126
|
12849 |
-
#: pages/invoice.php:
|
|
|
12850 |
msgid "Account"
|
12851 |
msgstr ""
|
12852 |
|
@@ -12857,85 +12875,80 @@ msgstr ""
|
|
12857 |
msgid "Membership Expires"
|
12858 |
msgstr ""
|
12859 |
|
12860 |
-
#: pages/confirmation.php:95 pages/invoice.php:85 pages/invoice.php:
|
12861 |
#: pages/confirmation.php:61 pages/confirmation.php:63
|
12862 |
#: pages/confirmation.php:65 pages/confirmation.php:71
|
12863 |
#: pages/confirmation.php:87 pages/confirmation.php:88
|
12864 |
-
#: pages/confirmation.php:90 pages/confirmation.php:91
|
12865 |
-
#: pages/
|
12866 |
-
#: pages/invoice.php:
|
12867 |
-
#: pages/invoice.php:
|
|
|
12868 |
#: pages/invoice.php:103 pages/invoice.php:104 pages/invoice.php:105
|
12869 |
#: pages/invoice.php:107 pages/invoice.php:109 pages/invoice.php:110
|
12870 |
-
#: pages/invoice.php:113 pages/invoice.php:114
|
12871 |
msgid "Total Billed"
|
12872 |
msgstr ""
|
12873 |
|
12874 |
-
#: pages/confirmation.php:
|
12875 |
-
#: pages/confirmation.php:94 pages/confirmation.php:96
|
12876 |
-
#: pages/confirmation.php:97 pages/invoice.php:75 pages/invoice.php:76
|
12877 |
-
#: pages/invoice.php:77 pages/invoice.php:78 pages/invoice.php:80
|
12878 |
-
#: pages/invoice.php:82 pages/invoice.php:86 pages/invoice.php:87
|
12879 |
-
msgid "Coupon"
|
12880 |
-
msgstr ""
|
12881 |
-
|
12882 |
-
#: pages/confirmation.php:118 pages/confirmation.php:97
|
12883 |
#: pages/confirmation.php:100 pages/confirmation.php:103
|
12884 |
#: pages/confirmation.php:110 pages/confirmation.php:111
|
12885 |
#: pages/confirmation.php:113 pages/confirmation.php:114
|
|
|
12886 |
#, php-format
|
12887 |
msgid ""
|
12888 |
"Below are details about your membership account. A welcome email has been "
|
12889 |
"sent to %s."
|
12890 |
msgstr ""
|
12891 |
|
12892 |
-
#: pages/confirmation.php:
|
12893 |
#: pages/confirmation.php:103 pages/confirmation.php:105
|
12894 |
#: pages/confirmation.php:113 pages/confirmation.php:116
|
12895 |
#: pages/confirmation.php:123 pages/confirmation.php:124
|
12896 |
#: pages/confirmation.php:126 pages/confirmation.php:127
|
12897 |
-
#:
|
12898 |
-
#: shortcodes/pmpro_account.php:234
|
12899 |
msgid "Pending"
|
12900 |
msgstr ""
|
12901 |
|
12902 |
-
#: pages/confirmation.php:
|
12903 |
#: pages/confirmation.php:115 pages/confirmation.php:123
|
12904 |
#: pages/confirmation.php:126 pages/confirmation.php:133
|
12905 |
#: pages/confirmation.php:134 pages/confirmation.php:135
|
12906 |
-
#: pages/confirmation.php:136
|
12907 |
msgid ""
|
12908 |
"If your account is not activated within a few minutes, please contact the "
|
12909 |
"site owner."
|
12910 |
msgstr ""
|
12911 |
|
12912 |
-
#: pages/invoice.php:
|
12913 |
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:103
|
12914 |
#: pages/invoice.php:106 pages/invoice.php:108 pages/invoice.php:111
|
12915 |
-
#: pages/invoice.php:112
|
12916 |
msgid "Invoice #"
|
12917 |
msgstr ""
|
12918 |
|
12919 |
-
#: pages/invoice.php:
|
12920 |
#: pages/invoice.php:127 pages/invoice.php:128 pages/invoice.php:129
|
12921 |
#: pages/invoice.php:132 pages/invoice.php:134 pages/invoice.php:137
|
12922 |
-
#: pages/invoice.php:138
|
12923 |
msgid "No invoices found."
|
12924 |
msgstr ""
|
12925 |
|
12926 |
-
#: pages/invoice.php:
|
12927 |
#: pages/invoice.php:138 pages/invoice.php:139 pages/invoice.php:140
|
12928 |
#: pages/invoice.php:143 pages/invoice.php:145 pages/invoice.php:146
|
|
|
12929 |
msgid "← View All Invoices"
|
12930 |
msgstr ""
|
12931 |
|
12932 |
-
#: pages/levels.php:
|
12933 |
#: pages/levels.php:66 pages/levels.php:68 pages/levels.php:69
|
12934 |
#: pages/levels.php:71 pages/levels.php:113 pages/levels.php:115
|
12935 |
msgid "Select"
|
12936 |
msgstr ""
|
12937 |
|
12938 |
-
#: pages/levels.php:
|
12939 |
#: pages/levels.php:57 pages/levels.php:72 pages/levels.php:75
|
12940 |
#: pages/levels.php:78 pages/levels.php:123 shortcodes/pmpro_account.php:59
|
12941 |
#: shortcodes/pmpro_account.php:60 shortcodes/pmpro_account.php:61
|
@@ -12943,19 +12956,19 @@ msgstr ""
|
|
12943 |
msgid "Renew"
|
12944 |
msgstr ""
|
12945 |
|
12946 |
-
#: pages/levels.php:
|
12947 |
#: pages/levels.php:79 pages/levels.php:82 pages/levels.php:117
|
12948 |
#: pages/levels.php:129
|
12949 |
msgid "Your Level"
|
12950 |
msgstr ""
|
12951 |
|
12952 |
-
#: pages/levels.php:
|
12953 |
#: pages/levels.php:94 pages/levels.php:97 pages/levels.php:98
|
12954 |
#: pages/levels.php:129 pages/levels.php:145
|
12955 |
msgid "← Return to Your Account"
|
12956 |
msgstr ""
|
12957 |
|
12958 |
-
#: pages/levels.php:
|
12959 |
#: pages/levels.php:96 pages/levels.php:99 pages/levels.php:100
|
12960 |
#: pages/levels.php:131 pages/levels.php:147
|
12961 |
msgid "← Return to Home"
|
@@ -13366,12 +13379,26 @@ msgstr ""
|
|
13366 |
#: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
|
13367 |
#: services/authnet-silent-post.php:144 services/authnet-silent-post.php:145
|
13368 |
#: services/authnet-silent-post.php:149 services/authnet-silent-post.php:167
|
13369 |
-
#: services/authnet-silent-post.php:172
|
13370 |
msgid ""
|
13371 |
"<p>A payment is being held for review within Authorize.net.</p><p>Payment "
|
13372 |
"Information From Authorize.net"
|
13373 |
msgstr ""
|
13374 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13375 |
#: shortcodes/pmpro_account.php:43 pages/account.php:19
|
13376 |
#: shortcodes/pmpro_account.php:43 shortcodes/pmpro_account.php:44
|
13377 |
#: shortcodes/pmpro_account.php:45
|
@@ -13798,6 +13825,24 @@ msgstr ""
|
|
13798 |
msgid "Expired"
|
13799 |
msgstr ""
|
13800 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13801 |
#: adminpages/orders.php:325 adminpages/orders.php:375
|
13802 |
#: adminpages/orders.php:447 adminpages/orders.php:476
|
13803 |
#: adminpages/orders.php:513 adminpages/orders.php:544
|
@@ -14351,6 +14396,22 @@ msgstr ""
|
|
14351 |
msgid "<strong>%s every %d %s</strong>"
|
14352 |
msgstr ""
|
14353 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14354 |
#: includes/functions.php:556 includes/functions.php:557
|
14355 |
#: includes/functions.php:566
|
14356 |
#, php-format
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: paid-memberships-pro\n"
|
8 |
"Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
|
9 |
+
"POT-Creation-Date: 2021-04-30 21:31+1000\n"
|
10 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11 |
"Last-Translator: \n"
|
12 |
"Language-Team: Stranger Studios <info@paidmembershipspro.com>\n"
|
64 |
msgid "Check Again"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: adminpages/addons.php:94 adminpages/orders.php:1003 adminpages/addons.php:76
|
68 |
#: adminpages/addons.php:79 adminpages/addons.php:92 adminpages/addons.php:93
|
69 |
#: adminpages/addons.php:94 adminpages/orders.php:605 adminpages/orders.php:712
|
70 |
#: adminpages/orders.php:741 adminpages/orders.php:850
|
183 |
msgid "Activate %s"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: adminpages/addons.php:230 adminpages/discountcodes.php:814
|
187 |
+
#: adminpages/membershiplevels.php:807 adminpages/orders.php:1361
|
188 |
#: adminpages/addons.php:213 adminpages/addons.php:216
|
189 |
#: adminpages/addons.php:229 adminpages/addons.php:230
|
190 |
#: adminpages/addons.php:231 adminpages/discountcodes.php:771
|
194 |
#: adminpages/membershiplevels.php:779 adminpages/membershiplevels.php:784
|
195 |
#: adminpages/membershiplevels.php:789 adminpages/membershiplevels.php:794
|
196 |
#: adminpages/membershiplevels.php:801 adminpages/membershiplevels.php:803
|
197 |
+
#: adminpages/membershiplevels.php:807 adminpages/orders.php:1338
|
198 |
+
#: adminpages/orders.php:1343 adminpages/orders.php:1344
|
199 |
+
#: adminpages/orders.php:1353 adminpages/orders.php:1358
|
200 |
+
#: adminpages/orders.php:1362
|
201 |
msgid "Delete"
|
202 |
msgstr ""
|
203 |
|
232 |
msgid "WordPress.org"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: adminpages/addons.php:248 adminpages/orders.php:579
|
236 |
+
#: adminpages/orders.php:912 adminpages/orders.php:1453
|
237 |
+
#: adminpages/orders.php:1463 includes/profile.php:155
|
238 |
#: shortcodes/pmpro_account.php:241 adminpages/addons.php:231
|
239 |
#: adminpages/addons.php:234 adminpages/addons.php:247
|
240 |
#: adminpages/addons.php:248 adminpages/addons.php:249
|
485 |
msgid "Members"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: adminpages/admin_header.php:229 adminpages/discountcodes.php:818
|
489 |
+
#: adminpages/orders.php:959 classes/class-pmpro-admin-activity-email.php:221
|
490 |
#: includes/adminpages.php:52 includes/adminpages.php:167
|
491 |
#: adminpages/admin_header.php:196 adminpages/admin_header.php:197
|
492 |
#: adminpages/admin_header.php:204 adminpages/admin_header.php:212
|
541 |
msgid "License"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: adminpages/admin_header.php:252 adminpages/discountcodes.php:786
|
545 |
#: adminpages/admin_header.php:215 adminpages/admin_header.php:220
|
546 |
#: adminpages/admin_header.php:227 adminpages/admin_header.php:235
|
547 |
#: adminpages/admin_header.php:252 adminpages/discountcodes.php:552
|
556 |
|
557 |
#: adminpages/admin_header.php:252 adminpages/membershiplevels.php:764
|
558 |
#: adminpages/pagesettings.php:98 includes/compatibility/beaver-builder.php:134
|
559 |
+
#: includes/metaboxes.php:132 adminpages/admin_header.php:128
|
560 |
#: adminpages/admin_header.php:149 adminpages/admin_header.php:150
|
561 |
#: adminpages/admin_header.php:159 adminpages/admin_header.php:171
|
562 |
#: adminpages/admin_header.php:184 adminpages/admin_header.php:215
|
571 |
#: adminpages/membershiplevels.php:700 adminpages/membershiplevels.php:702
|
572 |
#: adminpages/membershiplevels.php:728 adminpages/membershiplevels.php:745
|
573 |
#: adminpages/membershiplevels.php:750 adminpages/membershiplevels.php:755
|
574 |
+
#: adminpages/membershiplevels.php:760 adminpages/membershiplevels.php:764
|
575 |
+
#: adminpages/pagesettings.php:69 adminpages/pagesettings.php:70
|
576 |
+
#: adminpages/pagesettings.php:71 adminpages/pagesettings.php:85
|
577 |
+
#: adminpages/pagesettings.php:98 includes/adminpages.php:44
|
578 |
+
#: includes/adminpages.php:64 includes/adminpages.php:65
|
579 |
+
#: includes/adminpages.php:69 includes/adminpages.php:70
|
580 |
+
#: includes/adminpages.php:100 includes/adminpages.php:107
|
581 |
+
#: includes/adminpages.php:111 includes/adminpages.php:116
|
582 |
+
#: includes/compatibility/beaver-builder.php:130
|
583 |
#: includes/compatibility/beaver-builder.php:134 includes/metaboxes.php:126
|
584 |
#: includes/metaboxes.php:130 includes/metaboxes.php:131
|
585 |
#: includes/metaboxes.php:132
|
637 |
msgid "Payment Gateway & SSL Settings"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: adminpages/admin_header.php:268 adminpages/orders.php:383
|
641 |
+
#: adminpages/orders.php:1368 includes/profile.php:510
|
642 |
#: shortcodes/pmpro_account.php:161 adminpages/admin_header.php:131
|
643 |
#: adminpages/admin_header.php:152 adminpages/admin_header.php:162
|
644 |
#: adminpages/admin_header.php:171 adminpages/admin_header.php:183
|
841 |
#: adminpages/membershiplevels.php:527 adminpages/membershiplevels.php:570
|
842 |
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:589
|
843 |
#: adminpages/membershiplevels.php:594 adminpages/membershiplevels.php:599
|
844 |
+
#: adminpages/membershiplevels.php:604 adminpages/membershiplevels.php:608
|
845 |
msgid "Content Settings"
|
846 |
msgstr ""
|
847 |
|
932 |
msgstr ""
|
933 |
|
934 |
#: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:337
|
935 |
+
#: adminpages/advancedsettings.php:394 adminpages/advancedsettings.php:477
|
936 |
#: adminpages/membershiplevels.php:824 adminpages/paymentsettings.php:259
|
937 |
#: classes/gateways/class.pmprogateway_stripe.php:401
|
938 |
#: classes/gateways/class.pmprogateway_stripe.php:415
|
964 |
#: adminpages/membershiplevels.php:779 adminpages/membershiplevels.php:796
|
965 |
#: adminpages/membershiplevels.php:801 adminpages/membershiplevels.php:806
|
966 |
#: adminpages/membershiplevels.php:811 adminpages/membershiplevels.php:818
|
967 |
+
#: adminpages/membershiplevels.php:820 adminpages/membershiplevels.php:824
|
968 |
+
#: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:219
|
969 |
+
#: adminpages/paymentsettings.php:236 adminpages/paymentsettings.php:253
|
970 |
+
#: adminpages/paymentsettings.php:256 adminpages/paymentsettings.php:257
|
971 |
+
#: adminpages/paymentsettings.php:259 adminpages/paymentsettings.php:414
|
972 |
+
#: adminpages/paymentsettings.php:429 adminpages/paymentsettings.php:434
|
973 |
+
#: adminpages/paymentsettings.php:436 adminpages/paymentsettings.php:454
|
974 |
+
#: adminpages/paymentsettings.php:459 adminpages/paymentsettings.php:461
|
975 |
#: classes/gateways/class.pmprogateway_stripe.php:173
|
976 |
#: classes/gateways/class.pmprogateway_stripe.php:174
|
977 |
#: classes/gateways/class.pmprogateway_stripe.php:184
|
1110 |
msgid "Activity Email Frequency"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:333
|
1114 |
+
#: adminpages/reports/sales.php:295 adminpages/advancedsettings.php:305
|
1115 |
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:258
|
1116 |
#: adminpages/reports/memberships.php:265
|
1117 |
#: adminpages/reports/memberships.php:278
|
1130 |
msgid "Weekly"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:334
|
1134 |
+
#: adminpages/reports/sales.php:296 adminpages/advancedsettings.php:311
|
1135 |
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:259
|
1136 |
#: adminpages/reports/memberships.php:266
|
1137 |
#: adminpages/reports/memberships.php:279
|
1169 |
#: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:516
|
1170 |
#: adminpages/membershiplevels.php:518 adminpages/membershiplevels.php:524
|
1171 |
#: adminpages/membershiplevels.php:529 adminpages/membershiplevels.php:534
|
1172 |
+
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:541
|
1173 |
msgid "Other Settings"
|
1174 |
msgstr ""
|
1175 |
|
1217 |
msgid "Choose Levels to Hide Ads From"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: adminpages/advancedsettings.php:390 adminpages/advancedsettings.php:183
|
1221 |
#: adminpages/advancedsettings.php:190 adminpages/advancedsettings.php:203
|
1222 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1223 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
1226 |
msgid "Redirect all traffic from registration page to /susbcription/?"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: adminpages/advancedsettings.php:390 adminpages/advancedsettings.php:183
|
1230 |
#: adminpages/advancedsettings.php:190 adminpages/advancedsettings.php:203
|
1231 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1232 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
1235 |
msgid "multisite only"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: adminpages/advancedsettings.php:395 adminpages/membershiplevels.php:824
|
1239 |
#: adminpages/paymentsettings.php:260
|
1240 |
#: classes/gateways/class.pmprogateway_stripe.php:403
|
1241 |
#: classes/gateways/class.pmprogateway_stripe.php:417
|
1257 |
#: adminpages/membershiplevels.php:796 adminpages/membershiplevels.php:801
|
1258 |
#: adminpages/membershiplevels.php:806 adminpages/membershiplevels.php:811
|
1259 |
#: adminpages/membershiplevels.php:818 adminpages/membershiplevels.php:820
|
1260 |
+
#: adminpages/membershiplevels.php:824 adminpages/paymentsettings.php:211
|
1261 |
+
#: adminpages/paymentsettings.php:220 adminpages/paymentsettings.php:237
|
1262 |
+
#: adminpages/paymentsettings.php:254 adminpages/paymentsettings.php:257
|
1263 |
+
#: adminpages/paymentsettings.php:258 adminpages/paymentsettings.php:260
|
1264 |
+
#: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
|
1265 |
+
#: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:435
|
1266 |
+
#: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:455
|
1267 |
+
#: adminpages/paymentsettings.php:460 adminpages/paymentsettings.php:462
|
1268 |
#: classes/gateways/class.pmprogateway_stripe.php:174
|
1269 |
#: classes/gateways/class.pmprogateway_stripe.php:175
|
1270 |
#: classes/gateways/class.pmprogateway_stripe.php:185
|
1298 |
msgid "Yes"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: adminpages/advancedsettings.php:473 adminpages/advancedsettings.php:467
|
1302 |
#: adminpages/advancedsettings.php:472
|
1303 |
msgid "Uninstall PMPro on deletion?"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: adminpages/advancedsettings.php:478 adminpages/advancedsettings.php:472
|
1307 |
#: adminpages/advancedsettings.php:477
|
1308 |
msgid "Yes - Delete all PMPro Data."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: adminpages/advancedsettings.php:480 adminpages/advancedsettings.php:479
|
1312 |
msgid ""
|
1313 |
"To delete all PMPro data from the database, set to Yes, deactivate PMPro, "
|
1314 |
"and then click to delete PMPro from the plugins page."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: adminpages/advancedsettings.php:526 adminpages/pagesettings.php:439
|
1318 |
#: adminpages/paymentsettings.php:290 adminpages/advancedsettings.php:284
|
1319 |
#: adminpages/advancedsettings.php:355 adminpages/advancedsettings.php:359
|
1320 |
#: adminpages/advancedsettings.php:368 adminpages/advancedsettings.php:375
|
1342 |
msgstr ""
|
1343 |
|
1344 |
#: adminpages/dashboard.php:19 adminpages/reports/sales.php:20
|
1345 |
+
#: adminpages/reports/sales.php:289
|
1346 |
#: classes/class-pmpro-admin-activity-email.php:103 adminpages/dashboard.php:19
|
1347 |
#: adminpages/dashboard.php:20 adminpages/reports/sales.php:20
|
1348 |
#: adminpages/reports/sales.php:180 adminpages/reports/sales.php:189
|
1353 |
msgstr ""
|
1354 |
|
1355 |
#: adminpages/dashboard.php:26 adminpages/reports/memberships.php:18
|
1356 |
+
#: adminpages/reports/memberships.php:327 adminpages/dashboard.php:26
|
1357 |
#: adminpages/dashboard.php:27 adminpages/reports/memberships.php:18
|
1358 |
#: adminpages/reports/memberships.php:252
|
1359 |
#: adminpages/reports/memberships.php:259
|
1392 |
|
1393 |
#: adminpages/dashboard.php:113 adminpages/membershiplevels.php:751
|
1394 |
#: adminpages/dashboard.php:113 adminpages/membershiplevels.php:747
|
1395 |
+
#: adminpages/membershiplevels.php:751
|
1396 |
msgid "Create a Membership Level"
|
1397 |
msgstr ""
|
1398 |
|
1533 |
msgid "Translation Dashboard"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: adminpages/dashboard.php:219 adminpages/reports/login.php:180
|
1537 |
+
#: classes/class.memberorder.php:951 pages/checkout.php:123
|
1538 |
+
#: shortcodes/pmpro_account.php:160 adminpages/dashboard.php:215
|
1539 |
+
#: adminpages/dashboard.php:219 adminpages/dashboard.php:223
|
1540 |
+
#: adminpages/memberslist.php:112 adminpages/memberslist.php:145
|
1541 |
+
#: adminpages/memberslist.php:155 adminpages/memberslist.php:165
|
1542 |
+
#: adminpages/memberslist.php:169 adminpages/orders.php:1298
|
1543 |
+
#: adminpages/orders.php:1304 adminpages/orders.php:1313
|
1544 |
+
#: adminpages/orders.php:1323 adminpages/reports/login.php:179
|
1545 |
+
#: classes/class.memberorder.php:858 classes/class.memberorder.php:870
|
1546 |
+
#: classes/class.memberorder.php:943 classes/class.memberorder.php:945
|
1547 |
+
#: classes/class.memberorder.php:947 pages/account.php:51 pages/account.php:55
|
1548 |
#: pages/account.php:76 pages/checkout.php:118 pages/checkout.php:121
|
1549 |
#: pages/checkout.php:167 pages/checkout.php:168 pages/checkout.php:171
|
1550 |
#: pages/checkout.php:173 pages/checkout.php:175 pages/checkout.php:180
|
1557 |
msgstr ""
|
1558 |
|
1559 |
#: adminpages/dashboard.php:220 adminpages/dashboard.php:288
|
1560 |
+
#: adminpages/orders.php:1324 adminpages/reports/login.php:182
|
1561 |
#: includes/privacy.php:241 pages/billing.php:58 pages/cancel.php:60
|
1562 |
+
#: pages/invoice.php:112 pages/levels.php:17 shortcodes/pmpro_account.php:42
|
1563 |
#: shortcodes/pmpro_account.php:211 adminpages/dashboard.php:216
|
1564 |
#: adminpages/dashboard.php:220 adminpages/dashboard.php:284
|
1565 |
#: adminpages/dashboard.php:288 adminpages/dashboard.php:292
|
1575 |
#: pages/cancel.php:61 pages/invoice.php:89 pages/invoice.php:101
|
1576 |
#: pages/invoice.php:102 pages/invoice.php:103 pages/invoice.php:104
|
1577 |
#: pages/invoice.php:109 pages/invoice.php:112 pages/invoice.php:113
|
1578 |
+
#: pages/invoice.php:117 pages/levels.php:13 pages/levels.php:35
|
1579 |
+
#: shortcodes/pmpro_account.php:42 shortcodes/pmpro_account.php:43
|
1580 |
+
#: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
|
1581 |
+
#: shortcodes/pmpro_account.php:125 shortcodes/pmpro_account.php:126
|
1582 |
+
#: shortcodes/pmpro_account.php:128 shortcodes/pmpro_account.php:204
|
1583 |
+
#: shortcodes/pmpro_account.php:211
|
1584 |
msgid "Level"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: adminpages/dashboard.php:221 adminpages/reports/login.php:183
|
1588 |
#: adminpages/dashboard.php:217 adminpages/dashboard.php:221
|
1589 |
#: adminpages/dashboard.php:225 adminpages/memberslist.php:120
|
1590 |
#: adminpages/memberslist.php:153 adminpages/memberslist.php:163
|
1595 |
msgid "Joined"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: adminpages/dashboard.php:222 adminpages/discountcodes.php:784
|
1599 |
+
#: adminpages/reports/login.php:184 includes/profile.php:86
|
1600 |
#: adminpages/dashboard.php:218 adminpages/dashboard.php:222
|
1601 |
#: adminpages/dashboard.php:226 adminpages/discountcodes.php:550
|
1602 |
#: adminpages/discountcodes.php:560 adminpages/discountcodes.php:588
|
1616 |
msgid "Expires"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: adminpages/dashboard.php:228 adminpages/reports/login.php:262
|
1620 |
#: classes/class-pmpro-members-list-table.php:226 adminpages/dashboard.php:224
|
1621 |
#: adminpages/dashboard.php:228 adminpages/dashboard.php:232
|
1622 |
#: adminpages/memberslist.php:195 adminpages/memberslist.php:223
|
1637 |
msgstr ""
|
1638 |
|
1639 |
#: adminpages/dashboard.php:286 adminpages/discountcodes.php:449
|
1640 |
+
#: adminpages/discountcodes.php:782 adminpages/orders.php:420
|
1641 |
+
#: adminpages/orders.php:1321 adminpages/dashboard.php:282
|
1642 |
#: adminpages/dashboard.php:286 adminpages/dashboard.php:290
|
1643 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
1644 |
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
|
1668 |
msgid "Code"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: adminpages/dashboard.php:287 adminpages/orders.php:1322
|
1672 |
#: classes/gateways/class.pmprogateway_payflowpro.php:117
|
1673 |
#: adminpages/dashboard.php:283 adminpages/dashboard.php:287
|
1674 |
#: adminpages/dashboard.php:291 adminpages/orders.php:599
|
1686 |
msgid "User"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: adminpages/dashboard.php:289 adminpages/orders.php:642
|
1690 |
+
#: adminpages/orders.php:1325 includes/functions.php:2852
|
1691 |
+
#: includes/privacy.php:285 adminpages/dashboard.php:285
|
|
|
1692 |
#: adminpages/dashboard.php:289 adminpages/dashboard.php:293
|
1693 |
#: adminpages/orders.php:320 adminpages/orders.php:370
|
1694 |
#: adminpages/orders.php:442 adminpages/orders.php:471
|
1707 |
#: adminpages/templates/orders-email.php:64
|
1708 |
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
1709 |
#: pages/confirmation.php:95 pages/confirmation.php:96
|
1710 |
+
#: pages/confirmation.php:98 pages/confirmation.php:99
|
1711 |
+
#: pages/confirmation.php:103 pages/invoice.php:77 pages/invoice.php:78
|
1712 |
+
#: pages/invoice.php:79 pages/invoice.php:80 pages/invoice.php:82
|
1713 |
+
#: pages/invoice.php:84 pages/invoice.php:88 pages/invoice.php:89
|
1714 |
+
#: pages/invoice.php:93
|
1715 |
msgid "Total"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: adminpages/dashboard.php:290 adminpages/orders.php:734
|
1719 |
+
#: adminpages/orders.php:1329 includes/privacy.php:202 includes/privacy.php:309
|
1720 |
#: pages/invoice.php:28 shortcodes/pmpro_account.php:213
|
1721 |
#: adminpages/dashboard.php:286 adminpages/dashboard.php:290
|
1722 |
#: adminpages/dashboard.php:294 adminpages/orders.php:373
|
1740 |
msgid "Status"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: adminpages/dashboard.php:291 adminpages/orders.php:827
|
1744 |
+
#: adminpages/orders.php:1330 pages/invoice.php:110
|
1745 |
#: shortcodes/pmpro_account.php:210 adminpages/dashboard.php:287
|
1746 |
#: adminpages/dashboard.php:291 adminpages/dashboard.php:295
|
1747 |
#: adminpages/orders.php:442 adminpages/orders.php:492
|
1762 |
#: pages/invoice.php:87 pages/invoice.php:99 pages/invoice.php:100
|
1763 |
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:105
|
1764 |
#: pages/invoice.php:107 pages/invoice.php:110 pages/invoice.php:111
|
1765 |
+
#: pages/invoice.php:115 shortcodes/pmpro_account.php:122
|
1766 |
+
#: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:125
|
1767 |
+
#: shortcodes/pmpro_account.php:127 shortcodes/pmpro_account.php:203
|
1768 |
+
#: shortcodes/pmpro_account.php:210
|
1769 |
msgid "Date"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: adminpages/dashboard.php:298 adminpages/orders.php:1486
|
1773 |
#: adminpages/dashboard.php:294 adminpages/dashboard.php:298
|
1774 |
#: adminpages/dashboard.php:302 adminpages/orders.php:674
|
1775 |
#: adminpages/orders.php:977 adminpages/orders.php:995
|
1784 |
msgstr ""
|
1785 |
|
1786 |
#: adminpages/dashboard.php:315 adminpages/dashboard.php:330
|
1787 |
+
#: adminpages/orders.php:1392 adminpages/orders.php:1404
|
1788 |
#: adminpages/dashboard.php:311 adminpages/dashboard.php:315
|
1789 |
#: adminpages/dashboard.php:319 adminpages/dashboard.php:326
|
1790 |
#: adminpages/dashboard.php:330 adminpages/orders.php:630
|
1801 |
msgstr ""
|
1802 |
|
1803 |
#: adminpages/dashboard.php:317 adminpages/dashboard.php:332
|
1804 |
+
#: adminpages/orders.php:1394 adminpages/orders.php:1406
|
1805 |
#: adminpages/dashboard.php:313 adminpages/dashboard.php:317
|
1806 |
#: adminpages/dashboard.php:321 adminpages/dashboard.php:328
|
1807 |
#: adminpages/dashboard.php:332 adminpages/orders.php:1275
|
1911 |
msgid "Error deleting code. Please try again."
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: adminpages/discountcodes.php:352 adminpages/discountcodes.php:794
|
1915 |
#: adminpages/discountcodes.php:251 adminpages/discountcodes.php:254
|
1916 |
#: adminpages/discountcodes.php:255 adminpages/discountcodes.php:256
|
1917 |
#: adminpages/discountcodes.php:261 adminpages/discountcodes.php:305
|
1939 |
msgid "Edit Discount Code"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: adminpages/discountcodes.php:375 adminpages/discountcodes.php:733
|
1943 |
#: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
|
1944 |
#: adminpages/discountcodes.php:270 adminpages/discountcodes.php:271
|
1945 |
#: adminpages/discountcodes.php:276 adminpages/discountcodes.php:320
|
1953 |
msgid "Add New Discount Code"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: adminpages/discountcodes.php:444 adminpages/discountcodes.php:781
|
1957 |
#: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:779
|
1958 |
+
#: adminpages/orders.php:1320 adminpages/reports/login.php:179
|
1959 |
#: adminpages/templates/orders-email.php:46
|
1960 |
#: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
|
1961 |
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
|
1982 |
#: adminpages/membershiplevels.php:715 adminpages/membershiplevels.php:741
|
1983 |
#: adminpages/membershiplevels.php:758 adminpages/membershiplevels.php:763
|
1984 |
#: adminpages/membershiplevels.php:768 adminpages/membershiplevels.php:773
|
1985 |
+
#: adminpages/membershiplevels.php:775 adminpages/membershiplevels.php:779
|
1986 |
+
#: adminpages/memberslist.php:111 adminpages/memberslist.php:144
|
1987 |
+
#: adminpages/memberslist.php:154 adminpages/memberslist.php:164
|
1988 |
+
#: adminpages/memberslist.php:168 adminpages/orders.php:597
|
1989 |
+
#: adminpages/orders.php:900 adminpages/orders.php:910
|
1990 |
+
#: adminpages/orders.php:937 adminpages/orders.php:966
|
1991 |
+
#: adminpages/orders.php:1103 adminpages/orders.php:1134
|
1992 |
+
#: adminpages/orders.php:1140 adminpages/orders.php:1231
|
1993 |
+
#: adminpages/orders.php:1296 adminpages/orders.php:1302
|
1994 |
+
#: adminpages/orders.php:1307 adminpages/orders.php:1311
|
1995 |
+
#: adminpages/orders.php:1321 adminpages/orders.php:1352
|
1996 |
+
#: adminpages/reports/login.php:140 adminpages/reports/login.php:142
|
1997 |
+
#: adminpages/reports/login.php:158 adminpages/reports/login.php:162
|
1998 |
+
#: adminpages/reports/login.php:178 adminpages/templates/orders-email.php:46
|
1999 |
#: adminpages/templates/orders-print.php:75
|
2000 |
msgid "ID"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: adminpages/discountcodes.php:445 adminpages/orders.php:413
|
2004 |
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
2005 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
|
2006 |
#: adminpages/discountcodes.php:317 adminpages/discountcodes.php:382
|
2028 |
#: adminpages/discountcodes.php:505
|
2029 |
#: classes/gateways/class.pmprogateway_braintree.php:479
|
2030 |
#: classes/gateways/class.pmprogateway_stripe.php:1086 pages/billing.php:363
|
2031 |
+
#: pages/checkout.php:382 adminpages/discountcodes.php:367
|
2032 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
2033 |
#: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
|
2034 |
#: adminpages/discountcodes.php:442 adminpages/discountcodes.php:483
|
2077 |
#: pages/billing.php:316 pages/billing.php:317 pages/billing.php:319
|
2078 |
#: pages/billing.php:321 pages/billing.php:322 pages/billing.php:330
|
2079 |
#: pages/billing.php:339 pages/billing.php:342 pages/billing.php:363
|
2080 |
+
#: pages/checkout.php:380 pages/checkout.php:389 pages/checkout.php:392
|
2081 |
+
#: pages/checkout.php:463 pages/checkout.php:471 pages/checkout.php:508
|
2082 |
+
#: pages/checkout.php:524 pages/checkout.php:525 pages/checkout.php:532
|
2083 |
+
#: pages/checkout.php:553 pages/checkout.php:562 pages/checkout.php:571
|
2084 |
+
#: pages/checkout.php:575 pages/checkout.php:582 pages/checkout.php:585
|
2085 |
msgid "Expiration Date"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: adminpages/discountcodes.php:523 adminpages/discountcodes.php:785
|
2089 |
#: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
|
2090 |
#: adminpages/discountcodes.php:389 adminpages/discountcodes.php:390
|
2091 |
#: adminpages/discountcodes.php:395 adminpages/discountcodes.php:460
|
2116 |
msgid "Which Levels Will This Code Apply To?"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: adminpages/discountcodes.php:574 adminpages/membershiplevels.php:401
|
2120 |
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
|
2121 |
#: adminpages/discountcodes.php:431 adminpages/discountcodes.php:432
|
2122 |
#: adminpages/discountcodes.php:437 adminpages/discountcodes.php:510
|
2132 |
msgid "Initial Payment"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: adminpages/discountcodes.php:585 adminpages/membershiplevels.php:412
|
2136 |
#: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
|
2137 |
#: adminpages/discountcodes.php:441 adminpages/discountcodes.php:442
|
2138 |
#: adminpages/discountcodes.php:443 adminpages/discountcodes.php:448
|
2146 |
msgid "The initial amount collected at registration."
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: adminpages/discountcodes.php:590 adminpages/membershiplevels.php:417
|
2150 |
#: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
|
2151 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:447
|
2152 |
#: adminpages/discountcodes.php:448 adminpages/discountcodes.php:453
|
2161 |
msgid "Recurring Subscription"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: adminpages/discountcodes.php:591 adminpages/membershiplevels.php:418
|
2165 |
#: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
|
2166 |
#: adminpages/discountcodes.php:447 adminpages/discountcodes.php:448
|
2167 |
#: adminpages/discountcodes.php:449 adminpages/discountcodes.php:454
|
2176 |
msgid "Check if this level has a recurring subscription payment."
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: adminpages/discountcodes.php:595 adminpages/membershiplevels.php:422
|
2180 |
#: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
|
2181 |
#: adminpages/discountcodes.php:452 adminpages/discountcodes.php:453
|
2182 |
#: adminpages/discountcodes.php:458 adminpages/discountcodes.php:531
|
2190 |
msgid "Billing Amount"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: adminpages/discountcodes.php:606 adminpages/membershiplevels.php:433
|
2194 |
#: classes/gateways/class.pmprogateway_stripe.php:1263
|
2195 |
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:605
|
2196 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
2227 |
msgid "per"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: adminpages/discountcodes.php:610 adminpages/discountcodes.php:696
|
2231 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2232 |
#: classes/gateways/class.pmprogateway_stripe.php:1129
|
2233 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2252 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2253 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2254 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
2255 |
+
#: adminpages/membershiplevels.php:571
|
2256 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2257 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2258 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
2282 |
msgid "Day(s)"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: adminpages/discountcodes.php:610 adminpages/discountcodes.php:696
|
2286 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2287 |
#: classes/gateways/class.pmprogateway_stripe.php:1131
|
2288 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2307 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2308 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2309 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
2310 |
+
#: adminpages/membershiplevels.php:571
|
2311 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2312 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2313 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
2337 |
msgid "Month(s)"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: adminpages/discountcodes.php:610 adminpages/discountcodes.php:696
|
2341 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2342 |
#: classes/gateways/class.pmprogateway_stripe.php:1130
|
2343 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2362 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2363 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2364 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
2365 |
+
#: adminpages/membershiplevels.php:571
|
2366 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2367 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2368 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
2392 |
msgid "Week(s)"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: adminpages/discountcodes.php:610 adminpages/discountcodes.php:696
|
2396 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2397 |
#: classes/gateways/class.pmprogateway_stripe.php:1132
|
2398 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2417 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2418 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2419 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
2420 |
+
#: adminpages/membershiplevels.php:571
|
2421 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2422 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2423 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
2447 |
msgid "Year(s)"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: adminpages/discountcodes.php:618 adminpages/membershiplevels.php:446
|
2451 |
#: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
|
2452 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:475
|
2453 |
#: adminpages/discountcodes.php:476 adminpages/discountcodes.php:481
|
2462 |
msgid "The amount to be billed one cycle after the initial payment."
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: adminpages/discountcodes.php:620 adminpages/membershiplevels.php:448
|
2466 |
#: adminpages/discountcodes.php:619 adminpages/membershiplevels.php:366
|
2467 |
#: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
|
2468 |
#: adminpages/membershiplevels.php:389 adminpages/membershiplevels.php:390
|
2474 |
"or \"Year\"."
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: adminpages/discountcodes.php:622 adminpages/membershiplevels.php:450
|
2478 |
#: adminpages/discountcodes.php:621 adminpages/membershiplevels.php:450
|
2479 |
msgid "Stripe integration does not allow billing periods longer than 1 year."
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: adminpages/discountcodes.php:628 adminpages/membershiplevels.php:465
|
2483 |
#: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
|
2484 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:480
|
2485 |
#: adminpages/discountcodes.php:481 adminpages/discountcodes.php:486
|
2495 |
msgid "Billing Cycle Limit"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: adminpages/discountcodes.php:632 adminpages/membershiplevels.php:469
|
2499 |
#: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
|
2500 |
#: adminpages/discountcodes.php:482 adminpages/discountcodes.php:483
|
2501 |
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:489
|
2514 |
"initial payment. Set to zero if membership is indefinite."
|
2515 |
msgstr ""
|
2516 |
|
2517 |
+
#: adminpages/discountcodes.php:634 adminpages/membershiplevels.php:471
|
2518 |
#: adminpages/discountcodes.php:633 adminpages/membershiplevels.php:386
|
2519 |
#: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
|
2520 |
#: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:410
|
2527 |
"set an expiration date below."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: adminpages/discountcodes.php:643 adminpages/membershiplevels.php:480
|
2531 |
#: adminpages/discountcodes.php:642 adminpages/membershiplevels.php:477
|
2532 |
#: adminpages/membershiplevels.php:478 adminpages/membershiplevels.php:480
|
2533 |
#, php-format
|
2537 |
"\">Stripe Billing Limits Add On</a>."
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:488
|
2541 |
#: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
|
2542 |
#: adminpages/discountcodes.php:487 adminpages/discountcodes.php:488
|
2543 |
#: adminpages/discountcodes.php:489 adminpages/discountcodes.php:494
|
2553 |
msgid "Custom Trial"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:490
|
2557 |
#: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
|
2558 |
#: adminpages/discountcodes.php:488 adminpages/discountcodes.php:489
|
2559 |
#: adminpages/discountcodes.php:490 adminpages/discountcodes.php:495
|
2570 |
msgid "Check to add a custom trial period."
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: adminpages/discountcodes.php:655 adminpages/membershiplevels.php:493
|
2574 |
#: adminpages/discountcodes.php:654 adminpages/membershiplevels.php:398
|
2575 |
#: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
|
2576 |
#: adminpages/membershiplevels.php:421 adminpages/membershiplevels.php:422
|
2583 |
"trials by setting an initial payment different from the billing amount."
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: adminpages/discountcodes.php:661 adminpages/membershiplevels.php:510
|
2587 |
#: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
|
2588 |
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:493
|
2589 |
#: adminpages/discountcodes.php:494 adminpages/discountcodes.php:499
|
2600 |
msgid "Trial Billing Amount"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: adminpages/discountcodes.php:672 adminpages/membershiplevels.php:521
|
2604 |
#: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
|
2605 |
#: adminpages/discountcodes.php:503 adminpages/discountcodes.php:504
|
2606 |
#: adminpages/discountcodes.php:505 adminpages/discountcodes.php:510
|
2617 |
msgid "for the first"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: adminpages/discountcodes.php:674 adminpages/membershiplevels.php:523
|
2621 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
|
2622 |
#: adminpages/discountcodes.php:505 adminpages/discountcodes.php:506
|
2623 |
#: adminpages/discountcodes.php:507 adminpages/discountcodes.php:512
|
2634 |
msgid "subscription payments"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: adminpages/discountcodes.php:676 adminpages/membershiplevels.php:525
|
2638 |
#: adminpages/discountcodes.php:675 adminpages/membershiplevels.php:406
|
2639 |
#: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
|
2640 |
#: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:443
|
2647 |
"Stripe integration currently does not support trial amounts greater than $0."
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: adminpages/discountcodes.php:678 adminpages/membershiplevels.php:527
|
2651 |
#: adminpages/discountcodes.php:677 adminpages/membershiplevels.php:410
|
2652 |
#: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
|
2653 |
#: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:447
|
2661 |
"$0."
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: adminpages/discountcodes.php:680 adminpages/membershiplevels.php:529
|
2665 |
#: adminpages/discountcodes.php:679 adminpages/membershiplevels.php:414
|
2666 |
#: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
|
2667 |
#: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:451
|
2674 |
"Payflow integration currently does not support trial amounts greater than $0."
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
#: adminpages/discountcodes.php:686 adminpages/membershiplevels.php:550
|
2678 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
|
2679 |
#: adminpages/discountcodes.php:510 adminpages/discountcodes.php:511
|
2680 |
#: adminpages/discountcodes.php:512 adminpages/discountcodes.php:517
|
2688 |
#: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:527
|
2689 |
#: adminpages/membershiplevels.php:533 adminpages/membershiplevels.php:538
|
2690 |
#: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:544
|
2691 |
+
#: adminpages/membershiplevels.php:546 adminpages/membershiplevels.php:550
|
2692 |
msgid "Membership Expiration"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: adminpages/discountcodes.php:687 adminpages/membershiplevels.php:551
|
2696 |
#: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
|
2697 |
#: adminpages/discountcodes.php:512 adminpages/discountcodes.php:513
|
2698 |
#: adminpages/discountcodes.php:518 adminpages/discountcodes.php:591
|
2706 |
#: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:534
|
2707 |
#: adminpages/membershiplevels.php:539 adminpages/membershiplevels.php:544
|
2708 |
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:547
|
2709 |
+
#: adminpages/membershiplevels.php:551
|
2710 |
msgid "Check this to set when membership access expires."
|
2711 |
msgstr ""
|
2712 |
|
2713 |
+
#: adminpages/discountcodes.php:691 adminpages/membershiplevels.php:566
|
2714 |
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
|
2715 |
#: adminpages/discountcodes.php:515 adminpages/discountcodes.php:516
|
2716 |
#: adminpages/discountcodes.php:517 adminpages/discountcodes.php:522
|
2724 |
#: adminpages/membershiplevels.php:530 adminpages/membershiplevels.php:532
|
2725 |
#: adminpages/membershiplevels.php:549 adminpages/membershiplevels.php:554
|
2726 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:560
|
2727 |
+
#: adminpages/membershiplevels.php:562 adminpages/membershiplevels.php:566
|
2728 |
msgid "Expires In"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: adminpages/discountcodes.php:705 adminpages/membershiplevels.php:579
|
2732 |
#: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
|
2733 |
#: adminpages/discountcodes.php:529 adminpages/discountcodes.php:530
|
2734 |
#: adminpages/discountcodes.php:535 adminpages/discountcodes.php:608
|
2742 |
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:562
|
2743 |
#: adminpages/membershiplevels.php:567 adminpages/membershiplevels.php:572
|
2744 |
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:575
|
2745 |
+
#: adminpages/membershiplevels.php:579
|
2746 |
msgid ""
|
2747 |
"Set the duration of membership access. Note that the any future payments "
|
2748 |
"(recurring subscription, if any) will be cancelled when the membership "
|
2749 |
"expires."
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: adminpages/discountcodes.php:732 adminpages/discountcodes.php:525
|
2753 |
#: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
|
2754 |
#: adminpages/discountcodes.php:557 adminpages/discountcodes.php:558
|
2755 |
#: adminpages/discountcodes.php:563 adminpages/discountcodes.php:636
|
2758 |
msgid "Memberships Discount Codes"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#: adminpages/discountcodes.php:752 adminpages/discountcodes.php:751
|
2762 |
msgid "No Discount Codes Found"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: adminpages/discountcodes.php:753 adminpages/discountcodes.php:717
|
2766 |
#: adminpages/discountcodes.php:718 adminpages/discountcodes.php:719
|
2767 |
#: adminpages/discountcodes.php:752
|
2768 |
msgid ""
|
2769 |
"Discount codes allow you to override your membership level's default pricing."
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: adminpages/discountcodes.php:754 adminpages/discountcodes.php:753
|
2773 |
msgid "Create a Discount Code"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: adminpages/discountcodes.php:755 adminpages/discountcodes.php:754
|
2777 |
msgid "Documentation: Discount Codes"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: adminpages/discountcodes.php:764 adminpages/discountcodes.php:700
|
2781 |
#: adminpages/discountcodes.php:728 adminpages/discountcodes.php:729
|
2782 |
#: adminpages/discountcodes.php:730 adminpages/discountcodes.php:763
|
2783 |
#, php-format
|
2784 |
msgid "%d discount codes found."
|
2785 |
msgstr ""
|
2786 |
|
2787 |
+
#: adminpages/discountcodes.php:769 adminpages/discountcodes.php:535
|
2788 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
|
2789 |
#: adminpages/discountcodes.php:567 adminpages/discountcodes.php:568
|
2790 |
#: adminpages/discountcodes.php:573 adminpages/discountcodes.php:646
|
2794 |
msgid "Search Discount Codes"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
+
#: adminpages/discountcodes.php:772 adminpages/reports/login.php:120
|
2798 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
|
2799 |
#: adminpages/discountcodes.php:569 adminpages/discountcodes.php:570
|
2800 |
#: adminpages/discountcodes.php:571 adminpages/discountcodes.php:576
|
2807 |
msgid "Search"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: adminpages/discountcodes.php:783 adminpages/discountcodes.php:549
|
2811 |
#: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
|
2812 |
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
|
2813 |
#: adminpages/discountcodes.php:594 adminpages/discountcodes.php:667
|
2817 |
msgid "Starts"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: adminpages/discountcodes.php:808 adminpages/membershiplevels.php:805
|
2821 |
+
#: adminpages/orders.php:1353 adminpages/discountcodes.php:765
|
2822 |
#: adminpages/discountcodes.php:766 adminpages/discountcodes.php:767
|
2823 |
#: adminpages/discountcodes.php:773 adminpages/discountcodes.php:775
|
2824 |
#: adminpages/discountcodes.php:807 adminpages/membershiplevels.php:760
|
2825 |
#: adminpages/membershiplevels.php:777 adminpages/membershiplevels.php:782
|
2826 |
#: adminpages/membershiplevels.php:787 adminpages/membershiplevels.php:792
|
2827 |
#: adminpages/membershiplevels.php:799 adminpages/membershiplevels.php:801
|
2828 |
+
#: adminpages/membershiplevels.php:805 adminpages/orders.php:1332
|
2829 |
+
#: adminpages/orders.php:1337 adminpages/orders.php:1338
|
2830 |
+
#: adminpages/orders.php:1347 adminpages/orders.php:1352
|
2831 |
+
#: adminpages/orders.php:1354
|
2832 |
msgid "Edit"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: adminpages/discountcodes.php:811 adminpages/membershiplevels.php:806
|
2836 |
+
#: adminpages/orders.php:1356 adminpages/discountcodes.php:768
|
2837 |
#: adminpages/discountcodes.php:769 adminpages/discountcodes.php:770
|
2838 |
#: adminpages/discountcodes.php:776 adminpages/discountcodes.php:778
|
2839 |
#: adminpages/discountcodes.php:810 adminpages/membershiplevels.php:761
|
2840 |
#: adminpages/membershiplevels.php:778 adminpages/membershiplevels.php:783
|
2841 |
#: adminpages/membershiplevels.php:788 adminpages/membershiplevels.php:793
|
2842 |
#: adminpages/membershiplevels.php:800 adminpages/membershiplevels.php:802
|
2843 |
+
#: adminpages/membershiplevels.php:806 adminpages/orders.php:1335
|
2844 |
+
#: adminpages/orders.php:1340 adminpages/orders.php:1341
|
2845 |
+
#: adminpages/orders.php:1350 adminpages/orders.php:1355
|
2846 |
+
#: adminpages/orders.php:1357
|
2847 |
msgid "Copy"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: adminpages/discountcodes.php:814 adminpages/discountcodes.php:617
|
2851 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
2852 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
2853 |
#: adminpages/discountcodes.php:653 adminpages/discountcodes.php:658
|
2863 |
"code anymore."
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: adminpages/discountcodes.php:818 adminpages/discountcodes.php:775
|
2867 |
#: adminpages/discountcodes.php:776 adminpages/discountcodes.php:777
|
2868 |
#: adminpages/discountcodes.php:783 adminpages/discountcodes.php:785
|
2869 |
#: adminpages/discountcodes.php:817
|
3213 |
msgstr ""
|
3214 |
|
3215 |
#: adminpages/membershiplevels.php:354 adminpages/membershiplevels.php:780
|
3216 |
+
#: adminpages/reports/login.php:181 adminpages/membershiplevels.php:291
|
3217 |
#: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
|
3218 |
#: adminpages/membershiplevels.php:319 adminpages/membershiplevels.php:329
|
3219 |
#: adminpages/membershiplevels.php:351 adminpages/membershiplevels.php:353
|
3228 |
#: adminpages/membershiplevels.php:742 adminpages/membershiplevels.php:759
|
3229 |
#: adminpages/membershiplevels.php:764 adminpages/membershiplevels.php:769
|
3230 |
#: adminpages/membershiplevels.php:774 adminpages/membershiplevels.php:776
|
3231 |
+
#: adminpages/membershiplevels.php:780 adminpages/reports/login.php:142
|
3232 |
+
#: adminpages/reports/login.php:144 adminpages/reports/login.php:160
|
3233 |
+
#: adminpages/reports/login.php:164 adminpages/reports/login.php:180
|
3234 |
msgid "Name"
|
3235 |
msgstr ""
|
3236 |
|
3261 |
#: adminpages/membershiplevels.php:743 adminpages/membershiplevels.php:760
|
3262 |
#: adminpages/membershiplevels.php:765 adminpages/membershiplevels.php:770
|
3263 |
#: adminpages/membershiplevels.php:775 adminpages/membershiplevels.php:777
|
3264 |
+
#: adminpages/membershiplevels.php:781
|
3265 |
msgid "Billing Details"
|
3266 |
msgstr ""
|
3267 |
|
3335 |
#: adminpages/membershiplevels.php:520 adminpages/membershiplevels.php:522
|
3336 |
#: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:533
|
3337 |
#: adminpages/membershiplevels.php:538 adminpages/membershiplevels.php:539
|
3338 |
+
#: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:545
|
3339 |
msgid "Disable New Signups"
|
3340 |
msgstr ""
|
3341 |
|
3347 |
#: adminpages/membershiplevels.php:521 adminpages/membershiplevels.php:523
|
3348 |
#: adminpages/membershiplevels.php:529 adminpages/membershiplevels.php:534
|
3349 |
#: adminpages/membershiplevels.php:539 adminpages/membershiplevels.php:540
|
3350 |
+
#: adminpages/membershiplevels.php:542 adminpages/membershiplevels.php:546
|
3351 |
msgid ""
|
3352 |
"Check to hide this level from the membership levels page and disable "
|
3353 |
"registration."
|
3356 |
#: adminpages/membershiplevels.php:562 adminpages/membershiplevels.php:545
|
3357 |
#: adminpages/membershiplevels.php:550 adminpages/membershiplevels.php:555
|
3358 |
#: adminpages/membershiplevels.php:556 adminpages/membershiplevels.php:558
|
3359 |
+
#: adminpages/membershiplevels.php:562
|
3360 |
#, php-format
|
3361 |
msgid ""
|
3362 |
"Optional: Allow more customizable expiration dates using the <a href=\"%s\" "
|
3368 |
#: adminpages/membershiplevels.php:548 adminpages/membershiplevels.php:565
|
3369 |
#: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:575
|
3370 |
#: adminpages/membershiplevels.php:576 adminpages/membershiplevels.php:578
|
3371 |
+
#: adminpages/membershiplevels.php:582
|
3372 |
#, php-format
|
3373 |
msgid ""
|
3374 |
"WARNING: This level is set with both a recurring billing amount and an "
|
3380 |
#: adminpages/membershiplevels.php:624 adminpages/membershiplevels.php:588
|
3381 |
#: adminpages/membershiplevels.php:605 adminpages/membershiplevels.php:610
|
3382 |
#: adminpages/membershiplevels.php:615 adminpages/membershiplevels.php:618
|
3383 |
+
#: adminpages/membershiplevels.php:620 adminpages/membershiplevels.php:624
|
3384 |
#, php-format
|
3385 |
msgid ""
|
3386 |
"Non-members will not see posts in these categories. You can <a href=\"%s\" "
|
3390 |
#: adminpages/membershiplevels.php:628 adminpages/membershiplevels.php:592
|
3391 |
#: adminpages/membershiplevels.php:609 adminpages/membershiplevels.php:614
|
3392 |
#: adminpages/membershiplevels.php:619 adminpages/membershiplevels.php:622
|
3393 |
+
#: adminpages/membershiplevels.php:624 adminpages/membershiplevels.php:628
|
3394 |
#, php-format
|
3395 |
msgid ""
|
3396 |
"Non-members will see the title and excerpt for posts in these categories. "
|
3401 |
#: adminpages/membershiplevels.php:631 adminpages/membershiplevels.php:595
|
3402 |
#: adminpages/membershiplevels.php:612 adminpages/membershiplevels.php:617
|
3403 |
#: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
|
3404 |
+
#: adminpages/membershiplevels.php:627 adminpages/membershiplevels.php:631
|
3405 |
#, php-format
|
3406 |
msgid ""
|
3407 |
"Non-members will see the title only for posts in these categories. You can "
|
3418 |
#: adminpages/membershiplevels.php:602 adminpages/membershiplevels.php:619
|
3419 |
#: adminpages/membershiplevels.php:624 adminpages/membershiplevels.php:629
|
3420 |
#: adminpages/membershiplevels.php:632 adminpages/membershiplevels.php:634
|
3421 |
+
#: adminpages/membershiplevels.php:638
|
3422 |
msgid "Categories"
|
3423 |
msgstr ""
|
3424 |
|
3429 |
#: adminpages/membershiplevels.php:584 adminpages/membershiplevels.php:610
|
3430 |
#: adminpages/membershiplevels.php:627 adminpages/membershiplevels.php:632
|
3431 |
#: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:640
|
3432 |
+
#: adminpages/membershiplevels.php:642 adminpages/membershiplevels.php:646
|
3433 |
msgid "Save Level"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: adminpages/membershiplevels.php:647 adminpages/orders.php:949
|
3437 |
#: includes/profile.php:546 includes/profile.php:670 pages/billing.php:414
|
3438 |
#: pages/cancel.php:86 shortcodes/pmpro_account.php:106
|
3439 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
|
3443 |
#: adminpages/membershiplevels.php:611 adminpages/membershiplevels.php:628
|
3444 |
#: adminpages/membershiplevels.php:633 adminpages/membershiplevels.php:638
|
3445 |
#: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:643
|
3446 |
+
#: adminpages/membershiplevels.php:647 adminpages/orders.php:511
|
3447 |
+
#: adminpages/orders.php:561 adminpages/orders.php:633
|
3448 |
+
#: adminpages/orders.php:662 adminpages/orders.php:765
|
3449 |
+
#: adminpages/orders.php:796 adminpages/orders.php:807
|
3450 |
+
#: adminpages/orders.php:894 adminpages/orders.php:930
|
3451 |
+
#: adminpages/orders.php:934 adminpages/orders.php:939
|
3452 |
+
#: adminpages/orders.php:940 adminpages/orders.php:949
|
3453 |
+
#: adminpages/orders.php:950 includes/profile.php:529 includes/profile.php:538
|
3454 |
+
#: includes/profile.php:546 includes/profile.php:547 includes/profile.php:567
|
3455 |
+
#: includes/profile.php:670 pages/account.php:44 pages/billing.php:295
|
3456 |
+
#: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
|
3457 |
+
#: pages/billing.php:342 pages/billing.php:344 pages/billing.php:348
|
3458 |
+
#: pages/billing.php:363 pages/billing.php:364 pages/billing.php:365
|
3459 |
+
#: pages/billing.php:371 pages/billing.php:372 pages/billing.php:380
|
3460 |
+
#: pages/billing.php:390 pages/billing.php:392 pages/billing.php:397
|
3461 |
+
#: pages/billing.php:401 pages/billing.php:406 pages/billing.php:414
|
3462 |
+
#: pages/cancel.php:71 pages/cancel.php:83 pages/cancel.php:84
|
3463 |
+
#: pages/cancel.php:86 shortcodes/pmpro_account.php:70
|
3464 |
#: shortcodes/pmpro_account.php:72 shortcodes/pmpro_account.php:73
|
3465 |
#: shortcodes/pmpro_account.php:106
|
3466 |
msgid "Cancel"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
#: adminpages/membershiplevels.php:750 adminpages/membershiplevels.php:791
|
3470 |
+
#: adminpages/membershiplevels.php:746 adminpages/membershiplevels.php:750
|
3471 |
+
#: adminpages/membershiplevels.php:787 adminpages/membershiplevels.php:791
|
3472 |
msgid "No Membership Levels Found"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
#: adminpages/membershiplevels.php:752 adminpages/membershiplevels.php:748
|
3476 |
+
#: adminpages/membershiplevels.php:752
|
3477 |
msgid "Video: Membership Levels"
|
3478 |
msgstr ""
|
3479 |
|
3497 |
#: adminpages/membershiplevels.php:744 adminpages/membershiplevels.php:747
|
3498 |
#: adminpages/membershiplevels.php:749 adminpages/membershiplevels.php:752
|
3499 |
#: adminpages/membershiplevels.php:754 adminpages/membershiplevels.php:755
|
3500 |
+
#: adminpages/membershiplevels.php:757 adminpages/membershiplevels.php:758
|
3501 |
+
#: adminpages/membershiplevels.php:761
|
3502 |
msgid "Search Levels"
|
3503 |
msgstr ""
|
3504 |
|
3512 |
#: adminpages/membershiplevels.php:702 adminpages/membershiplevels.php:728
|
3513 |
#: adminpages/membershiplevels.php:745 adminpages/membershiplevels.php:750
|
3514 |
#: adminpages/membershiplevels.php:755 adminpages/membershiplevels.php:761
|
3515 |
+
#: adminpages/membershiplevels.php:765
|
3516 |
msgid "Add New Level"
|
3517 |
msgstr ""
|
3518 |
|
3524 |
#: adminpages/membershiplevels.php:731 adminpages/membershiplevels.php:748
|
3525 |
#: adminpages/membershiplevels.php:753 adminpages/membershiplevels.php:758
|
3526 |
#: adminpages/membershiplevels.php:763 adminpages/membershiplevels.php:765
|
3527 |
+
#: adminpages/membershiplevels.php:769
|
3528 |
msgid "Drag and drop membership levels to reorder them on the Levels page."
|
3529 |
msgstr ""
|
3530 |
|
3541 |
#: adminpages/membershiplevels.php:744 adminpages/membershiplevels.php:761
|
3542 |
#: adminpages/membershiplevels.php:766 adminpages/membershiplevels.php:771
|
3543 |
#: adminpages/membershiplevels.php:776 adminpages/membershiplevels.php:778
|
3544 |
+
#: adminpages/membershiplevels.php:782 pages/account.php:20
|
3545 |
+
#: pages/billing.php:88 pages/cancel.php:53 pages/cancel.php:61
|
3546 |
+
#: pages/cancel.php:62 pages/confirmation.php:80 pages/confirmation.php:81
|
3547 |
+
#: pages/confirmation.php:82 pages/confirmation.php:83
|
3548 |
+
#: pages/confirmation.php:84 pages/confirmation.php:87
|
3549 |
#: pages/confirmation.php:89 pages/invoice.php:62 pages/invoice.php:63
|
3550 |
#: pages/invoice.php:64 pages/invoice.php:68 pages/invoice.php:70
|
3551 |
+
#: pages/invoice.php:72 pages/invoice.php:73 pages/invoice.php:77
|
3552 |
+
#: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:45
|
3553 |
+
#: shortcodes/pmpro_account.php:46
|
3554 |
msgid "Expiration"
|
3555 |
msgstr ""
|
3556 |
|
3565 |
#: adminpages/membershiplevels.php:745 adminpages/membershiplevels.php:762
|
3566 |
#: adminpages/membershiplevels.php:767 adminpages/membershiplevels.php:772
|
3567 |
#: adminpages/membershiplevels.php:777 adminpages/membershiplevels.php:779
|
3568 |
+
#: adminpages/membershiplevels.php:783
|
3569 |
msgid "Allow Signups"
|
3570 |
msgstr ""
|
3571 |
|
3580 |
#: adminpages/membershiplevels.php:762 adminpages/membershiplevels.php:779
|
3581 |
#: adminpages/membershiplevels.php:784 adminpages/membershiplevels.php:789
|
3582 |
#: adminpages/membershiplevels.php:794 adminpages/membershiplevels.php:801
|
3583 |
+
#: adminpages/membershiplevels.php:803 adminpages/membershiplevels.php:807
|
3584 |
#, php-format
|
3585 |
msgid ""
|
3586 |
"Are you sure you want to delete membership level %s? All subscriptions will "
|
3598 |
#: adminpages/membershiplevels.php:767 adminpages/membershiplevels.php:784
|
3599 |
#: adminpages/membershiplevels.php:789 adminpages/membershiplevels.php:794
|
3600 |
#: adminpages/membershiplevels.php:799 adminpages/membershiplevels.php:806
|
3601 |
+
#: adminpages/membershiplevels.php:808 adminpages/membershiplevels.php:812
|
3602 |
msgid "FREE"
|
3603 |
msgstr ""
|
3604 |
|
3613 |
#: adminpages/membershiplevels.php:776 adminpages/membershiplevels.php:793
|
3614 |
#: adminpages/membershiplevels.php:798 adminpages/membershiplevels.php:803
|
3615 |
#: adminpages/membershiplevels.php:808 adminpages/membershiplevels.php:815
|
3616 |
+
#: adminpages/membershiplevels.php:817 adminpages/membershiplevels.php:821
|
3617 |
msgid "After"
|
3618 |
msgstr ""
|
3619 |
|
3626 |
msgid "Members List"
|
3627 |
msgstr ""
|
3628 |
|
3629 |
+
#: adminpages/memberslist.php:21 adminpages/orders.php:981
|
3630 |
#: adminpages/memberslist.php:21 adminpages/memberslist.php:26
|
3631 |
#: adminpages/orders.php:522 adminpages/orders.php:591
|
3632 |
#: adminpages/orders.php:698 adminpages/orders.php:727
|
3668 |
msgid "Error deleting order."
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: adminpages/orders.php:310 adminpages/orders.php:130
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3672 |
#: adminpages/orders.php:180 adminpages/orders.php:281
|
3673 |
#: adminpages/orders.php:291 adminpages/orders.php:292
|
3674 |
#: adminpages/orders.php:302 adminpages/orders.php:303
|
3678 |
msgid "Error saving order."
|
3679 |
msgstr ""
|
3680 |
|
3681 |
+
#: adminpages/orders.php:381 classes/class-pmpro-admin-activity-email.php:219
|
3682 |
+
#: classes/class.memberorder.php:953 adminpages/orders.php:195
|
3683 |
#: adminpages/orders.php:245 adminpages/orders.php:317
|
3684 |
#: adminpages/orders.php:321 adminpages/orders.php:346
|
3685 |
#: adminpages/orders.php:352 adminpages/orders.php:362
|
3690 |
#: classes/class.memberorder.php:763 classes/class.memberorder.php:814
|
3691 |
#: classes/class.memberorder.php:859 classes/class.memberorder.php:860
|
3692 |
#: classes/class.memberorder.php:872 classes/class.memberorder.php:945
|
3693 |
+
#: classes/class.memberorder.php:947 classes/class.memberorder.php:949
|
3694 |
msgid "Order"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
+
#: adminpages/orders.php:382 adminpages/orders.php:1364
|
3698 |
#: pages/confirmation.php:49 pages/invoice.php:22 adminpages/orders.php:370
|
3699 |
#: adminpages/orders.php:371 adminpages/orders.php:375
|
3700 |
#: adminpages/orders.php:383 adminpages/orders.php:1341
|
3706 |
msgid "Print"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
+
#: adminpages/orders.php:385 adminpages/orders.php:197
|
3710 |
#: adminpages/orders.php:247 adminpages/orders.php:319
|
3711 |
#: adminpages/orders.php:323 adminpages/orders.php:348
|
3712 |
#: adminpages/orders.php:354 adminpages/orders.php:364
|
3715 |
msgid "New Order"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: adminpages/orders.php:431 adminpages/orders.php:220
|
3719 |
#: adminpages/orders.php:270 adminpages/orders.php:342
|
3720 |
#: adminpages/orders.php:359 adminpages/orders.php:371
|
3721 |
#: adminpages/orders.php:390 adminpages/orders.php:401
|
3726 |
msgid "Randomly generated for you."
|
3727 |
msgstr ""
|
3728 |
|
3729 |
+
#: adminpages/orders.php:436 adminpages/orders.php:225
|
3730 |
#: adminpages/orders.php:275 adminpages/orders.php:347
|
3731 |
#: adminpages/orders.php:364 adminpages/orders.php:376
|
3732 |
#: adminpages/orders.php:395 adminpages/orders.php:406
|
3737 |
msgid "User ID"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: adminpages/orders.php:449 adminpages/orders.php:234
|
3741 |
#: adminpages/orders.php:284 adminpages/orders.php:356
|
3742 |
#: adminpages/orders.php:376 adminpages/orders.php:385
|
3743 |
#: adminpages/orders.php:407 adminpages/orders.php:418
|
3747 |
msgid "Membership Level ID"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: adminpages/orders.php:462 includes/privacy.php:245 adminpages/orders.php:243
|
3751 |
#: adminpages/orders.php:293 adminpages/orders.php:365
|
3752 |
#: adminpages/orders.php:389 adminpages/orders.php:394
|
3753 |
#: adminpages/orders.php:420 adminpages/orders.php:431
|
3757 |
msgid "Billing Name"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
+
#: adminpages/orders.php:476 includes/privacy.php:249 adminpages/orders.php:251
|
3761 |
#: adminpages/orders.php:301 adminpages/orders.php:373
|
3762 |
#: adminpages/orders.php:401 adminpages/orders.php:402
|
3763 |
#: adminpages/orders.php:432 adminpages/orders.php:443
|
3767 |
msgid "Billing Street"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: adminpages/orders.php:489 includes/privacy.php:253 includes/privacy.php:358
|
3771 |
#: adminpages/orders.php:258 adminpages/orders.php:308
|
3772 |
#: adminpages/orders.php:380 adminpages/orders.php:409
|
3773 |
#: adminpages/orders.php:412 adminpages/orders.php:443
|
3778 |
msgid "Billing City"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: adminpages/orders.php:502 includes/privacy.php:257 adminpages/orders.php:265
|
3782 |
#: adminpages/orders.php:315 adminpages/orders.php:387
|
3783 |
#: adminpages/orders.php:416 adminpages/orders.php:423
|
3784 |
#: adminpages/orders.php:454 adminpages/orders.php:465
|
3788 |
msgid "Billing State"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: adminpages/orders.php:515 includes/privacy.php:261 includes/privacy.php:360
|
3792 |
#: adminpages/orders.php:272 adminpages/orders.php:322
|
3793 |
#: adminpages/orders.php:394 adminpages/orders.php:423
|
3794 |
#: adminpages/orders.php:434 adminpages/orders.php:465
|
3799 |
msgid "Billing Postal Code"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: adminpages/orders.php:528 includes/privacy.php:265 includes/privacy.php:362
|
3803 |
#: adminpages/orders.php:279 adminpages/orders.php:329
|
3804 |
#: adminpages/orders.php:401 adminpages/orders.php:430
|
3805 |
#: adminpages/orders.php:445 adminpages/orders.php:476
|
3810 |
msgid "Billing Country"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
+
#: adminpages/orders.php:542 includes/privacy.php:269 adminpages/orders.php:287
|
3814 |
#: adminpages/orders.php:337 adminpages/orders.php:409
|
3815 |
#: adminpages/orders.php:438 adminpages/orders.php:457
|
3816 |
#: adminpages/orders.php:488 adminpages/orders.php:499
|
3820 |
msgid "Billing Phone"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: adminpages/orders.php:572 adminpages/orders.php:1331
|
3824 |
#: classes/class.pmproemail.php:313 classes/class.pmproemail.php:322
|
3825 |
#: classes/class.pmproemail.php:331 classes/class.pmproemail.php:413
|
3826 |
+
#: classes/class.pmproemail.php:422 classes/class.pmproemail.php:743
|
3827 |
+
#: classes/class.pmproemail.php:745
|
3828 |
#: classes/gateways/class.pmprogateway_braintree.php:509
|
3829 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1099 pages/checkout.php:88
|
3830 |
+
#: pages/checkout.php:94 pages/checkout.php:419 pages/confirmation.php:58
|
3831 |
#: pages/invoice.php:40 adminpages/orders.php:560 adminpages/orders.php:564
|
3832 |
#: adminpages/orders.php:565 adminpages/orders.php:573
|
3833 |
#: adminpages/orders.php:575 adminpages/orders.php:1307
|
3911 |
#: pages/checkout.php:78 pages/checkout.php:81 pages/checkout.php:83
|
3912 |
#: pages/checkout.php:85 pages/checkout.php:86 pages/checkout.php:89
|
3913 |
#: pages/checkout.php:92 pages/checkout.php:93 pages/checkout.php:96
|
3914 |
+
#: pages/checkout.php:417 pages/checkout.php:426 pages/checkout.php:429
|
3915 |
+
#: pages/checkout.php:498 pages/checkout.php:506 pages/checkout.php:549
|
3916 |
+
#: pages/checkout.php:565 pages/checkout.php:566 pages/checkout.php:573
|
3917 |
+
#: pages/checkout.php:594 pages/checkout.php:603 pages/checkout.php:612
|
3918 |
+
#: pages/checkout.php:616 pages/checkout.php:617 pages/checkout.php:619
|
3919 |
+
#: pages/checkout.php:622 pages/confirmation.php:51 pages/confirmation.php:52
|
3920 |
#: pages/confirmation.php:57 pages/confirmation.php:58 pages/invoice.php:32
|
3921 |
#: pages/invoice.php:33 pages/invoice.php:34 pages/invoice.php:40
|
3922 |
msgid "Discount Code"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
+
#: adminpages/orders.php:583 classes/class.pmproemail.php:868
|
3926 |
+
#: classes/class.pmproemail.php:918 includes/init.php:197
|
3927 |
#: includes/profile.php:34 adminpages/orders.php:571 adminpages/orders.php:575
|
3928 |
#: adminpages/orders.php:576 adminpages/orders.php:578
|
3929 |
#: adminpages/orders.php:584 adminpages/orders.php:586
|
3941 |
msgid "None"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: adminpages/orders.php:594 includes/privacy.php:273 adminpages/orders.php:296
|
3945 |
#: adminpages/orders.php:346 adminpages/orders.php:418
|
3946 |
#: adminpages/orders.php:447 adminpages/orders.php:470
|
3947 |
#: adminpages/orders.php:501 adminpages/orders.php:512
|
3952 |
msgid "Sub Total"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: adminpages/orders.php:607 includes/functions.php:2823
|
3956 |
+
#: includes/privacy.php:277 adminpages/orders.php:304 adminpages/orders.php:354
|
3957 |
+
#: adminpages/orders.php:426 adminpages/orders.php:455
|
3958 |
+
#: adminpages/orders.php:481 adminpages/orders.php:512
|
3959 |
+
#: adminpages/orders.php:523 adminpages/orders.php:555
|
3960 |
+
#: adminpages/orders.php:595 adminpages/orders.php:599
|
3961 |
+
#: adminpages/orders.php:600 adminpages/orders.php:608
|
3962 |
+
#: adminpages/orders.php:610 adminpages/templates/orders-email.php:60
|
|
|
|
|
3963 |
#: adminpages/templates/orders-print.php:89 includes/privacy.php:277
|
3964 |
#: pages/confirmation.php:91 pages/confirmation.php:92
|
3965 |
+
#: pages/confirmation.php:94 pages/confirmation.php:95
|
3966 |
+
#: pages/confirmation.php:99 pages/invoice.php:73 pages/invoice.php:74
|
3967 |
+
#: pages/invoice.php:75 pages/invoice.php:76 pages/invoice.php:78
|
3968 |
+
#: pages/invoice.php:80 pages/invoice.php:84 pages/invoice.php:85
|
3969 |
+
#: pages/invoice.php:89
|
3970 |
msgid "Tax"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: adminpages/orders.php:624 includes/privacy.php:281 adminpages/orders.php:312
|
3974 |
#: adminpages/orders.php:362 adminpages/orders.php:434
|
3975 |
#: adminpages/orders.php:463 adminpages/orders.php:492
|
3976 |
#: adminpages/orders.php:523 adminpages/orders.php:534
|
3980 |
msgid "Coupon Amount"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: adminpages/orders.php:656 includes/privacy.php:289 adminpages/orders.php:330
|
3984 |
#: adminpages/orders.php:380 adminpages/orders.php:452
|
3985 |
#: adminpages/orders.php:481 adminpages/orders.php:518
|
3986 |
#: adminpages/orders.php:549 adminpages/orders.php:560
|
3991 |
msgid "Payment Type"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: adminpages/orders.php:667 adminpages/orders.php:335
|
3995 |
#: adminpages/orders.php:385 adminpages/orders.php:457
|
3996 |
#: adminpages/orders.php:486 adminpages/orders.php:528
|
3997 |
#: adminpages/orders.php:559 adminpages/orders.php:570
|
4002 |
msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: adminpages/orders.php:671
|
4006 |
#: classes/gateways/class.pmprogateway_braintree.php:466
|
4007 |
#: classes/gateways/class.pmprogateway_stripe.php:1069 includes/privacy.php:293
|
4008 |
+
#: pages/billing.php:321 pages/checkout.php:367 adminpages/orders.php:339
|
4009 |
#: adminpages/orders.php:389 adminpages/orders.php:461
|
4010 |
#: adminpages/orders.php:490 adminpages/orders.php:532
|
4011 |
#: adminpages/orders.php:563 adminpages/orders.php:574
|
4059 |
#: pages/billing.php:268 pages/billing.php:271 pages/billing.php:274
|
4060 |
#: pages/billing.php:275 pages/billing.php:279 pages/billing.php:280
|
4061 |
#: pages/billing.php:288 pages/billing.php:294 pages/billing.php:297
|
4062 |
+
#: pages/billing.php:321 pages/checkout.php:365 pages/checkout.php:374
|
4063 |
+
#: pages/checkout.php:377 pages/checkout.php:423 pages/checkout.php:431
|
4064 |
+
#: pages/checkout.php:493 pages/checkout.php:507 pages/checkout.php:510
|
4065 |
+
#: pages/checkout.php:516 pages/checkout.php:517 pages/checkout.php:525
|
4066 |
+
#: pages/checkout.php:527 pages/checkout.php:534 pages/checkout.php:537
|
4067 |
msgid "Card Type"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: adminpages/orders.php:681 adminpages/orders.php:344
|
4071 |
#: adminpages/orders.php:394 adminpages/orders.php:466
|
4072 |
#: adminpages/orders.php:495 adminpages/orders.php:540
|
4073 |
#: adminpages/orders.php:571 adminpages/orders.php:582
|
4078 |
msgid "e.g. Visa, MasterCard, AMEX, etc"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: adminpages/orders.php:685
|
4082 |
#: classes/gateways/class.pmprogateway_twocheckout.php:138
|
4083 |
#: includes/privacy.php:297 adminpages/orders.php:348 adminpages/orders.php:398
|
4084 |
#: adminpages/orders.php:470 adminpages/orders.php:499
|
4096 |
msgid "Account Number"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
+
#: adminpages/orders.php:696 adminpages/orders.php:353
|
4100 |
#: adminpages/orders.php:403 adminpages/orders.php:475
|
4101 |
#: adminpages/orders.php:504 adminpages/orders.php:553
|
4102 |
#: adminpages/orders.php:584 adminpages/orders.php:595
|
4107 |
msgid "Obscure all but last 4 digits."
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: adminpages/orders.php:705 adminpages/orders.php:716 includes/privacy.php:301
|
4111 |
#: adminpages/orders.php:358 adminpages/orders.php:408
|
4112 |
#: adminpages/orders.php:480 adminpages/orders.php:509
|
4113 |
#: adminpages/orders.php:561 adminpages/orders.php:592
|
4119 |
msgid "Expiration Month"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
+
#: adminpages/orders.php:724 includes/privacy.php:305 adminpages/orders.php:365
|
4123 |
#: adminpages/orders.php:415 adminpages/orders.php:487
|
4124 |
#: adminpages/orders.php:516 adminpages/orders.php:569
|
4125 |
#: adminpages/orders.php:600 adminpages/orders.php:611
|
4130 |
msgid "Expiration Year"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
+
#: adminpages/orders.php:756 adminpages/orders.php:1327
|
4134 |
+
#: classes/class.memberorder.php:954 includes/privacy.php:313
|
4135 |
#: adminpages/orders.php:394 adminpages/orders.php:444
|
4136 |
#: adminpages/orders.php:516 adminpages/orders.php:545
|
4137 |
#: adminpages/orders.php:604 adminpages/orders.php:612
|
4151 |
#: classes/class.memberorder.php:815 classes/class.memberorder.php:860
|
4152 |
#: classes/class.memberorder.php:861 classes/class.memberorder.php:873
|
4153 |
#: classes/class.memberorder.php:946 classes/class.memberorder.php:948
|
4154 |
+
#: classes/class.memberorder.php:950 includes/privacy.php:313
|
4155 |
msgid "Gateway"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: adminpages/orders.php:779 adminpages/paymentsettings.php:148
|
4159 |
#: includes/privacy.php:317 adminpages/orders.php:411 adminpages/orders.php:461
|
4160 |
#: adminpages/orders.php:462 adminpages/orders.php:534
|
4161 |
#: adminpages/orders.php:563 adminpages/orders.php:633
|
4172 |
msgid "Gateway Environment"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
+
#: adminpages/orders.php:787 adminpages/paymentsettings.php:152
|
4176 |
#: adminpages/orders.php:415 adminpages/orders.php:465
|
4177 |
#: adminpages/orders.php:466 adminpages/orders.php:538
|
4178 |
#: adminpages/orders.php:567 adminpages/orders.php:640
|
4188 |
msgid "Sandbox/Testing"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
+
#: adminpages/orders.php:788 adminpages/paymentsettings.php:153
|
4192 |
#: adminpages/orders.php:416 adminpages/orders.php:466
|
4193 |
#: adminpages/orders.php:467 adminpages/orders.php:539
|
4194 |
#: adminpages/orders.php:568 adminpages/orders.php:642
|
4204 |
msgid "Live/Production"
|
4205 |
msgstr ""
|
4206 |
|
4207 |
+
#: adminpages/orders.php:796 includes/privacy.php:321 adminpages/orders.php:423
|
4208 |
#: adminpages/orders.php:473 adminpages/orders.php:474
|
4209 |
#: adminpages/orders.php:546 adminpages/orders.php:575
|
4210 |
#: adminpages/orders.php:650 adminpages/orders.php:681
|
4216 |
msgid "Payment Transaction ID"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
+
#: adminpages/orders.php:806 adminpages/orders.php:428
|
4220 |
#: adminpages/orders.php:478 adminpages/orders.php:479
|
4221 |
#: adminpages/orders.php:551 adminpages/orders.php:580
|
4222 |
#: adminpages/orders.php:659 adminpages/orders.php:690
|
4227 |
msgid "Generated by the gateway. Useful to cross reference orders."
|
4228 |
msgstr ""
|
4229 |
|
4230 |
+
#: adminpages/orders.php:811 classes/class.memberorder.php:955
|
4231 |
#: includes/privacy.php:325 adminpages/orders.php:432 adminpages/orders.php:482
|
4232 |
#: adminpages/orders.php:483 adminpages/orders.php:555
|
4233 |
#: adminpages/orders.php:584 adminpages/orders.php:664
|
4240 |
#: classes/class.memberorder.php:816 classes/class.memberorder.php:861
|
4241 |
#: classes/class.memberorder.php:862 classes/class.memberorder.php:874
|
4242 |
#: classes/class.memberorder.php:947 classes/class.memberorder.php:949
|
4243 |
+
#: classes/class.memberorder.php:951 includes/privacy.php:325
|
4244 |
msgid "Subscription Transaction ID"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
+
#: adminpages/orders.php:822 adminpages/orders.php:437
|
4248 |
#: adminpages/orders.php:487 adminpages/orders.php:488
|
4249 |
#: adminpages/orders.php:560 adminpages/orders.php:589
|
4250 |
#: adminpages/orders.php:674 adminpages/orders.php:705
|
4255 |
msgid "Generated by the gateway. Useful to cross reference subscriptions."
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: adminpages/orders.php:860 adminpages/orders.php:861
|
4259 |
msgid "at"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: adminpages/orders.php:872 adminpages/orders.php:477
|
4263 |
#: adminpages/orders.php:527 adminpages/orders.php:599
|
4264 |
#: adminpages/orders.php:628 adminpages/orders.php:716
|
4265 |
#: adminpages/orders.php:747 adminpages/orders.php:758
|
4270 |
msgid "Affiliate ID"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
+
#: adminpages/orders.php:885 adminpages/orders.php:485
|
4274 |
#: adminpages/orders.php:535 adminpages/orders.php:607
|
4275 |
#: adminpages/orders.php:636 adminpages/orders.php:728
|
4276 |
#: adminpages/orders.php:759 adminpages/orders.php:770
|
4281 |
msgid "Affiliate SubID"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: adminpages/orders.php:906 adminpages/orders.php:848
|
4285 |
#: adminpages/orders.php:884 adminpages/orders.php:888
|
4286 |
#: adminpages/orders.php:893 adminpages/orders.php:894
|
4287 |
#: adminpages/orders.php:903 adminpages/orders.php:907
|
4288 |
msgid "TOS Consent"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
+
#: adminpages/orders.php:921 adminpages/orders.php:495
|
4292 |
#: adminpages/orders.php:545 adminpages/orders.php:617
|
4293 |
#: adminpages/orders.php:646 adminpages/orders.php:742
|
4294 |
#: adminpages/orders.php:773 adminpages/orders.php:784
|
4299 |
msgid "Notes"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: adminpages/orders.php:948 adminpages/orders.php:510
|
4303 |
#: adminpages/orders.php:560 adminpages/orders.php:632
|
4304 |
#: adminpages/orders.php:661 adminpages/orders.php:764
|
4305 |
#: adminpages/orders.php:795 adminpages/orders.php:806
|
4310 |
msgid "Save Order"
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: adminpages/orders.php:960 adminpages/orders.php:521
|
4314 |
#: adminpages/orders.php:571 adminpages/orders.php:678
|
4315 |
#: adminpages/orders.php:707 adminpages/orders.php:812
|
4316 |
#: adminpages/orders.php:843 adminpages/orders.php:854
|
4320 |
msgid "Add New Order"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
+
#: adminpages/orders.php:1001 adminpages/reports/login.php:103
|
4324 |
+
#: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:293
|
4325 |
#: classes/class-pmpro-members-list-table.php:623 adminpages/memberslist.php:30
|
4326 |
#: adminpages/orders.php:603 adminpages/orders.php:710
|
4327 |
#: adminpages/orders.php:739 adminpages/orders.php:848
|
4350 |
msgid "Show"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: adminpages/orders.php:1005 adminpages/orders.php:606
|
4354 |
#: adminpages/orders.php:713 adminpages/orders.php:742
|
4355 |
#: adminpages/orders.php:852 adminpages/orders.php:883
|
4356 |
#: adminpages/orders.php:894 adminpages/orders.php:985
|
4360 |
msgid "Within a Date Range"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
+
#: adminpages/orders.php:1007 adminpages/orders.php:607
|
4364 |
#: adminpages/orders.php:714 adminpages/orders.php:743
|
4365 |
#: adminpages/orders.php:854 adminpages/orders.php:885
|
4366 |
#: adminpages/orders.php:896 adminpages/orders.php:987
|
4370 |
msgid "Predefined Date Range"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
+
#: adminpages/orders.php:1009 adminpages/orders.php:608
|
4374 |
#: adminpages/orders.php:715 adminpages/orders.php:744
|
4375 |
#: adminpages/orders.php:856 adminpages/orders.php:887
|
4376 |
#: adminpages/orders.php:898 adminpages/orders.php:989
|
4380 |
msgid "Within a Level"
|
4381 |
msgstr ""
|
4382 |
|
4383 |
+
#: adminpages/orders.php:1011 adminpages/orders.php:992
|
4384 |
#: adminpages/orders.php:997 adminpages/orders.php:1002
|
4385 |
#: adminpages/orders.php:1012 adminpages/orders.php:1047
|
4386 |
msgid "With a Discount Code"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: adminpages/orders.php:1013 adminpages/orders.php:609
|
4390 |
#: adminpages/orders.php:716 adminpages/orders.php:745
|
4391 |
#: adminpages/orders.php:858 adminpages/orders.php:889
|
4392 |
#: adminpages/orders.php:900 adminpages/orders.php:991
|
4396 |
msgid "Within a Status"
|
4397 |
msgstr ""
|
4398 |
|
4399 |
+
#: adminpages/orders.php:1015 adminpages/orders.php:996
|
4400 |
#: adminpages/orders.php:1001 adminpages/orders.php:1006
|
4401 |
#: adminpages/orders.php:1016 adminpages/orders.php:1051
|
4402 |
msgid "Only Paid Orders"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
+
#: adminpages/orders.php:1017 adminpages/orders.php:998
|
4406 |
#: adminpages/orders.php:1003 adminpages/orders.php:1008
|
4407 |
#: adminpages/orders.php:1018 adminpages/orders.php:1053
|
4408 |
msgid "Only Free Orders"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
+
#: adminpages/orders.php:1025 adminpages/orders.php:612
|
4412 |
#: adminpages/orders.php:719 adminpages/orders.php:748
|
4413 |
#: adminpages/orders.php:861 adminpages/orders.php:892
|
4414 |
#: adminpages/orders.php:903 adminpages/orders.php:994
|
4418 |
msgid "From"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
+
#: adminpages/orders.php:1040 adminpages/orders.php:624
|
4422 |
#: adminpages/orders.php:731 adminpages/orders.php:760
|
4423 |
#: adminpages/orders.php:876 adminpages/orders.php:907
|
4424 |
#: adminpages/orders.php:918 adminpages/orders.php:1009
|
4428 |
msgid "To"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
+
#: adminpages/orders.php:1053 adminpages/orders.php:636
|
4432 |
#: adminpages/orders.php:743 adminpages/orders.php:772
|
4433 |
#: adminpages/orders.php:889 adminpages/orders.php:920
|
4434 |
#: adminpages/orders.php:931 adminpages/orders.php:1022
|
4438 |
msgid "filter by "
|
4439 |
msgstr ""
|
4440 |
|
4441 |
+
#: adminpages/orders.php:1058 adminpages/reports/login.php:50
|
4442 |
+
#: adminpages/reports/memberships.php:50 adminpages/reports/sales.php:51
|
4443 |
#: adminpages/orders.php:1059 adminpages/reports/login.php:44
|
4444 |
#: adminpages/reports/login.php:50 adminpages/reports/memberships.php:47
|
4445 |
#: adminpages/reports/memberships.php:48 adminpages/reports/memberships.php:58
|
4450 |
msgid "This Month"
|
4451 |
msgstr ""
|
4452 |
|
4453 |
+
#: adminpages/orders.php:1060 adminpages/orders.php:1061
|
4454 |
msgid "Last Month"
|
4455 |
msgstr ""
|
4456 |
|
4457 |
+
#: adminpages/orders.php:1062 adminpages/reports/memberships.php:51
|
4458 |
#: adminpages/reports/sales.php:52 adminpages/orders.php:1063
|
4459 |
#: adminpages/reports/memberships.php:48 adminpages/reports/memberships.php:53
|
4460 |
#: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:69
|
4464 |
msgid "This Year"
|
4465 |
msgstr ""
|
4466 |
|
4467 |
+
#: adminpages/orders.php:1064 adminpages/orders.php:1065
|
4468 |
msgid "Last Year"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
+
#: adminpages/orders.php:1103 adminpages/orders.php:674
|
4472 |
#: adminpages/orders.php:780 adminpages/orders.php:809
|
4473 |
#: adminpages/orders.php:932 adminpages/orders.php:963
|
4474 |
#: adminpages/orders.php:969 adminpages/orders.php:1060
|
4478 |
msgid "Filter"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
+
#: adminpages/orders.php:1237 adminpages/orders.php:1240
|
4482 |
#: adminpages/orders.php:535 adminpages/orders.php:538
|
4483 |
#: adminpages/orders.php:777 adminpages/orders.php:780
|
4484 |
#: adminpages/orders.php:883 adminpages/orders.php:886
|
4496 |
msgid "Search Orders"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
+
#: adminpages/orders.php:1313 adminpages/orders.php:590
|
4500 |
#: adminpages/orders.php:893 adminpages/orders.php:903
|
4501 |
#: adminpages/orders.php:930 adminpages/orders.php:959
|
4502 |
#: adminpages/orders.php:1096 adminpages/orders.php:1127
|
4508 |
msgid "%d orders found."
|
4509 |
msgstr ""
|
4510 |
|
4511 |
+
#: adminpages/orders.php:1326 adminpages/orders.php:1448
|
4512 |
#: adminpages/orders.php:603 adminpages/orders.php:651
|
4513 |
#: adminpages/orders.php:906 adminpages/orders.php:916
|
4514 |
#: adminpages/orders.php:943 adminpages/orders.php:954
|
4527 |
msgid "Payment"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: adminpages/orders.php:1328 adminpages/orders.php:605
|
4531 |
#: adminpages/orders.php:908 adminpages/orders.php:918
|
4532 |
#: adminpages/orders.php:945 adminpages/orders.php:974
|
4533 |
#: adminpages/orders.php:1111 adminpages/orders.php:1142
|
4538 |
msgid "Transaction IDs"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
+
#: adminpages/orders.php:1359 adminpages/orders.php:664
|
4542 |
#: adminpages/orders.php:967 adminpages/orders.php:985
|
4543 |
#: adminpages/orders.php:995 adminpages/orders.php:998
|
4544 |
#: adminpages/orders.php:1027 adminpages/orders.php:1056
|
4555 |
"want to delete order %s?"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: adminpages/orders.php:1457 adminpages/orders.php:653
|
4559 |
#: adminpages/orders.php:956 adminpages/orders.php:974
|
4560 |
#: adminpages/orders.php:984 adminpages/orders.php:1013
|
4561 |
#: adminpages/orders.php:1042 adminpages/orders.php:1192
|
4567 |
msgid "Subscription"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
+
#: adminpages/orders.php:1474 adminpages/discountcodes.php:614
|
4571 |
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
4572 |
#: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
|
4573 |
#: adminpages/discountcodes.php:650 adminpages/discountcodes.php:655
|
4639 |
msgid "Membership Invoice"
|
4640 |
msgstr ""
|
4641 |
|
4642 |
+
#: adminpages/pagesettings.php:99 includes/login.php:475 includes/login.php:711
|
4643 |
+
#: includes/menus.php:66 includes/menus.php:70 includes/menus.php:160
|
4644 |
#: adminpages/pagesettings.php:99 includes/login.php:707 includes/menus.php:66
|
4645 |
+
#: includes/menus.php:70 includes/menus.php:160
|
|
|
|
|
4646 |
msgid "Log In"
|
4647 |
msgstr ""
|
4648 |
|
5293 |
msgid "Logins"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
+
#: adminpages/reports/login.php:38 adminpages/reports/memberships.php:49
|
5297 |
#: adminpages/reports/sales.php:50 adminpages/reports/login.php:38
|
5298 |
#: adminpages/reports/memberships.php:43 adminpages/reports/memberships.php:46
|
5299 |
#: adminpages/reports/memberships.php:62 adminpages/reports/memberships.php:67
|
5311 |
msgid "Year to Date"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
+
#: adminpages/reports/login.php:62 adminpages/reports/memberships.php:52
|
5315 |
#: adminpages/reports/sales.php:53 adminpages/reports/login.php:50
|
5316 |
#: adminpages/reports/login.php:62 adminpages/reports/memberships.php:49
|
5317 |
#: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:58
|
5322 |
msgid "All Time"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
+
#: adminpages/reports/login.php:71 adminpages/reports/memberships.php:96
|
5326 |
#: adminpages/reports/sales.php:99 adminpages/reports.php:26
|
5327 |
#: adminpages/reports.php:37 adminpages/reports.php:40
|
5328 |
#: adminpages/reports.php:41 adminpages/reports/login.php:71
|
5348 |
msgid "All Users"
|
5349 |
msgstr ""
|
5350 |
|
5351 |
+
#: adminpages/reports/login.php:105 adminpages/reports/memberships.php:355
|
5352 |
+
#: adminpages/reports/sales.php:316
|
5353 |
#: classes/class-pmpro-members-list-table.php:625
|
5354 |
#: classes/class.pmproemail.php:182 classes/class.pmproemail.php:227
|
5355 |
#: adminpages/memberslist.php:32 adminpages/reports/login.php:67
|
5378 |
msgid "All Levels"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
+
#: adminpages/reports/login.php:185 adminpages/reports/login.php:146
|
5382 |
#: adminpages/reports/login.php:148 adminpages/reports/login.php:164
|
5383 |
#: adminpages/reports/login.php:168 adminpages/reports/login.php:184
|
5384 |
msgid "Last Visit"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
+
#: adminpages/reports/login.php:186 adminpages/reports/login.php:185
|
5388 |
msgid "Visits This Week"
|
5389 |
msgstr ""
|
5390 |
|
5391 |
+
#: adminpages/reports/login.php:187 adminpages/reports/login.php:27
|
5392 |
#: adminpages/reports/login.php:28 adminpages/reports/login.php:147
|
5393 |
#: adminpages/reports/login.php:149 adminpages/reports/login.php:165
|
5394 |
#: adminpages/reports/login.php:169 adminpages/reports/login.php:186
|
5395 |
msgid "Visits This Month"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
+
#: adminpages/reports/login.php:188 adminpages/reports/login.php:187
|
5399 |
msgid "Visits This Year"
|
5400 |
msgstr ""
|
5401 |
|
5402 |
+
#: adminpages/reports/login.php:189 adminpages/reports/login.php:28
|
5403 |
#: adminpages/reports/login.php:29 adminpages/reports/login.php:188
|
5404 |
msgid "Visits All Time"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
+
#: adminpages/reports/login.php:190 adminpages/reports/login.php:189
|
5408 |
msgid "Views This Week"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: adminpages/reports/login.php:191 adminpages/reports/login.php:32
|
5412 |
#: adminpages/reports/login.php:33 adminpages/reports/login.php:149
|
5413 |
#: adminpages/reports/login.php:151 adminpages/reports/login.php:167
|
5414 |
#: adminpages/reports/login.php:171 adminpages/reports/login.php:190
|
5415 |
msgid "Views This Month"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: adminpages/reports/login.php:192 adminpages/reports/login.php:191
|
5419 |
msgid "Views This Year"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: adminpages/reports/login.php:193 adminpages/reports/login.php:33
|
5423 |
#: adminpages/reports/login.php:34 adminpages/reports/login.php:192
|
5424 |
msgid "Views All Time"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
+
#: adminpages/reports/login.php:194 adminpages/reports/login.php:151
|
5428 |
#: adminpages/reports/login.php:153 adminpages/reports/login.php:169
|
5429 |
#: adminpages/reports/login.php:173 adminpages/reports/login.php:193
|
5430 |
msgid "Last Login"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
+
#: adminpages/reports/login.php:195 adminpages/reports/login.php:194
|
5434 |
msgid "Logins This Week"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
+
#: adminpages/reports/login.php:196 adminpages/reports/login.php:37
|
5438 |
#: adminpages/reports/login.php:38 adminpages/reports/login.php:152
|
5439 |
#: adminpages/reports/login.php:154 adminpages/reports/login.php:170
|
5440 |
#: adminpages/reports/login.php:174 adminpages/reports/login.php:195
|
5441 |
msgid "Logins This Month"
|
5442 |
msgstr ""
|
5443 |
|
5444 |
+
#: adminpages/reports/login.php:197 adminpages/reports/login.php:196
|
5445 |
msgid "Logins This Year"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
+
#: adminpages/reports/login.php:198 adminpages/reports/login.php:38
|
5449 |
#: adminpages/reports/login.php:39 adminpages/reports/login.php:197
|
5450 |
msgid "Logins All Time"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
+
#: adminpages/reports/login.php:262
|
5454 |
#: classes/class-pmpro-members-list-table.php:228
|
5455 |
#: adminpages/memberslist.php:195 adminpages/memberslist.php:223
|
5456 |
#: adminpages/memberslist.php:251 adminpages/memberslist.php:261
|
5465 |
msgid "Search all levels"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
+
#: adminpages/reports/memberships.php:43 adminpages/reports/memberships.php:37
|
5469 |
#: adminpages/reports/memberships.php:40 adminpages/reports/memberships.php:48
|
5470 |
#: adminpages/reports/memberships.php:61 adminpages/reports/memberships.php:62
|
5471 |
msgid "Signups"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
+
#: adminpages/reports/memberships.php:44 adminpages/reports/memberships.php:38
|
5475 |
#: adminpages/reports/memberships.php:41 adminpages/reports/memberships.php:62
|
5476 |
#: adminpages/reports/memberships.php:63
|
5477 |
msgid "All Cancellations"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
+
#: adminpages/reports/memberships.php:335 adminpages/reports/sales.php:297
|
5481 |
#: adminpages/reports/memberships.php:260
|
5482 |
#: adminpages/reports/memberships.php:267
|
5483 |
#: adminpages/reports/memberships.php:280
|
5491 |
msgid "Annual"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: adminpages/reports/memberships.php:338
|
5495 |
#: adminpages/reports/memberships.php:270
|
5496 |
#: adminpages/reports/memberships.php:283
|
5497 |
#: adminpages/reports/memberships.php:311
|
5500 |
msgid "Signups vs. All Cancellations"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: adminpages/reports/memberships.php:339
|
5504 |
#: adminpages/reports/memberships.php:263
|
5505 |
#: adminpages/reports/memberships.php:271
|
5506 |
#: adminpages/reports/memberships.php:284
|
5511 |
msgid "Signups vs. Cancellations"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
+
#: adminpages/reports/memberships.php:340
|
5515 |
#: adminpages/reports/memberships.php:272
|
5516 |
#: adminpages/reports/memberships.php:285
|
5517 |
#: adminpages/reports/memberships.php:313
|
5520 |
msgid "Signups vs. Expirations"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: adminpages/reports/memberships.php:342
|
5524 |
+
#: adminpages/reports/memberships.php:353 adminpages/reports/sales.php:303
|
5525 |
+
#: adminpages/reports/sales.php:314 adminpages/membershiplevels.php:545
|
5526 |
#: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
|
5527 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
|
5528 |
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
|
5550 |
msgid "for"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: adminpages/reports/memberships.php:356
|
5554 |
#: adminpages/reports/memberships.php:374
|
5555 |
msgid "All Paid Levels"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: adminpages/reports/memberships.php:357
|
5559 |
#: adminpages/reports/memberships.php:375
|
5560 |
msgid "All Free Levels"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
+
#: adminpages/reports/memberships.php:377 adminpages/reports/sales.php:334
|
5564 |
#: adminpages/reports/memberships.php:394 adminpages/reports/sales.php:328
|
5565 |
msgid "All Codes"
|
5566 |
msgstr ""
|
5567 |
|
5568 |
+
#: adminpages/reports/memberships.php:385 adminpages/reports/sales.php:342
|
5569 |
#: adminpages/reports/memberships.php:295
|
5570 |
#: adminpages/reports/memberships.php:304
|
5571 |
#: adminpages/reports/memberships.php:317
|
5583 |
msgid "Sales and Revenue (Testing/Sandbox)"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
+
#: adminpages/reports/sales.php:44 adminpages/reports/sales.php:301
|
5587 |
#: adminpages/reports/sales.php:44 adminpages/reports/sales.php:45
|
5588 |
#: adminpages/reports/sales.php:46 adminpages/reports/sales.php:193
|
5589 |
#: adminpages/reports/sales.php:201 adminpages/reports/sales.php:202
|
5592 |
msgid "Sales"
|
5593 |
msgstr ""
|
5594 |
|
5595 |
+
#: adminpages/reports/sales.php:45 adminpages/reports/sales.php:300
|
5596 |
#: adminpages/reports/sales.php:45 adminpages/reports/sales.php:46
|
5597 |
#: adminpages/reports/sales.php:47 adminpages/reports/sales.php:192
|
5598 |
#: adminpages/reports/sales.php:200 adminpages/reports/sales.php:201
|
5601 |
msgid "Revenue"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: adminpages/reports/sales.php:345 adminpages/reports/sales.php:339
|
5605 |
msgid ""
|
5606 |
"Average line calculated using data prior to current day, month, or year."
|
5607 |
msgstr ""
|
5608 |
|
5609 |
+
#: adminpages/reports/sales.php:388 adminpages/reports/sales.php:381
|
5610 |
#: adminpages/reports/sales.php:382
|
5611 |
msgid "Average*"
|
5612 |
msgstr ""
|
5638 |
msgstr ""
|
5639 |
|
5640 |
#: adminpages/templates/orders-email.php:48
|
5641 |
+
#: adminpages/templates/orders-print.php:77 pages/levels.php:18
|
5642 |
#: adminpages/templates/orders-email.php:48
|
5643 |
#: adminpages/templates/orders-print.php:77 pages/levels.php:14
|
5644 |
#: pages/levels.php:36
|
5645 |
msgid "Price"
|
5646 |
msgstr ""
|
5647 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5648 |
#: adminpages/updates.php:14 adminpages/updates.php:11
|
5649 |
#: adminpages/updates.php:14
|
5650 |
msgid "Updating Paid Memberships Pro"
|
5940 |
msgid "—"
|
5941 |
msgstr ""
|
5942 |
|
5943 |
+
#: classes/class.memberorder.php:949 classes/class.memberorder.php:553
|
5944 |
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
5945 |
#: classes/class.memberorder.php:573 classes/class.memberorder.php:644
|
5946 |
#: classes/class.memberorder.php:697 classes/class.memberorder.php:699
|
5950 |
#: classes/class.memberorder.php:743 classes/class.memberorder.php:760
|
5951 |
#: classes/class.memberorder.php:811 classes/class.memberorder.php:856
|
5952 |
#: classes/class.memberorder.php:868 classes/class.memberorder.php:941
|
5953 |
+
#: classes/class.memberorder.php:943 classes/class.memberorder.php:945
|
5954 |
+
#: includes/cleanup.php:24
|
5955 |
#, php-format
|
5956 |
msgid ""
|
5957 |
"There was an error canceling the subscription for user with ID=%s. You will "
|
5959 |
"active."
|
5960 |
msgstr ""
|
5961 |
|
5962 |
+
#: classes/class.memberorder.php:950 classes/class.memberorder.php:741
|
5963 |
#: classes/class.memberorder.php:744 classes/class.memberorder.php:761
|
5964 |
#: classes/class.memberorder.php:812 classes/class.memberorder.php:857
|
5965 |
#: classes/class.memberorder.php:869 classes/class.memberorder.php:942
|
5966 |
+
#: classes/class.memberorder.php:944 classes/class.memberorder.php:946
|
5967 |
msgid "User Email"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
+
#: classes/class.memberorder.php:952 classes/class.memberorder.php:742
|
5971 |
#: classes/class.memberorder.php:745 classes/class.memberorder.php:762
|
5972 |
#: classes/class.memberorder.php:813 classes/class.memberorder.php:858
|
5973 |
#: classes/class.memberorder.php:859 classes/class.memberorder.php:871
|
5974 |
#: classes/class.memberorder.php:944 classes/class.memberorder.php:946
|
5975 |
+
#: classes/class.memberorder.php:948
|
5976 |
msgid "User Display Name"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
+
#: classes/class.memberorder.php:957 classes/class.memberorder.php:864
|
5980 |
#: classes/class.memberorder.php:876 classes/class.memberorder.php:949
|
5981 |
+
#: classes/class.memberorder.php:951 classes/class.memberorder.php:953
|
5982 |
msgid "Edit User"
|
5983 |
msgstr ""
|
5984 |
|
5985 |
+
#: classes/class.memberorder.php:958 classes/class.memberorder.php:865
|
5986 |
#: classes/class.memberorder.php:877 classes/class.memberorder.php:950
|
5987 |
+
#: classes/class.memberorder.php:952 classes/class.memberorder.php:954
|
5988 |
msgid "Edit Order"
|
5989 |
msgstr ""
|
5990 |
|
6021 |
msgstr ""
|
6022 |
|
6023 |
#: classes/class.pmproemail.php:338 classes/class.pmproemail.php:434
|
6024 |
+
#: classes/class.pmproemail.php:752 classes/class.pmproemail.php:241
|
6025 |
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
6026 |
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
|
6027 |
#: classes/class.pmproemail.php:285 classes/class.pmproemail.php:294
|
6069 |
msgid "Billing information has been updated for %s at %s"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
+
#: classes/class.pmproemail.php:556 classes/class.pmproemail.php:425
|
6073 |
#: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
|
6074 |
#: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
|
6075 |
#: classes/class.pmproemail.php:496 classes/class.pmproemail.php:510
|
6079 |
msgid "Membership Payment Failed at %s"
|
6080 |
msgstr ""
|
6081 |
|
6082 |
+
#: classes/class.pmproemail.php:604 classes/class.pmproemail.php:462
|
6083 |
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
|
6084 |
#: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
|
6085 |
#: classes/class.pmproemail.php:542 classes/class.pmproemail.php:557
|
6089 |
msgid "Membership Payment Failed For %s at %s"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
+
#: classes/class.pmproemail.php:652 classes/class.pmproemail.php:508
|
6093 |
#: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
|
6094 |
#: classes/class.pmproemail.php:569 classes/class.pmproemail.php:589
|
6095 |
#: classes/class.pmproemail.php:605 classes/class.pmproemail.php:612
|
6099 |
msgid "Credit Card on File Expiring Soon at %s"
|
6100 |
msgstr ""
|
6101 |
|
6102 |
+
#: classes/class.pmproemail.php:703 classes/class.pmproemail.php:501
|
6103 |
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
6104 |
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
|
6105 |
#: classes/class.pmproemail.php:619 classes/class.pmproemail.php:639
|
6110 |
msgid "INVOICE for %s membership"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
+
#: classes/class.pmproemail.php:780 classes/class.pmproemail.php:563
|
6114 |
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
6115 |
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
|
6116 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:710
|
6121 |
msgid "Your trial at %s is ending soon"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
+
#: classes/class.pmproemail.php:816 classes/class.pmproemail.php:596
|
6125 |
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
6126 |
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
|
6127 |
#: classes/class.pmproemail.php:724 classes/class.pmproemail.php:744
|
6132 |
msgid "Your membership at %s has ended"
|
6133 |
msgstr ""
|
6134 |
|
6135 |
+
#: classes/class.pmproemail.php:843 classes/class.pmproemail.php:621
|
6136 |
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
6137 |
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
|
6138 |
#: classes/class.pmproemail.php:749 classes/class.pmproemail.php:769
|
6143 |
msgid "Your membership at %s will end soon"
|
6144 |
msgstr ""
|
6145 |
|
6146 |
+
#: classes/class.pmproemail.php:873 classes/class.pmproemail.php:641
|
6147 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
6148 |
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
|
6149 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:789
|
6154 |
msgid "Your membership at %s has been changed"
|
6155 |
msgstr ""
|
6156 |
|
6157 |
+
#: classes/class.pmproemail.php:878 classes/class.pmproemail.php:928
|
6158 |
#: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
|
6159 |
#: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
|
6160 |
#: classes/class.pmproemail.php:793 classes/class.pmproemail.php:800
|
6170 |
msgid "The new level is %s"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
+
#: classes/class.pmproemail.php:880 classes/class.pmproemail.php:647
|
6174 |
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
6175 |
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
|
6176 |
#: classes/class.pmproemail.php:775 classes/class.pmproemail.php:795
|
6180 |
msgid "Your membership has been cancelled"
|
6181 |
msgstr ""
|
6182 |
|
6183 |
+
#: classes/class.pmproemail.php:885 classes/class.pmproemail.php:935
|
6184 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
6185 |
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
6186 |
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
|
6199 |
msgid "This membership will expire on %s"
|
6200 |
msgstr ""
|
6201 |
|
6202 |
+
#: classes/class.pmproemail.php:889 classes/class.pmproemail.php:939
|
6203 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
6204 |
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
6205 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
|
6217 |
msgid "This membership does not expire"
|
6218 |
msgstr ""
|
6219 |
|
6220 |
+
#: classes/class.pmproemail.php:923 classes/class.pmproemail.php:679
|
6221 |
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
6222 |
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
|
6223 |
#: classes/class.pmproemail.php:806 classes/class.pmproemail.php:807
|
6229 |
msgid "Membership for %s at %s has been changed"
|
6230 |
msgstr ""
|
6231 |
|
6232 |
+
#: classes/class.pmproemail.php:930 classes/class.pmproemail.php:799
|
6233 |
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
|
6234 |
#: classes/class.pmproemail.php:812 classes/class.pmproemail.php:813
|
6235 |
#: classes/class.pmproemail.php:832 classes/class.pmproemail.php:865
|
6239 |
msgid "Membership has been cancelled"
|
6240 |
msgstr ""
|
6241 |
|
6242 |
+
#: classes/class.pmproemail.php:970 classes/class.pmproemail.php:848
|
6243 |
#: classes/class.pmproemail.php:849 classes/class.pmproemail.php:850
|
6244 |
#: classes/class.pmproemail.php:869 classes/class.pmproemail.php:904
|
6245 |
#: classes/class.pmproemail.php:911 classes/class.pmproemail.php:919
|
6248 |
msgid "Invoice for Order #: "
|
6249 |
msgstr ""
|
6250 |
|
6251 |
+
#: classes/class.pmproemail.php:1017 classes/class.pmproemail.php:1003
|
6252 |
#: classes/class.pmproemail.php:1014
|
6253 |
#, php-format
|
6254 |
msgid "Payment action required for your %s membership"
|
6255 |
msgstr ""
|
6256 |
|
6257 |
+
#: classes/class.pmproemail.php:1054 classes/class.pmproemail.php:1040
|
6258 |
#: classes/class.pmproemail.php:1051
|
6259 |
#, php-format
|
6260 |
msgid "Payment action required: membership for %s at %s"
|
6261 |
msgstr ""
|
6262 |
|
6263 |
+
#: classes/class.pmproemail.php:1090 classes/class.pmproemail.php:948
|
6264 |
#: classes/class.pmproemail.php:955 classes/class.pmproemail.php:963
|
6265 |
#: classes/class.pmproemail.php:971 classes/class.pmproemail.php:972
|
6266 |
#: classes/class.pmproemail.php:1076 classes/class.pmproemail.php:1087
|
6701 |
msgstr ""
|
6702 |
|
6703 |
#: classes/gateways/class.pmprogateway_braintree.php:454
|
6704 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1048 pages/checkout.php:355
|
6705 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
6706 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
6707 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
6742 |
#: classes/gateways/class.pmprogateway_stripe.php:902
|
6743 |
#: classes/gateways/class.pmprogateway_stripe.php:972
|
6744 |
#: classes/gateways/class.pmprogateway_stripe.php:1037
|
6745 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1048 pages/checkout.php:353
|
6746 |
+
#: pages/checkout.php:362 pages/checkout.php:365 pages/checkout.php:411
|
6747 |
+
#: pages/checkout.php:419 pages/checkout.php:476 pages/checkout.php:478
|
6748 |
+
#: pages/checkout.php:485 pages/checkout.php:493 pages/checkout.php:494
|
6749 |
+
#: pages/checkout.php:500 pages/checkout.php:501 pages/checkout.php:503
|
6750 |
+
#: pages/checkout.php:510 pages/checkout.php:513
|
6751 |
msgid "Payment Information"
|
6752 |
msgstr ""
|
6753 |
|
6754 |
#: classes/gateways/class.pmprogateway_braintree.php:455
|
6755 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1049 pages/checkout.php:356
|
6756 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
6757 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
6758 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
6793 |
#: classes/gateways/class.pmprogateway_stripe.php:903
|
6794 |
#: classes/gateways/class.pmprogateway_stripe.php:973
|
6795 |
#: classes/gateways/class.pmprogateway_stripe.php:1038
|
6796 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1049 pages/checkout.php:354
|
6797 |
+
#: pages/checkout.php:363 pages/checkout.php:366 pages/checkout.php:412
|
6798 |
+
#: pages/checkout.php:420 pages/checkout.php:476 pages/checkout.php:478
|
6799 |
+
#: pages/checkout.php:485 pages/checkout.php:493 pages/checkout.php:494
|
6800 |
+
#: pages/checkout.php:500 pages/checkout.php:502 pages/checkout.php:504
|
6801 |
+
#: pages/checkout.php:511 pages/checkout.php:514
|
6802 |
#, php-format
|
6803 |
msgid "We Accept %s"
|
6804 |
msgstr ""
|
6805 |
|
6806 |
#: classes/gateways/class.pmprogateway_braintree.php:475
|
6807 |
#: classes/gateways/class.pmprogateway_stripe.php:1082 pages/billing.php:359
|
6808 |
+
#: pages/checkout.php:378 classes/gateways/class.pmprogateway_braintree.php:303
|
6809 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
6810 |
#: classes/gateways/class.pmprogateway_braintree.php:318
|
6811 |
#: classes/gateways/class.pmprogateway_braintree.php:321
|
6850 |
#: pages/billing.php:311 pages/billing.php:312 pages/billing.php:313
|
6851 |
#: pages/billing.php:314 pages/billing.php:317 pages/billing.php:318
|
6852 |
#: pages/billing.php:326 pages/billing.php:335 pages/billing.php:337
|
6853 |
+
#: pages/billing.php:359 pages/checkout.php:376 pages/checkout.php:385
|
6854 |
+
#: pages/checkout.php:388 pages/checkout.php:459 pages/checkout.php:467
|
6855 |
+
#: pages/checkout.php:503 pages/checkout.php:519 pages/checkout.php:520
|
6856 |
+
#: pages/checkout.php:527 pages/checkout.php:548 pages/checkout.php:557
|
6857 |
+
#: pages/checkout.php:566 pages/checkout.php:570 pages/checkout.php:577
|
6858 |
+
#: pages/checkout.php:580
|
6859 |
msgid "Card Number"
|
6860 |
msgstr ""
|
6861 |
|
6899 |
msgstr ""
|
6900 |
|
6901 |
#: classes/gateways/class.pmprogateway_braintree.php:504 pages/billing.php:399
|
6902 |
+
#: pages/checkout.php:414 classes/gateways/class.pmprogateway_braintree.php:341
|
6903 |
#: classes/gateways/class.pmprogateway_braintree.php:354
|
6904 |
#: classes/gateways/class.pmprogateway_braintree.php:356
|
6905 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
6936 |
#: pages/billing.php:352 pages/billing.php:353 pages/billing.php:355
|
6937 |
#: pages/billing.php:357 pages/billing.php:358 pages/billing.php:366
|
6938 |
#: pages/billing.php:375 pages/billing.php:381 pages/billing.php:399
|
6939 |
+
#: pages/checkout.php:412 pages/checkout.php:421 pages/checkout.php:424
|
6940 |
+
#: pages/checkout.php:493 pages/checkout.php:501 pages/checkout.php:541
|
6941 |
+
#: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
|
6942 |
+
#: pages/checkout.php:586 pages/checkout.php:595 pages/checkout.php:604
|
6943 |
+
#: pages/checkout.php:606 pages/checkout.php:608 pages/checkout.php:609
|
6944 |
+
#: pages/checkout.php:613 pages/checkout.php:616
|
6945 |
msgid "what's this?"
|
6946 |
msgstr ""
|
6947 |
|
6948 |
#: classes/gateways/class.pmprogateway_braintree.php:511
|
6949 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1104 pages/checkout.php:96
|
6950 |
+
#: pages/checkout.php:421 classes/gateways/class.pmprogateway_braintree.php:351
|
6951 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
6952 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
6953 |
#: classes/gateways/class.pmprogateway_braintree.php:369
|
6991 |
#: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:83
|
6992 |
#: pages/checkout.php:87 pages/checkout.php:88 pages/checkout.php:91
|
6993 |
#: pages/checkout.php:94 pages/checkout.php:95 pages/checkout.php:98
|
6994 |
+
#: pages/checkout.php:419 pages/checkout.php:428 pages/checkout.php:431
|
6995 |
+
#: pages/checkout.php:500 pages/checkout.php:508 pages/checkout.php:551
|
6996 |
+
#: pages/checkout.php:567 pages/checkout.php:568 pages/checkout.php:575
|
6997 |
+
#: pages/checkout.php:596 pages/checkout.php:605 pages/checkout.php:614
|
6998 |
+
#: pages/checkout.php:618 pages/checkout.php:619 pages/checkout.php:621
|
6999 |
+
#: pages/checkout.php:624
|
7000 |
msgid "Apply"
|
7001 |
msgstr ""
|
7002 |
|
7003 |
#: classes/gateways/class.pmprogateway_braintree.php:570
|
7004 |
#: classes/gateways/class.pmprogateway_braintree.php:587
|
7005 |
#: classes/gateways/class.pmprogateway_braintree.php:677
|
7006 |
+
#: classes/gateways/class.pmprogateway_braintree.php:848
|
7007 |
+
#: classes/gateways/class.pmprogateway_braintree.php:957
|
7008 |
+
#: classes/gateways/class.pmprogateway_braintree.php:984
|
7009 |
#: classes/gateways/class.pmprogateway_braintree.php:509
|
7010 |
#: classes/gateways/class.pmprogateway_braintree.php:524
|
7011 |
#: classes/gateways/class.pmprogateway_braintree.php:526
|
7136 |
msgid "Error during charge:"
|
7137 |
msgstr ""
|
7138 |
|
7139 |
+
#: classes/gateways/class.pmprogateway_braintree.php:750
|
7140 |
#: classes/gateways/class.pmprogateway_braintree.php:690
|
7141 |
#: classes/gateways/class.pmprogateway_braintree.php:731
|
7142 |
#: classes/gateways/class.pmprogateway_braintree.php:750
|
7148 |
msgid "Failed to update customer: %s"
|
7149 |
msgstr ""
|
7150 |
|
7151 |
+
#: classes/gateways/class.pmprogateway_braintree.php:762
|
7152 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
7153 |
#: classes/gateways/class.pmprogateway_braintree.php:221
|
7154 |
#: classes/gateways/class.pmprogateway_braintree.php:566
|
7169 |
msgid "Failed to update customer."
|
7170 |
msgstr ""
|
7171 |
|
7172 |
+
#: classes/gateways/class.pmprogateway_braintree.php:810
|
7173 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
7174 |
#: classes/gateways/class.pmprogateway_braintree.php:269
|
7175 |
#: classes/gateways/class.pmprogateway_braintree.php:614
|
7190 |
msgid "Failed to create customer."
|
7191 |
msgstr ""
|
7192 |
|
7193 |
+
#: classes/gateways/class.pmprogateway_braintree.php:817
|
7194 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
7195 |
#: classes/gateways/class.pmprogateway_braintree.php:276
|
7196 |
#: classes/gateways/class.pmprogateway_braintree.php:621
|
7211 |
msgid "Error creating customer record with Braintree:"
|
7212 |
msgstr ""
|
7213 |
|
7214 |
+
#: classes/gateways/class.pmprogateway_braintree.php:933
|
7215 |
#: classes/gateways/class.pmprogateway_braintree.php:933
|
7216 |
#: classes/gateways/class.pmprogateway_braintree.php:934
|
7217 |
#: classes/gateways/class.pmprogateway_braintree.php:935
|
7220 |
msgid "Error subscribing customer to plan with Braintree: %s (%s)"
|
7221 |
msgstr ""
|
7222 |
|
7223 |
+
#: classes/gateways/class.pmprogateway_braintree.php:948
|
7224 |
#: classes/gateways/class.pmprogateway_braintree.php:948
|
7225 |
#: classes/gateways/class.pmprogateway_braintree.php:949
|
7226 |
#: classes/gateways/class.pmprogateway_braintree.php:950
|
7229 |
msgid "Failed to subscribe with Braintree: %s"
|
7230 |
msgstr ""
|
7231 |
|
7232 |
+
#: classes/gateways/class.pmprogateway_braintree.php:1018
|
7233 |
+
#: classes/gateways/class.pmprogateway_braintree.php:1029
|
7234 |
#: classes/gateways/class.pmprogateway_braintree.php:1019
|
7235 |
#: classes/gateways/class.pmprogateway_braintree.php:1020
|
7236 |
#: classes/gateways/class.pmprogateway_braintree.php:1021
|
7243 |
msgid "Could not find the subscription. %s"
|
7244 |
msgstr ""
|
7245 |
|
7246 |
+
#: classes/gateways/class.pmprogateway_braintree.php:1036
|
7247 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
7248 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
7249 |
#: classes/gateways/class.pmprogateway_braintree.php:410
|
7301 |
msgid "Could not find the subscription."
|
7302 |
msgstr ""
|
7303 |
|
7304 |
+
#: classes/gateways/class.pmprogateway_braintree.php:1082
|
7305 |
#: classes/gateways/class.pmprogateway_braintree.php:1083
|
7306 |
msgid "Error getting subscription with Braintree:"
|
7307 |
msgstr ""
|
7878 |
msgstr ""
|
7879 |
|
7880 |
#: classes/gateways/class.pmprogateway_payflowpro.php:125
|
7881 |
+
#: pages/checkout.php:132 adminpages/paymentsettings.php:219
|
7882 |
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
|
7883 |
#: classes/gateways/class.pmprogateway_payflowpro.php:124
|
7884 |
#: classes/gateways/class.pmprogateway_payflowpro.php:125
|
8098 |
msgstr ""
|
8099 |
|
8100 |
#: classes/gateways/class.pmprogateway_paypal.php:281
|
8101 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:482
|
8102 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:241
|
8103 |
+
#: pages/checkout.php:207 classes/gateways/class.pmprogateway_paypal.php:178
|
8104 |
#: classes/gateways/class.pmprogateway_paypal.php:201
|
8105 |
#: classes/gateways/class.pmprogateway_paypal.php:268
|
8106 |
#: classes/gateways/class.pmprogateway_paypal.php:280
|
8117 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:202
|
8118 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:229
|
8119 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:241
|
8120 |
+
#: pages/checkout.php:205 pages/checkout.php:214 pages/checkout.php:217
|
8121 |
+
#: pages/checkout.php:263 pages/checkout.php:271 pages/checkout.php:286
|
8122 |
+
#: pages/checkout.php:288 pages/checkout.php:295 pages/checkout.php:300
|
8123 |
+
#: pages/checkout.php:302 pages/checkout.php:309 pages/checkout.php:312
|
8124 |
+
#: pages/checkout.php:675 pages/checkout.php:682 pages/checkout.php:685
|
8125 |
+
#: pages/checkout.php:701
|
8126 |
msgid "Check Out with PayPal"
|
8127 |
msgstr ""
|
8128 |
|
8129 |
#: classes/gateways/class.pmprogateway_paypal.php:287
|
8130 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:487
|
8131 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
8132 |
+
#: pages/checkout.php:515 classes/gateways/class.pmprogateway_paypal.php:184
|
8133 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
8134 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
8135 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
8147 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:234
|
8148 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
8149 |
#: pages/checkout.php:496 pages/checkout.php:509 pages/checkout.php:512
|
8150 |
+
#: pages/checkout.php:513 pages/checkout.php:598 pages/checkout.php:606
|
8151 |
+
#: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
|
8152 |
+
#: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
|
8153 |
+
#: pages/checkout.php:718 pages/checkout.php:722 pages/checkout.php:724
|
8154 |
+
#: pages/checkout.php:725 pages/checkout.php:728 pages/checkout.php:729
|
8155 |
msgid "Submit and Check Out"
|
8156 |
msgstr ""
|
8157 |
|
8158 |
#: classes/gateways/class.pmprogateway_paypal.php:287
|
8159 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:487
|
8160 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
8161 |
#: classes/gateways/class.pmprogateway_twocheckout.php:205
|
8162 |
+
#: pages/checkout.php:515 classes/gateways/class.pmprogateway_paypal.php:184
|
8163 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
8164 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
8165 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
8182 |
#: classes/gateways/class.pmprogateway_twocheckout.php:205
|
8183 |
#: classes/gateways/class.pmprogateway_twocheckout.php:214
|
8184 |
#: pages/checkout.php:496 pages/checkout.php:509 pages/checkout.php:512
|
8185 |
+
#: pages/checkout.php:513 pages/checkout.php:598 pages/checkout.php:606
|
8186 |
+
#: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
|
8187 |
+
#: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
|
8188 |
+
#: pages/checkout.php:718 pages/checkout.php:722 pages/checkout.php:724
|
8189 |
+
#: pages/checkout.php:725 pages/checkout.php:728 pages/checkout.php:729
|
8190 |
msgid "Submit and Confirm"
|
8191 |
msgstr ""
|
8192 |
|
8193 |
#: classes/gateways/class.pmprogateway_paypal.php:716
|
8194 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:801
|
8195 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:588
|
8196 |
#: classes/gateways/class.pmprogateway_paypal.php:385
|
8197 |
#: classes/gateways/class.pmprogateway_paypal.php:605
|
8252 |
msgid "PayPal Express"
|
8253 |
msgstr ""
|
8254 |
|
8255 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:342
|
8256 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:401
|
8257 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:268
|
8258 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:278
|
8259 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
8278 |
msgid "The PayPal Token was lost."
|
8279 |
msgstr ""
|
8280 |
|
8281 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:346
|
8282 |
+
msgid "Checkout was already processed."
|
8283 |
+
msgstr ""
|
8284 |
+
|
8285 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:71
|
8286 |
#: paid-memberships-pro.php:163
|
8287 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
10987 |
msgid "Profile Start Date Issue Detected and Fixed at %s"
|
10988 |
msgstr ""
|
10989 |
|
10990 |
+
#: includes/functions.php:384 includes/functions.php:500
|
10991 |
#: includes/functions.php:160 includes/functions.php:196
|
10992 |
#: includes/functions.php:200 includes/functions.php:202
|
10993 |
#: includes/functions.php:203 includes/functions.php:204
|
11004 |
msgid "The price for membership is <strong>%s</strong> now"
|
11005 |
msgstr ""
|
11006 |
|
11007 |
+
#: includes/functions.php:387 includes/functions.php:383 pages/levels.php:33
|
11008 |
#: pages/levels.php:43 pages/levels.php:55
|
11009 |
msgid "Free"
|
11010 |
msgstr ""
|
11011 |
|
11012 |
+
#: includes/functions.php:389 includes/functions.php:502
|
11013 |
#: includes/functions.php:202 includes/functions.php:204
|
11014 |
#: includes/functions.php:205 includes/functions.php:206
|
11015 |
#: includes/functions.php:209 includes/functions.php:245
|
11025 |
msgid "<strong>%s</strong> now"
|
11026 |
msgstr ""
|
11027 |
|
11028 |
+
#: includes/functions.php:397 includes/functions.php:330
|
11029 |
#: includes/functions.php:349 includes/functions.php:388
|
11030 |
#: includes/functions.php:393
|
11031 |
#, php-format
|
11032 |
msgid " and then <strong>%1$s per %2$s for %3$d more %4$s</strong>."
|
11033 |
msgstr ""
|
11034 |
|
11035 |
+
#: includes/functions.php:399 includes/functions.php:332
|
11036 |
#: includes/functions.php:351 includes/functions.php:390
|
11037 |
#: includes/functions.php:395
|
11038 |
#, php-format
|
11039 |
msgid " and then <strong>%1$s every %2$d %3$s for %4$d more payments</strong>."
|
11040 |
msgstr ""
|
11041 |
|
11042 |
+
#: includes/functions.php:402 includes/functions.php:335
|
11043 |
#: includes/functions.php:354 includes/functions.php:393
|
11044 |
#: includes/functions.php:398
|
11045 |
#, php-format
|
11046 |
msgid " and then <strong>%1$s after %2$d %3$s</strong>."
|
11047 |
msgstr ""
|
11048 |
|
11049 |
+
#: includes/functions.php:407 includes/functions.php:340
|
11050 |
#: includes/functions.php:359 includes/functions.php:398
|
11051 |
#: includes/functions.php:403
|
11052 |
#, php-format
|
11053 |
msgid "The price for membership is <strong>%1$s per %2$s</strong>."
|
11054 |
msgstr ""
|
11055 |
|
11056 |
+
#: includes/functions.php:409 includes/functions.php:342
|
11057 |
#: includes/functions.php:361 includes/functions.php:400
|
11058 |
#: includes/functions.php:405
|
11059 |
#, php-format
|
11060 |
msgid "<strong>%1$s per %2$s</strong>."
|
11061 |
msgstr ""
|
11062 |
|
11063 |
+
#: includes/functions.php:413 includes/functions.php:346
|
11064 |
#: includes/functions.php:365 includes/functions.php:404
|
11065 |
#: includes/functions.php:409
|
11066 |
#, php-format
|
11067 |
msgid "The price for membership is <strong>%1$s every %2$d %3$s</strong>."
|
11068 |
msgstr ""
|
11069 |
|
11070 |
+
#: includes/functions.php:415 includes/functions.php:348
|
11071 |
#: includes/functions.php:367 includes/functions.php:406
|
11072 |
#: includes/functions.php:411
|
11073 |
#, php-format
|
11074 |
msgid "<strong>%1$s every %2$d %3$s</strong>."
|
11075 |
msgstr ""
|
11076 |
|
11077 |
+
#: includes/functions.php:420 includes/functions.php:353
|
11078 |
#: includes/functions.php:372 includes/functions.php:411
|
11079 |
#: includes/functions.php:416
|
11080 |
#, php-format
|
11081 |
msgid " and then <strong>%1$s per %2$s</strong>."
|
11082 |
msgstr ""
|
11083 |
|
11084 |
+
#: includes/functions.php:422 includes/functions.php:355
|
11085 |
#: includes/functions.php:374 includes/functions.php:413
|
11086 |
#: includes/functions.php:418
|
11087 |
#, php-format
|
11088 |
msgid " and then <strong>%1$s every %2$d %3$s</strong>."
|
11089 |
msgstr ""
|
11090 |
|
11091 |
+
#: includes/functions.php:437 includes/functions.php:202
|
11092 |
#: includes/functions.php:238 includes/functions.php:249
|
11093 |
#: includes/functions.php:260 includes/functions.php:261
|
11094 |
#: includes/functions.php:262 includes/functions.php:264
|
11101 |
msgid "After your initial payment, your first payment is Free."
|
11102 |
msgstr ""
|
11103 |
|
11104 |
+
#: includes/functions.php:439 includes/functions.php:206
|
11105 |
#: includes/functions.php:242 includes/functions.php:253
|
11106 |
#: includes/functions.php:264 includes/functions.php:265
|
11107 |
#: includes/functions.php:266 includes/functions.php:268
|
11115 |
msgid "After your initial payment, your first %d payments are Free."
|
11116 |
msgstr ""
|
11117 |
|
11118 |
+
#: includes/functions.php:443 includes/functions.php:213
|
11119 |
#: includes/functions.php:249 includes/functions.php:260
|
11120 |
#: includes/functions.php:271 includes/functions.php:272
|
11121 |
#: includes/functions.php:273 includes/functions.php:275
|
11128 |
msgid "After your initial payment, your first payment will cost %s."
|
11129 |
msgstr ""
|
11130 |
|
11131 |
+
#: includes/functions.php:445 includes/functions.php:378
|
11132 |
#: includes/functions.php:397 includes/functions.php:436
|
11133 |
#: includes/functions.php:441
|
11134 |
#, php-format
|
11135 |
msgid "After your initial payment, your first %1$d payments will cost %2$s."
|
11136 |
msgstr ""
|
11137 |
|
11138 |
+
#: includes/functions.php:455 includes/functions.php:556
|
11139 |
#: includes/functions.php:388 includes/functions.php:407
|
11140 |
#: includes/functions.php:446 includes/functions.php:451
|
11141 |
#: includes/functions.php:489 includes/functions.php:508
|
11144 |
msgid "Customers in %1$s will be charged %2$s%% tax."
|
11145 |
msgstr ""
|
11146 |
|
11147 |
+
#: includes/functions.php:513 includes/functions.php:446
|
11148 |
#: includes/functions.php:465 includes/functions.php:504
|
11149 |
#: includes/functions.php:509
|
11150 |
#, php-format
|
11151 |
msgid "<strong>%1$s per %2$s for %3$d more %4$s</strong>"
|
11152 |
msgstr ""
|
11153 |
|
11154 |
+
#: includes/functions.php:515 includes/functions.php:448
|
11155 |
#: includes/functions.php:467 includes/functions.php:506
|
11156 |
#: includes/functions.php:511
|
11157 |
#, php-format
|
11158 |
msgid "<strong>%1$s every %2$d %3$s for %4$d more payments</strong>"
|
11159 |
msgstr ""
|
11160 |
|
11161 |
+
#: includes/functions.php:518 includes/functions.php:451
|
11162 |
#: includes/functions.php:470 includes/functions.php:509
|
11163 |
#: includes/functions.php:514
|
11164 |
#, php-format
|
11165 |
msgid "<strong>%1$s after %2$d %3$s</strong>"
|
11166 |
msgstr ""
|
11167 |
|
11168 |
+
#: includes/functions.php:521 includes/functions.php:454
|
11169 |
#: includes/functions.php:473 includes/functions.php:512
|
11170 |
#: includes/functions.php:517
|
11171 |
#, php-format
|
11172 |
msgid "<strong>%1$s every %2$s</strong>"
|
11173 |
msgstr ""
|
11174 |
|
11175 |
+
#: includes/functions.php:523 includes/functions.php:456
|
11176 |
#: includes/functions.php:475 includes/functions.php:514
|
11177 |
#: includes/functions.php:519
|
11178 |
#, php-format
|
11179 |
msgid "<strong>%1$s every %2$d %3$s</strong>"
|
11180 |
msgstr ""
|
11181 |
|
11182 |
+
#: includes/functions.php:545 includes/functions.php:478
|
11183 |
#: includes/functions.php:497 includes/functions.php:511
|
11184 |
#: includes/functions.php:520 includes/functions.php:536
|
11185 |
#: includes/functions.php:541
|
11186 |
msgid "Trial pricing has been applied to the first payment."
|
11187 |
msgstr ""
|
11188 |
|
11189 |
+
#: includes/functions.php:547 includes/functions.php:480
|
11190 |
#: includes/functions.php:499 includes/functions.php:513
|
11191 |
#: includes/functions.php:522 includes/functions.php:538
|
11192 |
#: includes/functions.php:543
|
11194 |
msgid "Trial pricing has been applied to the first %d payments."
|
11195 |
msgstr ""
|
11196 |
|
11197 |
+
#: includes/functions.php:572 includes/functions.php:505
|
11198 |
#: includes/functions.php:524 includes/functions.php:563
|
11199 |
#: includes/functions.php:568
|
11200 |
#, php-format
|
11201 |
msgid "Membership expires after %1$d %2$s."
|
11202 |
msgstr ""
|
11203 |
|
11204 |
+
#: includes/functions.php:591 includes/functions.php:524
|
11205 |
#: includes/functions.php:543 includes/functions.php:582
|
11206 |
#: includes/functions.php:587
|
11207 |
#, php-format
|
11208 |
msgid "%1$s membership expires after %2$d %3$s"
|
11209 |
msgstr ""
|
11210 |
|
11211 |
+
#: includes/functions.php:968 includes/functions.php:491
|
11212 |
#: includes/functions.php:514 includes/functions.php:525
|
11213 |
#: includes/functions.php:536 includes/functions.php:537
|
11214 |
#: includes/functions.php:538 includes/functions.php:545
|
11224 |
msgid "User ID not found."
|
11225 |
msgstr ""
|
11226 |
|
11227 |
+
#: includes/functions.php:986 includes/functions.php:886
|
11228 |
#: includes/functions.php:889 includes/functions.php:894
|
11229 |
#: includes/functions.php:913 includes/functions.php:952
|
11230 |
#: includes/functions.php:957 includes/functions.php:976
|
11231 |
msgid "No membership_id specified in pmpro_changeMembershipLevel."
|
11232 |
msgstr ""
|
11233 |
|
11234 |
+
#: includes/functions.php:992 includes/functions.php:1000
|
11235 |
#: includes/functions.php:508 includes/functions.php:531
|
11236 |
#: includes/functions.php:542 includes/functions.php:553
|
11237 |
#: includes/functions.php:554 includes/functions.php:555
|
11251 |
msgid "Invalid level."
|
11252 |
msgstr ""
|
11253 |
|
11254 |
+
#: includes/functions.php:1074 includes/functions.php:537
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11255 |
#: includes/functions.php:559 includes/functions.php:570
|
11256 |
#: includes/functions.php:581 includes/functions.php:582
|
11257 |
#: includes/functions.php:583 includes/functions.php:590
|
11282 |
msgid "Error interacting with database"
|
11283 |
msgstr ""
|
11284 |
|
11285 |
+
#: includes/functions.php:1180 includes/functions.php:907
|
11286 |
#: includes/functions.php:1064 includes/functions.php:1067
|
11287 |
#: includes/functions.php:1077 includes/functions.php:1096
|
11288 |
#: includes/functions.php:1123 includes/functions.php:1127
|
11293 |
msgid "Error interacting with database: %s"
|
11294 |
msgstr ""
|
11295 |
|
11296 |
+
#: includes/functions.php:1293 includes/functions.php:1331
|
11297 |
#: includes/functions.php:629 includes/functions.php:651
|
11298 |
#: includes/functions.php:667 includes/functions.php:668
|
11299 |
#: includes/functions.php:678 includes/functions.php:681
|
11327 |
msgid "Membership level not found."
|
11328 |
msgstr ""
|
11329 |
|
11330 |
+
#: includes/functions.php:1709 includes/functions.php:1100
|
11331 |
#: includes/functions.php:1101 includes/functions.php:1118
|
11332 |
#: includes/functions.php:1142 includes/functions.php:1143
|
11333 |
#: includes/functions.php:1150 includes/functions.php:1157
|
11344 |
msgid "No code was given to check."
|
11345 |
msgstr ""
|
11346 |
|
11347 |
+
#: includes/functions.php:1718 includes/functions.php:1050
|
11348 |
#: includes/functions.php:1072 includes/functions.php:1088
|
11349 |
#: includes/functions.php:1099 includes/functions.php:1102
|
11350 |
#: includes/functions.php:1109 includes/functions.php:1110
|
11364 |
msgid "The discount code could not be found."
|
11365 |
msgstr ""
|
11366 |
|
11367 |
+
#: includes/functions.php:1733 includes/functions.php:1066
|
11368 |
#: includes/functions.php:1088 includes/functions.php:1104
|
11369 |
#: includes/functions.php:1115 includes/functions.php:1118
|
11370 |
#: includes/functions.php:1124 includes/functions.php:1125
|
11385 |
msgid "This discount code goes into effect on %s."
|
11386 |
msgstr ""
|
11387 |
|
11388 |
+
#: includes/functions.php:1740 includes/functions.php:1075
|
11389 |
#: includes/functions.php:1097 includes/functions.php:1113
|
11390 |
#: includes/functions.php:1124 includes/functions.php:1127
|
11391 |
#: includes/functions.php:1131 includes/functions.php:1132
|
11406 |
msgid "This discount code expired on %s."
|
11407 |
msgstr ""
|
11408 |
|
11409 |
+
#: includes/functions.php:1749 includes/functions.php:1087
|
11410 |
#: includes/functions.php:1109 includes/functions.php:1125
|
11411 |
#: includes/functions.php:1136 includes/functions.php:1139
|
11412 |
#: includes/functions.php:1141 includes/functions.php:1142
|
11426 |
msgid "This discount code is no longer valid."
|
11427 |
msgstr ""
|
11428 |
|
11429 |
+
#: includes/functions.php:1768 includes/functions.php:1102
|
11430 |
#: includes/functions.php:1124 includes/functions.php:1140
|
11431 |
#: includes/functions.php:1151 includes/functions.php:1154
|
11432 |
#: includes/functions.php:1155 includes/functions.php:1164
|
11446 |
msgid "This discount code does not apply to this membership level."
|
11447 |
msgstr ""
|
11448 |
|
11449 |
+
#: includes/functions.php:1806 includes/functions.php:1110
|
11450 |
#: includes/functions.php:1132 includes/functions.php:1148
|
11451 |
#: includes/functions.php:1159 includes/functions.php:1162
|
11452 |
#: includes/functions.php:1172 includes/functions.php:1180
|
11466 |
msgid "This discount code is okay."
|
11467 |
msgstr ""
|
11468 |
|
11469 |
+
#: includes/functions.php:1834 includes/functions.php:1134
|
11470 |
#: includes/functions.php:1156 includes/functions.php:1172
|
11471 |
#: includes/functions.php:1183 includes/functions.php:1186
|
11472 |
#: includes/functions.php:1196 includes/functions.php:1205
|
11486 |
msgid "and"
|
11487 |
msgstr ""
|
11488 |
|
11489 |
+
#: includes/functions.php:2388 includes/functions.php:1319
|
11490 |
#: includes/functions.php:1341 includes/functions.php:1361
|
11491 |
#: includes/functions.php:1372 includes/functions.php:1375
|
11492 |
#: includes/functions.php:1385 includes/functions.php:1394
|
11509 |
msgid "Sign Up for !!name!! Now"
|
11510 |
msgstr ""
|
11511 |
|
11512 |
+
#: includes/functions.php:2412 includes/functions.php:2021
|
11513 |
#: includes/functions.php:2054 includes/functions.php:2085
|
11514 |
#: includes/functions.php:2124 includes/functions.php:2126
|
11515 |
#: includes/functions.php:2179 includes/functions.php:2223
|
11518 |
msgid "Sign Up Now"
|
11519 |
msgstr ""
|
11520 |
|
11521 |
+
#: includes/functions.php:2816 adminpages/templates/orders-email.php:56
|
11522 |
+
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:90
|
11523 |
+
#: pages/confirmation.php:91 pages/confirmation.php:93
|
11524 |
+
#: pages/confirmation.php:94 pages/confirmation.php:98 pages/invoice.php:72
|
11525 |
+
#: pages/invoice.php:73 pages/invoice.php:74 pages/invoice.php:75
|
11526 |
+
#: pages/invoice.php:77 pages/invoice.php:79 pages/invoice.php:83
|
11527 |
+
#: pages/invoice.php:84 pages/invoice.php:88
|
11528 |
+
msgid "Subtotal"
|
11529 |
+
msgstr ""
|
11530 |
+
|
11531 |
+
#: includes/functions.php:2831 pages/confirmation.php:93
|
11532 |
+
#: pages/confirmation.php:94 pages/confirmation.php:96
|
11533 |
+
#: pages/confirmation.php:97 pages/confirmation.php:101 pages/invoice.php:75
|
11534 |
+
#: pages/invoice.php:76 pages/invoice.php:77 pages/invoice.php:78
|
11535 |
+
#: pages/invoice.php:80 pages/invoice.php:82 pages/invoice.php:86
|
11536 |
+
#: pages/invoice.php:87 pages/invoice.php:91
|
11537 |
+
msgid "Coupon"
|
11538 |
+
msgstr ""
|
11539 |
+
|
11540 |
+
#: includes/init.php:176 includes/profile.php:22 pages/checkout.php:52
|
11541 |
+
#: pages/confirmation.php:53 pages/confirmation.php:126 pages/invoice.php:26
|
11542 |
#: adminpages/orders.php:601 adminpages/orders.php:904
|
11543 |
#: adminpages/orders.php:914 adminpages/orders.php:941
|
11544 |
#: adminpages/orders.php:970 adminpages/orders.php:1107
|
11561 |
#: pages/confirmation.php:105 pages/confirmation.php:113
|
11562 |
#: pages/confirmation.php:116 pages/confirmation.php:123
|
11563 |
#: pages/confirmation.php:124 pages/confirmation.php:126
|
11564 |
+
#: pages/confirmation.php:127 pages/confirmation.php:131 pages/invoice.php:26
|
11565 |
+
#: pages/invoice.php:27 pages/invoice.php:28 pages/invoice.php:49
|
11566 |
+
#: pages/invoice.php:51 pages/invoice.php:70
|
11567 |
msgid "Membership Level"
|
11568 |
msgstr ""
|
11569 |
|
11623 |
msgid "Years"
|
11624 |
msgstr ""
|
11625 |
|
11626 |
+
#: includes/login.php:268 includes/login.php:292 includes/login.php:211
|
11627 |
#: includes/login.php:235 includes/login.php:251 includes/login.php:257
|
11628 |
#: includes/login.php:264 includes/login.php:275 includes/login.php:281
|
11629 |
#: includes/login.php:288
|
11630 |
msgid "Welcome"
|
11631 |
msgstr ""
|
11632 |
|
11633 |
+
#: includes/login.php:270 includes/login.php:294 includes/login.php:213
|
11634 |
#: includes/login.php:237 includes/login.php:253 includes/login.php:259
|
11635 |
#: includes/login.php:266 includes/login.php:277 includes/login.php:283
|
11636 |
#: includes/login.php:290
|
11637 |
msgid "Lost Password"
|
11638 |
msgstr ""
|
11639 |
|
11640 |
+
#: includes/login.php:272 includes/login.php:296 includes/login.php:517
|
11641 |
+
#: includes/login.php:693 includes/login.php:215 includes/login.php:239
|
11642 |
+
#: includes/login.php:255 includes/login.php:261 includes/login.php:268
|
11643 |
+
#: includes/login.php:279 includes/login.php:285 includes/login.php:292
|
11644 |
+
#: includes/login.php:689
|
11645 |
msgid "Reset Password"
|
11646 |
msgstr ""
|
11647 |
|
11648 |
+
#: includes/login.php:320 includes/login.php:855 includes/login.php:263
|
11649 |
#: includes/login.php:303 includes/login.php:309 includes/login.php:316
|
11650 |
#: includes/login.php:751 includes/login.php:820 includes/login.php:830
|
11651 |
#: includes/login.php:868
|
11652 |
msgid "There was a problem with your username or password."
|
11653 |
msgstr ""
|
11654 |
|
11655 |
+
#: includes/login.php:324 includes/login.php:267 includes/login.php:307
|
11656 |
#: includes/login.php:313 includes/login.php:320
|
11657 |
msgid "Unknown username. Check again or try your email address."
|
11658 |
msgstr ""
|
11659 |
|
11660 |
+
#: includes/login.php:328 includes/login.php:271 includes/login.php:311
|
11661 |
#: includes/login.php:317 includes/login.php:324
|
11662 |
msgid "Empty username. Please enter your username and try again."
|
11663 |
msgstr ""
|
11664 |
|
11665 |
+
#: includes/login.php:332 includes/login.php:275 includes/login.php:315
|
11666 |
#: includes/login.php:321 includes/login.php:328
|
11667 |
msgid "Empty password. Please enter your password and try again."
|
11668 |
msgstr ""
|
11669 |
|
11670 |
+
#: includes/login.php:336 includes/login.php:279 includes/login.php:319
|
11671 |
#: includes/login.php:325 includes/login.php:332
|
11672 |
msgid "The password you entered for the user is incorrect. Please try again."
|
11673 |
msgstr ""
|
11674 |
|
11675 |
+
#: includes/login.php:340 includes/login.php:283 includes/login.php:323
|
11676 |
#: includes/login.php:329 includes/login.php:336
|
11677 |
msgid "Check your email for the confirmation link."
|
11678 |
msgstr ""
|
11679 |
|
11680 |
+
#: includes/login.php:349 includes/login.php:292 includes/login.php:332
|
11681 |
#: includes/login.php:338 includes/login.php:345
|
11682 |
msgid "You are now logged out."
|
11683 |
msgstr ""
|
11684 |
|
11685 |
+
#: includes/login.php:353 includes/login.php:296 includes/login.php:336
|
11686 |
#: includes/login.php:342 includes/login.php:349
|
11687 |
msgid "There was a problem logging you out."
|
11688 |
msgstr ""
|
11689 |
|
11690 |
+
#: includes/login.php:364 includes/login.php:307 includes/login.php:347
|
11691 |
#: includes/login.php:353 includes/login.php:360
|
11692 |
msgid "Check your email for a link to reset your password."
|
11693 |
msgstr ""
|
11694 |
|
11695 |
+
#: includes/login.php:367 includes/login.php:310 includes/login.php:350
|
11696 |
#: includes/login.php:356 includes/login.php:363
|
11697 |
msgid "There was an unexpected error regarding your email. Please try again"
|
11698 |
msgstr ""
|
11699 |
|
11700 |
+
#: includes/login.php:377 includes/login.php:320 includes/login.php:360
|
11701 |
#: includes/login.php:366 includes/login.php:373
|
11702 |
msgid "Your reset password key is invalid."
|
11703 |
msgstr ""
|
11704 |
|
11705 |
+
#: includes/login.php:381 includes/login.php:324 includes/login.php:364
|
11706 |
#: includes/login.php:370 includes/login.php:377
|
11707 |
msgid ""
|
11708 |
"Your reset password key is expired, please request a new key from the "
|
11709 |
"password reset page."
|
11710 |
msgstr ""
|
11711 |
|
11712 |
+
#: includes/login.php:393 includes/login.php:336 includes/login.php:376
|
11713 |
#: includes/login.php:382 includes/login.php:389
|
11714 |
msgid "Your password has successfully been updated."
|
11715 |
msgstr ""
|
11716 |
|
11717 |
+
#: includes/login.php:397 includes/login.php:340 includes/login.php:380
|
11718 |
#: includes/login.php:386 includes/login.php:393
|
11719 |
msgid "There was a problem updating your password"
|
11720 |
msgstr ""
|
11721 |
|
11722 |
+
#: includes/login.php:411 includes/login.php:349 includes/login.php:394
|
11723 |
#: includes/login.php:400 includes/login.php:407
|
11724 |
msgid "There is no account with that username or email address."
|
11725 |
msgstr ""
|
11726 |
|
11727 |
+
#: includes/login.php:415 includes/login.php:353 includes/login.php:398
|
11728 |
#: includes/login.php:404 includes/login.php:411
|
11729 |
msgid "Please enter a valid username."
|
11730 |
msgstr ""
|
11731 |
|
11732 |
+
#: includes/login.php:419 includes/login.php:357 includes/login.php:402
|
11733 |
#: includes/login.php:408 includes/login.php:415
|
11734 |
msgid "You've entered an invalid email address."
|
11735 |
msgstr ""
|
11736 |
|
11737 |
+
#: includes/login.php:423 includes/profile.php:603 includes/login.php:361
|
11738 |
#: includes/login.php:406 includes/login.php:412 includes/login.php:419
|
11739 |
#: includes/profile.php:586 includes/profile.php:595 includes/profile.php:603
|
11740 |
#: includes/profile.php:604 includes/profile.php:624
|
11741 |
msgid "New passwords do not match."
|
11742 |
msgstr ""
|
11743 |
|
11744 |
+
#: includes/login.php:427 includes/profile.php:599 includes/login.php:365
|
11745 |
#: includes/login.php:410 includes/login.php:416 includes/login.php:423
|
11746 |
#: includes/profile.php:582 includes/profile.php:591 includes/profile.php:599
|
11747 |
#: includes/profile.php:600 includes/profile.php:620
|
11748 |
msgid "Please complete all fields."
|
11749 |
msgstr ""
|
11750 |
|
11751 |
+
#: includes/login.php:431 includes/login.php:414 includes/login.php:420
|
11752 |
#: includes/login.php:427
|
11753 |
msgid ""
|
11754 |
"The email could not be sent. This site may not be correctly configured to "
|
11755 |
"send emails."
|
11756 |
msgstr ""
|
11757 |
|
11758 |
+
#: includes/login.php:497
|
11759 |
+
msgid "Password Reset"
|
11760 |
+
msgstr ""
|
11761 |
+
|
11762 |
+
#: includes/login.php:502 includes/login.php:498
|
11763 |
msgid ""
|
11764 |
"Please enter your username or email address. You will receive a link to "
|
11765 |
"create a new password via email."
|
11766 |
msgstr ""
|
11767 |
|
11768 |
+
#: includes/login.php:527 includes/login.php:523
|
11769 |
msgid "You are already signed in."
|
11770 |
msgstr ""
|
11771 |
|
11772 |
+
#: includes/login.php:562 includes/login.php:558
|
11773 |
msgid "Username or Email Address"
|
11774 |
msgstr ""
|
11775 |
|
11776 |
+
#: includes/login.php:567 includes/login.php:563
|
11777 |
msgid "Get New Password"
|
11778 |
msgstr ""
|
11779 |
|
11780 |
+
#: includes/login.php:646 includes/login.php:655 includes/login.php:642
|
11781 |
#: includes/login.php:651
|
11782 |
msgid ""
|
11783 |
"Your password reset link appears to be invalid. Please request a new link "
|
11784 |
"below."
|
11785 |
msgstr ""
|
11786 |
|
11787 |
+
#: includes/login.php:648 includes/login.php:657 includes/login.php:644
|
11788 |
#: includes/login.php:653
|
11789 |
msgid "Your password reset link has expired. Please request a new link below."
|
11790 |
msgstr ""
|
11791 |
|
11792 |
+
#: includes/login.php:682 includes/profile.php:651 includes/login.php:678
|
11793 |
#: includes/profile.php:634 includes/profile.php:643 includes/profile.php:651
|
11794 |
#: includes/profile.php:652 includes/profile.php:672
|
11795 |
msgid "New Password"
|
11796 |
msgstr ""
|
11797 |
|
11798 |
+
#: includes/login.php:684 includes/profile.php:654 includes/scripts.php:86
|
11799 |
#: includes/login.php:587 includes/login.php:636 includes/login.php:642
|
11800 |
#: includes/login.php:680 includes/profile.php:637 includes/profile.php:646
|
11801 |
#: includes/profile.php:654 includes/profile.php:655 includes/profile.php:675
|
11803 |
msgid "Strength Indicator"
|
11804 |
msgstr ""
|
11805 |
|
11806 |
+
#: includes/login.php:688 includes/profile.php:658 includes/login.php:684
|
11807 |
#: includes/profile.php:641 includes/profile.php:650 includes/profile.php:658
|
11808 |
#: includes/profile.php:659 includes/profile.php:679
|
11809 |
msgid "Confirm New Password"
|
11810 |
msgstr ""
|
11811 |
|
11812 |
+
#: includes/login.php:718 includes/login.php:714
|
11813 |
msgid "Join Now"
|
11814 |
msgstr ""
|
11815 |
|
11816 |
+
#: includes/login.php:720 includes/login.php:716
|
11817 |
msgid "Register"
|
11818 |
msgstr ""
|
11819 |
|
11820 |
+
#: includes/login.php:725 includes/login.php:721
|
11821 |
msgid "Lost Password?"
|
11822 |
msgstr ""
|
11823 |
|
11824 |
+
#: includes/login.php:803 includes/login.php:799
|
11825 |
msgid "Invalid Request"
|
11826 |
msgstr ""
|
11827 |
|
11828 |
+
#: includes/login.php:927 includes/login.php:940
|
11829 |
#, php-format
|
11830 |
msgid "Welcome, %s"
|
11831 |
msgstr ""
|
11832 |
|
11833 |
+
#: includes/login.php:961 includes/menus.php:76 includes/menus.php:79
|
11834 |
#: includes/menus.php:169 shortcodes/pmpro_account.php:185
|
11835 |
#: includes/login.php:974 includes/menus.php:76 includes/menus.php:79
|
11836 |
#: includes/menus.php:169 shortcodes/pmpro_account.php:185
|
11837 |
msgid "Log Out"
|
11838 |
msgstr ""
|
11839 |
|
11840 |
+
#: includes/login.php:994 includes/login.php:886 includes/login.php:959
|
11841 |
#: includes/login.php:969 includes/login.php:1007
|
11842 |
msgid "Missing request ID."
|
11843 |
msgstr ""
|
11844 |
|
11845 |
+
#: includes/login.php:998 includes/login.php:890 includes/login.php:963
|
11846 |
#: includes/login.php:973 includes/login.php:1011
|
11847 |
msgid "Missing confirm key."
|
11848 |
msgstr ""
|
11864 |
msgid "Log In Widget - PMPro"
|
11865 |
msgstr ""
|
11866 |
|
11867 |
+
#: includes/metaboxes.php:38 includes/metaboxes.php:37
|
11868 |
#: includes/metaboxes.php:38 includes/metaboxes.php:39
|
11869 |
#: includes/metaboxes.php:40
|
11870 |
msgid ""
|
11872 |
"category that requires membership."
|
11873 |
msgstr ""
|
11874 |
|
11875 |
+
#: includes/metaboxes.php:107 includes/metaboxes.php:108
|
11876 |
#: includes/metaboxes.php:99 includes/metaboxes.php:100
|
11877 |
#: includes/metaboxes.php:104 includes/metaboxes.php:105
|
11878 |
#: includes/metaboxes.php:106 includes/metaboxes.php:107
|
11879 |
msgid "Require Membership"
|
11880 |
msgstr ""
|
11881 |
|
11882 |
+
#: includes/metaboxes.php:136 includes/metaboxes.php:130
|
11883 |
#: includes/metaboxes.php:134 includes/metaboxes.php:135
|
11884 |
#: includes/metaboxes.php:136
|
11885 |
msgid ""
|
12141 |
msgid "Your profile has been updated."
|
12142 |
msgstr ""
|
12143 |
|
12144 |
+
#: includes/profile.php:507 pages/billing.php:152 pages/checkout.php:223
|
12145 |
#: includes/profile.php:490 includes/profile.php:499 includes/profile.php:507
|
12146 |
#: includes/profile.php:508 includes/profile.php:523 pages/billing.php:65
|
12147 |
#: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
|
12149 |
#: pages/billing.php:104 pages/billing.php:107 pages/billing.php:108
|
12150 |
#: pages/billing.php:110 pages/billing.php:112 pages/billing.php:113
|
12151 |
#: pages/billing.php:121 pages/billing.php:130 pages/billing.php:152
|
12152 |
+
#: pages/checkout.php:221 pages/checkout.php:230 pages/checkout.php:233
|
12153 |
+
#: pages/checkout.php:279 pages/checkout.php:287 pages/checkout.php:305
|
12154 |
+
#: pages/checkout.php:307 pages/checkout.php:309 pages/checkout.php:318
|
12155 |
+
#: pages/checkout.php:321 pages/checkout.php:324 pages/checkout.php:326
|
12156 |
+
#: pages/checkout.php:328 pages/checkout.php:333 pages/checkout.php:336
|
12157 |
msgid "First Name"
|
12158 |
msgstr ""
|
12159 |
|
12160 |
+
#: includes/profile.php:508 pages/billing.php:156 pages/checkout.php:227
|
12161 |
#: includes/profile.php:491 includes/profile.php:500 includes/profile.php:508
|
12162 |
#: includes/profile.php:509 includes/profile.php:528 pages/billing.php:69
|
12163 |
#: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
|
12165 |
#: pages/billing.php:108 pages/billing.php:111 pages/billing.php:112
|
12166 |
#: pages/billing.php:114 pages/billing.php:116 pages/billing.php:117
|
12167 |
#: pages/billing.php:125 pages/billing.php:134 pages/billing.php:156
|
12168 |
+
#: pages/checkout.php:225 pages/checkout.php:234 pages/checkout.php:237
|
12169 |
+
#: pages/checkout.php:283 pages/checkout.php:291 pages/checkout.php:309
|
12170 |
+
#: pages/checkout.php:311 pages/checkout.php:313 pages/checkout.php:322
|
12171 |
+
#: pages/checkout.php:325 pages/checkout.php:328 pages/checkout.php:330
|
12172 |
+
#: pages/checkout.php:332 pages/checkout.php:337 pages/checkout.php:340
|
12173 |
msgid "Last Name"
|
12174 |
msgstr ""
|
12175 |
|
12361 |
#: pages/account.php:105 pages/account.php:109 pages/billing.php:84
|
12362 |
#: pages/confirmation.php:61 pages/confirmation.php:63
|
12363 |
#: pages/confirmation.php:69 pages/confirmation.php:78
|
12364 |
+
#: pages/confirmation.php:79 pages/confirmation.php:82
|
12365 |
+
#: pages/confirmation.php:83 pages/invoice.php:48 pages/invoice.php:50
|
12366 |
+
#: pages/invoice.php:60 pages/invoice.php:61 pages/invoice.php:62
|
12367 |
+
#: pages/invoice.php:69 pages/invoice.php:73
|
12368 |
msgid "Payment Method"
|
12369 |
msgstr ""
|
12370 |
|
12371 |
#: pages/billing.php:86 pages/confirmation.php:85 pages/invoice.php:75
|
12372 |
#: pages/billing.php:86 pages/confirmation.php:79 pages/confirmation.php:80
|
12373 |
#: pages/confirmation.php:81 pages/confirmation.php:82
|
12374 |
+
#: pages/confirmation.php:83 pages/confirmation.php:85
|
12375 |
+
#: pages/confirmation.php:88 pages/invoice.php:61 pages/invoice.php:62
|
12376 |
+
#: pages/invoice.php:63 pages/invoice.php:67 pages/invoice.php:69
|
12377 |
+
#: pages/invoice.php:71 pages/invoice.php:75
|
12378 |
msgid "ending in"
|
12379 |
msgstr ""
|
12380 |
|
12381 |
+
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:133
|
12382 |
+
#: pages/invoice.php:143 pages/billing.php:97 pages/billing.php:103
|
12383 |
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:111
|
12384 |
#: pages/confirmation.php:113 pages/confirmation.php:121
|
12385 |
#: pages/confirmation.php:124 pages/confirmation.php:131
|
12386 |
#: pages/confirmation.php:132 pages/confirmation.php:133
|
12387 |
+
#: pages/confirmation.php:134 pages/confirmation.php:138 pages/invoice.php:121
|
12388 |
+
#: pages/invoice.php:133 pages/invoice.php:134 pages/invoice.php:135
|
12389 |
+
#: pages/invoice.php:136 pages/invoice.php:139 pages/invoice.php:141
|
12390 |
+
#: pages/invoice.php:143 pages/invoice.php:144 pages/invoice.php:148
|
12391 |
msgid "View Your Membership Account →"
|
12392 |
msgstr ""
|
12393 |
|
12405 |
msgid "Your billing information cannot be updated at this time."
|
12406 |
msgstr ""
|
12407 |
|
12408 |
+
#: pages/billing.php:148 pages/checkout.php:219 pages/confirmation.php:66
|
12409 |
#: pages/invoice.php:56 adminpages/memberslist.php:117
|
12410 |
#: adminpages/memberslist.php:150 adminpages/memberslist.php:160
|
12411 |
#: adminpages/memberslist.php:170 adminpages/memberslist.php:174
|
12414 |
#: pages/billing.php:76 pages/billing.php:77 pages/billing.php:80
|
12415 |
#: pages/billing.php:100 pages/billing.php:103 pages/billing.php:104
|
12416 |
#: pages/billing.php:108 pages/billing.php:109 pages/billing.php:117
|
12417 |
+
#: pages/billing.php:126 pages/billing.php:148 pages/checkout.php:217
|
12418 |
+
#: pages/checkout.php:226 pages/checkout.php:229 pages/checkout.php:275
|
12419 |
+
#: pages/checkout.php:283 pages/checkout.php:298 pages/checkout.php:300
|
12420 |
+
#: pages/checkout.php:302 pages/checkout.php:311 pages/checkout.php:314
|
12421 |
+
#: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
|
12422 |
+
#: pages/checkout.php:326 pages/checkout.php:329 pages/confirmation.php:59
|
12423 |
+
#: pages/confirmation.php:61 pages/confirmation.php:65
|
12424 |
+
#: pages/confirmation.php:66 pages/confirmation.php:67
|
12425 |
+
#: pages/confirmation.php:69 pages/invoice.php:46 pages/invoice.php:47
|
12426 |
+
#: pages/invoice.php:48 pages/invoice.php:49 pages/invoice.php:56
|
12427 |
msgid "Billing Address"
|
12428 |
msgstr ""
|
12429 |
|
12430 |
+
#: pages/billing.php:162 pages/checkout.php:231 pages/billing.php:73
|
12431 |
#: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
|
12432 |
#: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
|
12433 |
#: pages/billing.php:112 pages/billing.php:115 pages/billing.php:116
|
12434 |
#: pages/billing.php:118 pages/billing.php:120 pages/billing.php:121
|
12435 |
#: pages/billing.php:129 pages/billing.php:138 pages/billing.php:162
|
12436 |
+
#: pages/checkout.php:229 pages/checkout.php:238 pages/checkout.php:241
|
12437 |
+
#: pages/checkout.php:287 pages/checkout.php:295 pages/checkout.php:313
|
12438 |
+
#: pages/checkout.php:315 pages/checkout.php:317 pages/checkout.php:326
|
12439 |
+
#: pages/checkout.php:329 pages/checkout.php:332 pages/checkout.php:334
|
12440 |
+
#: pages/checkout.php:336 pages/checkout.php:341 pages/checkout.php:344
|
12441 |
msgid "Address 1"
|
12442 |
msgstr ""
|
12443 |
|
12444 |
+
#: pages/billing.php:166 pages/checkout.php:235 pages/billing.php:77
|
12445 |
#: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
|
12446 |
#: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
|
12447 |
#: pages/billing.php:116 pages/billing.php:119 pages/billing.php:120
|
12448 |
#: pages/billing.php:122 pages/billing.php:124 pages/billing.php:125
|
12449 |
#: pages/billing.php:133 pages/billing.php:142 pages/billing.php:166
|
12450 |
+
#: pages/checkout.php:233 pages/checkout.php:242 pages/checkout.php:245
|
12451 |
+
#: pages/checkout.php:291 pages/checkout.php:299 pages/checkout.php:317
|
12452 |
+
#: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:330
|
12453 |
+
#: pages/checkout.php:333 pages/checkout.php:336 pages/checkout.php:338
|
12454 |
+
#: pages/checkout.php:340 pages/checkout.php:345 pages/checkout.php:348
|
12455 |
msgid "Address 2"
|
12456 |
msgstr ""
|
12457 |
|
12458 |
+
#: pages/billing.php:176 pages/checkout.php:242 pages/billing.php:87
|
12459 |
#: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
|
12460 |
#: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
|
12461 |
#: pages/billing.php:126 pages/billing.php:129 pages/billing.php:130
|
12462 |
#: pages/billing.php:132 pages/billing.php:134 pages/billing.php:135
|
12463 |
#: pages/billing.php:143 pages/billing.php:152 pages/billing.php:176
|
12464 |
+
#: pages/checkout.php:240 pages/checkout.php:249 pages/checkout.php:252
|
12465 |
+
#: pages/checkout.php:298 pages/checkout.php:306 pages/checkout.php:327
|
12466 |
+
#: pages/checkout.php:329 pages/checkout.php:331 pages/checkout.php:340
|
12467 |
+
#: pages/checkout.php:343 pages/checkout.php:346 pages/checkout.php:348
|
12468 |
+
#: pages/checkout.php:350 pages/checkout.php:355 pages/checkout.php:358
|
12469 |
msgid "City"
|
12470 |
msgstr ""
|
12471 |
|
12472 |
+
#: pages/billing.php:180 pages/checkout.php:246 pages/billing.php:91
|
12473 |
#: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
|
12474 |
#: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
|
12475 |
#: pages/billing.php:130 pages/billing.php:133 pages/billing.php:134
|
12476 |
#: pages/billing.php:136 pages/billing.php:138 pages/billing.php:139
|
12477 |
#: pages/billing.php:147 pages/billing.php:156 pages/billing.php:180
|
12478 |
+
#: pages/checkout.php:244 pages/checkout.php:253 pages/checkout.php:256
|
12479 |
+
#: pages/checkout.php:302 pages/checkout.php:310 pages/checkout.php:331
|
12480 |
+
#: pages/checkout.php:333 pages/checkout.php:335 pages/checkout.php:344
|
12481 |
+
#: pages/checkout.php:347 pages/checkout.php:350 pages/checkout.php:352
|
12482 |
+
#: pages/checkout.php:354 pages/checkout.php:359 pages/checkout.php:362
|
12483 |
msgid "State"
|
12484 |
msgstr ""
|
12485 |
|
12486 |
+
#: pages/billing.php:184 pages/checkout.php:250 pages/billing.php:95
|
12487 |
#: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
|
12488 |
#: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
|
12489 |
#: pages/billing.php:134 pages/billing.php:137 pages/billing.php:138
|
12490 |
#: pages/billing.php:140 pages/billing.php:142 pages/billing.php:143
|
12491 |
#: pages/billing.php:151 pages/billing.php:160 pages/billing.php:184
|
12492 |
+
#: pages/checkout.php:248 pages/checkout.php:257 pages/checkout.php:260
|
12493 |
+
#: pages/checkout.php:306 pages/checkout.php:314 pages/checkout.php:335
|
12494 |
+
#: pages/checkout.php:337 pages/checkout.php:339 pages/checkout.php:348
|
12495 |
+
#: pages/checkout.php:351 pages/checkout.php:354 pages/checkout.php:356
|
12496 |
+
#: pages/checkout.php:358 pages/checkout.php:363 pages/checkout.php:366
|
12497 |
msgid "Postal Code"
|
12498 |
msgstr ""
|
12499 |
|
12500 |
+
#: pages/billing.php:193 pages/checkout.php:255 pages/billing.php:104
|
12501 |
#: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
|
12502 |
#: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
|
12503 |
#: pages/billing.php:143 pages/billing.php:146 pages/billing.php:147
|
12504 |
#: pages/billing.php:149 pages/billing.php:151 pages/billing.php:152
|
12505 |
#: pages/billing.php:160 pages/billing.php:169 pages/billing.php:193
|
12506 |
+
#: pages/checkout.php:253 pages/checkout.php:262 pages/checkout.php:265
|
12507 |
+
#: pages/checkout.php:311 pages/checkout.php:319 pages/checkout.php:344
|
12508 |
+
#: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:357
|
12509 |
+
#: pages/checkout.php:360 pages/checkout.php:363 pages/checkout.php:365
|
12510 |
+
#: pages/checkout.php:367 pages/checkout.php:372 pages/checkout.php:375
|
12511 |
msgid "City, State Zip"
|
12512 |
msgstr ""
|
12513 |
|
12514 |
+
#: pages/billing.php:246 pages/checkout.php:292 pages/billing.php:157
|
12515 |
#: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
|
12516 |
#: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
|
12517 |
#: pages/billing.php:196 pages/billing.php:199 pages/billing.php:200
|
12518 |
#: pages/billing.php:202 pages/billing.php:204 pages/billing.php:205
|
12519 |
#: pages/billing.php:213 pages/billing.php:222 pages/billing.php:246
|
12520 |
+
#: pages/checkout.php:290 pages/checkout.php:299 pages/checkout.php:302
|
12521 |
+
#: pages/checkout.php:348 pages/checkout.php:356 pages/checkout.php:397
|
12522 |
+
#: pages/checkout.php:399 pages/checkout.php:401 pages/checkout.php:410
|
12523 |
+
#: pages/checkout.php:413 pages/checkout.php:416 pages/checkout.php:418
|
12524 |
+
#: pages/checkout.php:420 pages/checkout.php:425 pages/checkout.php:428
|
12525 |
msgid "Country"
|
12526 |
msgstr ""
|
12527 |
|
12528 |
+
#: pages/billing.php:271 pages/checkout.php:308 pages/billing.php:182
|
12529 |
#: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
|
12530 |
#: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
|
12531 |
#: pages/billing.php:221 pages/billing.php:224 pages/billing.php:225
|
12532 |
#: pages/billing.php:227 pages/billing.php:229 pages/billing.php:230
|
12533 |
#: pages/billing.php:238 pages/billing.php:247 pages/billing.php:271
|
12534 |
+
#: pages/checkout.php:306 pages/checkout.php:315 pages/checkout.php:318
|
12535 |
+
#: pages/checkout.php:364 pages/checkout.php:372 pages/checkout.php:422
|
12536 |
+
#: pages/checkout.php:424 pages/checkout.php:426 pages/checkout.php:435
|
12537 |
+
#: pages/checkout.php:438 pages/checkout.php:441 pages/checkout.php:443
|
12538 |
+
#: pages/checkout.php:445 pages/checkout.php:450 pages/checkout.php:453
|
12539 |
msgid "Phone"
|
12540 |
msgstr ""
|
12541 |
|
12542 |
+
#: pages/billing.php:282 pages/checkout.php:153 pages/checkout.php:323
|
12543 |
#: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
|
12544 |
#: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
|
12545 |
#: pages/billing.php:215 pages/billing.php:232 pages/billing.php:235
|
12549 |
#: pages/checkout.php:197 pages/checkout.php:204 pages/checkout.php:205
|
12550 |
#: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:216
|
12551 |
#: pages/checkout.php:218 pages/checkout.php:220 pages/checkout.php:227
|
12552 |
+
#: pages/checkout.php:230 pages/checkout.php:321 pages/checkout.php:330
|
12553 |
+
#: pages/checkout.php:333 pages/checkout.php:379 pages/checkout.php:387
|
12554 |
+
#: pages/checkout.php:436 pages/checkout.php:438 pages/checkout.php:440
|
12555 |
+
#: pages/checkout.php:449 pages/checkout.php:453 pages/checkout.php:455
|
12556 |
+
#: pages/checkout.php:457 pages/checkout.php:460 pages/checkout.php:464
|
12557 |
+
#: pages/checkout.php:467
|
12558 |
msgid "Email Address"
|
12559 |
msgstr ""
|
12560 |
|
12561 |
+
#: pages/billing.php:286 pages/checkout.php:330 pages/billing.php:197
|
12562 |
#: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
|
12563 |
#: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
|
12564 |
#: pages/billing.php:236 pages/billing.php:239 pages/billing.php:240
|
12565 |
#: pages/billing.php:242 pages/billing.php:244 pages/billing.php:245
|
12566 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:286
|
12567 |
+
#: pages/checkout.php:328 pages/checkout.php:337 pages/checkout.php:340
|
12568 |
+
#: pages/checkout.php:386 pages/checkout.php:394 pages/checkout.php:445
|
12569 |
+
#: pages/checkout.php:447 pages/checkout.php:449 pages/checkout.php:458
|
12570 |
+
#: pages/checkout.php:462 pages/checkout.php:464 pages/checkout.php:466
|
12571 |
+
#: pages/checkout.php:469 pages/checkout.php:473 pages/checkout.php:476
|
12572 |
msgid "Confirm Email"
|
12573 |
msgstr ""
|
12574 |
|
12662 |
msgid "Click here to go to the home page."
|
12663 |
msgstr ""
|
12664 |
|
12665 |
+
#: pages/checkout.php:43 pages/checkout.php:26 pages/checkout.php:27
|
12666 |
#: pages/checkout.php:28 pages/checkout.php:30 pages/checkout.php:35
|
12667 |
#: pages/checkout.php:38 pages/checkout.php:41
|
12668 |
msgid ""
|
12670 |
"<strong>click the \"Complete Payment\" button</strong> to finish your order."
|
12671 |
msgstr ""
|
12672 |
|
12673 |
+
#: pages/checkout.php:53 pages/checkout.php:33 pages/checkout.php:34
|
12674 |
#: pages/checkout.php:35 pages/checkout.php:40 pages/checkout.php:42
|
12675 |
#: pages/checkout.php:43 pages/checkout.php:46 pages/checkout.php:48
|
12676 |
#: pages/checkout.php:51
|
12677 |
msgid "change"
|
12678 |
msgstr ""
|
12679 |
|
12680 |
+
#: pages/checkout.php:57 pages/checkout.php:39 pages/checkout.php:41
|
12681 |
#: pages/checkout.php:42 pages/checkout.php:43 pages/checkout.php:44
|
12682 |
#: pages/checkout.php:50 pages/checkout.php:51 pages/checkout.php:52
|
12683 |
#: pages/checkout.php:54 pages/checkout.php:55
|
12685 |
msgid "You have selected the <strong>%s</strong> membership level."
|
12686 |
msgstr ""
|
12687 |
|
12688 |
+
#: pages/checkout.php:74 pages/checkout.php:69 pages/checkout.php:72
|
12689 |
msgid "<p class=\""
|
12690 |
msgstr ""
|
12691 |
|
12692 |
+
#: pages/checkout.php:84 pages/checkout.php:66 pages/checkout.php:71
|
12693 |
#: pages/checkout.php:79 pages/checkout.php:82
|
12694 |
msgid "Click here to change your discount code."
|
12695 |
msgstr ""
|
12696 |
|
12697 |
+
#: pages/checkout.php:86 pages/checkout.php:64 pages/checkout.php:65
|
12698 |
#: pages/checkout.php:66 pages/checkout.php:68 pages/checkout.php:73
|
12699 |
#: pages/checkout.php:74 pages/checkout.php:81 pages/checkout.php:84
|
12700 |
msgid "Click here to enter your discount code"
|
12701 |
msgstr ""
|
12702 |
|
12703 |
+
#: pages/checkout.php:86 pages/checkout.php:64 pages/checkout.php:65
|
12704 |
#: pages/checkout.php:66 pages/checkout.php:68 pages/checkout.php:73
|
12705 |
#: pages/checkout.php:74 pages/checkout.php:81 pages/checkout.php:84
|
12706 |
msgid "Do you have a discount code?"
|
12707 |
msgstr ""
|
12708 |
|
12709 |
+
#: pages/checkout.php:118 pages/checkout.php:113 pages/checkout.php:116
|
12710 |
#: pages/checkout.php:160 pages/checkout.php:162 pages/checkout.php:163
|
12711 |
#: pages/checkout.php:165 pages/checkout.php:170 pages/checkout.php:172
|
12712 |
#: pages/checkout.php:173 pages/checkout.php:175 pages/checkout.php:182
|
12714 |
msgid "Account Information"
|
12715 |
msgstr ""
|
12716 |
|
12717 |
+
#: pages/checkout.php:119 pages/checkout.php:114 pages/checkout.php:117
|
12718 |
#: pages/checkout.php:160 pages/checkout.php:163 pages/checkout.php:165
|
12719 |
#: pages/checkout.php:171 pages/checkout.php:172 pages/checkout.php:174
|
12720 |
#: pages/checkout.php:176 pages/checkout.php:183 pages/checkout.php:186
|
12721 |
msgid "Already have an account?"
|
12722 |
msgstr ""
|
12723 |
|
12724 |
+
#: pages/checkout.php:119 pages/checkout.php:114 pages/checkout.php:117
|
12725 |
#: pages/checkout.php:160 pages/checkout.php:163 pages/checkout.php:165
|
12726 |
#: pages/checkout.php:171 pages/checkout.php:172 pages/checkout.php:174
|
12727 |
#: pages/checkout.php:176 pages/checkout.php:183 pages/checkout.php:186
|
12728 |
msgid "Log in here"
|
12729 |
msgstr ""
|
12730 |
|
12731 |
+
#: pages/checkout.php:140 pages/checkout.php:135 pages/checkout.php:138
|
12732 |
#: pages/checkout.php:184 pages/checkout.php:186 pages/checkout.php:189
|
12733 |
#: pages/checkout.php:191 pages/checkout.php:192 pages/checkout.php:198
|
12734 |
#: pages/checkout.php:200 pages/checkout.php:202 pages/checkout.php:209
|
12736 |
msgid "Confirm Password"
|
12737 |
msgstr ""
|
12738 |
|
12739 |
+
#: pages/checkout.php:161 pages/checkout.php:156 pages/checkout.php:159
|
12740 |
#: pages/checkout.php:205 pages/checkout.php:213 pages/checkout.php:216
|
12741 |
#: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
|
12742 |
#: pages/checkout.php:229 pages/checkout.php:236 pages/checkout.php:239
|
12743 |
msgid "Confirm Email Address"
|
12744 |
msgstr ""
|
12745 |
|
12746 |
+
#: pages/checkout.php:174 pages/checkout.php:169 pages/checkout.php:172
|
12747 |
#: pages/checkout.php:218 pages/checkout.php:226 pages/checkout.php:232
|
12748 |
#: pages/checkout.php:235 pages/checkout.php:237 pages/checkout.php:244
|
12749 |
#: pages/checkout.php:246 pages/checkout.php:248 pages/checkout.php:255
|
12751 |
msgid "Full Name"
|
12752 |
msgstr ""
|
12753 |
|
12754 |
+
#: pages/checkout.php:175 pages/checkout.php:170 pages/checkout.php:173
|
12755 |
#: pages/checkout.php:219 pages/checkout.php:227 pages/checkout.php:233
|
12756 |
#: pages/checkout.php:236 pages/checkout.php:238 pages/checkout.php:245
|
12757 |
#: pages/checkout.php:247 pages/checkout.php:249 pages/checkout.php:256
|
12759 |
msgid "LEAVE THIS BLANK"
|
12760 |
msgstr ""
|
12761 |
|
12762 |
+
#: pages/checkout.php:182 pages/checkout.php:180 pages/checkout.php:189
|
12763 |
+
#: pages/checkout.php:192 pages/checkout.php:238 pages/checkout.php:246
|
12764 |
+
#: pages/checkout.php:257 pages/checkout.php:260 pages/checkout.php:262
|
12765 |
+
#: pages/checkout.php:269 pages/checkout.php:271 pages/checkout.php:273
|
12766 |
+
#: pages/checkout.php:280 pages/checkout.php:283
|
12767 |
#, php-format
|
12768 |
msgid ""
|
12769 |
"You are logged in as <strong>%s</strong>. If you would like to use a "
|
12770 |
"different account for this membership, <a href=\"%s\">log out now</a>."
|
12771 |
msgstr ""
|
12772 |
|
12773 |
+
#: pages/checkout.php:198 pages/checkout.php:196 pages/checkout.php:205
|
12774 |
+
#: pages/checkout.php:208 pages/checkout.php:254 pages/checkout.php:262
|
12775 |
+
#: pages/checkout.php:276 pages/checkout.php:278 pages/checkout.php:285
|
12776 |
+
#: pages/checkout.php:287 pages/checkout.php:289 pages/checkout.php:292
|
12777 |
+
#: pages/checkout.php:296 pages/checkout.php:299
|
12778 |
msgid "Choose your Payment Method"
|
12779 |
msgstr ""
|
12780 |
|
12781 |
+
#: pages/checkout.php:203 pages/checkout.php:201 pages/checkout.php:210
|
12782 |
+
#: pages/checkout.php:213 pages/checkout.php:259 pages/checkout.php:267
|
12783 |
+
#: pages/checkout.php:284 pages/checkout.php:286 pages/checkout.php:293
|
12784 |
+
#: pages/checkout.php:296 pages/checkout.php:298 pages/checkout.php:300
|
12785 |
+
#: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:308
|
12786 |
msgid "Check Out with a Credit Card Here"
|
12787 |
msgstr ""
|
12788 |
|
12789 |
+
#: pages/checkout.php:413 classes/gateways/class.pmprogateway_stripe.php:623
|
12790 |
#: classes/gateways/class.pmprogateway_stripe.php:638
|
12791 |
#: classes/gateways/class.pmprogateway_stripe.php:646
|
12792 |
#: classes/gateways/class.pmprogateway_stripe.php:653
|
12793 |
#: classes/gateways/class.pmprogateway_stripe.php:654
|
12794 |
+
#: classes/gateways/class.pmprogateway_stripe.php:655 pages/checkout.php:411
|
12795 |
+
#: pages/checkout.php:420 pages/checkout.php:423 pages/checkout.php:492
|
12796 |
+
#: pages/checkout.php:500
|
12797 |
msgid "Security Code (CVC)"
|
12798 |
msgstr ""
|
12799 |
|
12800 |
+
#: pages/checkout.php:465 pages/checkout.php:277 pages/checkout.php:284
|
12801 |
+
#: pages/checkout.php:459 pages/checkout.php:463 pages/checkout.php:472
|
12802 |
+
#: pages/checkout.php:475 pages/checkout.php:567 pages/checkout.php:575
|
12803 |
+
#: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
|
12804 |
+
#: pages/checkout.php:681 pages/checkout.php:686 pages/checkout.php:690
|
12805 |
+
#: pages/checkout.php:692 pages/checkout.php:693 pages/checkout.php:696
|
12806 |
+
#: pages/checkout.php:697
|
12807 |
#, php-format
|
12808 |
msgid "I agree to the %s"
|
12809 |
msgstr ""
|
12810 |
|
12811 |
+
#: pages/checkout.php:503 pages/checkout.php:484 pages/checkout.php:497
|
12812 |
+
#: pages/checkout.php:500 pages/checkout.php:501 pages/checkout.php:586
|
12813 |
+
#: pages/checkout.php:594 pages/checkout.php:667 pages/checkout.php:674
|
12814 |
+
#: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
|
12815 |
+
#: pages/checkout.php:701 pages/checkout.php:706 pages/checkout.php:710
|
12816 |
+
#: pages/checkout.php:712 pages/checkout.php:713 pages/checkout.php:716
|
12817 |
+
#: pages/checkout.php:717
|
12818 |
msgid "Complete Payment"
|
12819 |
msgstr ""
|
12820 |
|
12821 |
+
#: pages/checkout.php:525 pages/checkout.php:506 pages/checkout.php:519
|
12822 |
+
#: pages/checkout.php:522 pages/checkout.php:523 pages/checkout.php:608
|
12823 |
+
#: pages/checkout.php:616 pages/checkout.php:687 pages/checkout.php:694
|
12824 |
+
#: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
|
12825 |
+
#: pages/checkout.php:723 pages/checkout.php:728 pages/checkout.php:732
|
12826 |
+
#: pages/checkout.php:734 pages/checkout.php:735 pages/checkout.php:738
|
12827 |
+
#: pages/checkout.php:739
|
12828 |
msgid "Processing..."
|
12829 |
msgstr ""
|
12830 |
|
12856 |
msgid "Invoice #%s on %s"
|
12857 |
msgstr ""
|
12858 |
|
12859 |
+
#: pages/confirmation.php:52 pages/confirmation.php:125 pages/invoice.php:25
|
12860 |
#: pages/confirmation.php:45 pages/confirmation.php:46
|
12861 |
#: pages/confirmation.php:51 pages/confirmation.php:52
|
12862 |
#: pages/confirmation.php:102 pages/confirmation.php:104
|
12863 |
#: pages/confirmation.php:112 pages/confirmation.php:115
|
12864 |
#: pages/confirmation.php:122 pages/confirmation.php:123
|
12865 |
+
#: pages/confirmation.php:125 pages/confirmation.php:126
|
12866 |
+
#: pages/confirmation.php:130 pages/invoice.php:25 pages/invoice.php:26
|
12867 |
+
#: pages/invoice.php:27
|
12868 |
msgid "Account"
|
12869 |
msgstr ""
|
12870 |
|
12875 |
msgid "Membership Expires"
|
12876 |
msgstr ""
|
12877 |
|
12878 |
+
#: pages/confirmation.php:95 pages/invoice.php:85 pages/invoice.php:113
|
12879 |
#: pages/confirmation.php:61 pages/confirmation.php:63
|
12880 |
#: pages/confirmation.php:65 pages/confirmation.php:71
|
12881 |
#: pages/confirmation.php:87 pages/confirmation.php:88
|
12882 |
+
#: pages/confirmation.php:90 pages/confirmation.php:91
|
12883 |
+
#: pages/confirmation.php:95 pages/invoice.php:50 pages/invoice.php:52
|
12884 |
+
#: pages/invoice.php:69 pages/invoice.php:70 pages/invoice.php:71
|
12885 |
+
#: pages/invoice.php:72 pages/invoice.php:80 pages/invoice.php:81
|
12886 |
+
#: pages/invoice.php:85 pages/invoice.php:90 pages/invoice.php:102
|
12887 |
#: pages/invoice.php:103 pages/invoice.php:104 pages/invoice.php:105
|
12888 |
#: pages/invoice.php:107 pages/invoice.php:109 pages/invoice.php:110
|
12889 |
+
#: pages/invoice.php:113 pages/invoice.php:114 pages/invoice.php:118
|
12890 |
msgid "Total Billed"
|
12891 |
msgstr ""
|
12892 |
|
12893 |
+
#: pages/confirmation.php:113 pages/confirmation.php:97
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12894 |
#: pages/confirmation.php:100 pages/confirmation.php:103
|
12895 |
#: pages/confirmation.php:110 pages/confirmation.php:111
|
12896 |
#: pages/confirmation.php:113 pages/confirmation.php:114
|
12897 |
+
#: pages/confirmation.php:118
|
12898 |
#, php-format
|
12899 |
msgid ""
|
12900 |
"Below are details about your membership account. A welcome email has been "
|
12901 |
"sent to %s."
|
12902 |
msgstr ""
|
12903 |
|
12904 |
+
#: pages/confirmation.php:126 shortcodes/pmpro_account.php:234
|
12905 |
#: pages/confirmation.php:103 pages/confirmation.php:105
|
12906 |
#: pages/confirmation.php:113 pages/confirmation.php:116
|
12907 |
#: pages/confirmation.php:123 pages/confirmation.php:124
|
12908 |
#: pages/confirmation.php:126 pages/confirmation.php:127
|
12909 |
+
#: pages/confirmation.php:131 shortcodes/pmpro_account.php:151
|
12910 |
+
#: shortcodes/pmpro_account.php:227 shortcodes/pmpro_account.php:234
|
12911 |
msgid "Pending"
|
12912 |
msgstr ""
|
12913 |
|
12914 |
+
#: pages/confirmation.php:135 pages/confirmation.php:113
|
12915 |
#: pages/confirmation.php:115 pages/confirmation.php:123
|
12916 |
#: pages/confirmation.php:126 pages/confirmation.php:133
|
12917 |
#: pages/confirmation.php:134 pages/confirmation.php:135
|
12918 |
+
#: pages/confirmation.php:136 pages/confirmation.php:140
|
12919 |
msgid ""
|
12920 |
"If your account is not activated within a few minutes, please contact the "
|
12921 |
"site owner."
|
12922 |
msgstr ""
|
12923 |
|
12924 |
+
#: pages/invoice.php:111 pages/invoice.php:88 pages/invoice.php:100
|
12925 |
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:103
|
12926 |
#: pages/invoice.php:106 pages/invoice.php:108 pages/invoice.php:111
|
12927 |
+
#: pages/invoice.php:112 pages/invoice.php:116
|
12928 |
msgid "Invoice #"
|
12929 |
msgstr ""
|
12930 |
|
12931 |
+
#: pages/invoice.php:137 pages/invoice.php:114 pages/invoice.php:126
|
12932 |
#: pages/invoice.php:127 pages/invoice.php:128 pages/invoice.php:129
|
12933 |
#: pages/invoice.php:132 pages/invoice.php:134 pages/invoice.php:137
|
12934 |
+
#: pages/invoice.php:138 pages/invoice.php:142
|
12935 |
msgid "No invoices found."
|
12936 |
msgstr ""
|
12937 |
|
12938 |
+
#: pages/invoice.php:145 pages/invoice.php:125 pages/invoice.php:137
|
12939 |
#: pages/invoice.php:138 pages/invoice.php:139 pages/invoice.php:140
|
12940 |
#: pages/invoice.php:143 pages/invoice.php:145 pages/invoice.php:146
|
12941 |
+
#: pages/invoice.php:150
|
12942 |
msgid "← View All Invoices"
|
12943 |
msgstr ""
|
12944 |
|
12945 |
+
#: pages/levels.php:48 pages/levels.php:47 pages/levels.php:49
|
12946 |
#: pages/levels.php:66 pages/levels.php:68 pages/levels.php:69
|
12947 |
#: pages/levels.php:71 pages/levels.php:113 pages/levels.php:115
|
12948 |
msgid "Select"
|
12949 |
msgstr ""
|
12950 |
|
12951 |
+
#: pages/levels.php:54 shortcodes/pmpro_account.php:94 pages/account.php:33
|
12952 |
#: pages/levels.php:57 pages/levels.php:72 pages/levels.php:75
|
12953 |
#: pages/levels.php:78 pages/levels.php:123 shortcodes/pmpro_account.php:59
|
12954 |
#: shortcodes/pmpro_account.php:60 shortcodes/pmpro_account.php:61
|
12956 |
msgid "Renew"
|
12957 |
msgstr ""
|
12958 |
|
12959 |
+
#: pages/levels.php:58 pages/levels.php:63 pages/levels.php:76
|
12960 |
#: pages/levels.php:79 pages/levels.php:82 pages/levels.php:117
|
12961 |
#: pages/levels.php:129
|
12962 |
msgid "Your Level"
|
12963 |
msgstr ""
|
12964 |
|
12965 |
+
#: pages/levels.php:72 pages/levels.php:79 pages/levels.php:90
|
12966 |
#: pages/levels.php:94 pages/levels.php:97 pages/levels.php:98
|
12967 |
#: pages/levels.php:129 pages/levels.php:145
|
12968 |
msgid "← Return to Your Account"
|
12969 |
msgstr ""
|
12970 |
|
12971 |
+
#: pages/levels.php:74 pages/levels.php:81 pages/levels.php:92
|
12972 |
#: pages/levels.php:96 pages/levels.php:99 pages/levels.php:100
|
12973 |
#: pages/levels.php:131 pages/levels.php:147
|
12974 |
msgid "← Return to Home"
|
13379 |
#: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
|
13380 |
#: services/authnet-silent-post.php:144 services/authnet-silent-post.php:145
|
13381 |
#: services/authnet-silent-post.php:149 services/authnet-silent-post.php:167
|
13382 |
+
#: services/authnet-silent-post.php:172 services/authnet-silent-post.php:173
|
13383 |
msgid ""
|
13384 |
"<p>A payment is being held for review within Authorize.net.</p><p>Payment "
|
13385 |
"Information From Authorize.net"
|
13386 |
msgstr ""
|
13387 |
|
13388 |
+
#: services/braintree-webhook.php:425
|
13389 |
+
#, php-format
|
13390 |
+
msgid ""
|
13391 |
+
"<p>A member's Braintree subscription has expired at your site. This "
|
13392 |
+
"typically happens if you've set up billing limits on your levels.</p><p>We "
|
13393 |
+
"have not removed the user's membership level.</p><p>You can view details on "
|
13394 |
+
"this user here: %s</p>"
|
13395 |
+
msgstr ""
|
13396 |
+
|
13397 |
+
#: services/braintree-webhook.php:427
|
13398 |
+
#, php-format
|
13399 |
+
msgid "A member's Braintree subscription has expired at %s"
|
13400 |
+
msgstr ""
|
13401 |
+
|
13402 |
#: shortcodes/pmpro_account.php:43 pages/account.php:19
|
13403 |
#: shortcodes/pmpro_account.php:43 shortcodes/pmpro_account.php:44
|
13404 |
#: shortcodes/pmpro_account.php:45
|
13825 |
msgid "Expired"
|
13826 |
msgstr ""
|
13827 |
|
13828 |
+
#: adminpages/orders.php:119 adminpages/orders.php:169
|
13829 |
+
#: adminpages/orders.php:270 adminpages/orders.php:284
|
13830 |
+
#: adminpages/orders.php:285 adminpages/orders.php:295
|
13831 |
+
#: adminpages/orders.php:296 adminpages/orders.php:297
|
13832 |
+
#: adminpages/orders.php:298 adminpages/orders.php:301
|
13833 |
+
#: adminpages/orders.php:304 adminpages/orders.php:314
|
13834 |
+
msgid "Order saved successfully."
|
13835 |
+
msgstr ""
|
13836 |
+
|
13837 |
+
#: adminpages/orders.php:124 adminpages/orders.php:174
|
13838 |
+
#: adminpages/orders.php:275 adminpages/orders.php:287
|
13839 |
+
#: adminpages/orders.php:288 adminpages/orders.php:298
|
13840 |
+
#: adminpages/orders.php:299 adminpages/orders.php:300
|
13841 |
+
#: adminpages/orders.php:301 adminpages/orders.php:304
|
13842 |
+
#: adminpages/orders.php:307 adminpages/orders.php:317
|
13843 |
+
msgid "Error updating order timestamp."
|
13844 |
+
msgstr ""
|
13845 |
+
|
13846 |
#: adminpages/orders.php:325 adminpages/orders.php:375
|
13847 |
#: adminpages/orders.php:447 adminpages/orders.php:476
|
13848 |
#: adminpages/orders.php:513 adminpages/orders.php:544
|
14396 |
msgid "<strong>%s every %d %s</strong>"
|
14397 |
msgstr ""
|
14398 |
|
14399 |
+
#: includes/functions.php:520 includes/functions.php:542
|
14400 |
+
#: includes/functions.php:553 includes/functions.php:564
|
14401 |
+
#: includes/functions.php:565 includes/functions.php:566
|
14402 |
+
#: includes/functions.php:573 includes/functions.php:597
|
14403 |
+
#: includes/functions.php:598 includes/functions.php:600
|
14404 |
+
#: includes/functions.php:607 includes/functions.php:623
|
14405 |
+
#: includes/functions.php:646 includes/functions.php:725
|
14406 |
+
#: includes/functions.php:791 includes/functions.php:797
|
14407 |
+
#: includes/functions.php:911 includes/functions.php:914
|
14408 |
+
#: includes/functions.php:919 includes/functions.php:938
|
14409 |
+
#: includes/functions.php:976 includes/functions.php:977
|
14410 |
+
#: includes/functions.php:978 includes/functions.php:982
|
14411 |
+
#: includes/functions.php:987 includes/functions.php:1001
|
14412 |
+
msgid "not changing?"
|
14413 |
+
msgstr ""
|
14414 |
+
|
14415 |
#: includes/functions.php:556 includes/functions.php:557
|
14416 |
#: includes/functions.php:566
|
14417 |
#, php-format
|
languages/paid-memberships-pro.pot
CHANGED
@@ -6,7 +6,7 @@ msgid ""
|
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: paid-memberships-pro\n"
|
8 |
"Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
|
9 |
-
"POT-Creation-Date: 2021-
|
10 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11 |
"Last-Translator: \n"
|
12 |
"Language-Team: Stranger Studios <info@paidmembershipspro.com>\n"
|
@@ -64,7 +64,7 @@ msgstr ""
|
|
64 |
msgid "Check Again"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: adminpages/addons.php:94 adminpages/orders.php:
|
68 |
#: adminpages/addons.php:79 adminpages/addons.php:92 adminpages/addons.php:93
|
69 |
#: adminpages/addons.php:94 adminpages/orders.php:605 adminpages/orders.php:712
|
70 |
#: adminpages/orders.php:741 adminpages/orders.php:850
|
@@ -183,8 +183,8 @@ msgstr ""
|
|
183 |
msgid "Activate %s"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: adminpages/addons.php:230 adminpages/discountcodes.php:
|
187 |
-
#: adminpages/membershiplevels.php:807 adminpages/orders.php:
|
188 |
#: adminpages/addons.php:213 adminpages/addons.php:216
|
189 |
#: adminpages/addons.php:229 adminpages/addons.php:230
|
190 |
#: adminpages/addons.php:231 adminpages/discountcodes.php:771
|
@@ -194,9 +194,10 @@ msgstr ""
|
|
194 |
#: adminpages/membershiplevels.php:779 adminpages/membershiplevels.php:784
|
195 |
#: adminpages/membershiplevels.php:789 adminpages/membershiplevels.php:794
|
196 |
#: adminpages/membershiplevels.php:801 adminpages/membershiplevels.php:803
|
197 |
-
#: adminpages/
|
198 |
-
#: adminpages/orders.php:
|
199 |
-
#: adminpages/orders.php:
|
|
|
200 |
msgid "Delete"
|
201 |
msgstr ""
|
202 |
|
@@ -231,9 +232,9 @@ msgstr ""
|
|
231 |
msgid "WordPress.org"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: adminpages/addons.php:248 adminpages/orders.php:
|
235 |
-
#: adminpages/orders.php:
|
236 |
-
#: adminpages/orders.php:
|
237 |
#: shortcodes/pmpro_account.php:241 adminpages/addons.php:231
|
238 |
#: adminpages/addons.php:234 adminpages/addons.php:247
|
239 |
#: adminpages/addons.php:248 adminpages/addons.php:249
|
@@ -484,8 +485,8 @@ msgstr ""
|
|
484 |
msgid "Members"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: adminpages/admin_header.php:229 adminpages/discountcodes.php:
|
488 |
-
#: adminpages/orders.php:
|
489 |
#: includes/adminpages.php:52 includes/adminpages.php:167
|
490 |
#: adminpages/admin_header.php:196 adminpages/admin_header.php:197
|
491 |
#: adminpages/admin_header.php:204 adminpages/admin_header.php:212
|
@@ -540,7 +541,7 @@ msgstr ""
|
|
540 |
msgid "License"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: adminpages/admin_header.php:252 adminpages/discountcodes.php:
|
544 |
#: adminpages/admin_header.php:215 adminpages/admin_header.php:220
|
545 |
#: adminpages/admin_header.php:227 adminpages/admin_header.php:235
|
546 |
#: adminpages/admin_header.php:252 adminpages/discountcodes.php:552
|
@@ -555,7 +556,7 @@ msgstr ""
|
|
555 |
|
556 |
#: adminpages/admin_header.php:252 adminpages/membershiplevels.php:764
|
557 |
#: adminpages/pagesettings.php:98 includes/compatibility/beaver-builder.php:134
|
558 |
-
#: includes/metaboxes.php:
|
559 |
#: adminpages/admin_header.php:149 adminpages/admin_header.php:150
|
560 |
#: adminpages/admin_header.php:159 adminpages/admin_header.php:171
|
561 |
#: adminpages/admin_header.php:184 adminpages/admin_header.php:215
|
@@ -570,14 +571,15 @@ msgstr ""
|
|
570 |
#: adminpages/membershiplevels.php:700 adminpages/membershiplevels.php:702
|
571 |
#: adminpages/membershiplevels.php:728 adminpages/membershiplevels.php:745
|
572 |
#: adminpages/membershiplevels.php:750 adminpages/membershiplevels.php:755
|
573 |
-
#: adminpages/membershiplevels.php:760 adminpages/
|
574 |
-
#: adminpages/pagesettings.php:
|
575 |
-
#: adminpages/pagesettings.php:
|
576 |
-
#:
|
577 |
-
#: includes/adminpages.php:
|
578 |
-
#: includes/adminpages.php:
|
579 |
-
#: includes/adminpages.php:
|
580 |
-
#: includes/adminpages.php:
|
|
|
581 |
#: includes/compatibility/beaver-builder.php:134 includes/metaboxes.php:126
|
582 |
#: includes/metaboxes.php:130 includes/metaboxes.php:131
|
583 |
#: includes/metaboxes.php:132
|
@@ -635,8 +637,8 @@ msgstr ""
|
|
635 |
msgid "Payment Gateway & SSL Settings"
|
636 |
msgstr ""
|
637 |
|
638 |
-
#: adminpages/admin_header.php:268 adminpages/orders.php:
|
639 |
-
#: adminpages/orders.php:
|
640 |
#: shortcodes/pmpro_account.php:161 adminpages/admin_header.php:131
|
641 |
#: adminpages/admin_header.php:152 adminpages/admin_header.php:162
|
642 |
#: adminpages/admin_header.php:171 adminpages/admin_header.php:183
|
@@ -839,7 +841,7 @@ msgstr ""
|
|
839 |
#: adminpages/membershiplevels.php:527 adminpages/membershiplevels.php:570
|
840 |
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:589
|
841 |
#: adminpages/membershiplevels.php:594 adminpages/membershiplevels.php:599
|
842 |
-
#: adminpages/membershiplevels.php:604
|
843 |
msgid "Content Settings"
|
844 |
msgstr ""
|
845 |
|
@@ -930,7 +932,7 @@ msgid "Use reCAPTCHA?"
|
|
930 |
msgstr ""
|
931 |
|
932 |
#: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:337
|
933 |
-
#: adminpages/advancedsettings.php:
|
934 |
#: adminpages/membershiplevels.php:824 adminpages/paymentsettings.php:259
|
935 |
#: classes/gateways/class.pmprogateway_stripe.php:401
|
936 |
#: classes/gateways/class.pmprogateway_stripe.php:415
|
@@ -962,14 +964,14 @@ msgstr ""
|
|
962 |
#: adminpages/membershiplevels.php:779 adminpages/membershiplevels.php:796
|
963 |
#: adminpages/membershiplevels.php:801 adminpages/membershiplevels.php:806
|
964 |
#: adminpages/membershiplevels.php:811 adminpages/membershiplevels.php:818
|
965 |
-
#: adminpages/membershiplevels.php:820 adminpages/
|
966 |
-
#: adminpages/paymentsettings.php:
|
967 |
-
#: adminpages/paymentsettings.php:
|
968 |
-
#: adminpages/paymentsettings.php:
|
969 |
-
#: adminpages/paymentsettings.php:
|
970 |
-
#: adminpages/paymentsettings.php:
|
971 |
-
#: adminpages/paymentsettings.php:
|
972 |
-
#: adminpages/paymentsettings.php:461
|
973 |
#: classes/gateways/class.pmprogateway_stripe.php:173
|
974 |
#: classes/gateways/class.pmprogateway_stripe.php:174
|
975 |
#: classes/gateways/class.pmprogateway_stripe.php:184
|
@@ -1108,8 +1110,8 @@ msgstr ""
|
|
1108 |
msgid "Activity Email Frequency"
|
1109 |
msgstr ""
|
1110 |
|
1111 |
-
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:
|
1112 |
-
#: adminpages/reports/sales.php:
|
1113 |
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:258
|
1114 |
#: adminpages/reports/memberships.php:265
|
1115 |
#: adminpages/reports/memberships.php:278
|
@@ -1128,8 +1130,8 @@ msgstr ""
|
|
1128 |
msgid "Weekly"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
-
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:
|
1132 |
-
#: adminpages/reports/sales.php:
|
1133 |
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:259
|
1134 |
#: adminpages/reports/memberships.php:266
|
1135 |
#: adminpages/reports/memberships.php:279
|
@@ -1167,7 +1169,7 @@ msgstr ""
|
|
1167 |
#: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:516
|
1168 |
#: adminpages/membershiplevels.php:518 adminpages/membershiplevels.php:524
|
1169 |
#: adminpages/membershiplevels.php:529 adminpages/membershiplevels.php:534
|
1170 |
-
#: adminpages/membershiplevels.php:537
|
1171 |
msgid "Other Settings"
|
1172 |
msgstr ""
|
1173 |
|
@@ -1215,7 +1217,7 @@ msgstr ""
|
|
1215 |
msgid "Choose Levels to Hide Ads From"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
-
#: adminpages/advancedsettings.php:
|
1219 |
#: adminpages/advancedsettings.php:190 adminpages/advancedsettings.php:203
|
1220 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1221 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
@@ -1224,7 +1226,7 @@ msgstr ""
|
|
1224 |
msgid "Redirect all traffic from registration page to /susbcription/?"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: adminpages/advancedsettings.php:
|
1228 |
#: adminpages/advancedsettings.php:190 adminpages/advancedsettings.php:203
|
1229 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1230 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
@@ -1233,7 +1235,7 @@ msgstr ""
|
|
1233 |
msgid "multisite only"
|
1234 |
msgstr ""
|
1235 |
|
1236 |
-
#: adminpages/advancedsettings.php:
|
1237 |
#: adminpages/paymentsettings.php:260
|
1238 |
#: classes/gateways/class.pmprogateway_stripe.php:403
|
1239 |
#: classes/gateways/class.pmprogateway_stripe.php:417
|
@@ -1255,14 +1257,14 @@ msgstr ""
|
|
1255 |
#: adminpages/membershiplevels.php:796 adminpages/membershiplevels.php:801
|
1256 |
#: adminpages/membershiplevels.php:806 adminpages/membershiplevels.php:811
|
1257 |
#: adminpages/membershiplevels.php:818 adminpages/membershiplevels.php:820
|
1258 |
-
#: adminpages/
|
1259 |
-
#: adminpages/paymentsettings.php:
|
1260 |
-
#: adminpages/paymentsettings.php:
|
1261 |
-
#: adminpages/paymentsettings.php:
|
1262 |
-
#: adminpages/paymentsettings.php:
|
1263 |
-
#: adminpages/paymentsettings.php:
|
1264 |
-
#: adminpages/paymentsettings.php:
|
1265 |
-
#: adminpages/paymentsettings.php:462
|
1266 |
#: classes/gateways/class.pmprogateway_stripe.php:174
|
1267 |
#: classes/gateways/class.pmprogateway_stripe.php:175
|
1268 |
#: classes/gateways/class.pmprogateway_stripe.php:185
|
@@ -1296,23 +1298,23 @@ msgstr ""
|
|
1296 |
msgid "Yes"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: adminpages/advancedsettings.php:
|
1300 |
#: adminpages/advancedsettings.php:472
|
1301 |
msgid "Uninstall PMPro on deletion?"
|
1302 |
msgstr ""
|
1303 |
|
1304 |
-
#: adminpages/advancedsettings.php:
|
1305 |
#: adminpages/advancedsettings.php:477
|
1306 |
msgid "Yes - Delete all PMPro Data."
|
1307 |
msgstr ""
|
1308 |
|
1309 |
-
#: adminpages/advancedsettings.php:
|
1310 |
msgid ""
|
1311 |
"To delete all PMPro data from the database, set to Yes, deactivate PMPro, "
|
1312 |
"and then click to delete PMPro from the plugins page."
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: adminpages/advancedsettings.php:
|
1316 |
#: adminpages/paymentsettings.php:290 adminpages/advancedsettings.php:284
|
1317 |
#: adminpages/advancedsettings.php:355 adminpages/advancedsettings.php:359
|
1318 |
#: adminpages/advancedsettings.php:368 adminpages/advancedsettings.php:375
|
@@ -1340,7 +1342,7 @@ msgid "Welcome to Paid Memberships Pro"
|
|
1340 |
msgstr ""
|
1341 |
|
1342 |
#: adminpages/dashboard.php:19 adminpages/reports/sales.php:20
|
1343 |
-
#: adminpages/reports/sales.php:
|
1344 |
#: classes/class-pmpro-admin-activity-email.php:103 adminpages/dashboard.php:19
|
1345 |
#: adminpages/dashboard.php:20 adminpages/reports/sales.php:20
|
1346 |
#: adminpages/reports/sales.php:180 adminpages/reports/sales.php:189
|
@@ -1351,7 +1353,7 @@ msgid "Sales and Revenue"
|
|
1351 |
msgstr ""
|
1352 |
|
1353 |
#: adminpages/dashboard.php:26 adminpages/reports/memberships.php:18
|
1354 |
-
#: adminpages/reports/memberships.php:
|
1355 |
#: adminpages/dashboard.php:27 adminpages/reports/memberships.php:18
|
1356 |
#: adminpages/reports/memberships.php:252
|
1357 |
#: adminpages/reports/memberships.php:259
|
@@ -1390,6 +1392,7 @@ msgstr ""
|
|
1390 |
|
1391 |
#: adminpages/dashboard.php:113 adminpages/membershiplevels.php:751
|
1392 |
#: adminpages/dashboard.php:113 adminpages/membershiplevels.php:747
|
|
|
1393 |
msgid "Create a Membership Level"
|
1394 |
msgstr ""
|
1395 |
|
@@ -1530,18 +1533,18 @@ msgstr ""
|
|
1530 |
msgid "Translation Dashboard"
|
1531 |
msgstr ""
|
1532 |
|
1533 |
-
#: adminpages/dashboard.php:219 adminpages/
|
1534 |
-
#:
|
1535 |
-
#:
|
1536 |
-
#: adminpages/dashboard.php:
|
1537 |
-
#: adminpages/
|
1538 |
-
#: adminpages/memberslist.php:
|
1539 |
-
#: adminpages/memberslist.php:
|
1540 |
-
#: adminpages/orders.php:
|
1541 |
-
#: adminpages/orders.php:
|
1542 |
-
#:
|
1543 |
-
#: classes/class.memberorder.php:
|
1544 |
-
#: classes/class.memberorder.php:
|
1545 |
#: pages/account.php:76 pages/checkout.php:118 pages/checkout.php:121
|
1546 |
#: pages/checkout.php:167 pages/checkout.php:168 pages/checkout.php:171
|
1547 |
#: pages/checkout.php:173 pages/checkout.php:175 pages/checkout.php:180
|
@@ -1554,9 +1557,9 @@ msgid "Username"
|
|
1554 |
msgstr ""
|
1555 |
|
1556 |
#: adminpages/dashboard.php:220 adminpages/dashboard.php:288
|
1557 |
-
#: adminpages/orders.php:
|
1558 |
#: includes/privacy.php:241 pages/billing.php:58 pages/cancel.php:60
|
1559 |
-
#: pages/invoice.php:
|
1560 |
#: shortcodes/pmpro_account.php:211 adminpages/dashboard.php:216
|
1561 |
#: adminpages/dashboard.php:220 adminpages/dashboard.php:284
|
1562 |
#: adminpages/dashboard.php:288 adminpages/dashboard.php:292
|
@@ -1572,15 +1575,16 @@ msgstr ""
|
|
1572 |
#: pages/cancel.php:61 pages/invoice.php:89 pages/invoice.php:101
|
1573 |
#: pages/invoice.php:102 pages/invoice.php:103 pages/invoice.php:104
|
1574 |
#: pages/invoice.php:109 pages/invoice.php:112 pages/invoice.php:113
|
1575 |
-
#: pages/
|
1576 |
-
#: shortcodes/pmpro_account.php:
|
1577 |
-
#: shortcodes/pmpro_account.php:
|
1578 |
-
#: shortcodes/pmpro_account.php:
|
1579 |
-
#: shortcodes/pmpro_account.php:
|
|
|
1580 |
msgid "Level"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
-
#: adminpages/dashboard.php:221 adminpages/reports/login.php:
|
1584 |
#: adminpages/dashboard.php:217 adminpages/dashboard.php:221
|
1585 |
#: adminpages/dashboard.php:225 adminpages/memberslist.php:120
|
1586 |
#: adminpages/memberslist.php:153 adminpages/memberslist.php:163
|
@@ -1591,8 +1595,8 @@ msgstr ""
|
|
1591 |
msgid "Joined"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#: adminpages/dashboard.php:222 adminpages/discountcodes.php:
|
1595 |
-
#: adminpages/reports/login.php:
|
1596 |
#: adminpages/dashboard.php:218 adminpages/dashboard.php:222
|
1597 |
#: adminpages/dashboard.php:226 adminpages/discountcodes.php:550
|
1598 |
#: adminpages/discountcodes.php:560 adminpages/discountcodes.php:588
|
@@ -1612,7 +1616,7 @@ msgstr ""
|
|
1612 |
msgid "Expires"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: adminpages/dashboard.php:228 adminpages/reports/login.php:
|
1616 |
#: classes/class-pmpro-members-list-table.php:226 adminpages/dashboard.php:224
|
1617 |
#: adminpages/dashboard.php:228 adminpages/dashboard.php:232
|
1618 |
#: adminpages/memberslist.php:195 adminpages/memberslist.php:223
|
@@ -1633,8 +1637,8 @@ msgid "View All Members "
|
|
1633 |
msgstr ""
|
1634 |
|
1635 |
#: adminpages/dashboard.php:286 adminpages/discountcodes.php:449
|
1636 |
-
#: adminpages/discountcodes.php:
|
1637 |
-
#: adminpages/orders.php:
|
1638 |
#: adminpages/dashboard.php:286 adminpages/dashboard.php:290
|
1639 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
1640 |
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
|
@@ -1664,7 +1668,7 @@ msgstr ""
|
|
1664 |
msgid "Code"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: adminpages/dashboard.php:287
|
1668 |
#: classes/gateways/class.pmprogateway_payflowpro.php:117
|
1669 |
#: adminpages/dashboard.php:283 adminpages/dashboard.php:287
|
1670 |
#: adminpages/dashboard.php:291 adminpages/orders.php:599
|
@@ -1682,10 +1686,9 @@ msgstr ""
|
|
1682 |
msgid "User"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: adminpages/dashboard.php:289 adminpages/orders.php:
|
1686 |
-
#: adminpages/orders.php:
|
1687 |
-
#:
|
1688 |
-
#: pages/confirmation.php:103 pages/invoice.php:93 adminpages/dashboard.php:285
|
1689 |
#: adminpages/dashboard.php:289 adminpages/dashboard.php:293
|
1690 |
#: adminpages/orders.php:320 adminpages/orders.php:370
|
1691 |
#: adminpages/orders.php:442 adminpages/orders.php:471
|
@@ -1704,15 +1707,16 @@ msgstr ""
|
|
1704 |
#: adminpages/templates/orders-email.php:64
|
1705 |
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
1706 |
#: pages/confirmation.php:95 pages/confirmation.php:96
|
1707 |
-
#: pages/confirmation.php:98 pages/confirmation.php:99
|
1708 |
-
#: pages/
|
1709 |
-
#: pages/invoice.php:
|
1710 |
-
#: pages/invoice.php:89
|
|
|
1711 |
msgid "Total"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: adminpages/dashboard.php:290 adminpages/orders.php:
|
1715 |
-
#: adminpages/orders.php:
|
1716 |
#: pages/invoice.php:28 shortcodes/pmpro_account.php:213
|
1717 |
#: adminpages/dashboard.php:286 adminpages/dashboard.php:290
|
1718 |
#: adminpages/dashboard.php:294 adminpages/orders.php:373
|
@@ -1736,8 +1740,8 @@ msgstr ""
|
|
1736 |
msgid "Status"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
-
#: adminpages/dashboard.php:291 adminpages/orders.php:
|
1740 |
-
#: adminpages/orders.php:
|
1741 |
#: shortcodes/pmpro_account.php:210 adminpages/dashboard.php:287
|
1742 |
#: adminpages/dashboard.php:291 adminpages/dashboard.php:295
|
1743 |
#: adminpages/orders.php:442 adminpages/orders.php:492
|
@@ -1758,13 +1762,14 @@ msgstr ""
|
|
1758 |
#: pages/invoice.php:87 pages/invoice.php:99 pages/invoice.php:100
|
1759 |
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:105
|
1760 |
#: pages/invoice.php:107 pages/invoice.php:110 pages/invoice.php:111
|
1761 |
-
#:
|
1762 |
-
#: shortcodes/pmpro_account.php:
|
1763 |
-
#: shortcodes/pmpro_account.php:
|
|
|
1764 |
msgid "Date"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: adminpages/dashboard.php:298 adminpages/orders.php:
|
1768 |
#: adminpages/dashboard.php:294 adminpages/dashboard.php:298
|
1769 |
#: adminpages/dashboard.php:302 adminpages/orders.php:674
|
1770 |
#: adminpages/orders.php:977 adminpages/orders.php:995
|
@@ -1779,7 +1784,7 @@ msgid "No orders found."
|
|
1779 |
msgstr ""
|
1780 |
|
1781 |
#: adminpages/dashboard.php:315 adminpages/dashboard.php:330
|
1782 |
-
#: adminpages/orders.php:
|
1783 |
#: adminpages/dashboard.php:311 adminpages/dashboard.php:315
|
1784 |
#: adminpages/dashboard.php:319 adminpages/dashboard.php:326
|
1785 |
#: adminpages/dashboard.php:330 adminpages/orders.php:630
|
@@ -1796,7 +1801,7 @@ msgid "deleted"
|
|
1796 |
msgstr ""
|
1797 |
|
1798 |
#: adminpages/dashboard.php:317 adminpages/dashboard.php:332
|
1799 |
-
#: adminpages/orders.php:
|
1800 |
#: adminpages/dashboard.php:313 adminpages/dashboard.php:317
|
1801 |
#: adminpages/dashboard.php:321 adminpages/dashboard.php:328
|
1802 |
#: adminpages/dashboard.php:332 adminpages/orders.php:1275
|
@@ -1906,7 +1911,7 @@ msgstr ""
|
|
1906 |
msgid "Error deleting code. Please try again."
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: adminpages/discountcodes.php:352 adminpages/discountcodes.php:
|
1910 |
#: adminpages/discountcodes.php:251 adminpages/discountcodes.php:254
|
1911 |
#: adminpages/discountcodes.php:255 adminpages/discountcodes.php:256
|
1912 |
#: adminpages/discountcodes.php:261 adminpages/discountcodes.php:305
|
@@ -1934,7 +1939,7 @@ msgstr ""
|
|
1934 |
msgid "Edit Discount Code"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
-
#: adminpages/discountcodes.php:375 adminpages/discountcodes.php:
|
1938 |
#: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
|
1939 |
#: adminpages/discountcodes.php:270 adminpages/discountcodes.php:271
|
1940 |
#: adminpages/discountcodes.php:276 adminpages/discountcodes.php:320
|
@@ -1948,9 +1953,9 @@ msgstr ""
|
|
1948 |
msgid "Add New Discount Code"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: adminpages/discountcodes.php:444 adminpages/discountcodes.php:
|
1952 |
#: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:779
|
1953 |
-
#: adminpages/orders.php:
|
1954 |
#: adminpages/templates/orders-email.php:46
|
1955 |
#: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
|
1956 |
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
|
@@ -1977,25 +1982,25 @@ msgstr ""
|
|
1977 |
#: adminpages/membershiplevels.php:715 adminpages/membershiplevels.php:741
|
1978 |
#: adminpages/membershiplevels.php:758 adminpages/membershiplevels.php:763
|
1979 |
#: adminpages/membershiplevels.php:768 adminpages/membershiplevels.php:773
|
1980 |
-
#: adminpages/membershiplevels.php:775 adminpages/
|
1981 |
-
#: adminpages/memberslist.php:
|
1982 |
-
#: adminpages/memberslist.php:
|
1983 |
-
#: adminpages/
|
1984 |
-
#: adminpages/orders.php:
|
1985 |
-
#: adminpages/orders.php:
|
1986 |
-
#: adminpages/orders.php:
|
1987 |
-
#: adminpages/orders.php:
|
1988 |
-
#: adminpages/orders.php:
|
1989 |
-
#: adminpages/orders.php:
|
1990 |
-
#: adminpages/orders.php:
|
1991 |
-
#: adminpages/reports/login.php:
|
1992 |
-
#: adminpages/reports/login.php:
|
1993 |
-
#: adminpages/templates/orders-email.php:46
|
1994 |
#: adminpages/templates/orders-print.php:75
|
1995 |
msgid "ID"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#: adminpages/discountcodes.php:445 adminpages/orders.php:
|
1999 |
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
2000 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
|
2001 |
#: adminpages/discountcodes.php:317 adminpages/discountcodes.php:382
|
@@ -2023,7 +2028,7 @@ msgstr ""
|
|
2023 |
#: adminpages/discountcodes.php:505
|
2024 |
#: classes/gateways/class.pmprogateway_braintree.php:479
|
2025 |
#: classes/gateways/class.pmprogateway_stripe.php:1086 pages/billing.php:363
|
2026 |
-
#: pages/checkout.php:
|
2027 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
2028 |
#: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
|
2029 |
#: adminpages/discountcodes.php:442 adminpages/discountcodes.php:483
|
@@ -2072,15 +2077,15 @@ msgstr ""
|
|
2072 |
#: pages/billing.php:316 pages/billing.php:317 pages/billing.php:319
|
2073 |
#: pages/billing.php:321 pages/billing.php:322 pages/billing.php:330
|
2074 |
#: pages/billing.php:339 pages/billing.php:342 pages/billing.php:363
|
2075 |
-
#: pages/checkout.php:
|
2076 |
-
#: pages/checkout.php:
|
2077 |
-
#: pages/checkout.php:
|
2078 |
-
#: pages/checkout.php:
|
2079 |
-
#: pages/checkout.php:582 pages/checkout.php:585
|
2080 |
msgid "Expiration Date"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: adminpages/discountcodes.php:523 adminpages/discountcodes.php:
|
2084 |
#: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
|
2085 |
#: adminpages/discountcodes.php:389 adminpages/discountcodes.php:390
|
2086 |
#: adminpages/discountcodes.php:395 adminpages/discountcodes.php:460
|
@@ -2111,7 +2116,7 @@ msgstr ""
|
|
2111 |
msgid "Which Levels Will This Code Apply To?"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: adminpages/discountcodes.php:
|
2115 |
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
|
2116 |
#: adminpages/discountcodes.php:431 adminpages/discountcodes.php:432
|
2117 |
#: adminpages/discountcodes.php:437 adminpages/discountcodes.php:510
|
@@ -2127,7 +2132,7 @@ msgstr ""
|
|
2127 |
msgid "Initial Payment"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: adminpages/discountcodes.php:
|
2131 |
#: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
|
2132 |
#: adminpages/discountcodes.php:441 adminpages/discountcodes.php:442
|
2133 |
#: adminpages/discountcodes.php:443 adminpages/discountcodes.php:448
|
@@ -2141,7 +2146,7 @@ msgstr ""
|
|
2141 |
msgid "The initial amount collected at registration."
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#: adminpages/discountcodes.php:
|
2145 |
#: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
|
2146 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:447
|
2147 |
#: adminpages/discountcodes.php:448 adminpages/discountcodes.php:453
|
@@ -2156,7 +2161,7 @@ msgstr ""
|
|
2156 |
msgid "Recurring Subscription"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: adminpages/discountcodes.php:
|
2160 |
#: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
|
2161 |
#: adminpages/discountcodes.php:447 adminpages/discountcodes.php:448
|
2162 |
#: adminpages/discountcodes.php:449 adminpages/discountcodes.php:454
|
@@ -2171,7 +2176,7 @@ msgstr ""
|
|
2171 |
msgid "Check if this level has a recurring subscription payment."
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: adminpages/discountcodes.php:
|
2175 |
#: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
|
2176 |
#: adminpages/discountcodes.php:452 adminpages/discountcodes.php:453
|
2177 |
#: adminpages/discountcodes.php:458 adminpages/discountcodes.php:531
|
@@ -2185,7 +2190,7 @@ msgstr ""
|
|
2185 |
msgid "Billing Amount"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: adminpages/discountcodes.php:
|
2189 |
#: classes/gateways/class.pmprogateway_stripe.php:1263
|
2190 |
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:605
|
2191 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
@@ -2222,7 +2227,7 @@ msgstr ""
|
|
2222 |
msgid "per"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
-
#: adminpages/discountcodes.php:
|
2226 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2227 |
#: classes/gateways/class.pmprogateway_stripe.php:1129
|
2228 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
@@ -2247,6 +2252,7 @@ msgstr ""
|
|
2247 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2248 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2249 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
|
|
2250 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2251 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2252 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
@@ -2276,7 +2282,7 @@ msgstr ""
|
|
2276 |
msgid "Day(s)"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: adminpages/discountcodes.php:
|
2280 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2281 |
#: classes/gateways/class.pmprogateway_stripe.php:1131
|
2282 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
@@ -2301,6 +2307,7 @@ msgstr ""
|
|
2301 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2302 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2303 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
|
|
2304 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2305 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2306 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
@@ -2330,7 +2337,7 @@ msgstr ""
|
|
2330 |
msgid "Month(s)"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: adminpages/discountcodes.php:
|
2334 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2335 |
#: classes/gateways/class.pmprogateway_stripe.php:1130
|
2336 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
@@ -2355,6 +2362,7 @@ msgstr ""
|
|
2355 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2356 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2357 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
|
|
2358 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2359 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2360 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
@@ -2384,7 +2392,7 @@ msgstr ""
|
|
2384 |
msgid "Week(s)"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: adminpages/discountcodes.php:
|
2388 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2389 |
#: classes/gateways/class.pmprogateway_stripe.php:1132
|
2390 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
@@ -2409,6 +2417,7 @@ msgstr ""
|
|
2409 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2410 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2411 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
|
|
2412 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2413 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2414 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
@@ -2438,7 +2447,7 @@ msgstr ""
|
|
2438 |
msgid "Year(s)"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: adminpages/discountcodes.php:
|
2442 |
#: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
|
2443 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:475
|
2444 |
#: adminpages/discountcodes.php:476 adminpages/discountcodes.php:481
|
@@ -2453,7 +2462,7 @@ msgstr ""
|
|
2453 |
msgid "The amount to be billed one cycle after the initial payment."
|
2454 |
msgstr ""
|
2455 |
|
2456 |
-
#: adminpages/discountcodes.php:
|
2457 |
#: adminpages/discountcodes.php:619 adminpages/membershiplevels.php:366
|
2458 |
#: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
|
2459 |
#: adminpages/membershiplevels.php:389 adminpages/membershiplevels.php:390
|
@@ -2465,12 +2474,12 @@ msgid ""
|
|
2465 |
"or \"Year\"."
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#: adminpages/discountcodes.php:
|
2469 |
#: adminpages/discountcodes.php:621 adminpages/membershiplevels.php:450
|
2470 |
msgid "Stripe integration does not allow billing periods longer than 1 year."
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: adminpages/discountcodes.php:
|
2474 |
#: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
|
2475 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:480
|
2476 |
#: adminpages/discountcodes.php:481 adminpages/discountcodes.php:486
|
@@ -2486,7 +2495,7 @@ msgstr ""
|
|
2486 |
msgid "Billing Cycle Limit"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: adminpages/discountcodes.php:
|
2490 |
#: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
|
2491 |
#: adminpages/discountcodes.php:482 adminpages/discountcodes.php:483
|
2492 |
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:489
|
@@ -2505,7 +2514,7 @@ msgid ""
|
|
2505 |
"initial payment. Set to zero if membership is indefinite."
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#: adminpages/discountcodes.php:
|
2509 |
#: adminpages/discountcodes.php:633 adminpages/membershiplevels.php:386
|
2510 |
#: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
|
2511 |
#: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:410
|
@@ -2518,7 +2527,7 @@ msgid ""
|
|
2518 |
"set an expiration date below."
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: adminpages/discountcodes.php:
|
2522 |
#: adminpages/discountcodes.php:642 adminpages/membershiplevels.php:477
|
2523 |
#: adminpages/membershiplevels.php:478 adminpages/membershiplevels.php:480
|
2524 |
#, php-format
|
@@ -2528,7 +2537,7 @@ msgid ""
|
|
2528 |
"\">Stripe Billing Limits Add On</a>."
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: adminpages/discountcodes.php:
|
2532 |
#: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
|
2533 |
#: adminpages/discountcodes.php:487 adminpages/discountcodes.php:488
|
2534 |
#: adminpages/discountcodes.php:489 adminpages/discountcodes.php:494
|
@@ -2544,7 +2553,7 @@ msgstr ""
|
|
2544 |
msgid "Custom Trial"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: adminpages/discountcodes.php:
|
2548 |
#: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
|
2549 |
#: adminpages/discountcodes.php:488 adminpages/discountcodes.php:489
|
2550 |
#: adminpages/discountcodes.php:490 adminpages/discountcodes.php:495
|
@@ -2561,7 +2570,7 @@ msgstr ""
|
|
2561 |
msgid "Check to add a custom trial period."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: adminpages/discountcodes.php:
|
2565 |
#: adminpages/discountcodes.php:654 adminpages/membershiplevels.php:398
|
2566 |
#: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
|
2567 |
#: adminpages/membershiplevels.php:421 adminpages/membershiplevels.php:422
|
@@ -2574,7 +2583,7 @@ msgid ""
|
|
2574 |
"trials by setting an initial payment different from the billing amount."
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: adminpages/discountcodes.php:
|
2578 |
#: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
|
2579 |
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:493
|
2580 |
#: adminpages/discountcodes.php:494 adminpages/discountcodes.php:499
|
@@ -2591,7 +2600,7 @@ msgstr ""
|
|
2591 |
msgid "Trial Billing Amount"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: adminpages/discountcodes.php:
|
2595 |
#: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
|
2596 |
#: adminpages/discountcodes.php:503 adminpages/discountcodes.php:504
|
2597 |
#: adminpages/discountcodes.php:505 adminpages/discountcodes.php:510
|
@@ -2608,7 +2617,7 @@ msgstr ""
|
|
2608 |
msgid "for the first"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#: adminpages/discountcodes.php:
|
2612 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
|
2613 |
#: adminpages/discountcodes.php:505 adminpages/discountcodes.php:506
|
2614 |
#: adminpages/discountcodes.php:507 adminpages/discountcodes.php:512
|
@@ -2625,7 +2634,7 @@ msgstr ""
|
|
2625 |
msgid "subscription payments"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: adminpages/discountcodes.php:
|
2629 |
#: adminpages/discountcodes.php:675 adminpages/membershiplevels.php:406
|
2630 |
#: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
|
2631 |
#: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:443
|
@@ -2638,7 +2647,7 @@ msgid ""
|
|
2638 |
"Stripe integration currently does not support trial amounts greater than $0."
|
2639 |
msgstr ""
|
2640 |
|
2641 |
-
#: adminpages/discountcodes.php:
|
2642 |
#: adminpages/discountcodes.php:677 adminpages/membershiplevels.php:410
|
2643 |
#: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
|
2644 |
#: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:447
|
@@ -2652,7 +2661,7 @@ msgid ""
|
|
2652 |
"$0."
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: adminpages/discountcodes.php:
|
2656 |
#: adminpages/discountcodes.php:679 adminpages/membershiplevels.php:414
|
2657 |
#: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
|
2658 |
#: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:451
|
@@ -2665,7 +2674,7 @@ msgid ""
|
|
2665 |
"Payflow integration currently does not support trial amounts greater than $0."
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: adminpages/discountcodes.php:
|
2669 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
|
2670 |
#: adminpages/discountcodes.php:510 adminpages/discountcodes.php:511
|
2671 |
#: adminpages/discountcodes.php:512 adminpages/discountcodes.php:517
|
@@ -2679,11 +2688,11 @@ msgstr ""
|
|
2679 |
#: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:527
|
2680 |
#: adminpages/membershiplevels.php:533 adminpages/membershiplevels.php:538
|
2681 |
#: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:544
|
2682 |
-
#: adminpages/membershiplevels.php:546
|
2683 |
msgid "Membership Expiration"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: adminpages/discountcodes.php:
|
2687 |
#: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
|
2688 |
#: adminpages/discountcodes.php:512 adminpages/discountcodes.php:513
|
2689 |
#: adminpages/discountcodes.php:518 adminpages/discountcodes.php:591
|
@@ -2697,10 +2706,11 @@ msgstr ""
|
|
2697 |
#: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:534
|
2698 |
#: adminpages/membershiplevels.php:539 adminpages/membershiplevels.php:544
|
2699 |
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:547
|
|
|
2700 |
msgid "Check this to set when membership access expires."
|
2701 |
msgstr ""
|
2702 |
|
2703 |
-
#: adminpages/discountcodes.php:
|
2704 |
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
|
2705 |
#: adminpages/discountcodes.php:515 adminpages/discountcodes.php:516
|
2706 |
#: adminpages/discountcodes.php:517 adminpages/discountcodes.php:522
|
@@ -2714,11 +2724,11 @@ msgstr ""
|
|
2714 |
#: adminpages/membershiplevels.php:530 adminpages/membershiplevels.php:532
|
2715 |
#: adminpages/membershiplevels.php:549 adminpages/membershiplevels.php:554
|
2716 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:560
|
2717 |
-
#: adminpages/membershiplevels.php:562
|
2718 |
msgid "Expires In"
|
2719 |
msgstr ""
|
2720 |
|
2721 |
-
#: adminpages/discountcodes.php:
|
2722 |
#: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
|
2723 |
#: adminpages/discountcodes.php:529 adminpages/discountcodes.php:530
|
2724 |
#: adminpages/discountcodes.php:535 adminpages/discountcodes.php:608
|
@@ -2732,13 +2742,14 @@ msgstr ""
|
|
2732 |
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:562
|
2733 |
#: adminpages/membershiplevels.php:567 adminpages/membershiplevels.php:572
|
2734 |
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:575
|
|
|
2735 |
msgid ""
|
2736 |
"Set the duration of membership access. Note that the any future payments "
|
2737 |
"(recurring subscription, if any) will be cancelled when the membership "
|
2738 |
"expires."
|
2739 |
msgstr ""
|
2740 |
|
2741 |
-
#: adminpages/discountcodes.php:
|
2742 |
#: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
|
2743 |
#: adminpages/discountcodes.php:557 adminpages/discountcodes.php:558
|
2744 |
#: adminpages/discountcodes.php:563 adminpages/discountcodes.php:636
|
@@ -2747,33 +2758,33 @@ msgstr ""
|
|
2747 |
msgid "Memberships Discount Codes"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: adminpages/discountcodes.php:
|
2751 |
msgid "No Discount Codes Found"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: adminpages/discountcodes.php:
|
2755 |
#: adminpages/discountcodes.php:718 adminpages/discountcodes.php:719
|
2756 |
#: adminpages/discountcodes.php:752
|
2757 |
msgid ""
|
2758 |
"Discount codes allow you to override your membership level's default pricing."
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#: adminpages/discountcodes.php:
|
2762 |
msgid "Create a Discount Code"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
-
#: adminpages/discountcodes.php:
|
2766 |
msgid "Documentation: Discount Codes"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
#: adminpages/discountcodes.php:
|
2770 |
#: adminpages/discountcodes.php:728 adminpages/discountcodes.php:729
|
2771 |
#: adminpages/discountcodes.php:730 adminpages/discountcodes.php:763
|
2772 |
#, php-format
|
2773 |
msgid "%d discount codes found."
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: adminpages/discountcodes.php:
|
2777 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
|
2778 |
#: adminpages/discountcodes.php:567 adminpages/discountcodes.php:568
|
2779 |
#: adminpages/discountcodes.php:573 adminpages/discountcodes.php:646
|
@@ -2783,7 +2794,7 @@ msgstr ""
|
|
2783 |
msgid "Search Discount Codes"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: adminpages/discountcodes.php:
|
2787 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
|
2788 |
#: adminpages/discountcodes.php:569 adminpages/discountcodes.php:570
|
2789 |
#: adminpages/discountcodes.php:571 adminpages/discountcodes.php:576
|
@@ -2796,7 +2807,7 @@ msgstr ""
|
|
2796 |
msgid "Search"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#: adminpages/discountcodes.php:
|
2800 |
#: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
|
2801 |
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
|
2802 |
#: adminpages/discountcodes.php:594 adminpages/discountcodes.php:667
|
@@ -2806,35 +2817,37 @@ msgstr ""
|
|
2806 |
msgid "Starts"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
-
#: adminpages/discountcodes.php:
|
2810 |
-
#: adminpages/orders.php:
|
2811 |
#: adminpages/discountcodes.php:766 adminpages/discountcodes.php:767
|
2812 |
#: adminpages/discountcodes.php:773 adminpages/discountcodes.php:775
|
2813 |
#: adminpages/discountcodes.php:807 adminpages/membershiplevels.php:760
|
2814 |
#: adminpages/membershiplevels.php:777 adminpages/membershiplevels.php:782
|
2815 |
#: adminpages/membershiplevels.php:787 adminpages/membershiplevels.php:792
|
2816 |
#: adminpages/membershiplevels.php:799 adminpages/membershiplevels.php:801
|
2817 |
-
#: adminpages/
|
2818 |
-
#: adminpages/orders.php:
|
2819 |
-
#: adminpages/orders.php:
|
|
|
2820 |
msgid "Edit"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
#: adminpages/discountcodes.php:
|
2824 |
-
#: adminpages/orders.php:
|
2825 |
#: adminpages/discountcodes.php:769 adminpages/discountcodes.php:770
|
2826 |
#: adminpages/discountcodes.php:776 adminpages/discountcodes.php:778
|
2827 |
#: adminpages/discountcodes.php:810 adminpages/membershiplevels.php:761
|
2828 |
#: adminpages/membershiplevels.php:778 adminpages/membershiplevels.php:783
|
2829 |
#: adminpages/membershiplevels.php:788 adminpages/membershiplevels.php:793
|
2830 |
#: adminpages/membershiplevels.php:800 adminpages/membershiplevels.php:802
|
2831 |
-
#: adminpages/
|
2832 |
-
#: adminpages/orders.php:
|
2833 |
-
#: adminpages/orders.php:
|
|
|
2834 |
msgid "Copy"
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#: adminpages/discountcodes.php:
|
2838 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
2839 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
2840 |
#: adminpages/discountcodes.php:653 adminpages/discountcodes.php:658
|
@@ -2850,7 +2863,7 @@ msgid ""
|
|
2850 |
"code anymore."
|
2851 |
msgstr ""
|
2852 |
|
2853 |
-
#: adminpages/discountcodes.php:
|
2854 |
#: adminpages/discountcodes.php:776 adminpages/discountcodes.php:777
|
2855 |
#: adminpages/discountcodes.php:783 adminpages/discountcodes.php:785
|
2856 |
#: adminpages/discountcodes.php:817
|
@@ -3200,7 +3213,7 @@ msgid "Add New Membership Level"
|
|
3200 |
msgstr ""
|
3201 |
|
3202 |
#: adminpages/membershiplevels.php:354 adminpages/membershiplevels.php:780
|
3203 |
-
#: adminpages/reports/login.php:
|
3204 |
#: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
|
3205 |
#: adminpages/membershiplevels.php:319 adminpages/membershiplevels.php:329
|
3206 |
#: adminpages/membershiplevels.php:351 adminpages/membershiplevels.php:353
|
@@ -3215,9 +3228,9 @@ msgstr ""
|
|
3215 |
#: adminpages/membershiplevels.php:742 adminpages/membershiplevels.php:759
|
3216 |
#: adminpages/membershiplevels.php:764 adminpages/membershiplevels.php:769
|
3217 |
#: adminpages/membershiplevels.php:774 adminpages/membershiplevels.php:776
|
3218 |
-
#: adminpages/
|
3219 |
-
#: adminpages/reports/login.php:
|
3220 |
-
#: adminpages/reports/login.php:180
|
3221 |
msgid "Name"
|
3222 |
msgstr ""
|
3223 |
|
@@ -3248,6 +3261,7 @@ msgstr ""
|
|
3248 |
#: adminpages/membershiplevels.php:743 adminpages/membershiplevels.php:760
|
3249 |
#: adminpages/membershiplevels.php:765 adminpages/membershiplevels.php:770
|
3250 |
#: adminpages/membershiplevels.php:775 adminpages/membershiplevels.php:777
|
|
|
3251 |
msgid "Billing Details"
|
3252 |
msgstr ""
|
3253 |
|
@@ -3321,7 +3335,7 @@ msgstr ""
|
|
3321 |
#: adminpages/membershiplevels.php:520 adminpages/membershiplevels.php:522
|
3322 |
#: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:533
|
3323 |
#: adminpages/membershiplevels.php:538 adminpages/membershiplevels.php:539
|
3324 |
-
#: adminpages/membershiplevels.php:541
|
3325 |
msgid "Disable New Signups"
|
3326 |
msgstr ""
|
3327 |
|
@@ -3333,7 +3347,7 @@ msgstr ""
|
|
3333 |
#: adminpages/membershiplevels.php:521 adminpages/membershiplevels.php:523
|
3334 |
#: adminpages/membershiplevels.php:529 adminpages/membershiplevels.php:534
|
3335 |
#: adminpages/membershiplevels.php:539 adminpages/membershiplevels.php:540
|
3336 |
-
#: adminpages/membershiplevels.php:542
|
3337 |
msgid ""
|
3338 |
"Check to hide this level from the membership levels page and disable "
|
3339 |
"registration."
|
@@ -3342,6 +3356,7 @@ msgstr ""
|
|
3342 |
#: adminpages/membershiplevels.php:562 adminpages/membershiplevels.php:545
|
3343 |
#: adminpages/membershiplevels.php:550 adminpages/membershiplevels.php:555
|
3344 |
#: adminpages/membershiplevels.php:556 adminpages/membershiplevels.php:558
|
|
|
3345 |
#, php-format
|
3346 |
msgid ""
|
3347 |
"Optional: Allow more customizable expiration dates using the <a href=\"%s\" "
|
@@ -3353,6 +3368,7 @@ msgstr ""
|
|
3353 |
#: adminpages/membershiplevels.php:548 adminpages/membershiplevels.php:565
|
3354 |
#: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:575
|
3355 |
#: adminpages/membershiplevels.php:576 adminpages/membershiplevels.php:578
|
|
|
3356 |
#, php-format
|
3357 |
msgid ""
|
3358 |
"WARNING: This level is set with both a recurring billing amount and an "
|
@@ -3364,7 +3380,7 @@ msgstr ""
|
|
3364 |
#: adminpages/membershiplevels.php:624 adminpages/membershiplevels.php:588
|
3365 |
#: adminpages/membershiplevels.php:605 adminpages/membershiplevels.php:610
|
3366 |
#: adminpages/membershiplevels.php:615 adminpages/membershiplevels.php:618
|
3367 |
-
#: adminpages/membershiplevels.php:620
|
3368 |
#, php-format
|
3369 |
msgid ""
|
3370 |
"Non-members will not see posts in these categories. You can <a href=\"%s\" "
|
@@ -3374,7 +3390,7 @@ msgstr ""
|
|
3374 |
#: adminpages/membershiplevels.php:628 adminpages/membershiplevels.php:592
|
3375 |
#: adminpages/membershiplevels.php:609 adminpages/membershiplevels.php:614
|
3376 |
#: adminpages/membershiplevels.php:619 adminpages/membershiplevels.php:622
|
3377 |
-
#: adminpages/membershiplevels.php:624
|
3378 |
#, php-format
|
3379 |
msgid ""
|
3380 |
"Non-members will see the title and excerpt for posts in these categories. "
|
@@ -3385,7 +3401,7 @@ msgstr ""
|
|
3385 |
#: adminpages/membershiplevels.php:631 adminpages/membershiplevels.php:595
|
3386 |
#: adminpages/membershiplevels.php:612 adminpages/membershiplevels.php:617
|
3387 |
#: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
|
3388 |
-
#: adminpages/membershiplevels.php:627
|
3389 |
#, php-format
|
3390 |
msgid ""
|
3391 |
"Non-members will see the title only for posts in these categories. You can "
|
@@ -3402,6 +3418,7 @@ msgstr ""
|
|
3402 |
#: adminpages/membershiplevels.php:602 adminpages/membershiplevels.php:619
|
3403 |
#: adminpages/membershiplevels.php:624 adminpages/membershiplevels.php:629
|
3404 |
#: adminpages/membershiplevels.php:632 adminpages/membershiplevels.php:634
|
|
|
3405 |
msgid "Categories"
|
3406 |
msgstr ""
|
3407 |
|
@@ -3412,11 +3429,11 @@ msgstr ""
|
|
3412 |
#: adminpages/membershiplevels.php:584 adminpages/membershiplevels.php:610
|
3413 |
#: adminpages/membershiplevels.php:627 adminpages/membershiplevels.php:632
|
3414 |
#: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:640
|
3415 |
-
#: adminpages/membershiplevels.php:642
|
3416 |
msgid "Save Level"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: adminpages/membershiplevels.php:647 adminpages/orders.php:
|
3420 |
#: includes/profile.php:546 includes/profile.php:670 pages/billing.php:414
|
3421 |
#: pages/cancel.php:86 shortcodes/pmpro_account.php:106
|
3422 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
|
@@ -3426,34 +3443,37 @@ msgstr ""
|
|
3426 |
#: adminpages/membershiplevels.php:611 adminpages/membershiplevels.php:628
|
3427 |
#: adminpages/membershiplevels.php:633 adminpages/membershiplevels.php:638
|
3428 |
#: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:643
|
3429 |
-
#: adminpages/
|
3430 |
-
#: adminpages/orders.php:
|
3431 |
-
#: adminpages/orders.php:
|
3432 |
-
#: adminpages/orders.php:
|
3433 |
-
#: adminpages/orders.php:
|
3434 |
-
#: adminpages/orders.php:
|
3435 |
-
#: adminpages/orders.php:
|
3436 |
-
#:
|
3437 |
-
#: includes/profile.php:
|
3438 |
-
#:
|
3439 |
-
#: pages/billing.php:
|
3440 |
-
#: pages/billing.php:
|
3441 |
-
#: pages/billing.php:
|
3442 |
-
#: pages/billing.php:
|
3443 |
-
#: pages/billing.php:
|
3444 |
-
#: pages/billing.php:
|
3445 |
-
#: pages/cancel.php:
|
|
|
3446 |
#: shortcodes/pmpro_account.php:72 shortcodes/pmpro_account.php:73
|
3447 |
#: shortcodes/pmpro_account.php:106
|
3448 |
msgid "Cancel"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
#: adminpages/membershiplevels.php:750 adminpages/membershiplevels.php:791
|
3452 |
-
#: adminpages/membershiplevels.php:746 adminpages/membershiplevels.php:
|
|
|
3453 |
msgid "No Membership Levels Found"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
#: adminpages/membershiplevels.php:752 adminpages/membershiplevels.php:748
|
|
|
3457 |
msgid "Video: Membership Levels"
|
3458 |
msgstr ""
|
3459 |
|
@@ -3477,7 +3497,8 @@ msgstr ""
|
|
3477 |
#: adminpages/membershiplevels.php:744 adminpages/membershiplevels.php:747
|
3478 |
#: adminpages/membershiplevels.php:749 adminpages/membershiplevels.php:752
|
3479 |
#: adminpages/membershiplevels.php:754 adminpages/membershiplevels.php:755
|
3480 |
-
#: adminpages/membershiplevels.php:757
|
|
|
3481 |
msgid "Search Levels"
|
3482 |
msgstr ""
|
3483 |
|
@@ -3491,6 +3512,7 @@ msgstr ""
|
|
3491 |
#: adminpages/membershiplevels.php:702 adminpages/membershiplevels.php:728
|
3492 |
#: adminpages/membershiplevels.php:745 adminpages/membershiplevels.php:750
|
3493 |
#: adminpages/membershiplevels.php:755 adminpages/membershiplevels.php:761
|
|
|
3494 |
msgid "Add New Level"
|
3495 |
msgstr ""
|
3496 |
|
@@ -3502,6 +3524,7 @@ msgstr ""
|
|
3502 |
#: adminpages/membershiplevels.php:731 adminpages/membershiplevels.php:748
|
3503 |
#: adminpages/membershiplevels.php:753 adminpages/membershiplevels.php:758
|
3504 |
#: adminpages/membershiplevels.php:763 adminpages/membershiplevels.php:765
|
|
|
3505 |
msgid "Drag and drop membership levels to reorder them on the Levels page."
|
3506 |
msgstr ""
|
3507 |
|
@@ -3518,14 +3541,16 @@ msgstr ""
|
|
3518 |
#: adminpages/membershiplevels.php:744 adminpages/membershiplevels.php:761
|
3519 |
#: adminpages/membershiplevels.php:766 adminpages/membershiplevels.php:771
|
3520 |
#: adminpages/membershiplevels.php:776 adminpages/membershiplevels.php:778
|
3521 |
-
#:
|
3522 |
-
#: pages/
|
3523 |
-
#: pages/confirmation.php:
|
3524 |
-
#: pages/confirmation.php:
|
|
|
3525 |
#: pages/confirmation.php:89 pages/invoice.php:62 pages/invoice.php:63
|
3526 |
#: pages/invoice.php:64 pages/invoice.php:68 pages/invoice.php:70
|
3527 |
-
#: pages/invoice.php:72 pages/invoice.php:73
|
3528 |
-
#: shortcodes/pmpro_account.php:
|
|
|
3529 |
msgid "Expiration"
|
3530 |
msgstr ""
|
3531 |
|
@@ -3540,6 +3565,7 @@ msgstr ""
|
|
3540 |
#: adminpages/membershiplevels.php:745 adminpages/membershiplevels.php:762
|
3541 |
#: adminpages/membershiplevels.php:767 adminpages/membershiplevels.php:772
|
3542 |
#: adminpages/membershiplevels.php:777 adminpages/membershiplevels.php:779
|
|
|
3543 |
msgid "Allow Signups"
|
3544 |
msgstr ""
|
3545 |
|
@@ -3554,7 +3580,7 @@ msgstr ""
|
|
3554 |
#: adminpages/membershiplevels.php:762 adminpages/membershiplevels.php:779
|
3555 |
#: adminpages/membershiplevels.php:784 adminpages/membershiplevels.php:789
|
3556 |
#: adminpages/membershiplevels.php:794 adminpages/membershiplevels.php:801
|
3557 |
-
#: adminpages/membershiplevels.php:803
|
3558 |
#, php-format
|
3559 |
msgid ""
|
3560 |
"Are you sure you want to delete membership level %s? All subscriptions will "
|
@@ -3572,7 +3598,7 @@ msgstr ""
|
|
3572 |
#: adminpages/membershiplevels.php:767 adminpages/membershiplevels.php:784
|
3573 |
#: adminpages/membershiplevels.php:789 adminpages/membershiplevels.php:794
|
3574 |
#: adminpages/membershiplevels.php:799 adminpages/membershiplevels.php:806
|
3575 |
-
#: adminpages/membershiplevels.php:808
|
3576 |
msgid "FREE"
|
3577 |
msgstr ""
|
3578 |
|
@@ -3587,7 +3613,7 @@ msgstr ""
|
|
3587 |
#: adminpages/membershiplevels.php:776 adminpages/membershiplevels.php:793
|
3588 |
#: adminpages/membershiplevels.php:798 adminpages/membershiplevels.php:803
|
3589 |
#: adminpages/membershiplevels.php:808 adminpages/membershiplevels.php:815
|
3590 |
-
#: adminpages/membershiplevels.php:817
|
3591 |
msgid "After"
|
3592 |
msgstr ""
|
3593 |
|
@@ -3600,7 +3626,7 @@ msgstr ""
|
|
3600 |
msgid "Members List"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
-
#: adminpages/memberslist.php:21 adminpages/orders.php:
|
3604 |
#: adminpages/memberslist.php:21 adminpages/memberslist.php:26
|
3605 |
#: adminpages/orders.php:522 adminpages/orders.php:591
|
3606 |
#: adminpages/orders.php:698 adminpages/orders.php:727
|
@@ -3642,27 +3668,7 @@ msgstr ""
|
|
3642 |
msgid "Error deleting order."
|
3643 |
msgstr ""
|
3644 |
|
3645 |
-
#: adminpages/orders.php:
|
3646 |
-
#: adminpages/orders.php:169 adminpages/orders.php:270
|
3647 |
-
#: adminpages/orders.php:284 adminpages/orders.php:285
|
3648 |
-
#: adminpages/orders.php:295 adminpages/orders.php:296
|
3649 |
-
#: adminpages/orders.php:297 adminpages/orders.php:298
|
3650 |
-
#: adminpages/orders.php:301 adminpages/orders.php:304
|
3651 |
-
#: adminpages/orders.php:314
|
3652 |
-
msgid "Order saved successfully."
|
3653 |
-
msgstr ""
|
3654 |
-
|
3655 |
-
#: adminpages/orders.php:307 adminpages/orders.php:124
|
3656 |
-
#: adminpages/orders.php:174 adminpages/orders.php:275
|
3657 |
-
#: adminpages/orders.php:287 adminpages/orders.php:288
|
3658 |
-
#: adminpages/orders.php:298 adminpages/orders.php:299
|
3659 |
-
#: adminpages/orders.php:300 adminpages/orders.php:301
|
3660 |
-
#: adminpages/orders.php:304 adminpages/orders.php:307
|
3661 |
-
#: adminpages/orders.php:317
|
3662 |
-
msgid "Error updating order timestamp."
|
3663 |
-
msgstr ""
|
3664 |
-
|
3665 |
-
#: adminpages/orders.php:311 adminpages/orders.php:130
|
3666 |
#: adminpages/orders.php:180 adminpages/orders.php:281
|
3667 |
#: adminpages/orders.php:291 adminpages/orders.php:292
|
3668 |
#: adminpages/orders.php:302 adminpages/orders.php:303
|
@@ -3672,8 +3678,8 @@ msgstr ""
|
|
3672 |
msgid "Error saving order."
|
3673 |
msgstr ""
|
3674 |
|
3675 |
-
#: adminpages/orders.php:
|
3676 |
-
#: classes/class.memberorder.php:
|
3677 |
#: adminpages/orders.php:245 adminpages/orders.php:317
|
3678 |
#: adminpages/orders.php:321 adminpages/orders.php:346
|
3679 |
#: adminpages/orders.php:352 adminpages/orders.php:362
|
@@ -3684,11 +3690,11 @@ msgstr ""
|
|
3684 |
#: classes/class.memberorder.php:763 classes/class.memberorder.php:814
|
3685 |
#: classes/class.memberorder.php:859 classes/class.memberorder.php:860
|
3686 |
#: classes/class.memberorder.php:872 classes/class.memberorder.php:945
|
3687 |
-
#: classes/class.memberorder.php:947
|
3688 |
msgid "Order"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
-
#: adminpages/orders.php:
|
3692 |
#: pages/confirmation.php:49 pages/invoice.php:22 adminpages/orders.php:370
|
3693 |
#: adminpages/orders.php:371 adminpages/orders.php:375
|
3694 |
#: adminpages/orders.php:383 adminpages/orders.php:1341
|
@@ -3700,7 +3706,7 @@ msgstr ""
|
|
3700 |
msgid "Print"
|
3701 |
msgstr ""
|
3702 |
|
3703 |
-
#: adminpages/orders.php:
|
3704 |
#: adminpages/orders.php:247 adminpages/orders.php:319
|
3705 |
#: adminpages/orders.php:323 adminpages/orders.php:348
|
3706 |
#: adminpages/orders.php:354 adminpages/orders.php:364
|
@@ -3709,7 +3715,7 @@ msgstr ""
|
|
3709 |
msgid "New Order"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
-
#: adminpages/orders.php:
|
3713 |
#: adminpages/orders.php:270 adminpages/orders.php:342
|
3714 |
#: adminpages/orders.php:359 adminpages/orders.php:371
|
3715 |
#: adminpages/orders.php:390 adminpages/orders.php:401
|
@@ -3720,7 +3726,7 @@ msgstr ""
|
|
3720 |
msgid "Randomly generated for you."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
-
#: adminpages/orders.php:
|
3724 |
#: adminpages/orders.php:275 adminpages/orders.php:347
|
3725 |
#: adminpages/orders.php:364 adminpages/orders.php:376
|
3726 |
#: adminpages/orders.php:395 adminpages/orders.php:406
|
@@ -3731,7 +3737,7 @@ msgstr ""
|
|
3731 |
msgid "User ID"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: adminpages/orders.php:
|
3735 |
#: adminpages/orders.php:284 adminpages/orders.php:356
|
3736 |
#: adminpages/orders.php:376 adminpages/orders.php:385
|
3737 |
#: adminpages/orders.php:407 adminpages/orders.php:418
|
@@ -3741,7 +3747,7 @@ msgstr ""
|
|
3741 |
msgid "Membership Level ID"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
-
#: adminpages/orders.php:
|
3745 |
#: adminpages/orders.php:293 adminpages/orders.php:365
|
3746 |
#: adminpages/orders.php:389 adminpages/orders.php:394
|
3747 |
#: adminpages/orders.php:420 adminpages/orders.php:431
|
@@ -3751,7 +3757,7 @@ msgstr ""
|
|
3751 |
msgid "Billing Name"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
-
#: adminpages/orders.php:
|
3755 |
#: adminpages/orders.php:301 adminpages/orders.php:373
|
3756 |
#: adminpages/orders.php:401 adminpages/orders.php:402
|
3757 |
#: adminpages/orders.php:432 adminpages/orders.php:443
|
@@ -3761,7 +3767,7 @@ msgstr ""
|
|
3761 |
msgid "Billing Street"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
-
#: adminpages/orders.php:
|
3765 |
#: adminpages/orders.php:258 adminpages/orders.php:308
|
3766 |
#: adminpages/orders.php:380 adminpages/orders.php:409
|
3767 |
#: adminpages/orders.php:412 adminpages/orders.php:443
|
@@ -3772,7 +3778,7 @@ msgstr ""
|
|
3772 |
msgid "Billing City"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: adminpages/orders.php:
|
3776 |
#: adminpages/orders.php:315 adminpages/orders.php:387
|
3777 |
#: adminpages/orders.php:416 adminpages/orders.php:423
|
3778 |
#: adminpages/orders.php:454 adminpages/orders.php:465
|
@@ -3782,7 +3788,7 @@ msgstr ""
|
|
3782 |
msgid "Billing State"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: adminpages/orders.php:
|
3786 |
#: adminpages/orders.php:272 adminpages/orders.php:322
|
3787 |
#: adminpages/orders.php:394 adminpages/orders.php:423
|
3788 |
#: adminpages/orders.php:434 adminpages/orders.php:465
|
@@ -3793,7 +3799,7 @@ msgstr ""
|
|
3793 |
msgid "Billing Postal Code"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
-
#: adminpages/orders.php:
|
3797 |
#: adminpages/orders.php:279 adminpages/orders.php:329
|
3798 |
#: adminpages/orders.php:401 adminpages/orders.php:430
|
3799 |
#: adminpages/orders.php:445 adminpages/orders.php:476
|
@@ -3804,7 +3810,7 @@ msgstr ""
|
|
3804 |
msgid "Billing Country"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: adminpages/orders.php:
|
3808 |
#: adminpages/orders.php:337 adminpages/orders.php:409
|
3809 |
#: adminpages/orders.php:438 adminpages/orders.php:457
|
3810 |
#: adminpages/orders.php:488 adminpages/orders.php:499
|
@@ -3814,14 +3820,14 @@ msgstr ""
|
|
3814 |
msgid "Billing Phone"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: adminpages/orders.php:
|
3818 |
#: classes/class.pmproemail.php:313 classes/class.pmproemail.php:322
|
3819 |
#: classes/class.pmproemail.php:331 classes/class.pmproemail.php:413
|
3820 |
-
#: classes/class.pmproemail.php:422 classes/class.pmproemail.php:
|
3821 |
-
#: classes/class.pmproemail.php:
|
3822 |
#: classes/gateways/class.pmprogateway_braintree.php:509
|
3823 |
-
#: classes/gateways/class.pmprogateway_stripe.php:1099 pages/checkout.php:
|
3824 |
-
#: pages/checkout.php:
|
3825 |
#: pages/invoice.php:40 adminpages/orders.php:560 adminpages/orders.php:564
|
3826 |
#: adminpages/orders.php:565 adminpages/orders.php:573
|
3827 |
#: adminpages/orders.php:575 adminpages/orders.php:1307
|
@@ -3905,19 +3911,19 @@ msgstr ""
|
|
3905 |
#: pages/checkout.php:78 pages/checkout.php:81 pages/checkout.php:83
|
3906 |
#: pages/checkout.php:85 pages/checkout.php:86 pages/checkout.php:89
|
3907 |
#: pages/checkout.php:92 pages/checkout.php:93 pages/checkout.php:96
|
3908 |
-
#: pages/checkout.php:
|
3909 |
-
#: pages/checkout.php:
|
3910 |
-
#: pages/checkout.php:
|
3911 |
-
#: pages/checkout.php:
|
3912 |
-
#: pages/checkout.php:
|
3913 |
-
#: pages/confirmation.php:51 pages/confirmation.php:52
|
3914 |
#: pages/confirmation.php:57 pages/confirmation.php:58 pages/invoice.php:32
|
3915 |
#: pages/invoice.php:33 pages/invoice.php:34 pages/invoice.php:40
|
3916 |
msgid "Discount Code"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
-
#: adminpages/orders.php:
|
3920 |
-
#: classes/class.pmproemail.php:
|
3921 |
#: includes/profile.php:34 adminpages/orders.php:571 adminpages/orders.php:575
|
3922 |
#: adminpages/orders.php:576 adminpages/orders.php:578
|
3923 |
#: adminpages/orders.php:584 adminpages/orders.php:586
|
@@ -3935,7 +3941,7 @@ msgstr ""
|
|
3935 |
msgid "None"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: adminpages/orders.php:
|
3939 |
#: adminpages/orders.php:346 adminpages/orders.php:418
|
3940 |
#: adminpages/orders.php:447 adminpages/orders.php:470
|
3941 |
#: adminpages/orders.php:501 adminpages/orders.php:512
|
@@ -3946,26 +3952,25 @@ msgstr ""
|
|
3946 |
msgid "Sub Total"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#: adminpages/orders.php:
|
3950 |
-
#: adminpages/
|
3951 |
-
#:
|
3952 |
-
#: adminpages/orders.php:
|
3953 |
-
#: adminpages/orders.php:
|
3954 |
-
#: adminpages/orders.php:
|
3955 |
-
#: adminpages/orders.php:
|
3956 |
-
#: adminpages/orders.php:
|
3957 |
-
#: adminpages/orders.php:608 adminpages/orders.php:610
|
3958 |
-
#: adminpages/templates/orders-email.php:60
|
3959 |
#: adminpages/templates/orders-print.php:89 includes/privacy.php:277
|
3960 |
#: pages/confirmation.php:91 pages/confirmation.php:92
|
3961 |
-
#: pages/confirmation.php:94 pages/confirmation.php:95
|
3962 |
-
#: pages/
|
3963 |
-
#: pages/invoice.php:
|
3964 |
-
#: pages/invoice.php:85
|
|
|
3965 |
msgid "Tax"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
-
#: adminpages/orders.php:
|
3969 |
#: adminpages/orders.php:362 adminpages/orders.php:434
|
3970 |
#: adminpages/orders.php:463 adminpages/orders.php:492
|
3971 |
#: adminpages/orders.php:523 adminpages/orders.php:534
|
@@ -3975,7 +3980,7 @@ msgstr ""
|
|
3975 |
msgid "Coupon Amount"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: adminpages/orders.php:
|
3979 |
#: adminpages/orders.php:380 adminpages/orders.php:452
|
3980 |
#: adminpages/orders.php:481 adminpages/orders.php:518
|
3981 |
#: adminpages/orders.php:549 adminpages/orders.php:560
|
@@ -3986,7 +3991,7 @@ msgstr ""
|
|
3986 |
msgid "Payment Type"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
-
#: adminpages/orders.php:
|
3990 |
#: adminpages/orders.php:385 adminpages/orders.php:457
|
3991 |
#: adminpages/orders.php:486 adminpages/orders.php:528
|
3992 |
#: adminpages/orders.php:559 adminpages/orders.php:570
|
@@ -3997,10 +4002,10 @@ msgstr ""
|
|
3997 |
msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
3998 |
msgstr ""
|
3999 |
|
4000 |
-
#: adminpages/orders.php:
|
4001 |
#: classes/gateways/class.pmprogateway_braintree.php:466
|
4002 |
#: classes/gateways/class.pmprogateway_stripe.php:1069 includes/privacy.php:293
|
4003 |
-
#: pages/billing.php:321 pages/checkout.php:
|
4004 |
#: adminpages/orders.php:389 adminpages/orders.php:461
|
4005 |
#: adminpages/orders.php:490 adminpages/orders.php:532
|
4006 |
#: adminpages/orders.php:563 adminpages/orders.php:574
|
@@ -4054,15 +4059,15 @@ msgstr ""
|
|
4054 |
#: pages/billing.php:268 pages/billing.php:271 pages/billing.php:274
|
4055 |
#: pages/billing.php:275 pages/billing.php:279 pages/billing.php:280
|
4056 |
#: pages/billing.php:288 pages/billing.php:294 pages/billing.php:297
|
4057 |
-
#: pages/billing.php:321 pages/checkout.php:
|
4058 |
-
#: pages/checkout.php:
|
4059 |
-
#: pages/checkout.php:
|
4060 |
-
#: pages/checkout.php:
|
4061 |
-
#: pages/checkout.php:534 pages/checkout.php:537
|
4062 |
msgid "Card Type"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
-
#: adminpages/orders.php:
|
4066 |
#: adminpages/orders.php:394 adminpages/orders.php:466
|
4067 |
#: adminpages/orders.php:495 adminpages/orders.php:540
|
4068 |
#: adminpages/orders.php:571 adminpages/orders.php:582
|
@@ -4073,7 +4078,7 @@ msgstr ""
|
|
4073 |
msgid "e.g. Visa, MasterCard, AMEX, etc"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: adminpages/orders.php:
|
4077 |
#: classes/gateways/class.pmprogateway_twocheckout.php:138
|
4078 |
#: includes/privacy.php:297 adminpages/orders.php:348 adminpages/orders.php:398
|
4079 |
#: adminpages/orders.php:470 adminpages/orders.php:499
|
@@ -4091,7 +4096,7 @@ msgstr ""
|
|
4091 |
msgid "Account Number"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: adminpages/orders.php:
|
4095 |
#: adminpages/orders.php:403 adminpages/orders.php:475
|
4096 |
#: adminpages/orders.php:504 adminpages/orders.php:553
|
4097 |
#: adminpages/orders.php:584 adminpages/orders.php:595
|
@@ -4102,7 +4107,7 @@ msgstr ""
|
|
4102 |
msgid "Obscure all but last 4 digits."
|
4103 |
msgstr ""
|
4104 |
|
4105 |
-
#: adminpages/orders.php:
|
4106 |
#: adminpages/orders.php:358 adminpages/orders.php:408
|
4107 |
#: adminpages/orders.php:480 adminpages/orders.php:509
|
4108 |
#: adminpages/orders.php:561 adminpages/orders.php:592
|
@@ -4114,7 +4119,7 @@ msgstr ""
|
|
4114 |
msgid "Expiration Month"
|
4115 |
msgstr ""
|
4116 |
|
4117 |
-
#: adminpages/orders.php:
|
4118 |
#: adminpages/orders.php:415 adminpages/orders.php:487
|
4119 |
#: adminpages/orders.php:516 adminpages/orders.php:569
|
4120 |
#: adminpages/orders.php:600 adminpages/orders.php:611
|
@@ -4125,8 +4130,8 @@ msgstr ""
|
|
4125 |
msgid "Expiration Year"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: adminpages/orders.php:
|
4129 |
-
#: classes/class.memberorder.php:
|
4130 |
#: adminpages/orders.php:394 adminpages/orders.php:444
|
4131 |
#: adminpages/orders.php:516 adminpages/orders.php:545
|
4132 |
#: adminpages/orders.php:604 adminpages/orders.php:612
|
@@ -4146,11 +4151,11 @@ msgstr ""
|
|
4146 |
#: classes/class.memberorder.php:815 classes/class.memberorder.php:860
|
4147 |
#: classes/class.memberorder.php:861 classes/class.memberorder.php:873
|
4148 |
#: classes/class.memberorder.php:946 classes/class.memberorder.php:948
|
4149 |
-
#: includes/privacy.php:313
|
4150 |
msgid "Gateway"
|
4151 |
msgstr ""
|
4152 |
|
4153 |
-
#: adminpages/orders.php:
|
4154 |
#: includes/privacy.php:317 adminpages/orders.php:411 adminpages/orders.php:461
|
4155 |
#: adminpages/orders.php:462 adminpages/orders.php:534
|
4156 |
#: adminpages/orders.php:563 adminpages/orders.php:633
|
@@ -4167,7 +4172,7 @@ msgstr ""
|
|
4167 |
msgid "Gateway Environment"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: adminpages/orders.php:
|
4171 |
#: adminpages/orders.php:415 adminpages/orders.php:465
|
4172 |
#: adminpages/orders.php:466 adminpages/orders.php:538
|
4173 |
#: adminpages/orders.php:567 adminpages/orders.php:640
|
@@ -4183,7 +4188,7 @@ msgstr ""
|
|
4183 |
msgid "Sandbox/Testing"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: adminpages/orders.php:
|
4187 |
#: adminpages/orders.php:416 adminpages/orders.php:466
|
4188 |
#: adminpages/orders.php:467 adminpages/orders.php:539
|
4189 |
#: adminpages/orders.php:568 adminpages/orders.php:642
|
@@ -4199,7 +4204,7 @@ msgstr ""
|
|
4199 |
msgid "Live/Production"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
-
#: adminpages/orders.php:
|
4203 |
#: adminpages/orders.php:473 adminpages/orders.php:474
|
4204 |
#: adminpages/orders.php:546 adminpages/orders.php:575
|
4205 |
#: adminpages/orders.php:650 adminpages/orders.php:681
|
@@ -4211,7 +4216,7 @@ msgstr ""
|
|
4211 |
msgid "Payment Transaction ID"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
-
#: adminpages/orders.php:
|
4215 |
#: adminpages/orders.php:478 adminpages/orders.php:479
|
4216 |
#: adminpages/orders.php:551 adminpages/orders.php:580
|
4217 |
#: adminpages/orders.php:659 adminpages/orders.php:690
|
@@ -4222,7 +4227,7 @@ msgstr ""
|
|
4222 |
msgid "Generated by the gateway. Useful to cross reference orders."
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
#: adminpages/orders.php:
|
4226 |
#: includes/privacy.php:325 adminpages/orders.php:432 adminpages/orders.php:482
|
4227 |
#: adminpages/orders.php:483 adminpages/orders.php:555
|
4228 |
#: adminpages/orders.php:584 adminpages/orders.php:664
|
@@ -4235,11 +4240,11 @@ msgstr ""
|
|
4235 |
#: classes/class.memberorder.php:816 classes/class.memberorder.php:861
|
4236 |
#: classes/class.memberorder.php:862 classes/class.memberorder.php:874
|
4237 |
#: classes/class.memberorder.php:947 classes/class.memberorder.php:949
|
4238 |
-
#: includes/privacy.php:325
|
4239 |
msgid "Subscription Transaction ID"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
-
#: adminpages/orders.php:
|
4243 |
#: adminpages/orders.php:487 adminpages/orders.php:488
|
4244 |
#: adminpages/orders.php:560 adminpages/orders.php:589
|
4245 |
#: adminpages/orders.php:674 adminpages/orders.php:705
|
@@ -4250,11 +4255,11 @@ msgstr ""
|
|
4250 |
msgid "Generated by the gateway. Useful to cross reference subscriptions."
|
4251 |
msgstr ""
|
4252 |
|
4253 |
-
#: adminpages/orders.php:
|
4254 |
msgid "at"
|
4255 |
msgstr ""
|
4256 |
|
4257 |
-
#: adminpages/orders.php:
|
4258 |
#: adminpages/orders.php:527 adminpages/orders.php:599
|
4259 |
#: adminpages/orders.php:628 adminpages/orders.php:716
|
4260 |
#: adminpages/orders.php:747 adminpages/orders.php:758
|
@@ -4265,7 +4270,7 @@ msgstr ""
|
|
4265 |
msgid "Affiliate ID"
|
4266 |
msgstr ""
|
4267 |
|
4268 |
-
#: adminpages/orders.php:
|
4269 |
#: adminpages/orders.php:535 adminpages/orders.php:607
|
4270 |
#: adminpages/orders.php:636 adminpages/orders.php:728
|
4271 |
#: adminpages/orders.php:759 adminpages/orders.php:770
|
@@ -4276,14 +4281,14 @@ msgstr ""
|
|
4276 |
msgid "Affiliate SubID"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
-
#: adminpages/orders.php:
|
4280 |
#: adminpages/orders.php:884 adminpages/orders.php:888
|
4281 |
#: adminpages/orders.php:893 adminpages/orders.php:894
|
4282 |
#: adminpages/orders.php:903 adminpages/orders.php:907
|
4283 |
msgid "TOS Consent"
|
4284 |
msgstr ""
|
4285 |
|
4286 |
-
#: adminpages/orders.php:
|
4287 |
#: adminpages/orders.php:545 adminpages/orders.php:617
|
4288 |
#: adminpages/orders.php:646 adminpages/orders.php:742
|
4289 |
#: adminpages/orders.php:773 adminpages/orders.php:784
|
@@ -4294,7 +4299,7 @@ msgstr ""
|
|
4294 |
msgid "Notes"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
-
#: adminpages/orders.php:
|
4298 |
#: adminpages/orders.php:560 adminpages/orders.php:632
|
4299 |
#: adminpages/orders.php:661 adminpages/orders.php:764
|
4300 |
#: adminpages/orders.php:795 adminpages/orders.php:806
|
@@ -4305,7 +4310,7 @@ msgstr ""
|
|
4305 |
msgid "Save Order"
|
4306 |
msgstr ""
|
4307 |
|
4308 |
-
#: adminpages/orders.php:
|
4309 |
#: adminpages/orders.php:571 adminpages/orders.php:678
|
4310 |
#: adminpages/orders.php:707 adminpages/orders.php:812
|
4311 |
#: adminpages/orders.php:843 adminpages/orders.php:854
|
@@ -4315,8 +4320,8 @@ msgstr ""
|
|
4315 |
msgid "Add New Order"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: adminpages/orders.php:
|
4319 |
-
#: adminpages/reports/memberships.php:
|
4320 |
#: classes/class-pmpro-members-list-table.php:623 adminpages/memberslist.php:30
|
4321 |
#: adminpages/orders.php:603 adminpages/orders.php:710
|
4322 |
#: adminpages/orders.php:739 adminpages/orders.php:848
|
@@ -4345,7 +4350,7 @@ msgstr ""
|
|
4345 |
msgid "Show"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
-
#: adminpages/orders.php:
|
4349 |
#: adminpages/orders.php:713 adminpages/orders.php:742
|
4350 |
#: adminpages/orders.php:852 adminpages/orders.php:883
|
4351 |
#: adminpages/orders.php:894 adminpages/orders.php:985
|
@@ -4355,7 +4360,7 @@ msgstr ""
|
|
4355 |
msgid "Within a Date Range"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
-
#: adminpages/orders.php:
|
4359 |
#: adminpages/orders.php:714 adminpages/orders.php:743
|
4360 |
#: adminpages/orders.php:854 adminpages/orders.php:885
|
4361 |
#: adminpages/orders.php:896 adminpages/orders.php:987
|
@@ -4365,7 +4370,7 @@ msgstr ""
|
|
4365 |
msgid "Predefined Date Range"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
-
#: adminpages/orders.php:
|
4369 |
#: adminpages/orders.php:715 adminpages/orders.php:744
|
4370 |
#: adminpages/orders.php:856 adminpages/orders.php:887
|
4371 |
#: adminpages/orders.php:898 adminpages/orders.php:989
|
@@ -4375,13 +4380,13 @@ msgstr ""
|
|
4375 |
msgid "Within a Level"
|
4376 |
msgstr ""
|
4377 |
|
4378 |
-
#: adminpages/orders.php:
|
4379 |
#: adminpages/orders.php:997 adminpages/orders.php:1002
|
4380 |
#: adminpages/orders.php:1012 adminpages/orders.php:1047
|
4381 |
msgid "With a Discount Code"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
-
#: adminpages/orders.php:
|
4385 |
#: adminpages/orders.php:716 adminpages/orders.php:745
|
4386 |
#: adminpages/orders.php:858 adminpages/orders.php:889
|
4387 |
#: adminpages/orders.php:900 adminpages/orders.php:991
|
@@ -4391,19 +4396,19 @@ msgstr ""
|
|
4391 |
msgid "Within a Status"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
-
#: adminpages/orders.php:
|
4395 |
#: adminpages/orders.php:1001 adminpages/orders.php:1006
|
4396 |
#: adminpages/orders.php:1016 adminpages/orders.php:1051
|
4397 |
msgid "Only Paid Orders"
|
4398 |
msgstr ""
|
4399 |
|
4400 |
-
#: adminpages/orders.php:
|
4401 |
#: adminpages/orders.php:1003 adminpages/orders.php:1008
|
4402 |
#: adminpages/orders.php:1018 adminpages/orders.php:1053
|
4403 |
msgid "Only Free Orders"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: adminpages/orders.php:
|
4407 |
#: adminpages/orders.php:719 adminpages/orders.php:748
|
4408 |
#: adminpages/orders.php:861 adminpages/orders.php:892
|
4409 |
#: adminpages/orders.php:903 adminpages/orders.php:994
|
@@ -4413,7 +4418,7 @@ msgstr ""
|
|
4413 |
msgid "From"
|
4414 |
msgstr ""
|
4415 |
|
4416 |
-
#: adminpages/orders.php:
|
4417 |
#: adminpages/orders.php:731 adminpages/orders.php:760
|
4418 |
#: adminpages/orders.php:876 adminpages/orders.php:907
|
4419 |
#: adminpages/orders.php:918 adminpages/orders.php:1009
|
@@ -4423,7 +4428,7 @@ msgstr ""
|
|
4423 |
msgid "To"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
-
#: adminpages/orders.php:
|
4427 |
#: adminpages/orders.php:743 adminpages/orders.php:772
|
4428 |
#: adminpages/orders.php:889 adminpages/orders.php:920
|
4429 |
#: adminpages/orders.php:931 adminpages/orders.php:1022
|
@@ -4433,8 +4438,8 @@ msgstr ""
|
|
4433 |
msgid "filter by "
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: adminpages/orders.php:
|
4437 |
-
#: adminpages/reports/memberships.php:
|
4438 |
#: adminpages/orders.php:1059 adminpages/reports/login.php:44
|
4439 |
#: adminpages/reports/login.php:50 adminpages/reports/memberships.php:47
|
4440 |
#: adminpages/reports/memberships.php:48 adminpages/reports/memberships.php:58
|
@@ -4445,11 +4450,11 @@ msgstr ""
|
|
4445 |
msgid "This Month"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
-
#: adminpages/orders.php:
|
4449 |
msgid "Last Month"
|
4450 |
msgstr ""
|
4451 |
|
4452 |
-
#: adminpages/orders.php:
|
4453 |
#: adminpages/reports/sales.php:52 adminpages/orders.php:1063
|
4454 |
#: adminpages/reports/memberships.php:48 adminpages/reports/memberships.php:53
|
4455 |
#: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:69
|
@@ -4459,11 +4464,11 @@ msgstr ""
|
|
4459 |
msgid "This Year"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: adminpages/orders.php:
|
4463 |
msgid "Last Year"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
-
#: adminpages/orders.php:
|
4467 |
#: adminpages/orders.php:780 adminpages/orders.php:809
|
4468 |
#: adminpages/orders.php:932 adminpages/orders.php:963
|
4469 |
#: adminpages/orders.php:969 adminpages/orders.php:1060
|
@@ -4473,7 +4478,7 @@ msgstr ""
|
|
4473 |
msgid "Filter"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: adminpages/orders.php:
|
4477 |
#: adminpages/orders.php:535 adminpages/orders.php:538
|
4478 |
#: adminpages/orders.php:777 adminpages/orders.php:780
|
4479 |
#: adminpages/orders.php:883 adminpages/orders.php:886
|
@@ -4491,7 +4496,7 @@ msgstr ""
|
|
4491 |
msgid "Search Orders"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
-
#: adminpages/orders.php:
|
4495 |
#: adminpages/orders.php:893 adminpages/orders.php:903
|
4496 |
#: adminpages/orders.php:930 adminpages/orders.php:959
|
4497 |
#: adminpages/orders.php:1096 adminpages/orders.php:1127
|
@@ -4503,7 +4508,7 @@ msgstr ""
|
|
4503 |
msgid "%d orders found."
|
4504 |
msgstr ""
|
4505 |
|
4506 |
-
#: adminpages/orders.php:
|
4507 |
#: adminpages/orders.php:603 adminpages/orders.php:651
|
4508 |
#: adminpages/orders.php:906 adminpages/orders.php:916
|
4509 |
#: adminpages/orders.php:943 adminpages/orders.php:954
|
@@ -4522,7 +4527,7 @@ msgstr ""
|
|
4522 |
msgid "Payment"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
-
#: adminpages/orders.php:
|
4526 |
#: adminpages/orders.php:908 adminpages/orders.php:918
|
4527 |
#: adminpages/orders.php:945 adminpages/orders.php:974
|
4528 |
#: adminpages/orders.php:1111 adminpages/orders.php:1142
|
@@ -4533,7 +4538,7 @@ msgstr ""
|
|
4533 |
msgid "Transaction IDs"
|
4534 |
msgstr ""
|
4535 |
|
4536 |
-
#: adminpages/orders.php:
|
4537 |
#: adminpages/orders.php:967 adminpages/orders.php:985
|
4538 |
#: adminpages/orders.php:995 adminpages/orders.php:998
|
4539 |
#: adminpages/orders.php:1027 adminpages/orders.php:1056
|
@@ -4550,7 +4555,7 @@ msgid ""
|
|
4550 |
"want to delete order %s?"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
-
#: adminpages/orders.php:
|
4554 |
#: adminpages/orders.php:956 adminpages/orders.php:974
|
4555 |
#: adminpages/orders.php:984 adminpages/orders.php:1013
|
4556 |
#: adminpages/orders.php:1042 adminpages/orders.php:1192
|
@@ -4562,7 +4567,7 @@ msgstr ""
|
|
4562 |
msgid "Subscription"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
-
#: adminpages/orders.php:
|
4566 |
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
4567 |
#: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
|
4568 |
#: adminpages/discountcodes.php:650 adminpages/discountcodes.php:655
|
@@ -4634,10 +4639,10 @@ msgstr ""
|
|
4634 |
msgid "Membership Invoice"
|
4635 |
msgstr ""
|
4636 |
|
|
|
|
|
4637 |
#: adminpages/pagesettings.php:99 includes/login.php:707 includes/menus.php:66
|
4638 |
-
#: includes/menus.php:70 includes/menus.php:160
|
4639 |
-
#: includes/login.php:707 includes/menus.php:66 includes/menus.php:70
|
4640 |
-
#: includes/menus.php:160
|
4641 |
msgid "Log In"
|
4642 |
msgstr ""
|
4643 |
|
@@ -5288,7 +5293,7 @@ msgstr ""
|
|
5288 |
msgid "Logins"
|
5289 |
msgstr ""
|
5290 |
|
5291 |
-
#: adminpages/reports/login.php:38 adminpages/reports/memberships.php:
|
5292 |
#: adminpages/reports/sales.php:50 adminpages/reports/login.php:38
|
5293 |
#: adminpages/reports/memberships.php:43 adminpages/reports/memberships.php:46
|
5294 |
#: adminpages/reports/memberships.php:62 adminpages/reports/memberships.php:67
|
@@ -5306,7 +5311,7 @@ msgstr ""
|
|
5306 |
msgid "Year to Date"
|
5307 |
msgstr ""
|
5308 |
|
5309 |
-
#: adminpages/reports/login.php:62 adminpages/reports/memberships.php:
|
5310 |
#: adminpages/reports/sales.php:53 adminpages/reports/login.php:50
|
5311 |
#: adminpages/reports/login.php:62 adminpages/reports/memberships.php:49
|
5312 |
#: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:58
|
@@ -5317,7 +5322,7 @@ msgstr ""
|
|
5317 |
msgid "All Time"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: adminpages/reports/login.php:71 adminpages/reports/memberships.php:
|
5321 |
#: adminpages/reports/sales.php:99 adminpages/reports.php:26
|
5322 |
#: adminpages/reports.php:37 adminpages/reports.php:40
|
5323 |
#: adminpages/reports.php:41 adminpages/reports/login.php:71
|
@@ -5343,8 +5348,8 @@ msgstr ""
|
|
5343 |
msgid "All Users"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
-
#: adminpages/reports/login.php:105 adminpages/reports/memberships.php:
|
5347 |
-
#: adminpages/reports/sales.php:
|
5348 |
#: classes/class-pmpro-members-list-table.php:625
|
5349 |
#: classes/class.pmproemail.php:182 classes/class.pmproemail.php:227
|
5350 |
#: adminpages/memberslist.php:32 adminpages/reports/login.php:67
|
@@ -5373,79 +5378,79 @@ msgstr ""
|
|
5373 |
msgid "All Levels"
|
5374 |
msgstr ""
|
5375 |
|
5376 |
-
#: adminpages/reports/login.php:
|
5377 |
#: adminpages/reports/login.php:148 adminpages/reports/login.php:164
|
5378 |
#: adminpages/reports/login.php:168 adminpages/reports/login.php:184
|
5379 |
msgid "Last Visit"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: adminpages/reports/login.php:
|
5383 |
msgid "Visits This Week"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
-
#: adminpages/reports/login.php:
|
5387 |
#: adminpages/reports/login.php:28 adminpages/reports/login.php:147
|
5388 |
#: adminpages/reports/login.php:149 adminpages/reports/login.php:165
|
5389 |
#: adminpages/reports/login.php:169 adminpages/reports/login.php:186
|
5390 |
msgid "Visits This Month"
|
5391 |
msgstr ""
|
5392 |
|
5393 |
-
#: adminpages/reports/login.php:
|
5394 |
msgid "Visits This Year"
|
5395 |
msgstr ""
|
5396 |
|
5397 |
-
#: adminpages/reports/login.php:
|
5398 |
#: adminpages/reports/login.php:29 adminpages/reports/login.php:188
|
5399 |
msgid "Visits All Time"
|
5400 |
msgstr ""
|
5401 |
|
5402 |
-
#: adminpages/reports/login.php:
|
5403 |
msgid "Views This Week"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
-
#: adminpages/reports/login.php:
|
5407 |
#: adminpages/reports/login.php:33 adminpages/reports/login.php:149
|
5408 |
#: adminpages/reports/login.php:151 adminpages/reports/login.php:167
|
5409 |
#: adminpages/reports/login.php:171 adminpages/reports/login.php:190
|
5410 |
msgid "Views This Month"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
-
#: adminpages/reports/login.php:
|
5414 |
msgid "Views This Year"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#: adminpages/reports/login.php:
|
5418 |
#: adminpages/reports/login.php:34 adminpages/reports/login.php:192
|
5419 |
msgid "Views All Time"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
-
#: adminpages/reports/login.php:
|
5423 |
#: adminpages/reports/login.php:153 adminpages/reports/login.php:169
|
5424 |
#: adminpages/reports/login.php:173 adminpages/reports/login.php:193
|
5425 |
msgid "Last Login"
|
5426 |
msgstr ""
|
5427 |
|
5428 |
-
#: adminpages/reports/login.php:
|
5429 |
msgid "Logins This Week"
|
5430 |
msgstr ""
|
5431 |
|
5432 |
-
#: adminpages/reports/login.php:
|
5433 |
#: adminpages/reports/login.php:38 adminpages/reports/login.php:152
|
5434 |
#: adminpages/reports/login.php:154 adminpages/reports/login.php:170
|
5435 |
#: adminpages/reports/login.php:174 adminpages/reports/login.php:195
|
5436 |
msgid "Logins This Month"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
-
#: adminpages/reports/login.php:
|
5440 |
msgid "Logins This Year"
|
5441 |
msgstr ""
|
5442 |
|
5443 |
-
#: adminpages/reports/login.php:
|
5444 |
#: adminpages/reports/login.php:39 adminpages/reports/login.php:197
|
5445 |
msgid "Logins All Time"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: adminpages/reports/login.php:
|
5449 |
#: classes/class-pmpro-members-list-table.php:228
|
5450 |
#: adminpages/memberslist.php:195 adminpages/memberslist.php:223
|
5451 |
#: adminpages/memberslist.php:251 adminpages/memberslist.php:261
|
@@ -5460,19 +5465,19 @@ msgstr ""
|
|
5460 |
msgid "Search all levels"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#: adminpages/reports/memberships.php:
|
5464 |
#: adminpages/reports/memberships.php:40 adminpages/reports/memberships.php:48
|
5465 |
#: adminpages/reports/memberships.php:61 adminpages/reports/memberships.php:62
|
5466 |
msgid "Signups"
|
5467 |
msgstr ""
|
5468 |
|
5469 |
-
#: adminpages/reports/memberships.php:
|
5470 |
#: adminpages/reports/memberships.php:41 adminpages/reports/memberships.php:62
|
5471 |
#: adminpages/reports/memberships.php:63
|
5472 |
msgid "All Cancellations"
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
#: adminpages/reports/memberships.php:
|
5476 |
#: adminpages/reports/memberships.php:260
|
5477 |
#: adminpages/reports/memberships.php:267
|
5478 |
#: adminpages/reports/memberships.php:280
|
@@ -5486,7 +5491,7 @@ msgstr ""
|
|
5486 |
msgid "Annual"
|
5487 |
msgstr ""
|
5488 |
|
5489 |
-
#: adminpages/reports/memberships.php:
|
5490 |
#: adminpages/reports/memberships.php:270
|
5491 |
#: adminpages/reports/memberships.php:283
|
5492 |
#: adminpages/reports/memberships.php:311
|
@@ -5495,7 +5500,7 @@ msgstr ""
|
|
5495 |
msgid "Signups vs. All Cancellations"
|
5496 |
msgstr ""
|
5497 |
|
5498 |
-
#: adminpages/reports/memberships.php:
|
5499 |
#: adminpages/reports/memberships.php:263
|
5500 |
#: adminpages/reports/memberships.php:271
|
5501 |
#: adminpages/reports/memberships.php:284
|
@@ -5506,7 +5511,7 @@ msgstr ""
|
|
5506 |
msgid "Signups vs. Cancellations"
|
5507 |
msgstr ""
|
5508 |
|
5509 |
-
#: adminpages/reports/memberships.php:
|
5510 |
#: adminpages/reports/memberships.php:272
|
5511 |
#: adminpages/reports/memberships.php:285
|
5512 |
#: adminpages/reports/memberships.php:313
|
@@ -5515,9 +5520,9 @@ msgstr ""
|
|
5515 |
msgid "Signups vs. Expirations"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: adminpages/reports/memberships.php:
|
5519 |
-
#: adminpages/reports/memberships.php:
|
5520 |
-
#: adminpages/reports/sales.php:
|
5521 |
#: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
|
5522 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
|
5523 |
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
|
@@ -5545,22 +5550,22 @@ msgstr ""
|
|
5545 |
msgid "for"
|
5546 |
msgstr ""
|
5547 |
|
5548 |
-
#: adminpages/reports/memberships.php:
|
5549 |
#: adminpages/reports/memberships.php:374
|
5550 |
msgid "All Paid Levels"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
-
#: adminpages/reports/memberships.php:
|
5554 |
#: adminpages/reports/memberships.php:375
|
5555 |
msgid "All Free Levels"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
-
#: adminpages/reports/memberships.php:
|
5559 |
#: adminpages/reports/memberships.php:394 adminpages/reports/sales.php:328
|
5560 |
msgid "All Codes"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: adminpages/reports/memberships.php:
|
5564 |
#: adminpages/reports/memberships.php:295
|
5565 |
#: adminpages/reports/memberships.php:304
|
5566 |
#: adminpages/reports/memberships.php:317
|
@@ -5578,7 +5583,7 @@ msgstr ""
|
|
5578 |
msgid "Sales and Revenue (Testing/Sandbox)"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
-
#: adminpages/reports/sales.php:44 adminpages/reports/sales.php:
|
5582 |
#: adminpages/reports/sales.php:44 adminpages/reports/sales.php:45
|
5583 |
#: adminpages/reports/sales.php:46 adminpages/reports/sales.php:193
|
5584 |
#: adminpages/reports/sales.php:201 adminpages/reports/sales.php:202
|
@@ -5587,7 +5592,7 @@ msgstr ""
|
|
5587 |
msgid "Sales"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
-
#: adminpages/reports/sales.php:45 adminpages/reports/sales.php:
|
5591 |
#: adminpages/reports/sales.php:45 adminpages/reports/sales.php:46
|
5592 |
#: adminpages/reports/sales.php:47 adminpages/reports/sales.php:192
|
5593 |
#: adminpages/reports/sales.php:200 adminpages/reports/sales.php:201
|
@@ -5596,12 +5601,12 @@ msgstr ""
|
|
5596 |
msgid "Revenue"
|
5597 |
msgstr ""
|
5598 |
|
5599 |
-
#: adminpages/reports/sales.php:
|
5600 |
msgid ""
|
5601 |
"Average line calculated using data prior to current day, month, or year."
|
5602 |
msgstr ""
|
5603 |
|
5604 |
-
#: adminpages/reports/sales.php:
|
5605 |
#: adminpages/reports/sales.php:382
|
5606 |
msgid "Average*"
|
5607 |
msgstr ""
|
@@ -5633,24 +5638,13 @@ msgid "Item"
|
|
5633 |
msgstr ""
|
5634 |
|
5635 |
#: adminpages/templates/orders-email.php:48
|
5636 |
-
#: adminpages/templates/orders-print.php:77 pages/levels.php:
|
5637 |
#: adminpages/templates/orders-email.php:48
|
5638 |
#: adminpages/templates/orders-print.php:77 pages/levels.php:14
|
5639 |
#: pages/levels.php:36
|
5640 |
msgid "Price"
|
5641 |
msgstr ""
|
5642 |
|
5643 |
-
#: adminpages/templates/orders-email.php:56
|
5644 |
-
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:98
|
5645 |
-
#: pages/invoice.php:88 adminpages/templates/orders-email.php:56
|
5646 |
-
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:90
|
5647 |
-
#: pages/confirmation.php:91 pages/confirmation.php:93
|
5648 |
-
#: pages/confirmation.php:94 pages/invoice.php:72 pages/invoice.php:73
|
5649 |
-
#: pages/invoice.php:74 pages/invoice.php:75 pages/invoice.php:77
|
5650 |
-
#: pages/invoice.php:79 pages/invoice.php:83 pages/invoice.php:84
|
5651 |
-
msgid "Subtotal"
|
5652 |
-
msgstr ""
|
5653 |
-
|
5654 |
#: adminpages/updates.php:14 adminpages/updates.php:11
|
5655 |
#: adminpages/updates.php:14
|
5656 |
msgid "Updating Paid Memberships Pro"
|
@@ -5946,7 +5940,7 @@ msgstr ""
|
|
5946 |
msgid "—"
|
5947 |
msgstr ""
|
5948 |
|
5949 |
-
#: classes/class.memberorder.php:
|
5950 |
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
5951 |
#: classes/class.memberorder.php:573 classes/class.memberorder.php:644
|
5952 |
#: classes/class.memberorder.php:697 classes/class.memberorder.php:699
|
@@ -5956,7 +5950,8 @@ msgstr ""
|
|
5956 |
#: classes/class.memberorder.php:743 classes/class.memberorder.php:760
|
5957 |
#: classes/class.memberorder.php:811 classes/class.memberorder.php:856
|
5958 |
#: classes/class.memberorder.php:868 classes/class.memberorder.php:941
|
5959 |
-
#: classes/class.memberorder.php:943
|
|
|
5960 |
#, php-format
|
5961 |
msgid ""
|
5962 |
"There was an error canceling the subscription for user with ID=%s. You will "
|
@@ -5964,31 +5959,32 @@ msgid ""
|
|
5964 |
"active."
|
5965 |
msgstr ""
|
5966 |
|
5967 |
-
#: classes/class.memberorder.php:
|
5968 |
#: classes/class.memberorder.php:744 classes/class.memberorder.php:761
|
5969 |
#: classes/class.memberorder.php:812 classes/class.memberorder.php:857
|
5970 |
#: classes/class.memberorder.php:869 classes/class.memberorder.php:942
|
5971 |
-
#: classes/class.memberorder.php:944
|
5972 |
msgid "User Email"
|
5973 |
msgstr ""
|
5974 |
|
5975 |
-
#: classes/class.memberorder.php:
|
5976 |
#: classes/class.memberorder.php:745 classes/class.memberorder.php:762
|
5977 |
#: classes/class.memberorder.php:813 classes/class.memberorder.php:858
|
5978 |
#: classes/class.memberorder.php:859 classes/class.memberorder.php:871
|
5979 |
#: classes/class.memberorder.php:944 classes/class.memberorder.php:946
|
|
|
5980 |
msgid "User Display Name"
|
5981 |
msgstr ""
|
5982 |
|
5983 |
-
#: classes/class.memberorder.php:
|
5984 |
#: classes/class.memberorder.php:876 classes/class.memberorder.php:949
|
5985 |
-
#: classes/class.memberorder.php:951
|
5986 |
msgid "Edit User"
|
5987 |
msgstr ""
|
5988 |
|
5989 |
-
#: classes/class.memberorder.php:
|
5990 |
#: classes/class.memberorder.php:877 classes/class.memberorder.php:950
|
5991 |
-
#: classes/class.memberorder.php:952
|
5992 |
msgid "Edit Order"
|
5993 |
msgstr ""
|
5994 |
|
@@ -6025,7 +6021,7 @@ msgid "Your membership confirmation for %s"
|
|
6025 |
msgstr ""
|
6026 |
|
6027 |
#: classes/class.pmproemail.php:338 classes/class.pmproemail.php:434
|
6028 |
-
#: classes/class.pmproemail.php:
|
6029 |
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
6030 |
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
|
6031 |
#: classes/class.pmproemail.php:285 classes/class.pmproemail.php:294
|
@@ -6073,7 +6069,7 @@ msgstr ""
|
|
6073 |
msgid "Billing information has been updated for %s at %s"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
-
#: classes/class.pmproemail.php:
|
6077 |
#: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
|
6078 |
#: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
|
6079 |
#: classes/class.pmproemail.php:496 classes/class.pmproemail.php:510
|
@@ -6083,7 +6079,7 @@ msgstr ""
|
|
6083 |
msgid "Membership Payment Failed at %s"
|
6084 |
msgstr ""
|
6085 |
|
6086 |
-
#: classes/class.pmproemail.php:
|
6087 |
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
|
6088 |
#: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
|
6089 |
#: classes/class.pmproemail.php:542 classes/class.pmproemail.php:557
|
@@ -6093,7 +6089,7 @@ msgstr ""
|
|
6093 |
msgid "Membership Payment Failed For %s at %s"
|
6094 |
msgstr ""
|
6095 |
|
6096 |
-
#: classes/class.pmproemail.php:
|
6097 |
#: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
|
6098 |
#: classes/class.pmproemail.php:569 classes/class.pmproemail.php:589
|
6099 |
#: classes/class.pmproemail.php:605 classes/class.pmproemail.php:612
|
@@ -6103,7 +6099,7 @@ msgstr ""
|
|
6103 |
msgid "Credit Card on File Expiring Soon at %s"
|
6104 |
msgstr ""
|
6105 |
|
6106 |
-
#: classes/class.pmproemail.php:
|
6107 |
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
6108 |
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
|
6109 |
#: classes/class.pmproemail.php:619 classes/class.pmproemail.php:639
|
@@ -6114,7 +6110,7 @@ msgstr ""
|
|
6114 |
msgid "INVOICE for %s membership"
|
6115 |
msgstr ""
|
6116 |
|
6117 |
-
#: classes/class.pmproemail.php:
|
6118 |
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
6119 |
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
|
6120 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:710
|
@@ -6125,7 +6121,7 @@ msgstr ""
|
|
6125 |
msgid "Your trial at %s is ending soon"
|
6126 |
msgstr ""
|
6127 |
|
6128 |
-
#: classes/class.pmproemail.php:
|
6129 |
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
6130 |
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
|
6131 |
#: classes/class.pmproemail.php:724 classes/class.pmproemail.php:744
|
@@ -6136,7 +6132,7 @@ msgstr ""
|
|
6136 |
msgid "Your membership at %s has ended"
|
6137 |
msgstr ""
|
6138 |
|
6139 |
-
#: classes/class.pmproemail.php:
|
6140 |
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
6141 |
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
|
6142 |
#: classes/class.pmproemail.php:749 classes/class.pmproemail.php:769
|
@@ -6147,7 +6143,7 @@ msgstr ""
|
|
6147 |
msgid "Your membership at %s will end soon"
|
6148 |
msgstr ""
|
6149 |
|
6150 |
-
#: classes/class.pmproemail.php:
|
6151 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
6152 |
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
|
6153 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:789
|
@@ -6158,7 +6154,7 @@ msgstr ""
|
|
6158 |
msgid "Your membership at %s has been changed"
|
6159 |
msgstr ""
|
6160 |
|
6161 |
-
#: classes/class.pmproemail.php:
|
6162 |
#: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
|
6163 |
#: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
|
6164 |
#: classes/class.pmproemail.php:793 classes/class.pmproemail.php:800
|
@@ -6174,7 +6170,7 @@ msgstr ""
|
|
6174 |
msgid "The new level is %s"
|
6175 |
msgstr ""
|
6176 |
|
6177 |
-
#: classes/class.pmproemail.php:
|
6178 |
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
6179 |
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
|
6180 |
#: classes/class.pmproemail.php:775 classes/class.pmproemail.php:795
|
@@ -6184,7 +6180,7 @@ msgstr ""
|
|
6184 |
msgid "Your membership has been cancelled"
|
6185 |
msgstr ""
|
6186 |
|
6187 |
-
#: classes/class.pmproemail.php:
|
6188 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
6189 |
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
6190 |
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
|
@@ -6203,7 +6199,7 @@ msgstr ""
|
|
6203 |
msgid "This membership will expire on %s"
|
6204 |
msgstr ""
|
6205 |
|
6206 |
-
#: classes/class.pmproemail.php:
|
6207 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
6208 |
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
6209 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
|
@@ -6221,7 +6217,7 @@ msgstr ""
|
|
6221 |
msgid "This membership does not expire"
|
6222 |
msgstr ""
|
6223 |
|
6224 |
-
#: classes/class.pmproemail.php:
|
6225 |
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
6226 |
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
|
6227 |
#: classes/class.pmproemail.php:806 classes/class.pmproemail.php:807
|
@@ -6233,7 +6229,7 @@ msgstr ""
|
|
6233 |
msgid "Membership for %s at %s has been changed"
|
6234 |
msgstr ""
|
6235 |
|
6236 |
-
#: classes/class.pmproemail.php:
|
6237 |
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
|
6238 |
#: classes/class.pmproemail.php:812 classes/class.pmproemail.php:813
|
6239 |
#: classes/class.pmproemail.php:832 classes/class.pmproemail.php:865
|
@@ -6243,7 +6239,7 @@ msgstr ""
|
|
6243 |
msgid "Membership has been cancelled"
|
6244 |
msgstr ""
|
6245 |
|
6246 |
-
#: classes/class.pmproemail.php:
|
6247 |
#: classes/class.pmproemail.php:849 classes/class.pmproemail.php:850
|
6248 |
#: classes/class.pmproemail.php:869 classes/class.pmproemail.php:904
|
6249 |
#: classes/class.pmproemail.php:911 classes/class.pmproemail.php:919
|
@@ -6252,19 +6248,19 @@ msgstr ""
|
|
6252 |
msgid "Invoice for Order #: "
|
6253 |
msgstr ""
|
6254 |
|
6255 |
-
#: classes/class.pmproemail.php:
|
6256 |
#: classes/class.pmproemail.php:1014
|
6257 |
#, php-format
|
6258 |
msgid "Payment action required for your %s membership"
|
6259 |
msgstr ""
|
6260 |
|
6261 |
-
#: classes/class.pmproemail.php:
|
6262 |
#: classes/class.pmproemail.php:1051
|
6263 |
#, php-format
|
6264 |
msgid "Payment action required: membership for %s at %s"
|
6265 |
msgstr ""
|
6266 |
|
6267 |
-
#: classes/class.pmproemail.php:
|
6268 |
#: classes/class.pmproemail.php:955 classes/class.pmproemail.php:963
|
6269 |
#: classes/class.pmproemail.php:971 classes/class.pmproemail.php:972
|
6270 |
#: classes/class.pmproemail.php:1076 classes/class.pmproemail.php:1087
|
@@ -6705,7 +6701,7 @@ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
|
6705 |
msgstr ""
|
6706 |
|
6707 |
#: classes/gateways/class.pmprogateway_braintree.php:454
|
6708 |
-
#: classes/gateways/class.pmprogateway_stripe.php:1048 pages/checkout.php:
|
6709 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
6710 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
6711 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -6746,17 +6742,17 @@ msgstr ""
|
|
6746 |
#: classes/gateways/class.pmprogateway_stripe.php:902
|
6747 |
#: classes/gateways/class.pmprogateway_stripe.php:972
|
6748 |
#: classes/gateways/class.pmprogateway_stripe.php:1037
|
6749 |
-
#: classes/gateways/class.pmprogateway_stripe.php:1048 pages/checkout.php:
|
6750 |
-
#: pages/checkout.php:
|
6751 |
-
#: pages/checkout.php:
|
6752 |
-
#: pages/checkout.php:
|
6753 |
-
#: pages/checkout.php:
|
6754 |
-
#: pages/checkout.php:513
|
6755 |
msgid "Payment Information"
|
6756 |
msgstr ""
|
6757 |
|
6758 |
#: classes/gateways/class.pmprogateway_braintree.php:455
|
6759 |
-
#: classes/gateways/class.pmprogateway_stripe.php:1049 pages/checkout.php:
|
6760 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
6761 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
6762 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -6797,19 +6793,19 @@ msgstr ""
|
|
6797 |
#: classes/gateways/class.pmprogateway_stripe.php:903
|
6798 |
#: classes/gateways/class.pmprogateway_stripe.php:973
|
6799 |
#: classes/gateways/class.pmprogateway_stripe.php:1038
|
6800 |
-
#: classes/gateways/class.pmprogateway_stripe.php:1049 pages/checkout.php:
|
6801 |
-
#: pages/checkout.php:
|
6802 |
-
#: pages/checkout.php:
|
6803 |
-
#: pages/checkout.php:
|
6804 |
-
#: pages/checkout.php:
|
6805 |
-
#: pages/checkout.php:514
|
6806 |
#, php-format
|
6807 |
msgid "We Accept %s"
|
6808 |
msgstr ""
|
6809 |
|
6810 |
#: classes/gateways/class.pmprogateway_braintree.php:475
|
6811 |
#: classes/gateways/class.pmprogateway_stripe.php:1082 pages/billing.php:359
|
6812 |
-
#: pages/checkout.php:
|
6813 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
6814 |
#: classes/gateways/class.pmprogateway_braintree.php:318
|
6815 |
#: classes/gateways/class.pmprogateway_braintree.php:321
|
@@ -6854,11 +6850,12 @@ msgstr ""
|
|
6854 |
#: pages/billing.php:311 pages/billing.php:312 pages/billing.php:313
|
6855 |
#: pages/billing.php:314 pages/billing.php:317 pages/billing.php:318
|
6856 |
#: pages/billing.php:326 pages/billing.php:335 pages/billing.php:337
|
6857 |
-
#: pages/billing.php:359 pages/checkout.php:
|
6858 |
-
#: pages/checkout.php:
|
6859 |
-
#: pages/checkout.php:
|
6860 |
-
#: pages/checkout.php:
|
6861 |
-
#: pages/checkout.php:
|
|
|
6862 |
msgid "Card Number"
|
6863 |
msgstr ""
|
6864 |
|
@@ -6902,7 +6899,7 @@ msgid "CVV"
|
|
6902 |
msgstr ""
|
6903 |
|
6904 |
#: classes/gateways/class.pmprogateway_braintree.php:504 pages/billing.php:399
|
6905 |
-
#: pages/checkout.php:
|
6906 |
#: classes/gateways/class.pmprogateway_braintree.php:354
|
6907 |
#: classes/gateways/class.pmprogateway_braintree.php:356
|
6908 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
@@ -6939,18 +6936,18 @@ msgstr ""
|
|
6939 |
#: pages/billing.php:352 pages/billing.php:353 pages/billing.php:355
|
6940 |
#: pages/billing.php:357 pages/billing.php:358 pages/billing.php:366
|
6941 |
#: pages/billing.php:375 pages/billing.php:381 pages/billing.php:399
|
6942 |
-
#: pages/checkout.php:
|
6943 |
-
#: pages/checkout.php:
|
6944 |
-
#: pages/checkout.php:
|
6945 |
-
#: pages/checkout.php:
|
6946 |
-
#: pages/checkout.php:
|
6947 |
-
#: pages/checkout.php:616
|
6948 |
msgid "what's this?"
|
6949 |
msgstr ""
|
6950 |
|
6951 |
#: classes/gateways/class.pmprogateway_braintree.php:511
|
6952 |
-
#: classes/gateways/class.pmprogateway_stripe.php:1104 pages/checkout.php:
|
6953 |
-
#: pages/checkout.php:
|
6954 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
6955 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
6956 |
#: classes/gateways/class.pmprogateway_braintree.php:369
|
@@ -6994,20 +6991,21 @@ msgstr ""
|
|
6994 |
#: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:83
|
6995 |
#: pages/checkout.php:87 pages/checkout.php:88 pages/checkout.php:91
|
6996 |
#: pages/checkout.php:94 pages/checkout.php:95 pages/checkout.php:98
|
6997 |
-
#: pages/checkout.php:
|
6998 |
-
#: pages/checkout.php:
|
6999 |
-
#: pages/checkout.php:
|
7000 |
-
#: pages/checkout.php:
|
7001 |
-
#: pages/checkout.php:
|
|
|
7002 |
msgid "Apply"
|
7003 |
msgstr ""
|
7004 |
|
7005 |
#: classes/gateways/class.pmprogateway_braintree.php:570
|
7006 |
#: classes/gateways/class.pmprogateway_braintree.php:587
|
7007 |
#: classes/gateways/class.pmprogateway_braintree.php:677
|
7008 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7009 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7010 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7011 |
#: classes/gateways/class.pmprogateway_braintree.php:509
|
7012 |
#: classes/gateways/class.pmprogateway_braintree.php:524
|
7013 |
#: classes/gateways/class.pmprogateway_braintree.php:526
|
@@ -7138,7 +7136,7 @@ msgstr ""
|
|
7138 |
msgid "Error during charge:"
|
7139 |
msgstr ""
|
7140 |
|
7141 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7142 |
#: classes/gateways/class.pmprogateway_braintree.php:690
|
7143 |
#: classes/gateways/class.pmprogateway_braintree.php:731
|
7144 |
#: classes/gateways/class.pmprogateway_braintree.php:750
|
@@ -7150,7 +7148,7 @@ msgstr ""
|
|
7150 |
msgid "Failed to update customer: %s"
|
7151 |
msgstr ""
|
7152 |
|
7153 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7154 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
7155 |
#: classes/gateways/class.pmprogateway_braintree.php:221
|
7156 |
#: classes/gateways/class.pmprogateway_braintree.php:566
|
@@ -7171,7 +7169,7 @@ msgstr ""
|
|
7171 |
msgid "Failed to update customer."
|
7172 |
msgstr ""
|
7173 |
|
7174 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7175 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
7176 |
#: classes/gateways/class.pmprogateway_braintree.php:269
|
7177 |
#: classes/gateways/class.pmprogateway_braintree.php:614
|
@@ -7192,7 +7190,7 @@ msgstr ""
|
|
7192 |
msgid "Failed to create customer."
|
7193 |
msgstr ""
|
7194 |
|
7195 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7196 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
7197 |
#: classes/gateways/class.pmprogateway_braintree.php:276
|
7198 |
#: classes/gateways/class.pmprogateway_braintree.php:621
|
@@ -7213,7 +7211,7 @@ msgstr ""
|
|
7213 |
msgid "Error creating customer record with Braintree:"
|
7214 |
msgstr ""
|
7215 |
|
7216 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7217 |
#: classes/gateways/class.pmprogateway_braintree.php:933
|
7218 |
#: classes/gateways/class.pmprogateway_braintree.php:934
|
7219 |
#: classes/gateways/class.pmprogateway_braintree.php:935
|
@@ -7222,7 +7220,7 @@ msgstr ""
|
|
7222 |
msgid "Error subscribing customer to plan with Braintree: %s (%s)"
|
7223 |
msgstr ""
|
7224 |
|
7225 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7226 |
#: classes/gateways/class.pmprogateway_braintree.php:948
|
7227 |
#: classes/gateways/class.pmprogateway_braintree.php:949
|
7228 |
#: classes/gateways/class.pmprogateway_braintree.php:950
|
@@ -7231,8 +7229,8 @@ msgstr ""
|
|
7231 |
msgid "Failed to subscribe with Braintree: %s"
|
7232 |
msgstr ""
|
7233 |
|
7234 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7235 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7236 |
#: classes/gateways/class.pmprogateway_braintree.php:1019
|
7237 |
#: classes/gateways/class.pmprogateway_braintree.php:1020
|
7238 |
#: classes/gateways/class.pmprogateway_braintree.php:1021
|
@@ -7245,7 +7243,7 @@ msgstr ""
|
|
7245 |
msgid "Could not find the subscription. %s"
|
7246 |
msgstr ""
|
7247 |
|
7248 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7249 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
7250 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
7251 |
#: classes/gateways/class.pmprogateway_braintree.php:410
|
@@ -7303,7 +7301,7 @@ msgstr ""
|
|
7303 |
msgid "Could not find the subscription."
|
7304 |
msgstr ""
|
7305 |
|
7306 |
-
#: classes/gateways/class.pmprogateway_braintree.php:
|
7307 |
#: classes/gateways/class.pmprogateway_braintree.php:1083
|
7308 |
msgid "Error getting subscription with Braintree:"
|
7309 |
msgstr ""
|
@@ -7880,7 +7878,7 @@ msgid "Vendor"
|
|
7880 |
msgstr ""
|
7881 |
|
7882 |
#: classes/gateways/class.pmprogateway_payflowpro.php:125
|
7883 |
-
#: pages/checkout.php:
|
7884 |
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
|
7885 |
#: classes/gateways/class.pmprogateway_payflowpro.php:124
|
7886 |
#: classes/gateways/class.pmprogateway_payflowpro.php:125
|
@@ -8100,9 +8098,9 @@ msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
|
|
8100 |
msgstr ""
|
8101 |
|
8102 |
#: classes/gateways/class.pmprogateway_paypal.php:281
|
8103 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
8104 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:241
|
8105 |
-
#: pages/checkout.php:
|
8106 |
#: classes/gateways/class.pmprogateway_paypal.php:201
|
8107 |
#: classes/gateways/class.pmprogateway_paypal.php:268
|
8108 |
#: classes/gateways/class.pmprogateway_paypal.php:280
|
@@ -8119,18 +8117,19 @@ msgstr ""
|
|
8119 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:202
|
8120 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:229
|
8121 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:241
|
8122 |
-
#: pages/checkout.php:
|
8123 |
-
#: pages/checkout.php:
|
8124 |
-
#: pages/checkout.php:
|
8125 |
-
#: pages/checkout.php:
|
8126 |
-
#: pages/checkout.php:
|
|
|
8127 |
msgid "Check Out with PayPal"
|
8128 |
msgstr ""
|
8129 |
|
8130 |
#: classes/gateways/class.pmprogateway_paypal.php:287
|
8131 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
8132 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
8133 |
-
#: pages/checkout.php:
|
8134 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
8135 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
8136 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
@@ -8148,19 +8147,19 @@ msgstr ""
|
|
8148 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:234
|
8149 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
8150 |
#: pages/checkout.php:496 pages/checkout.php:509 pages/checkout.php:512
|
8151 |
-
#: pages/checkout.php:
|
8152 |
-
#: pages/checkout.php:
|
8153 |
-
#: pages/checkout.php:
|
8154 |
-
#: pages/checkout.php:
|
8155 |
-
#: pages/checkout.php:728 pages/checkout.php:729
|
8156 |
msgid "Submit and Check Out"
|
8157 |
msgstr ""
|
8158 |
|
8159 |
#: classes/gateways/class.pmprogateway_paypal.php:287
|
8160 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
8161 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
8162 |
#: classes/gateways/class.pmprogateway_twocheckout.php:205
|
8163 |
-
#: pages/checkout.php:
|
8164 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
8165 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
8166 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
@@ -8183,16 +8182,16 @@ msgstr ""
|
|
8183 |
#: classes/gateways/class.pmprogateway_twocheckout.php:205
|
8184 |
#: classes/gateways/class.pmprogateway_twocheckout.php:214
|
8185 |
#: pages/checkout.php:496 pages/checkout.php:509 pages/checkout.php:512
|
8186 |
-
#: pages/checkout.php:
|
8187 |
-
#: pages/checkout.php:
|
8188 |
-
#: pages/checkout.php:
|
8189 |
-
#: pages/checkout.php:
|
8190 |
-
#: pages/checkout.php:728 pages/checkout.php:729
|
8191 |
msgid "Submit and Confirm"
|
8192 |
msgstr ""
|
8193 |
|
8194 |
#: classes/gateways/class.pmprogateway_paypal.php:716
|
8195 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
8196 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:588
|
8197 |
#: classes/gateways/class.pmprogateway_paypal.php:385
|
8198 |
#: classes/gateways/class.pmprogateway_paypal.php:605
|
@@ -8253,8 +8252,8 @@ msgstr ""
|
|
8253 |
msgid "PayPal Express"
|
8254 |
msgstr ""
|
8255 |
|
8256 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
8257 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
8258 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:268
|
8259 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:278
|
8260 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
@@ -8279,6 +8278,10 @@ msgstr ""
|
|
8279 |
msgid "The PayPal Token was lost."
|
8280 |
msgstr ""
|
8281 |
|
|
|
|
|
|
|
|
|
8282 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:71
|
8283 |
#: paid-memberships-pro.php:163
|
8284 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
@@ -10984,7 +10987,7 @@ msgstr ""
|
|
10984 |
msgid "Profile Start Date Issue Detected and Fixed at %s"
|
10985 |
msgstr ""
|
10986 |
|
10987 |
-
#: includes/functions.php:
|
10988 |
#: includes/functions.php:160 includes/functions.php:196
|
10989 |
#: includes/functions.php:200 includes/functions.php:202
|
10990 |
#: includes/functions.php:203 includes/functions.php:204
|
@@ -11001,12 +11004,12 @@ msgstr ""
|
|
11001 |
msgid "The price for membership is <strong>%s</strong> now"
|
11002 |
msgstr ""
|
11003 |
|
11004 |
-
#: includes/functions.php:
|
11005 |
#: pages/levels.php:43 pages/levels.php:55
|
11006 |
msgid "Free"
|
11007 |
msgstr ""
|
11008 |
|
11009 |
-
#: includes/functions.php:
|
11010 |
#: includes/functions.php:202 includes/functions.php:204
|
11011 |
#: includes/functions.php:205 includes/functions.php:206
|
11012 |
#: includes/functions.php:209 includes/functions.php:245
|
@@ -11022,70 +11025,70 @@ msgstr ""
|
|
11022 |
msgid "<strong>%s</strong> now"
|
11023 |
msgstr ""
|
11024 |
|
11025 |
-
#: includes/functions.php:
|
11026 |
#: includes/functions.php:349 includes/functions.php:388
|
11027 |
#: includes/functions.php:393
|
11028 |
#, php-format
|
11029 |
msgid " and then <strong>%1$s per %2$s for %3$d more %4$s</strong>."
|
11030 |
msgstr ""
|
11031 |
|
11032 |
-
#: includes/functions.php:
|
11033 |
#: includes/functions.php:351 includes/functions.php:390
|
11034 |
#: includes/functions.php:395
|
11035 |
#, php-format
|
11036 |
msgid " and then <strong>%1$s every %2$d %3$s for %4$d more payments</strong>."
|
11037 |
msgstr ""
|
11038 |
|
11039 |
-
#: includes/functions.php:
|
11040 |
#: includes/functions.php:354 includes/functions.php:393
|
11041 |
#: includes/functions.php:398
|
11042 |
#, php-format
|
11043 |
msgid " and then <strong>%1$s after %2$d %3$s</strong>."
|
11044 |
msgstr ""
|
11045 |
|
11046 |
-
#: includes/functions.php:
|
11047 |
#: includes/functions.php:359 includes/functions.php:398
|
11048 |
#: includes/functions.php:403
|
11049 |
#, php-format
|
11050 |
msgid "The price for membership is <strong>%1$s per %2$s</strong>."
|
11051 |
msgstr ""
|
11052 |
|
11053 |
-
#: includes/functions.php:
|
11054 |
#: includes/functions.php:361 includes/functions.php:400
|
11055 |
#: includes/functions.php:405
|
11056 |
#, php-format
|
11057 |
msgid "<strong>%1$s per %2$s</strong>."
|
11058 |
msgstr ""
|
11059 |
|
11060 |
-
#: includes/functions.php:
|
11061 |
#: includes/functions.php:365 includes/functions.php:404
|
11062 |
#: includes/functions.php:409
|
11063 |
#, php-format
|
11064 |
msgid "The price for membership is <strong>%1$s every %2$d %3$s</strong>."
|
11065 |
msgstr ""
|
11066 |
|
11067 |
-
#: includes/functions.php:
|
11068 |
#: includes/functions.php:367 includes/functions.php:406
|
11069 |
#: includes/functions.php:411
|
11070 |
#, php-format
|
11071 |
msgid "<strong>%1$s every %2$d %3$s</strong>."
|
11072 |
msgstr ""
|
11073 |
|
11074 |
-
#: includes/functions.php:
|
11075 |
#: includes/functions.php:372 includes/functions.php:411
|
11076 |
#: includes/functions.php:416
|
11077 |
#, php-format
|
11078 |
msgid " and then <strong>%1$s per %2$s</strong>."
|
11079 |
msgstr ""
|
11080 |
|
11081 |
-
#: includes/functions.php:
|
11082 |
#: includes/functions.php:374 includes/functions.php:413
|
11083 |
#: includes/functions.php:418
|
11084 |
#, php-format
|
11085 |
msgid " and then <strong>%1$s every %2$d %3$s</strong>."
|
11086 |
msgstr ""
|
11087 |
|
11088 |
-
#: includes/functions.php:
|
11089 |
#: includes/functions.php:238 includes/functions.php:249
|
11090 |
#: includes/functions.php:260 includes/functions.php:261
|
11091 |
#: includes/functions.php:262 includes/functions.php:264
|
@@ -11098,7 +11101,7 @@ msgstr ""
|
|
11098 |
msgid "After your initial payment, your first payment is Free."
|
11099 |
msgstr ""
|
11100 |
|
11101 |
-
#: includes/functions.php:
|
11102 |
#: includes/functions.php:242 includes/functions.php:253
|
11103 |
#: includes/functions.php:264 includes/functions.php:265
|
11104 |
#: includes/functions.php:266 includes/functions.php:268
|
@@ -11112,7 +11115,7 @@ msgstr ""
|
|
11112 |
msgid "After your initial payment, your first %d payments are Free."
|
11113 |
msgstr ""
|
11114 |
|
11115 |
-
#: includes/functions.php:
|
11116 |
#: includes/functions.php:249 includes/functions.php:260
|
11117 |
#: includes/functions.php:271 includes/functions.php:272
|
11118 |
#: includes/functions.php:273 includes/functions.php:275
|
@@ -11125,14 +11128,14 @@ msgstr ""
|
|
11125 |
msgid "After your initial payment, your first payment will cost %s."
|
11126 |
msgstr ""
|
11127 |
|
11128 |
-
#: includes/functions.php:
|
11129 |
#: includes/functions.php:397 includes/functions.php:436
|
11130 |
#: includes/functions.php:441
|
11131 |
#, php-format
|
11132 |
msgid "After your initial payment, your first %1$d payments will cost %2$s."
|
11133 |
msgstr ""
|
11134 |
|
11135 |
-
#: includes/functions.php:
|
11136 |
#: includes/functions.php:388 includes/functions.php:407
|
11137 |
#: includes/functions.php:446 includes/functions.php:451
|
11138 |
#: includes/functions.php:489 includes/functions.php:508
|
@@ -11141,49 +11144,49 @@ msgstr ""
|
|
11141 |
msgid "Customers in %1$s will be charged %2$s%% tax."
|
11142 |
msgstr ""
|
11143 |
|
11144 |
-
#: includes/functions.php:
|
11145 |
#: includes/functions.php:465 includes/functions.php:504
|
11146 |
#: includes/functions.php:509
|
11147 |
#, php-format
|
11148 |
msgid "<strong>%1$s per %2$s for %3$d more %4$s</strong>"
|
11149 |
msgstr ""
|
11150 |
|
11151 |
-
#: includes/functions.php:
|
11152 |
#: includes/functions.php:467 includes/functions.php:506
|
11153 |
#: includes/functions.php:511
|
11154 |
#, php-format
|
11155 |
msgid "<strong>%1$s every %2$d %3$s for %4$d more payments</strong>"
|
11156 |
msgstr ""
|
11157 |
|
11158 |
-
#: includes/functions.php:
|
11159 |
#: includes/functions.php:470 includes/functions.php:509
|
11160 |
#: includes/functions.php:514
|
11161 |
#, php-format
|
11162 |
msgid "<strong>%1$s after %2$d %3$s</strong>"
|
11163 |
msgstr ""
|
11164 |
|
11165 |
-
#: includes/functions.php:
|
11166 |
#: includes/functions.php:473 includes/functions.php:512
|
11167 |
#: includes/functions.php:517
|
11168 |
#, php-format
|
11169 |
msgid "<strong>%1$s every %2$s</strong>"
|
11170 |
msgstr ""
|
11171 |
|
11172 |
-
#: includes/functions.php:
|
11173 |
#: includes/functions.php:475 includes/functions.php:514
|
11174 |
#: includes/functions.php:519
|
11175 |
#, php-format
|
11176 |
msgid "<strong>%1$s every %2$d %3$s</strong>"
|
11177 |
msgstr ""
|
11178 |
|
11179 |
-
#: includes/functions.php:
|
11180 |
#: includes/functions.php:497 includes/functions.php:511
|
11181 |
#: includes/functions.php:520 includes/functions.php:536
|
11182 |
#: includes/functions.php:541
|
11183 |
msgid "Trial pricing has been applied to the first payment."
|
11184 |
msgstr ""
|
11185 |
|
11186 |
-
#: includes/functions.php:
|
11187 |
#: includes/functions.php:499 includes/functions.php:513
|
11188 |
#: includes/functions.php:522 includes/functions.php:538
|
11189 |
#: includes/functions.php:543
|
@@ -11191,21 +11194,21 @@ msgstr ""
|
|
11191 |
msgid "Trial pricing has been applied to the first %d payments."
|
11192 |
msgstr ""
|
11193 |
|
11194 |
-
#: includes/functions.php:
|
11195 |
#: includes/functions.php:524 includes/functions.php:563
|
11196 |
#: includes/functions.php:568
|
11197 |
#, php-format
|
11198 |
msgid "Membership expires after %1$d %2$s."
|
11199 |
msgstr ""
|
11200 |
|
11201 |
-
#: includes/functions.php:
|
11202 |
#: includes/functions.php:543 includes/functions.php:582
|
11203 |
#: includes/functions.php:587
|
11204 |
#, php-format
|
11205 |
msgid "%1$s membership expires after %2$d %3$s"
|
11206 |
msgstr ""
|
11207 |
|
11208 |
-
#: includes/functions.php:
|
11209 |
#: includes/functions.php:514 includes/functions.php:525
|
11210 |
#: includes/functions.php:536 includes/functions.php:537
|
11211 |
#: includes/functions.php:538 includes/functions.php:545
|
@@ -11221,14 +11224,14 @@ msgstr ""
|
|
11221 |
msgid "User ID not found."
|
11222 |
msgstr ""
|
11223 |
|
11224 |
-
#: includes/functions.php:
|
11225 |
#: includes/functions.php:889 includes/functions.php:894
|
11226 |
#: includes/functions.php:913 includes/functions.php:952
|
11227 |
#: includes/functions.php:957 includes/functions.php:976
|
11228 |
msgid "No membership_id specified in pmpro_changeMembershipLevel."
|
11229 |
msgstr ""
|
11230 |
|
11231 |
-
#: includes/functions.php:
|
11232 |
#: includes/functions.php:508 includes/functions.php:531
|
11233 |
#: includes/functions.php:542 includes/functions.php:553
|
11234 |
#: includes/functions.php:554 includes/functions.php:555
|
@@ -11248,24 +11251,7 @@ msgstr ""
|
|
11248 |
msgid "Invalid level."
|
11249 |
msgstr ""
|
11250 |
|
11251 |
-
#: includes/functions.php:
|
11252 |
-
#: includes/functions.php:542 includes/functions.php:553
|
11253 |
-
#: includes/functions.php:564 includes/functions.php:565
|
11254 |
-
#: includes/functions.php:566 includes/functions.php:573
|
11255 |
-
#: includes/functions.php:597 includes/functions.php:598
|
11256 |
-
#: includes/functions.php:600 includes/functions.php:607
|
11257 |
-
#: includes/functions.php:623 includes/functions.php:646
|
11258 |
-
#: includes/functions.php:725 includes/functions.php:791
|
11259 |
-
#: includes/functions.php:797 includes/functions.php:911
|
11260 |
-
#: includes/functions.php:914 includes/functions.php:919
|
11261 |
-
#: includes/functions.php:938 includes/functions.php:976
|
11262 |
-
#: includes/functions.php:977 includes/functions.php:978
|
11263 |
-
#: includes/functions.php:982 includes/functions.php:987
|
11264 |
-
#: includes/functions.php:1001
|
11265 |
-
msgid "not changing?"
|
11266 |
-
msgstr ""
|
11267 |
-
|
11268 |
-
#: includes/functions.php:1057 includes/functions.php:537
|
11269 |
#: includes/functions.php:559 includes/functions.php:570
|
11270 |
#: includes/functions.php:581 includes/functions.php:582
|
11271 |
#: includes/functions.php:583 includes/functions.php:590
|
@@ -11296,7 +11282,7 @@ msgstr ""
|
|
11296 |
msgid "Error interacting with database"
|
11297 |
msgstr ""
|
11298 |
|
11299 |
-
#: includes/functions.php:
|
11300 |
#: includes/functions.php:1064 includes/functions.php:1067
|
11301 |
#: includes/functions.php:1077 includes/functions.php:1096
|
11302 |
#: includes/functions.php:1123 includes/functions.php:1127
|
@@ -11307,7 +11293,7 @@ msgstr ""
|
|
11307 |
msgid "Error interacting with database: %s"
|
11308 |
msgstr ""
|
11309 |
|
11310 |
-
#: includes/functions.php:
|
11311 |
#: includes/functions.php:629 includes/functions.php:651
|
11312 |
#: includes/functions.php:667 includes/functions.php:668
|
11313 |
#: includes/functions.php:678 includes/functions.php:681
|
@@ -11341,7 +11327,7 @@ msgstr ""
|
|
11341 |
msgid "Membership level not found."
|
11342 |
msgstr ""
|
11343 |
|
11344 |
-
#: includes/functions.php:
|
11345 |
#: includes/functions.php:1101 includes/functions.php:1118
|
11346 |
#: includes/functions.php:1142 includes/functions.php:1143
|
11347 |
#: includes/functions.php:1150 includes/functions.php:1157
|
@@ -11358,7 +11344,7 @@ msgstr ""
|
|
11358 |
msgid "No code was given to check."
|
11359 |
msgstr ""
|
11360 |
|
11361 |
-
#: includes/functions.php:
|
11362 |
#: includes/functions.php:1072 includes/functions.php:1088
|
11363 |
#: includes/functions.php:1099 includes/functions.php:1102
|
11364 |
#: includes/functions.php:1109 includes/functions.php:1110
|
@@ -11378,7 +11364,7 @@ msgstr ""
|
|
11378 |
msgid "The discount code could not be found."
|
11379 |
msgstr ""
|
11380 |
|
11381 |
-
#: includes/functions.php:
|
11382 |
#: includes/functions.php:1088 includes/functions.php:1104
|
11383 |
#: includes/functions.php:1115 includes/functions.php:1118
|
11384 |
#: includes/functions.php:1124 includes/functions.php:1125
|
@@ -11399,7 +11385,7 @@ msgstr ""
|
|
11399 |
msgid "This discount code goes into effect on %s."
|
11400 |
msgstr ""
|
11401 |
|
11402 |
-
#: includes/functions.php:
|
11403 |
#: includes/functions.php:1097 includes/functions.php:1113
|
11404 |
#: includes/functions.php:1124 includes/functions.php:1127
|
11405 |
#: includes/functions.php:1131 includes/functions.php:1132
|
@@ -11420,7 +11406,7 @@ msgstr ""
|
|
11420 |
msgid "This discount code expired on %s."
|
11421 |
msgstr ""
|
11422 |
|
11423 |
-
#: includes/functions.php:
|
11424 |
#: includes/functions.php:1109 includes/functions.php:1125
|
11425 |
#: includes/functions.php:1136 includes/functions.php:1139
|
11426 |
#: includes/functions.php:1141 includes/functions.php:1142
|
@@ -11440,7 +11426,7 @@ msgstr ""
|
|
11440 |
msgid "This discount code is no longer valid."
|
11441 |
msgstr ""
|
11442 |
|
11443 |
-
#: includes/functions.php:
|
11444 |
#: includes/functions.php:1124 includes/functions.php:1140
|
11445 |
#: includes/functions.php:1151 includes/functions.php:1154
|
11446 |
#: includes/functions.php:1155 includes/functions.php:1164
|
@@ -11460,7 +11446,7 @@ msgstr ""
|
|
11460 |
msgid "This discount code does not apply to this membership level."
|
11461 |
msgstr ""
|
11462 |
|
11463 |
-
#: includes/functions.php:
|
11464 |
#: includes/functions.php:1132 includes/functions.php:1148
|
11465 |
#: includes/functions.php:1159 includes/functions.php:1162
|
11466 |
#: includes/functions.php:1172 includes/functions.php:1180
|
@@ -11480,7 +11466,7 @@ msgstr ""
|
|
11480 |
msgid "This discount code is okay."
|
11481 |
msgstr ""
|
11482 |
|
11483 |
-
#: includes/functions.php:
|
11484 |
#: includes/functions.php:1156 includes/functions.php:1172
|
11485 |
#: includes/functions.php:1183 includes/functions.php:1186
|
11486 |
#: includes/functions.php:1196 includes/functions.php:1205
|
@@ -11500,7 +11486,7 @@ msgstr ""
|
|
11500 |
msgid "and"
|
11501 |
msgstr ""
|
11502 |
|
11503 |
-
#: includes/functions.php:
|
11504 |
#: includes/functions.php:1341 includes/functions.php:1361
|
11505 |
#: includes/functions.php:1372 includes/functions.php:1375
|
11506 |
#: includes/functions.php:1385 includes/functions.php:1394
|
@@ -11523,7 +11509,7 @@ msgstr ""
|
|
11523 |
msgid "Sign Up for !!name!! Now"
|
11524 |
msgstr ""
|
11525 |
|
11526 |
-
#: includes/functions.php:
|
11527 |
#: includes/functions.php:2054 includes/functions.php:2085
|
11528 |
#: includes/functions.php:2124 includes/functions.php:2126
|
11529 |
#: includes/functions.php:2179 includes/functions.php:2223
|
@@ -11532,8 +11518,27 @@ msgstr ""
|
|
11532 |
msgid "Sign Up Now"
|
11533 |
msgstr ""
|
11534 |
|
11535 |
-
#: includes/
|
11536 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11537 |
#: adminpages/orders.php:601 adminpages/orders.php:904
|
11538 |
#: adminpages/orders.php:914 adminpages/orders.php:941
|
11539 |
#: adminpages/orders.php:970 adminpages/orders.php:1107
|
@@ -11556,9 +11561,9 @@ msgstr ""
|
|
11556 |
#: pages/confirmation.php:105 pages/confirmation.php:113
|
11557 |
#: pages/confirmation.php:116 pages/confirmation.php:123
|
11558 |
#: pages/confirmation.php:124 pages/confirmation.php:126
|
11559 |
-
#: pages/confirmation.php:127 pages/
|
11560 |
-
#: pages/invoice.php:
|
11561 |
-
#: pages/invoice.php:70
|
11562 |
msgid "Membership Level"
|
11563 |
msgstr ""
|
11564 |
|
@@ -11618,174 +11623,179 @@ msgstr ""
|
|
11618 |
msgid "Years"
|
11619 |
msgstr ""
|
11620 |
|
11621 |
-
#: includes/login.php:
|
11622 |
#: includes/login.php:235 includes/login.php:251 includes/login.php:257
|
11623 |
#: includes/login.php:264 includes/login.php:275 includes/login.php:281
|
11624 |
#: includes/login.php:288
|
11625 |
msgid "Welcome"
|
11626 |
msgstr ""
|
11627 |
|
11628 |
-
#: includes/login.php:
|
11629 |
#: includes/login.php:237 includes/login.php:253 includes/login.php:259
|
11630 |
#: includes/login.php:266 includes/login.php:277 includes/login.php:283
|
11631 |
#: includes/login.php:290
|
11632 |
msgid "Lost Password"
|
11633 |
msgstr ""
|
11634 |
|
11635 |
-
#: includes/login.php:
|
11636 |
-
#: includes/login.php:
|
11637 |
-
#: includes/login.php:
|
11638 |
-
#: includes/login.php:
|
|
|
11639 |
msgid "Reset Password"
|
11640 |
msgstr ""
|
11641 |
|
11642 |
-
#: includes/login.php:
|
11643 |
#: includes/login.php:303 includes/login.php:309 includes/login.php:316
|
11644 |
#: includes/login.php:751 includes/login.php:820 includes/login.php:830
|
11645 |
#: includes/login.php:868
|
11646 |
msgid "There was a problem with your username or password."
|
11647 |
msgstr ""
|
11648 |
|
11649 |
-
#: includes/login.php:
|
11650 |
#: includes/login.php:313 includes/login.php:320
|
11651 |
msgid "Unknown username. Check again or try your email address."
|
11652 |
msgstr ""
|
11653 |
|
11654 |
-
#: includes/login.php:
|
11655 |
#: includes/login.php:317 includes/login.php:324
|
11656 |
msgid "Empty username. Please enter your username and try again."
|
11657 |
msgstr ""
|
11658 |
|
11659 |
-
#: includes/login.php:
|
11660 |
#: includes/login.php:321 includes/login.php:328
|
11661 |
msgid "Empty password. Please enter your password and try again."
|
11662 |
msgstr ""
|
11663 |
|
11664 |
-
#: includes/login.php:
|
11665 |
#: includes/login.php:325 includes/login.php:332
|
11666 |
msgid "The password you entered for the user is incorrect. Please try again."
|
11667 |
msgstr ""
|
11668 |
|
11669 |
-
#: includes/login.php:
|
11670 |
#: includes/login.php:329 includes/login.php:336
|
11671 |
msgid "Check your email for the confirmation link."
|
11672 |
msgstr ""
|
11673 |
|
11674 |
-
#: includes/login.php:
|
11675 |
#: includes/login.php:338 includes/login.php:345
|
11676 |
msgid "You are now logged out."
|
11677 |
msgstr ""
|
11678 |
|
11679 |
-
#: includes/login.php:
|
11680 |
#: includes/login.php:342 includes/login.php:349
|
11681 |
msgid "There was a problem logging you out."
|
11682 |
msgstr ""
|
11683 |
|
11684 |
-
#: includes/login.php:
|
11685 |
#: includes/login.php:353 includes/login.php:360
|
11686 |
msgid "Check your email for a link to reset your password."
|
11687 |
msgstr ""
|
11688 |
|
11689 |
-
#: includes/login.php:
|
11690 |
#: includes/login.php:356 includes/login.php:363
|
11691 |
msgid "There was an unexpected error regarding your email. Please try again"
|
11692 |
msgstr ""
|
11693 |
|
11694 |
-
#: includes/login.php:
|
11695 |
#: includes/login.php:366 includes/login.php:373
|
11696 |
msgid "Your reset password key is invalid."
|
11697 |
msgstr ""
|
11698 |
|
11699 |
-
#: includes/login.php:
|
11700 |
#: includes/login.php:370 includes/login.php:377
|
11701 |
msgid ""
|
11702 |
"Your reset password key is expired, please request a new key from the "
|
11703 |
"password reset page."
|
11704 |
msgstr ""
|
11705 |
|
11706 |
-
#: includes/login.php:
|
11707 |
#: includes/login.php:382 includes/login.php:389
|
11708 |
msgid "Your password has successfully been updated."
|
11709 |
msgstr ""
|
11710 |
|
11711 |
-
#: includes/login.php:
|
11712 |
#: includes/login.php:386 includes/login.php:393
|
11713 |
msgid "There was a problem updating your password"
|
11714 |
msgstr ""
|
11715 |
|
11716 |
-
#: includes/login.php:
|
11717 |
#: includes/login.php:400 includes/login.php:407
|
11718 |
msgid "There is no account with that username or email address."
|
11719 |
msgstr ""
|
11720 |
|
11721 |
-
#: includes/login.php:
|
11722 |
#: includes/login.php:404 includes/login.php:411
|
11723 |
msgid "Please enter a valid username."
|
11724 |
msgstr ""
|
11725 |
|
11726 |
-
#: includes/login.php:
|
11727 |
#: includes/login.php:408 includes/login.php:415
|
11728 |
msgid "You've entered an invalid email address."
|
11729 |
msgstr ""
|
11730 |
|
11731 |
-
#: includes/login.php:
|
11732 |
#: includes/login.php:406 includes/login.php:412 includes/login.php:419
|
11733 |
#: includes/profile.php:586 includes/profile.php:595 includes/profile.php:603
|
11734 |
#: includes/profile.php:604 includes/profile.php:624
|
11735 |
msgid "New passwords do not match."
|
11736 |
msgstr ""
|
11737 |
|
11738 |
-
#: includes/login.php:
|
11739 |
#: includes/login.php:410 includes/login.php:416 includes/login.php:423
|
11740 |
#: includes/profile.php:582 includes/profile.php:591 includes/profile.php:599
|
11741 |
#: includes/profile.php:600 includes/profile.php:620
|
11742 |
msgid "Please complete all fields."
|
11743 |
msgstr ""
|
11744 |
|
11745 |
-
#: includes/login.php:
|
11746 |
#: includes/login.php:427
|
11747 |
msgid ""
|
11748 |
"The email could not be sent. This site may not be correctly configured to "
|
11749 |
"send emails."
|
11750 |
msgstr ""
|
11751 |
|
11752 |
-
#: includes/login.php:
|
|
|
|
|
|
|
|
|
11753 |
msgid ""
|
11754 |
"Please enter your username or email address. You will receive a link to "
|
11755 |
"create a new password via email."
|
11756 |
msgstr ""
|
11757 |
|
11758 |
-
#: includes/login.php:
|
11759 |
msgid "You are already signed in."
|
11760 |
msgstr ""
|
11761 |
|
11762 |
-
#: includes/login.php:
|
11763 |
msgid "Username or Email Address"
|
11764 |
msgstr ""
|
11765 |
|
11766 |
-
#: includes/login.php:
|
11767 |
msgid "Get New Password"
|
11768 |
msgstr ""
|
11769 |
|
11770 |
-
#: includes/login.php:
|
11771 |
#: includes/login.php:651
|
11772 |
msgid ""
|
11773 |
"Your password reset link appears to be invalid. Please request a new link "
|
11774 |
"below."
|
11775 |
msgstr ""
|
11776 |
|
11777 |
-
#: includes/login.php:
|
11778 |
#: includes/login.php:653
|
11779 |
msgid "Your password reset link has expired. Please request a new link below."
|
11780 |
msgstr ""
|
11781 |
|
11782 |
-
#: includes/login.php:
|
11783 |
#: includes/profile.php:634 includes/profile.php:643 includes/profile.php:651
|
11784 |
#: includes/profile.php:652 includes/profile.php:672
|
11785 |
msgid "New Password"
|
11786 |
msgstr ""
|
11787 |
|
11788 |
-
#: includes/login.php:
|
11789 |
#: includes/login.php:587 includes/login.php:636 includes/login.php:642
|
11790 |
#: includes/login.php:680 includes/profile.php:637 includes/profile.php:646
|
11791 |
#: includes/profile.php:654 includes/profile.php:655 includes/profile.php:675
|
@@ -11793,46 +11803,46 @@ msgstr ""
|
|
11793 |
msgid "Strength Indicator"
|
11794 |
msgstr ""
|
11795 |
|
11796 |
-
#: includes/login.php:
|
11797 |
#: includes/profile.php:641 includes/profile.php:650 includes/profile.php:658
|
11798 |
#: includes/profile.php:659 includes/profile.php:679
|
11799 |
msgid "Confirm New Password"
|
11800 |
msgstr ""
|
11801 |
|
11802 |
-
#: includes/login.php:
|
11803 |
msgid "Join Now"
|
11804 |
msgstr ""
|
11805 |
|
11806 |
-
#: includes/login.php:
|
11807 |
msgid "Register"
|
11808 |
msgstr ""
|
11809 |
|
11810 |
-
#: includes/login.php:
|
11811 |
msgid "Lost Password?"
|
11812 |
msgstr ""
|
11813 |
|
11814 |
-
#: includes/login.php:
|
11815 |
msgid "Invalid Request"
|
11816 |
msgstr ""
|
11817 |
|
11818 |
-
#: includes/login.php:
|
11819 |
#, php-format
|
11820 |
msgid "Welcome, %s"
|
11821 |
msgstr ""
|
11822 |
|
11823 |
-
#: includes/login.php:
|
11824 |
#: includes/menus.php:169 shortcodes/pmpro_account.php:185
|
11825 |
#: includes/login.php:974 includes/menus.php:76 includes/menus.php:79
|
11826 |
#: includes/menus.php:169 shortcodes/pmpro_account.php:185
|
11827 |
msgid "Log Out"
|
11828 |
msgstr ""
|
11829 |
|
11830 |
-
#: includes/login.php:
|
11831 |
#: includes/login.php:969 includes/login.php:1007
|
11832 |
msgid "Missing request ID."
|
11833 |
msgstr ""
|
11834 |
|
11835 |
-
#: includes/login.php:
|
11836 |
#: includes/login.php:973 includes/login.php:1011
|
11837 |
msgid "Missing confirm key."
|
11838 |
msgstr ""
|
@@ -11854,7 +11864,7 @@ msgstr ""
|
|
11854 |
msgid "Log In Widget - PMPro"
|
11855 |
msgstr ""
|
11856 |
|
11857 |
-
#: includes/metaboxes.php:
|
11858 |
#: includes/metaboxes.php:38 includes/metaboxes.php:39
|
11859 |
#: includes/metaboxes.php:40
|
11860 |
msgid ""
|
@@ -11862,14 +11872,14 @@ msgid ""
|
|
11862 |
"category that requires membership."
|
11863 |
msgstr ""
|
11864 |
|
11865 |
-
#: includes/metaboxes.php:
|
11866 |
#: includes/metaboxes.php:99 includes/metaboxes.php:100
|
11867 |
#: includes/metaboxes.php:104 includes/metaboxes.php:105
|
11868 |
#: includes/metaboxes.php:106 includes/metaboxes.php:107
|
11869 |
msgid "Require Membership"
|
11870 |
msgstr ""
|
11871 |
|
11872 |
-
#: includes/metaboxes.php:
|
11873 |
#: includes/metaboxes.php:134 includes/metaboxes.php:135
|
11874 |
#: includes/metaboxes.php:136
|
11875 |
msgid ""
|
@@ -12131,7 +12141,7 @@ msgstr ""
|
|
12131 |
msgid "Your profile has been updated."
|
12132 |
msgstr ""
|
12133 |
|
12134 |
-
#: includes/profile.php:507 pages/billing.php:152 pages/checkout.php:
|
12135 |
#: includes/profile.php:490 includes/profile.php:499 includes/profile.php:507
|
12136 |
#: includes/profile.php:508 includes/profile.php:523 pages/billing.php:65
|
12137 |
#: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
|
@@ -12139,15 +12149,15 @@ msgstr ""
|
|
12139 |
#: pages/billing.php:104 pages/billing.php:107 pages/billing.php:108
|
12140 |
#: pages/billing.php:110 pages/billing.php:112 pages/billing.php:113
|
12141 |
#: pages/billing.php:121 pages/billing.php:130 pages/billing.php:152
|
12142 |
-
#: pages/checkout.php:
|
12143 |
-
#: pages/checkout.php:
|
12144 |
-
#: pages/checkout.php:
|
12145 |
-
#: pages/checkout.php:
|
12146 |
-
#: pages/checkout.php:333 pages/checkout.php:336
|
12147 |
msgid "First Name"
|
12148 |
msgstr ""
|
12149 |
|
12150 |
-
#: includes/profile.php:508 pages/billing.php:156 pages/checkout.php:
|
12151 |
#: includes/profile.php:491 includes/profile.php:500 includes/profile.php:508
|
12152 |
#: includes/profile.php:509 includes/profile.php:528 pages/billing.php:69
|
12153 |
#: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
|
@@ -12155,11 +12165,11 @@ msgstr ""
|
|
12155 |
#: pages/billing.php:108 pages/billing.php:111 pages/billing.php:112
|
12156 |
#: pages/billing.php:114 pages/billing.php:116 pages/billing.php:117
|
12157 |
#: pages/billing.php:125 pages/billing.php:134 pages/billing.php:156
|
12158 |
-
#: pages/checkout.php:
|
12159 |
-
#: pages/checkout.php:
|
12160 |
-
#: pages/checkout.php:
|
12161 |
-
#: pages/checkout.php:
|
12162 |
-
#: pages/checkout.php:337 pages/checkout.php:340
|
12163 |
msgid "Last Name"
|
12164 |
msgstr ""
|
12165 |
|
@@ -12351,31 +12361,33 @@ msgstr ""
|
|
12351 |
#: pages/account.php:105 pages/account.php:109 pages/billing.php:84
|
12352 |
#: pages/confirmation.php:61 pages/confirmation.php:63
|
12353 |
#: pages/confirmation.php:69 pages/confirmation.php:78
|
12354 |
-
#: pages/confirmation.php:79 pages/confirmation.php:82
|
12355 |
-
#: pages/
|
12356 |
-
#: pages/invoice.php:
|
|
|
12357 |
msgid "Payment Method"
|
12358 |
msgstr ""
|
12359 |
|
12360 |
#: pages/billing.php:86 pages/confirmation.php:85 pages/invoice.php:75
|
12361 |
#: pages/billing.php:86 pages/confirmation.php:79 pages/confirmation.php:80
|
12362 |
#: pages/confirmation.php:81 pages/confirmation.php:82
|
12363 |
-
#: pages/confirmation.php:83 pages/confirmation.php:
|
12364 |
-
#: pages/
|
12365 |
-
#: pages/invoice.php:
|
|
|
12366 |
msgid "ending in"
|
12367 |
msgstr ""
|
12368 |
|
12369 |
-
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:
|
12370 |
-
#: pages/invoice.php:
|
12371 |
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:111
|
12372 |
#: pages/confirmation.php:113 pages/confirmation.php:121
|
12373 |
#: pages/confirmation.php:124 pages/confirmation.php:131
|
12374 |
#: pages/confirmation.php:132 pages/confirmation.php:133
|
12375 |
-
#: pages/confirmation.php:134 pages/
|
12376 |
-
#: pages/invoice.php:
|
12377 |
-
#: pages/invoice.php:
|
12378 |
-
#: pages/invoice.php:144
|
12379 |
msgid "View Your Membership Account →"
|
12380 |
msgstr ""
|
12381 |
|
@@ -12393,7 +12405,7 @@ msgstr ""
|
|
12393 |
msgid "Your billing information cannot be updated at this time."
|
12394 |
msgstr ""
|
12395 |
|
12396 |
-
#: pages/billing.php:148 pages/checkout.php:
|
12397 |
#: pages/invoice.php:56 adminpages/memberslist.php:117
|
12398 |
#: adminpages/memberslist.php:150 adminpages/memberslist.php:160
|
12399 |
#: adminpages/memberslist.php:170 adminpages/memberslist.php:174
|
@@ -12402,132 +12414,132 @@ msgstr ""
|
|
12402 |
#: pages/billing.php:76 pages/billing.php:77 pages/billing.php:80
|
12403 |
#: pages/billing.php:100 pages/billing.php:103 pages/billing.php:104
|
12404 |
#: pages/billing.php:108 pages/billing.php:109 pages/billing.php:117
|
12405 |
-
#: pages/billing.php:126 pages/billing.php:148 pages/checkout.php:
|
12406 |
-
#: pages/checkout.php:
|
12407 |
-
#: pages/checkout.php:
|
12408 |
-
#: pages/checkout.php:
|
12409 |
-
#: pages/checkout.php:
|
12410 |
-
#: pages/checkout.php:
|
12411 |
-
#: pages/confirmation.php:
|
12412 |
-
#: pages/confirmation.php:
|
12413 |
-
#: pages/
|
12414 |
-
#: pages/invoice.php:56
|
12415 |
msgid "Billing Address"
|
12416 |
msgstr ""
|
12417 |
|
12418 |
-
#: pages/billing.php:162 pages/checkout.php:
|
12419 |
#: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
|
12420 |
#: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
|
12421 |
#: pages/billing.php:112 pages/billing.php:115 pages/billing.php:116
|
12422 |
#: pages/billing.php:118 pages/billing.php:120 pages/billing.php:121
|
12423 |
#: pages/billing.php:129 pages/billing.php:138 pages/billing.php:162
|
12424 |
-
#: pages/checkout.php:
|
12425 |
-
#: pages/checkout.php:
|
12426 |
-
#: pages/checkout.php:
|
12427 |
-
#: pages/checkout.php:
|
12428 |
-
#: pages/checkout.php:341 pages/checkout.php:344
|
12429 |
msgid "Address 1"
|
12430 |
msgstr ""
|
12431 |
|
12432 |
-
#: pages/billing.php:166 pages/checkout.php:
|
12433 |
#: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
|
12434 |
#: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
|
12435 |
#: pages/billing.php:116 pages/billing.php:119 pages/billing.php:120
|
12436 |
#: pages/billing.php:122 pages/billing.php:124 pages/billing.php:125
|
12437 |
#: pages/billing.php:133 pages/billing.php:142 pages/billing.php:166
|
12438 |
-
#: pages/checkout.php:
|
12439 |
-
#: pages/checkout.php:
|
12440 |
-
#: pages/checkout.php:
|
12441 |
-
#: pages/checkout.php:
|
12442 |
-
#: pages/checkout.php:345 pages/checkout.php:348
|
12443 |
msgid "Address 2"
|
12444 |
msgstr ""
|
12445 |
|
12446 |
-
#: pages/billing.php:176 pages/checkout.php:
|
12447 |
#: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
|
12448 |
#: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
|
12449 |
#: pages/billing.php:126 pages/billing.php:129 pages/billing.php:130
|
12450 |
#: pages/billing.php:132 pages/billing.php:134 pages/billing.php:135
|
12451 |
#: pages/billing.php:143 pages/billing.php:152 pages/billing.php:176
|
12452 |
-
#: pages/checkout.php:
|
12453 |
-
#: pages/checkout.php:
|
12454 |
-
#: pages/checkout.php:
|
12455 |
-
#: pages/checkout.php:
|
12456 |
-
#: pages/checkout.php:355 pages/checkout.php:358
|
12457 |
msgid "City"
|
12458 |
msgstr ""
|
12459 |
|
12460 |
-
#: pages/billing.php:180 pages/checkout.php:
|
12461 |
#: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
|
12462 |
#: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
|
12463 |
#: pages/billing.php:130 pages/billing.php:133 pages/billing.php:134
|
12464 |
#: pages/billing.php:136 pages/billing.php:138 pages/billing.php:139
|
12465 |
#: pages/billing.php:147 pages/billing.php:156 pages/billing.php:180
|
12466 |
-
#: pages/checkout.php:
|
12467 |
-
#: pages/checkout.php:
|
12468 |
-
#: pages/checkout.php:
|
12469 |
-
#: pages/checkout.php:
|
12470 |
-
#: pages/checkout.php:359 pages/checkout.php:362
|
12471 |
msgid "State"
|
12472 |
msgstr ""
|
12473 |
|
12474 |
-
#: pages/billing.php:184 pages/checkout.php:
|
12475 |
#: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
|
12476 |
#: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
|
12477 |
#: pages/billing.php:134 pages/billing.php:137 pages/billing.php:138
|
12478 |
#: pages/billing.php:140 pages/billing.php:142 pages/billing.php:143
|
12479 |
#: pages/billing.php:151 pages/billing.php:160 pages/billing.php:184
|
12480 |
-
#: pages/checkout.php:
|
12481 |
-
#: pages/checkout.php:
|
12482 |
-
#: pages/checkout.php:
|
12483 |
-
#: pages/checkout.php:
|
12484 |
-
#: pages/checkout.php:363 pages/checkout.php:366
|
12485 |
msgid "Postal Code"
|
12486 |
msgstr ""
|
12487 |
|
12488 |
-
#: pages/billing.php:193 pages/checkout.php:
|
12489 |
#: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
|
12490 |
#: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
|
12491 |
#: pages/billing.php:143 pages/billing.php:146 pages/billing.php:147
|
12492 |
#: pages/billing.php:149 pages/billing.php:151 pages/billing.php:152
|
12493 |
#: pages/billing.php:160 pages/billing.php:169 pages/billing.php:193
|
12494 |
-
#: pages/checkout.php:
|
12495 |
-
#: pages/checkout.php:
|
12496 |
-
#: pages/checkout.php:
|
12497 |
-
#: pages/checkout.php:
|
12498 |
-
#: pages/checkout.php:372 pages/checkout.php:375
|
12499 |
msgid "City, State Zip"
|
12500 |
msgstr ""
|
12501 |
|
12502 |
-
#: pages/billing.php:246 pages/checkout.php:
|
12503 |
#: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
|
12504 |
#: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
|
12505 |
#: pages/billing.php:196 pages/billing.php:199 pages/billing.php:200
|
12506 |
#: pages/billing.php:202 pages/billing.php:204 pages/billing.php:205
|
12507 |
#: pages/billing.php:213 pages/billing.php:222 pages/billing.php:246
|
12508 |
-
#: pages/checkout.php:
|
12509 |
-
#: pages/checkout.php:
|
12510 |
-
#: pages/checkout.php:
|
12511 |
-
#: pages/checkout.php:
|
12512 |
-
#: pages/checkout.php:425 pages/checkout.php:428
|
12513 |
msgid "Country"
|
12514 |
msgstr ""
|
12515 |
|
12516 |
-
#: pages/billing.php:271 pages/checkout.php:
|
12517 |
#: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
|
12518 |
#: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
|
12519 |
#: pages/billing.php:221 pages/billing.php:224 pages/billing.php:225
|
12520 |
#: pages/billing.php:227 pages/billing.php:229 pages/billing.php:230
|
12521 |
#: pages/billing.php:238 pages/billing.php:247 pages/billing.php:271
|
12522 |
-
#: pages/checkout.php:
|
12523 |
-
#: pages/checkout.php:
|
12524 |
-
#: pages/checkout.php:
|
12525 |
-
#: pages/checkout.php:
|
12526 |
-
#: pages/checkout.php:450 pages/checkout.php:453
|
12527 |
msgid "Phone"
|
12528 |
msgstr ""
|
12529 |
|
12530 |
-
#: pages/billing.php:282 pages/checkout.php:
|
12531 |
#: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
|
12532 |
#: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
|
12533 |
#: pages/billing.php:215 pages/billing.php:232 pages/billing.php:235
|
@@ -12537,25 +12549,26 @@ msgstr ""
|
|
12537 |
#: pages/checkout.php:197 pages/checkout.php:204 pages/checkout.php:205
|
12538 |
#: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:216
|
12539 |
#: pages/checkout.php:218 pages/checkout.php:220 pages/checkout.php:227
|
12540 |
-
#: pages/checkout.php:230 pages/checkout.php:
|
12541 |
-
#: pages/checkout.php:
|
12542 |
-
#: pages/checkout.php:
|
12543 |
-
#: pages/checkout.php:
|
12544 |
-
#: pages/checkout.php:
|
|
|
12545 |
msgid "Email Address"
|
12546 |
msgstr ""
|
12547 |
|
12548 |
-
#: pages/billing.php:286 pages/checkout.php:
|
12549 |
#: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
|
12550 |
#: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
|
12551 |
#: pages/billing.php:236 pages/billing.php:239 pages/billing.php:240
|
12552 |
#: pages/billing.php:242 pages/billing.php:244 pages/billing.php:245
|
12553 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:286
|
12554 |
-
#: pages/checkout.php:
|
12555 |
-
#: pages/checkout.php:
|
12556 |
-
#: pages/checkout.php:
|
12557 |
-
#: pages/checkout.php:
|
12558 |
-
#: pages/checkout.php:473 pages/checkout.php:476
|
12559 |
msgid "Confirm Email"
|
12560 |
msgstr ""
|
12561 |
|
@@ -12649,7 +12662,7 @@ msgstr ""
|
|
12649 |
msgid "Click here to go to the home page."
|
12650 |
msgstr ""
|
12651 |
|
12652 |
-
#: pages/checkout.php:
|
12653 |
#: pages/checkout.php:28 pages/checkout.php:30 pages/checkout.php:35
|
12654 |
#: pages/checkout.php:38 pages/checkout.php:41
|
12655 |
msgid ""
|
@@ -12657,14 +12670,14 @@ msgid ""
|
|
12657 |
"<strong>click the \"Complete Payment\" button</strong> to finish your order."
|
12658 |
msgstr ""
|
12659 |
|
12660 |
-
#: pages/checkout.php:
|
12661 |
#: pages/checkout.php:35 pages/checkout.php:40 pages/checkout.php:42
|
12662 |
#: pages/checkout.php:43 pages/checkout.php:46 pages/checkout.php:48
|
12663 |
#: pages/checkout.php:51
|
12664 |
msgid "change"
|
12665 |
msgstr ""
|
12666 |
|
12667 |
-
#: pages/checkout.php:
|
12668 |
#: pages/checkout.php:42 pages/checkout.php:43 pages/checkout.php:44
|
12669 |
#: pages/checkout.php:50 pages/checkout.php:51 pages/checkout.php:52
|
12670 |
#: pages/checkout.php:54 pages/checkout.php:55
|
@@ -12672,28 +12685,28 @@ msgstr ""
|
|
12672 |
msgid "You have selected the <strong>%s</strong> membership level."
|
12673 |
msgstr ""
|
12674 |
|
12675 |
-
#: pages/checkout.php:
|
12676 |
msgid "<p class=\""
|
12677 |
msgstr ""
|
12678 |
|
12679 |
-
#: pages/checkout.php:
|
12680 |
#: pages/checkout.php:79 pages/checkout.php:82
|
12681 |
msgid "Click here to change your discount code."
|
12682 |
msgstr ""
|
12683 |
|
12684 |
-
#: pages/checkout.php:
|
12685 |
#: pages/checkout.php:66 pages/checkout.php:68 pages/checkout.php:73
|
12686 |
#: pages/checkout.php:74 pages/checkout.php:81 pages/checkout.php:84
|
12687 |
msgid "Click here to enter your discount code"
|
12688 |
msgstr ""
|
12689 |
|
12690 |
-
#: pages/checkout.php:
|
12691 |
#: pages/checkout.php:66 pages/checkout.php:68 pages/checkout.php:73
|
12692 |
#: pages/checkout.php:74 pages/checkout.php:81 pages/checkout.php:84
|
12693 |
msgid "Do you have a discount code?"
|
12694 |
msgstr ""
|
12695 |
|
12696 |
-
#: pages/checkout.php:
|
12697 |
#: pages/checkout.php:160 pages/checkout.php:162 pages/checkout.php:163
|
12698 |
#: pages/checkout.php:165 pages/checkout.php:170 pages/checkout.php:172
|
12699 |
#: pages/checkout.php:173 pages/checkout.php:175 pages/checkout.php:182
|
@@ -12701,21 +12714,21 @@ msgstr ""
|
|
12701 |
msgid "Account Information"
|
12702 |
msgstr ""
|
12703 |
|
12704 |
-
#: pages/checkout.php:
|
12705 |
#: pages/checkout.php:160 pages/checkout.php:163 pages/checkout.php:165
|
12706 |
#: pages/checkout.php:171 pages/checkout.php:172 pages/checkout.php:174
|
12707 |
#: pages/checkout.php:176 pages/checkout.php:183 pages/checkout.php:186
|
12708 |
msgid "Already have an account?"
|
12709 |
msgstr ""
|
12710 |
|
12711 |
-
#: pages/checkout.php:
|
12712 |
#: pages/checkout.php:160 pages/checkout.php:163 pages/checkout.php:165
|
12713 |
#: pages/checkout.php:171 pages/checkout.php:172 pages/checkout.php:174
|
12714 |
#: pages/checkout.php:176 pages/checkout.php:183 pages/checkout.php:186
|
12715 |
msgid "Log in here"
|
12716 |
msgstr ""
|
12717 |
|
12718 |
-
#: pages/checkout.php:
|
12719 |
#: pages/checkout.php:184 pages/checkout.php:186 pages/checkout.php:189
|
12720 |
#: pages/checkout.php:191 pages/checkout.php:192 pages/checkout.php:198
|
12721 |
#: pages/checkout.php:200 pages/checkout.php:202 pages/checkout.php:209
|
@@ -12723,14 +12736,14 @@ msgstr ""
|
|
12723 |
msgid "Confirm Password"
|
12724 |
msgstr ""
|
12725 |
|
12726 |
-
#: pages/checkout.php:
|
12727 |
#: pages/checkout.php:205 pages/checkout.php:213 pages/checkout.php:216
|
12728 |
#: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
|
12729 |
#: pages/checkout.php:229 pages/checkout.php:236 pages/checkout.php:239
|
12730 |
msgid "Confirm Email Address"
|
12731 |
msgstr ""
|
12732 |
|
12733 |
-
#: pages/checkout.php:
|
12734 |
#: pages/checkout.php:218 pages/checkout.php:226 pages/checkout.php:232
|
12735 |
#: pages/checkout.php:235 pages/checkout.php:237 pages/checkout.php:244
|
12736 |
#: pages/checkout.php:246 pages/checkout.php:248 pages/checkout.php:255
|
@@ -12738,7 +12751,7 @@ msgstr ""
|
|
12738 |
msgid "Full Name"
|
12739 |
msgstr ""
|
12740 |
|
12741 |
-
#: pages/checkout.php:
|
12742 |
#: pages/checkout.php:219 pages/checkout.php:227 pages/checkout.php:233
|
12743 |
#: pages/checkout.php:236 pages/checkout.php:238 pages/checkout.php:245
|
12744 |
#: pages/checkout.php:247 pages/checkout.php:249 pages/checkout.php:256
|
@@ -12746,68 +12759,72 @@ msgstr ""
|
|
12746 |
msgid "LEAVE THIS BLANK"
|
12747 |
msgstr ""
|
12748 |
|
12749 |
-
#: pages/checkout.php:
|
12750 |
-
#: pages/checkout.php:
|
12751 |
-
#: pages/checkout.php:
|
12752 |
-
#: pages/checkout.php:
|
12753 |
-
#: pages/checkout.php:283
|
12754 |
#, php-format
|
12755 |
msgid ""
|
12756 |
"You are logged in as <strong>%s</strong>. If you would like to use a "
|
12757 |
"different account for this membership, <a href=\"%s\">log out now</a>."
|
12758 |
msgstr ""
|
12759 |
|
12760 |
-
#: pages/checkout.php:
|
12761 |
-
#: pages/checkout.php:
|
12762 |
-
#: pages/checkout.php:
|
12763 |
-
#: pages/checkout.php:
|
12764 |
-
#: pages/checkout.php:299
|
12765 |
msgid "Choose your Payment Method"
|
12766 |
msgstr ""
|
12767 |
|
12768 |
-
#: pages/checkout.php:
|
12769 |
-
#: pages/checkout.php:
|
12770 |
-
#: pages/checkout.php:
|
12771 |
-
#: pages/checkout.php:
|
12772 |
-
#: pages/checkout.php:307 pages/checkout.php:308
|
12773 |
msgid "Check Out with a Credit Card Here"
|
12774 |
msgstr ""
|
12775 |
|
12776 |
-
#: pages/checkout.php:
|
12777 |
#: classes/gateways/class.pmprogateway_stripe.php:638
|
12778 |
#: classes/gateways/class.pmprogateway_stripe.php:646
|
12779 |
#: classes/gateways/class.pmprogateway_stripe.php:653
|
12780 |
#: classes/gateways/class.pmprogateway_stripe.php:654
|
12781 |
-
#: classes/gateways/class.pmprogateway_stripe.php:655 pages/checkout.php:
|
12782 |
-
#: pages/checkout.php:
|
|
|
12783 |
msgid "Security Code (CVC)"
|
12784 |
msgstr ""
|
12785 |
|
12786 |
-
#: pages/checkout.php:
|
12787 |
-
#: pages/checkout.php:459 pages/checkout.php:
|
12788 |
-
#: pages/checkout.php:
|
12789 |
-
#: pages/checkout.php:
|
12790 |
-
#: pages/checkout.php:
|
12791 |
-
#: pages/checkout.php:
|
|
|
12792 |
#, php-format
|
12793 |
msgid "I agree to the %s"
|
12794 |
msgstr ""
|
12795 |
|
12796 |
-
#: pages/checkout.php:
|
12797 |
-
#: pages/checkout.php:500 pages/checkout.php:
|
12798 |
-
#: pages/checkout.php:
|
12799 |
-
#: pages/checkout.php:
|
12800 |
-
#: pages/checkout.php:
|
12801 |
-
#: pages/checkout.php:
|
|
|
12802 |
msgid "Complete Payment"
|
12803 |
msgstr ""
|
12804 |
|
12805 |
-
#: pages/checkout.php:
|
12806 |
-
#: pages/checkout.php:522 pages/checkout.php:
|
12807 |
-
#: pages/checkout.php:
|
12808 |
-
#: pages/checkout.php:
|
12809 |
-
#: pages/checkout.php:
|
12810 |
-
#: pages/checkout.php:
|
|
|
12811 |
msgid "Processing..."
|
12812 |
msgstr ""
|
12813 |
|
@@ -12839,14 +12856,15 @@ msgstr ""
|
|
12839 |
msgid "Invoice #%s on %s"
|
12840 |
msgstr ""
|
12841 |
|
12842 |
-
#: pages/confirmation.php:52 pages/confirmation.php:
|
12843 |
#: pages/confirmation.php:45 pages/confirmation.php:46
|
12844 |
#: pages/confirmation.php:51 pages/confirmation.php:52
|
12845 |
#: pages/confirmation.php:102 pages/confirmation.php:104
|
12846 |
#: pages/confirmation.php:112 pages/confirmation.php:115
|
12847 |
#: pages/confirmation.php:122 pages/confirmation.php:123
|
12848 |
-
#: pages/confirmation.php:125 pages/confirmation.php:126
|
12849 |
-
#: pages/invoice.php:
|
|
|
12850 |
msgid "Account"
|
12851 |
msgstr ""
|
12852 |
|
@@ -12857,85 +12875,80 @@ msgstr ""
|
|
12857 |
msgid "Membership Expires"
|
12858 |
msgstr ""
|
12859 |
|
12860 |
-
#: pages/confirmation.php:95 pages/invoice.php:85 pages/invoice.php:
|
12861 |
#: pages/confirmation.php:61 pages/confirmation.php:63
|
12862 |
#: pages/confirmation.php:65 pages/confirmation.php:71
|
12863 |
#: pages/confirmation.php:87 pages/confirmation.php:88
|
12864 |
-
#: pages/confirmation.php:90 pages/confirmation.php:91
|
12865 |
-
#: pages/
|
12866 |
-
#: pages/invoice.php:
|
12867 |
-
#: pages/invoice.php:
|
|
|
12868 |
#: pages/invoice.php:103 pages/invoice.php:104 pages/invoice.php:105
|
12869 |
#: pages/invoice.php:107 pages/invoice.php:109 pages/invoice.php:110
|
12870 |
-
#: pages/invoice.php:113 pages/invoice.php:114
|
12871 |
msgid "Total Billed"
|
12872 |
msgstr ""
|
12873 |
|
12874 |
-
#: pages/confirmation.php:
|
12875 |
-
#: pages/confirmation.php:94 pages/confirmation.php:96
|
12876 |
-
#: pages/confirmation.php:97 pages/invoice.php:75 pages/invoice.php:76
|
12877 |
-
#: pages/invoice.php:77 pages/invoice.php:78 pages/invoice.php:80
|
12878 |
-
#: pages/invoice.php:82 pages/invoice.php:86 pages/invoice.php:87
|
12879 |
-
msgid "Coupon"
|
12880 |
-
msgstr ""
|
12881 |
-
|
12882 |
-
#: pages/confirmation.php:118 pages/confirmation.php:97
|
12883 |
#: pages/confirmation.php:100 pages/confirmation.php:103
|
12884 |
#: pages/confirmation.php:110 pages/confirmation.php:111
|
12885 |
#: pages/confirmation.php:113 pages/confirmation.php:114
|
|
|
12886 |
#, php-format
|
12887 |
msgid ""
|
12888 |
"Below are details about your membership account. A welcome email has been "
|
12889 |
"sent to %s."
|
12890 |
msgstr ""
|
12891 |
|
12892 |
-
#: pages/confirmation.php:
|
12893 |
#: pages/confirmation.php:103 pages/confirmation.php:105
|
12894 |
#: pages/confirmation.php:113 pages/confirmation.php:116
|
12895 |
#: pages/confirmation.php:123 pages/confirmation.php:124
|
12896 |
#: pages/confirmation.php:126 pages/confirmation.php:127
|
12897 |
-
#:
|
12898 |
-
#: shortcodes/pmpro_account.php:234
|
12899 |
msgid "Pending"
|
12900 |
msgstr ""
|
12901 |
|
12902 |
-
#: pages/confirmation.php:
|
12903 |
#: pages/confirmation.php:115 pages/confirmation.php:123
|
12904 |
#: pages/confirmation.php:126 pages/confirmation.php:133
|
12905 |
#: pages/confirmation.php:134 pages/confirmation.php:135
|
12906 |
-
#: pages/confirmation.php:136
|
12907 |
msgid ""
|
12908 |
"If your account is not activated within a few minutes, please contact the "
|
12909 |
"site owner."
|
12910 |
msgstr ""
|
12911 |
|
12912 |
-
#: pages/invoice.php:
|
12913 |
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:103
|
12914 |
#: pages/invoice.php:106 pages/invoice.php:108 pages/invoice.php:111
|
12915 |
-
#: pages/invoice.php:112
|
12916 |
msgid "Invoice #"
|
12917 |
msgstr ""
|
12918 |
|
12919 |
-
#: pages/invoice.php:
|
12920 |
#: pages/invoice.php:127 pages/invoice.php:128 pages/invoice.php:129
|
12921 |
#: pages/invoice.php:132 pages/invoice.php:134 pages/invoice.php:137
|
12922 |
-
#: pages/invoice.php:138
|
12923 |
msgid "No invoices found."
|
12924 |
msgstr ""
|
12925 |
|
12926 |
-
#: pages/invoice.php:
|
12927 |
#: pages/invoice.php:138 pages/invoice.php:139 pages/invoice.php:140
|
12928 |
#: pages/invoice.php:143 pages/invoice.php:145 pages/invoice.php:146
|
|
|
12929 |
msgid "← View All Invoices"
|
12930 |
msgstr ""
|
12931 |
|
12932 |
-
#: pages/levels.php:
|
12933 |
#: pages/levels.php:66 pages/levels.php:68 pages/levels.php:69
|
12934 |
#: pages/levels.php:71 pages/levels.php:113 pages/levels.php:115
|
12935 |
msgid "Select"
|
12936 |
msgstr ""
|
12937 |
|
12938 |
-
#: pages/levels.php:
|
12939 |
#: pages/levels.php:57 pages/levels.php:72 pages/levels.php:75
|
12940 |
#: pages/levels.php:78 pages/levels.php:123 shortcodes/pmpro_account.php:59
|
12941 |
#: shortcodes/pmpro_account.php:60 shortcodes/pmpro_account.php:61
|
@@ -12943,19 +12956,19 @@ msgstr ""
|
|
12943 |
msgid "Renew"
|
12944 |
msgstr ""
|
12945 |
|
12946 |
-
#: pages/levels.php:
|
12947 |
#: pages/levels.php:79 pages/levels.php:82 pages/levels.php:117
|
12948 |
#: pages/levels.php:129
|
12949 |
msgid "Your Level"
|
12950 |
msgstr ""
|
12951 |
|
12952 |
-
#: pages/levels.php:
|
12953 |
#: pages/levels.php:94 pages/levels.php:97 pages/levels.php:98
|
12954 |
#: pages/levels.php:129 pages/levels.php:145
|
12955 |
msgid "← Return to Your Account"
|
12956 |
msgstr ""
|
12957 |
|
12958 |
-
#: pages/levels.php:
|
12959 |
#: pages/levels.php:96 pages/levels.php:99 pages/levels.php:100
|
12960 |
#: pages/levels.php:131 pages/levels.php:147
|
12961 |
msgid "← Return to Home"
|
@@ -13366,12 +13379,26 @@ msgstr ""
|
|
13366 |
#: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
|
13367 |
#: services/authnet-silent-post.php:144 services/authnet-silent-post.php:145
|
13368 |
#: services/authnet-silent-post.php:149 services/authnet-silent-post.php:167
|
13369 |
-
#: services/authnet-silent-post.php:172
|
13370 |
msgid ""
|
13371 |
"<p>A payment is being held for review within Authorize.net.</p><p>Payment "
|
13372 |
"Information From Authorize.net"
|
13373 |
msgstr ""
|
13374 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13375 |
#: shortcodes/pmpro_account.php:43 pages/account.php:19
|
13376 |
#: shortcodes/pmpro_account.php:43 shortcodes/pmpro_account.php:44
|
13377 |
#: shortcodes/pmpro_account.php:45
|
@@ -13798,6 +13825,24 @@ msgstr ""
|
|
13798 |
msgid "Expired"
|
13799 |
msgstr ""
|
13800 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13801 |
#: adminpages/orders.php:325 adminpages/orders.php:375
|
13802 |
#: adminpages/orders.php:447 adminpages/orders.php:476
|
13803 |
#: adminpages/orders.php:513 adminpages/orders.php:544
|
@@ -14351,6 +14396,22 @@ msgstr ""
|
|
14351 |
msgid "<strong>%s every %d %s</strong>"
|
14352 |
msgstr ""
|
14353 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14354 |
#: includes/functions.php:556 includes/functions.php:557
|
14355 |
#: includes/functions.php:566
|
14356 |
#, php-format
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: paid-memberships-pro\n"
|
8 |
"Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
|
9 |
+
"POT-Creation-Date: 2021-04-30 21:31+1000\n"
|
10 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11 |
"Last-Translator: \n"
|
12 |
"Language-Team: Stranger Studios <info@paidmembershipspro.com>\n"
|
64 |
msgid "Check Again"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: adminpages/addons.php:94 adminpages/orders.php:1003 adminpages/addons.php:76
|
68 |
#: adminpages/addons.php:79 adminpages/addons.php:92 adminpages/addons.php:93
|
69 |
#: adminpages/addons.php:94 adminpages/orders.php:605 adminpages/orders.php:712
|
70 |
#: adminpages/orders.php:741 adminpages/orders.php:850
|
183 |
msgid "Activate %s"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: adminpages/addons.php:230 adminpages/discountcodes.php:814
|
187 |
+
#: adminpages/membershiplevels.php:807 adminpages/orders.php:1361
|
188 |
#: adminpages/addons.php:213 adminpages/addons.php:216
|
189 |
#: adminpages/addons.php:229 adminpages/addons.php:230
|
190 |
#: adminpages/addons.php:231 adminpages/discountcodes.php:771
|
194 |
#: adminpages/membershiplevels.php:779 adminpages/membershiplevels.php:784
|
195 |
#: adminpages/membershiplevels.php:789 adminpages/membershiplevels.php:794
|
196 |
#: adminpages/membershiplevels.php:801 adminpages/membershiplevels.php:803
|
197 |
+
#: adminpages/membershiplevels.php:807 adminpages/orders.php:1338
|
198 |
+
#: adminpages/orders.php:1343 adminpages/orders.php:1344
|
199 |
+
#: adminpages/orders.php:1353 adminpages/orders.php:1358
|
200 |
+
#: adminpages/orders.php:1362
|
201 |
msgid "Delete"
|
202 |
msgstr ""
|
203 |
|
232 |
msgid "WordPress.org"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: adminpages/addons.php:248 adminpages/orders.php:579
|
236 |
+
#: adminpages/orders.php:912 adminpages/orders.php:1453
|
237 |
+
#: adminpages/orders.php:1463 includes/profile.php:155
|
238 |
#: shortcodes/pmpro_account.php:241 adminpages/addons.php:231
|
239 |
#: adminpages/addons.php:234 adminpages/addons.php:247
|
240 |
#: adminpages/addons.php:248 adminpages/addons.php:249
|
485 |
msgid "Members"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: adminpages/admin_header.php:229 adminpages/discountcodes.php:818
|
489 |
+
#: adminpages/orders.php:959 classes/class-pmpro-admin-activity-email.php:221
|
490 |
#: includes/adminpages.php:52 includes/adminpages.php:167
|
491 |
#: adminpages/admin_header.php:196 adminpages/admin_header.php:197
|
492 |
#: adminpages/admin_header.php:204 adminpages/admin_header.php:212
|
541 |
msgid "License"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: adminpages/admin_header.php:252 adminpages/discountcodes.php:786
|
545 |
#: adminpages/admin_header.php:215 adminpages/admin_header.php:220
|
546 |
#: adminpages/admin_header.php:227 adminpages/admin_header.php:235
|
547 |
#: adminpages/admin_header.php:252 adminpages/discountcodes.php:552
|
556 |
|
557 |
#: adminpages/admin_header.php:252 adminpages/membershiplevels.php:764
|
558 |
#: adminpages/pagesettings.php:98 includes/compatibility/beaver-builder.php:134
|
559 |
+
#: includes/metaboxes.php:132 adminpages/admin_header.php:128
|
560 |
#: adminpages/admin_header.php:149 adminpages/admin_header.php:150
|
561 |
#: adminpages/admin_header.php:159 adminpages/admin_header.php:171
|
562 |
#: adminpages/admin_header.php:184 adminpages/admin_header.php:215
|
571 |
#: adminpages/membershiplevels.php:700 adminpages/membershiplevels.php:702
|
572 |
#: adminpages/membershiplevels.php:728 adminpages/membershiplevels.php:745
|
573 |
#: adminpages/membershiplevels.php:750 adminpages/membershiplevels.php:755
|
574 |
+
#: adminpages/membershiplevels.php:760 adminpages/membershiplevels.php:764
|
575 |
+
#: adminpages/pagesettings.php:69 adminpages/pagesettings.php:70
|
576 |
+
#: adminpages/pagesettings.php:71 adminpages/pagesettings.php:85
|
577 |
+
#: adminpages/pagesettings.php:98 includes/adminpages.php:44
|
578 |
+
#: includes/adminpages.php:64 includes/adminpages.php:65
|
579 |
+
#: includes/adminpages.php:69 includes/adminpages.php:70
|
580 |
+
#: includes/adminpages.php:100 includes/adminpages.php:107
|
581 |
+
#: includes/adminpages.php:111 includes/adminpages.php:116
|
582 |
+
#: includes/compatibility/beaver-builder.php:130
|
583 |
#: includes/compatibility/beaver-builder.php:134 includes/metaboxes.php:126
|
584 |
#: includes/metaboxes.php:130 includes/metaboxes.php:131
|
585 |
#: includes/metaboxes.php:132
|
637 |
msgid "Payment Gateway & SSL Settings"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: adminpages/admin_header.php:268 adminpages/orders.php:383
|
641 |
+
#: adminpages/orders.php:1368 includes/profile.php:510
|
642 |
#: shortcodes/pmpro_account.php:161 adminpages/admin_header.php:131
|
643 |
#: adminpages/admin_header.php:152 adminpages/admin_header.php:162
|
644 |
#: adminpages/admin_header.php:171 adminpages/admin_header.php:183
|
841 |
#: adminpages/membershiplevels.php:527 adminpages/membershiplevels.php:570
|
842 |
#: adminpages/membershiplevels.php:572 adminpages/membershiplevels.php:589
|
843 |
#: adminpages/membershiplevels.php:594 adminpages/membershiplevels.php:599
|
844 |
+
#: adminpages/membershiplevels.php:604 adminpages/membershiplevels.php:608
|
845 |
msgid "Content Settings"
|
846 |
msgstr ""
|
847 |
|
932 |
msgstr ""
|
933 |
|
934 |
#: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:337
|
935 |
+
#: adminpages/advancedsettings.php:394 adminpages/advancedsettings.php:477
|
936 |
#: adminpages/membershiplevels.php:824 adminpages/paymentsettings.php:259
|
937 |
#: classes/gateways/class.pmprogateway_stripe.php:401
|
938 |
#: classes/gateways/class.pmprogateway_stripe.php:415
|
964 |
#: adminpages/membershiplevels.php:779 adminpages/membershiplevels.php:796
|
965 |
#: adminpages/membershiplevels.php:801 adminpages/membershiplevels.php:806
|
966 |
#: adminpages/membershiplevels.php:811 adminpages/membershiplevels.php:818
|
967 |
+
#: adminpages/membershiplevels.php:820 adminpages/membershiplevels.php:824
|
968 |
+
#: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:219
|
969 |
+
#: adminpages/paymentsettings.php:236 adminpages/paymentsettings.php:253
|
970 |
+
#: adminpages/paymentsettings.php:256 adminpages/paymentsettings.php:257
|
971 |
+
#: adminpages/paymentsettings.php:259 adminpages/paymentsettings.php:414
|
972 |
+
#: adminpages/paymentsettings.php:429 adminpages/paymentsettings.php:434
|
973 |
+
#: adminpages/paymentsettings.php:436 adminpages/paymentsettings.php:454
|
974 |
+
#: adminpages/paymentsettings.php:459 adminpages/paymentsettings.php:461
|
975 |
#: classes/gateways/class.pmprogateway_stripe.php:173
|
976 |
#: classes/gateways/class.pmprogateway_stripe.php:174
|
977 |
#: classes/gateways/class.pmprogateway_stripe.php:184
|
1110 |
msgid "Activity Email Frequency"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
+
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:333
|
1114 |
+
#: adminpages/reports/sales.php:295 adminpages/advancedsettings.php:305
|
1115 |
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:258
|
1116 |
#: adminpages/reports/memberships.php:265
|
1117 |
#: adminpages/reports/memberships.php:278
|
1130 |
msgid "Weekly"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
+
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:334
|
1134 |
+
#: adminpages/reports/sales.php:296 adminpages/advancedsettings.php:311
|
1135 |
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:259
|
1136 |
#: adminpages/reports/memberships.php:266
|
1137 |
#: adminpages/reports/memberships.php:279
|
1169 |
#: adminpages/membershiplevels.php:492 adminpages/membershiplevels.php:516
|
1170 |
#: adminpages/membershiplevels.php:518 adminpages/membershiplevels.php:524
|
1171 |
#: adminpages/membershiplevels.php:529 adminpages/membershiplevels.php:534
|
1172 |
+
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:541
|
1173 |
msgid "Other Settings"
|
1174 |
msgstr ""
|
1175 |
|
1217 |
msgid "Choose Levels to Hide Ads From"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: adminpages/advancedsettings.php:390 adminpages/advancedsettings.php:183
|
1221 |
#: adminpages/advancedsettings.php:190 adminpages/advancedsettings.php:203
|
1222 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1223 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
1226 |
msgid "Redirect all traffic from registration page to /susbcription/?"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: adminpages/advancedsettings.php:390 adminpages/advancedsettings.php:183
|
1230 |
#: adminpages/advancedsettings.php:190 adminpages/advancedsettings.php:203
|
1231 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1232 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
1235 |
msgid "multisite only"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: adminpages/advancedsettings.php:395 adminpages/membershiplevels.php:824
|
1239 |
#: adminpages/paymentsettings.php:260
|
1240 |
#: classes/gateways/class.pmprogateway_stripe.php:403
|
1241 |
#: classes/gateways/class.pmprogateway_stripe.php:417
|
1257 |
#: adminpages/membershiplevels.php:796 adminpages/membershiplevels.php:801
|
1258 |
#: adminpages/membershiplevels.php:806 adminpages/membershiplevels.php:811
|
1259 |
#: adminpages/membershiplevels.php:818 adminpages/membershiplevels.php:820
|
1260 |
+
#: adminpages/membershiplevels.php:824 adminpages/paymentsettings.php:211
|
1261 |
+
#: adminpages/paymentsettings.php:220 adminpages/paymentsettings.php:237
|
1262 |
+
#: adminpages/paymentsettings.php:254 adminpages/paymentsettings.php:257
|
1263 |
+
#: adminpages/paymentsettings.php:258 adminpages/paymentsettings.php:260
|
1264 |
+
#: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
|
1265 |
+
#: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:435
|
1266 |
+
#: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:455
|
1267 |
+
#: adminpages/paymentsettings.php:460 adminpages/paymentsettings.php:462
|
1268 |
#: classes/gateways/class.pmprogateway_stripe.php:174
|
1269 |
#: classes/gateways/class.pmprogateway_stripe.php:175
|
1270 |
#: classes/gateways/class.pmprogateway_stripe.php:185
|
1298 |
msgid "Yes"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: adminpages/advancedsettings.php:473 adminpages/advancedsettings.php:467
|
1302 |
#: adminpages/advancedsettings.php:472
|
1303 |
msgid "Uninstall PMPro on deletion?"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: adminpages/advancedsettings.php:478 adminpages/advancedsettings.php:472
|
1307 |
#: adminpages/advancedsettings.php:477
|
1308 |
msgid "Yes - Delete all PMPro Data."
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: adminpages/advancedsettings.php:480 adminpages/advancedsettings.php:479
|
1312 |
msgid ""
|
1313 |
"To delete all PMPro data from the database, set to Yes, deactivate PMPro, "
|
1314 |
"and then click to delete PMPro from the plugins page."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: adminpages/advancedsettings.php:526 adminpages/pagesettings.php:439
|
1318 |
#: adminpages/paymentsettings.php:290 adminpages/advancedsettings.php:284
|
1319 |
#: adminpages/advancedsettings.php:355 adminpages/advancedsettings.php:359
|
1320 |
#: adminpages/advancedsettings.php:368 adminpages/advancedsettings.php:375
|
1342 |
msgstr ""
|
1343 |
|
1344 |
#: adminpages/dashboard.php:19 adminpages/reports/sales.php:20
|
1345 |
+
#: adminpages/reports/sales.php:289
|
1346 |
#: classes/class-pmpro-admin-activity-email.php:103 adminpages/dashboard.php:19
|
1347 |
#: adminpages/dashboard.php:20 adminpages/reports/sales.php:20
|
1348 |
#: adminpages/reports/sales.php:180 adminpages/reports/sales.php:189
|
1353 |
msgstr ""
|
1354 |
|
1355 |
#: adminpages/dashboard.php:26 adminpages/reports/memberships.php:18
|
1356 |
+
#: adminpages/reports/memberships.php:327 adminpages/dashboard.php:26
|
1357 |
#: adminpages/dashboard.php:27 adminpages/reports/memberships.php:18
|
1358 |
#: adminpages/reports/memberships.php:252
|
1359 |
#: adminpages/reports/memberships.php:259
|
1392 |
|
1393 |
#: adminpages/dashboard.php:113 adminpages/membershiplevels.php:751
|
1394 |
#: adminpages/dashboard.php:113 adminpages/membershiplevels.php:747
|
1395 |
+
#: adminpages/membershiplevels.php:751
|
1396 |
msgid "Create a Membership Level"
|
1397 |
msgstr ""
|
1398 |
|
1533 |
msgid "Translation Dashboard"
|
1534 |
msgstr ""
|
1535 |
|
1536 |
+
#: adminpages/dashboard.php:219 adminpages/reports/login.php:180
|
1537 |
+
#: classes/class.memberorder.php:951 pages/checkout.php:123
|
1538 |
+
#: shortcodes/pmpro_account.php:160 adminpages/dashboard.php:215
|
1539 |
+
#: adminpages/dashboard.php:219 adminpages/dashboard.php:223
|
1540 |
+
#: adminpages/memberslist.php:112 adminpages/memberslist.php:145
|
1541 |
+
#: adminpages/memberslist.php:155 adminpages/memberslist.php:165
|
1542 |
+
#: adminpages/memberslist.php:169 adminpages/orders.php:1298
|
1543 |
+
#: adminpages/orders.php:1304 adminpages/orders.php:1313
|
1544 |
+
#: adminpages/orders.php:1323 adminpages/reports/login.php:179
|
1545 |
+
#: classes/class.memberorder.php:858 classes/class.memberorder.php:870
|
1546 |
+
#: classes/class.memberorder.php:943 classes/class.memberorder.php:945
|
1547 |
+
#: classes/class.memberorder.php:947 pages/account.php:51 pages/account.php:55
|
1548 |
#: pages/account.php:76 pages/checkout.php:118 pages/checkout.php:121
|
1549 |
#: pages/checkout.php:167 pages/checkout.php:168 pages/checkout.php:171
|
1550 |
#: pages/checkout.php:173 pages/checkout.php:175 pages/checkout.php:180
|
1557 |
msgstr ""
|
1558 |
|
1559 |
#: adminpages/dashboard.php:220 adminpages/dashboard.php:288
|
1560 |
+
#: adminpages/orders.php:1324 adminpages/reports/login.php:182
|
1561 |
#: includes/privacy.php:241 pages/billing.php:58 pages/cancel.php:60
|
1562 |
+
#: pages/invoice.php:112 pages/levels.php:17 shortcodes/pmpro_account.php:42
|
1563 |
#: shortcodes/pmpro_account.php:211 adminpages/dashboard.php:216
|
1564 |
#: adminpages/dashboard.php:220 adminpages/dashboard.php:284
|
1565 |
#: adminpages/dashboard.php:288 adminpages/dashboard.php:292
|
1575 |
#: pages/cancel.php:61 pages/invoice.php:89 pages/invoice.php:101
|
1576 |
#: pages/invoice.php:102 pages/invoice.php:103 pages/invoice.php:104
|
1577 |
#: pages/invoice.php:109 pages/invoice.php:112 pages/invoice.php:113
|
1578 |
+
#: pages/invoice.php:117 pages/levels.php:13 pages/levels.php:35
|
1579 |
+
#: shortcodes/pmpro_account.php:42 shortcodes/pmpro_account.php:43
|
1580 |
+
#: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
|
1581 |
+
#: shortcodes/pmpro_account.php:125 shortcodes/pmpro_account.php:126
|
1582 |
+
#: shortcodes/pmpro_account.php:128 shortcodes/pmpro_account.php:204
|
1583 |
+
#: shortcodes/pmpro_account.php:211
|
1584 |
msgid "Level"
|
1585 |
msgstr ""
|
1586 |
|
1587 |
+
#: adminpages/dashboard.php:221 adminpages/reports/login.php:183
|
1588 |
#: adminpages/dashboard.php:217 adminpages/dashboard.php:221
|
1589 |
#: adminpages/dashboard.php:225 adminpages/memberslist.php:120
|
1590 |
#: adminpages/memberslist.php:153 adminpages/memberslist.php:163
|
1595 |
msgid "Joined"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: adminpages/dashboard.php:222 adminpages/discountcodes.php:784
|
1599 |
+
#: adminpages/reports/login.php:184 includes/profile.php:86
|
1600 |
#: adminpages/dashboard.php:218 adminpages/dashboard.php:222
|
1601 |
#: adminpages/dashboard.php:226 adminpages/discountcodes.php:550
|
1602 |
#: adminpages/discountcodes.php:560 adminpages/discountcodes.php:588
|
1616 |
msgid "Expires"
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: adminpages/dashboard.php:228 adminpages/reports/login.php:262
|
1620 |
#: classes/class-pmpro-members-list-table.php:226 adminpages/dashboard.php:224
|
1621 |
#: adminpages/dashboard.php:228 adminpages/dashboard.php:232
|
1622 |
#: adminpages/memberslist.php:195 adminpages/memberslist.php:223
|
1637 |
msgstr ""
|
1638 |
|
1639 |
#: adminpages/dashboard.php:286 adminpages/discountcodes.php:449
|
1640 |
+
#: adminpages/discountcodes.php:782 adminpages/orders.php:420
|
1641 |
+
#: adminpages/orders.php:1321 adminpages/dashboard.php:282
|
1642 |
#: adminpages/dashboard.php:286 adminpages/dashboard.php:290
|
1643 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
1644 |
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
|
1668 |
msgid "Code"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: adminpages/dashboard.php:287 adminpages/orders.php:1322
|
1672 |
#: classes/gateways/class.pmprogateway_payflowpro.php:117
|
1673 |
#: adminpages/dashboard.php:283 adminpages/dashboard.php:287
|
1674 |
#: adminpages/dashboard.php:291 adminpages/orders.php:599
|
1686 |
msgid "User"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: adminpages/dashboard.php:289 adminpages/orders.php:642
|
1690 |
+
#: adminpages/orders.php:1325 includes/functions.php:2852
|
1691 |
+
#: includes/privacy.php:285 adminpages/dashboard.php:285
|
|
|
1692 |
#: adminpages/dashboard.php:289 adminpages/dashboard.php:293
|
1693 |
#: adminpages/orders.php:320 adminpages/orders.php:370
|
1694 |
#: adminpages/orders.php:442 adminpages/orders.php:471
|
1707 |
#: adminpages/templates/orders-email.php:64
|
1708 |
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
1709 |
#: pages/confirmation.php:95 pages/confirmation.php:96
|
1710 |
+
#: pages/confirmation.php:98 pages/confirmation.php:99
|
1711 |
+
#: pages/confirmation.php:103 pages/invoice.php:77 pages/invoice.php:78
|
1712 |
+
#: pages/invoice.php:79 pages/invoice.php:80 pages/invoice.php:82
|
1713 |
+
#: pages/invoice.php:84 pages/invoice.php:88 pages/invoice.php:89
|
1714 |
+
#: pages/invoice.php:93
|
1715 |
msgid "Total"
|
1716 |
msgstr ""
|
1717 |
|
1718 |
+
#: adminpages/dashboard.php:290 adminpages/orders.php:734
|
1719 |
+
#: adminpages/orders.php:1329 includes/privacy.php:202 includes/privacy.php:309
|
1720 |
#: pages/invoice.php:28 shortcodes/pmpro_account.php:213
|
1721 |
#: adminpages/dashboard.php:286 adminpages/dashboard.php:290
|
1722 |
#: adminpages/dashboard.php:294 adminpages/orders.php:373
|
1740 |
msgid "Status"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: adminpages/dashboard.php:291 adminpages/orders.php:827
|
1744 |
+
#: adminpages/orders.php:1330 pages/invoice.php:110
|
1745 |
#: shortcodes/pmpro_account.php:210 adminpages/dashboard.php:287
|
1746 |
#: adminpages/dashboard.php:291 adminpages/dashboard.php:295
|
1747 |
#: adminpages/orders.php:442 adminpages/orders.php:492
|
1762 |
#: pages/invoice.php:87 pages/invoice.php:99 pages/invoice.php:100
|
1763 |
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:105
|
1764 |
#: pages/invoice.php:107 pages/invoice.php:110 pages/invoice.php:111
|
1765 |
+
#: pages/invoice.php:115 shortcodes/pmpro_account.php:122
|
1766 |
+
#: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:125
|
1767 |
+
#: shortcodes/pmpro_account.php:127 shortcodes/pmpro_account.php:203
|
1768 |
+
#: shortcodes/pmpro_account.php:210
|
1769 |
msgid "Date"
|
1770 |
msgstr ""
|
1771 |
|
1772 |
+
#: adminpages/dashboard.php:298 adminpages/orders.php:1486
|
1773 |
#: adminpages/dashboard.php:294 adminpages/dashboard.php:298
|
1774 |
#: adminpages/dashboard.php:302 adminpages/orders.php:674
|
1775 |
#: adminpages/orders.php:977 adminpages/orders.php:995
|
1784 |
msgstr ""
|
1785 |
|
1786 |
#: adminpages/dashboard.php:315 adminpages/dashboard.php:330
|
1787 |
+
#: adminpages/orders.php:1392 adminpages/orders.php:1404
|
1788 |
#: adminpages/dashboard.php:311 adminpages/dashboard.php:315
|
1789 |
#: adminpages/dashboard.php:319 adminpages/dashboard.php:326
|
1790 |
#: adminpages/dashboard.php:330 adminpages/orders.php:630
|
1801 |
msgstr ""
|
1802 |
|
1803 |
#: adminpages/dashboard.php:317 adminpages/dashboard.php:332
|
1804 |
+
#: adminpages/orders.php:1394 adminpages/orders.php:1406
|
1805 |
#: adminpages/dashboard.php:313 adminpages/dashboard.php:317
|
1806 |
#: adminpages/dashboard.php:321 adminpages/dashboard.php:328
|
1807 |
#: adminpages/dashboard.php:332 adminpages/orders.php:1275
|
1911 |
msgid "Error deleting code. Please try again."
|
1912 |
msgstr ""
|
1913 |
|
1914 |
+
#: adminpages/discountcodes.php:352 adminpages/discountcodes.php:794
|
1915 |
#: adminpages/discountcodes.php:251 adminpages/discountcodes.php:254
|
1916 |
#: adminpages/discountcodes.php:255 adminpages/discountcodes.php:256
|
1917 |
#: adminpages/discountcodes.php:261 adminpages/discountcodes.php:305
|
1939 |
msgid "Edit Discount Code"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: adminpages/discountcodes.php:375 adminpages/discountcodes.php:733
|
1943 |
#: adminpages/discountcodes.php:266 adminpages/discountcodes.php:269
|
1944 |
#: adminpages/discountcodes.php:270 adminpages/discountcodes.php:271
|
1945 |
#: adminpages/discountcodes.php:276 adminpages/discountcodes.php:320
|
1953 |
msgid "Add New Discount Code"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: adminpages/discountcodes.php:444 adminpages/discountcodes.php:781
|
1957 |
#: adminpages/membershiplevels.php:347 adminpages/membershiplevels.php:779
|
1958 |
+
#: adminpages/orders.php:1320 adminpages/reports/login.php:179
|
1959 |
#: adminpages/templates/orders-email.php:46
|
1960 |
#: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
|
1961 |
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
|
1982 |
#: adminpages/membershiplevels.php:715 adminpages/membershiplevels.php:741
|
1983 |
#: adminpages/membershiplevels.php:758 adminpages/membershiplevels.php:763
|
1984 |
#: adminpages/membershiplevels.php:768 adminpages/membershiplevels.php:773
|
1985 |
+
#: adminpages/membershiplevels.php:775 adminpages/membershiplevels.php:779
|
1986 |
+
#: adminpages/memberslist.php:111 adminpages/memberslist.php:144
|
1987 |
+
#: adminpages/memberslist.php:154 adminpages/memberslist.php:164
|
1988 |
+
#: adminpages/memberslist.php:168 adminpages/orders.php:597
|
1989 |
+
#: adminpages/orders.php:900 adminpages/orders.php:910
|
1990 |
+
#: adminpages/orders.php:937 adminpages/orders.php:966
|
1991 |
+
#: adminpages/orders.php:1103 adminpages/orders.php:1134
|
1992 |
+
#: adminpages/orders.php:1140 adminpages/orders.php:1231
|
1993 |
+
#: adminpages/orders.php:1296 adminpages/orders.php:1302
|
1994 |
+
#: adminpages/orders.php:1307 adminpages/orders.php:1311
|
1995 |
+
#: adminpages/orders.php:1321 adminpages/orders.php:1352
|
1996 |
+
#: adminpages/reports/login.php:140 adminpages/reports/login.php:142
|
1997 |
+
#: adminpages/reports/login.php:158 adminpages/reports/login.php:162
|
1998 |
+
#: adminpages/reports/login.php:178 adminpages/templates/orders-email.php:46
|
1999 |
#: adminpages/templates/orders-print.php:75
|
2000 |
msgid "ID"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: adminpages/discountcodes.php:445 adminpages/orders.php:413
|
2004 |
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
2005 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
|
2006 |
#: adminpages/discountcodes.php:317 adminpages/discountcodes.php:382
|
2028 |
#: adminpages/discountcodes.php:505
|
2029 |
#: classes/gateways/class.pmprogateway_braintree.php:479
|
2030 |
#: classes/gateways/class.pmprogateway_stripe.php:1086 pages/billing.php:363
|
2031 |
+
#: pages/checkout.php:382 adminpages/discountcodes.php:367
|
2032 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
2033 |
#: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
|
2034 |
#: adminpages/discountcodes.php:442 adminpages/discountcodes.php:483
|
2077 |
#: pages/billing.php:316 pages/billing.php:317 pages/billing.php:319
|
2078 |
#: pages/billing.php:321 pages/billing.php:322 pages/billing.php:330
|
2079 |
#: pages/billing.php:339 pages/billing.php:342 pages/billing.php:363
|
2080 |
+
#: pages/checkout.php:380 pages/checkout.php:389 pages/checkout.php:392
|
2081 |
+
#: pages/checkout.php:463 pages/checkout.php:471 pages/checkout.php:508
|
2082 |
+
#: pages/checkout.php:524 pages/checkout.php:525 pages/checkout.php:532
|
2083 |
+
#: pages/checkout.php:553 pages/checkout.php:562 pages/checkout.php:571
|
2084 |
+
#: pages/checkout.php:575 pages/checkout.php:582 pages/checkout.php:585
|
2085 |
msgid "Expiration Date"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: adminpages/discountcodes.php:523 adminpages/discountcodes.php:785
|
2089 |
#: adminpages/discountcodes.php:385 adminpages/discountcodes.php:388
|
2090 |
#: adminpages/discountcodes.php:389 adminpages/discountcodes.php:390
|
2091 |
#: adminpages/discountcodes.php:395 adminpages/discountcodes.php:460
|
2116 |
msgid "Which Levels Will This Code Apply To?"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: adminpages/discountcodes.php:574 adminpages/membershiplevels.php:401
|
2120 |
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:430
|
2121 |
#: adminpages/discountcodes.php:431 adminpages/discountcodes.php:432
|
2122 |
#: adminpages/discountcodes.php:437 adminpages/discountcodes.php:510
|
2132 |
msgid "Initial Payment"
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: adminpages/discountcodes.php:585 adminpages/membershiplevels.php:412
|
2136 |
#: adminpages/discountcodes.php:428 adminpages/discountcodes.php:431
|
2137 |
#: adminpages/discountcodes.php:441 adminpages/discountcodes.php:442
|
2138 |
#: adminpages/discountcodes.php:443 adminpages/discountcodes.php:448
|
2146 |
msgid "The initial amount collected at registration."
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: adminpages/discountcodes.php:590 adminpages/membershiplevels.php:417
|
2150 |
#: adminpages/discountcodes.php:432 adminpages/discountcodes.php:435
|
2151 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:447
|
2152 |
#: adminpages/discountcodes.php:448 adminpages/discountcodes.php:453
|
2161 |
msgid "Recurring Subscription"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: adminpages/discountcodes.php:591 adminpages/membershiplevels.php:418
|
2165 |
#: adminpages/discountcodes.php:433 adminpages/discountcodes.php:436
|
2166 |
#: adminpages/discountcodes.php:447 adminpages/discountcodes.php:448
|
2167 |
#: adminpages/discountcodes.php:449 adminpages/discountcodes.php:454
|
2176 |
msgid "Check if this level has a recurring subscription payment."
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: adminpages/discountcodes.php:595 adminpages/membershiplevels.php:422
|
2180 |
#: adminpages/discountcodes.php:440 adminpages/discountcodes.php:451
|
2181 |
#: adminpages/discountcodes.php:452 adminpages/discountcodes.php:453
|
2182 |
#: adminpages/discountcodes.php:458 adminpages/discountcodes.php:531
|
2190 |
msgid "Billing Amount"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: adminpages/discountcodes.php:606 adminpages/membershiplevels.php:433
|
2194 |
#: classes/gateways/class.pmprogateway_stripe.php:1263
|
2195 |
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:605
|
2196 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
2227 |
msgid "per"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: adminpages/discountcodes.php:610 adminpages/discountcodes.php:696
|
2231 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2232 |
#: classes/gateways/class.pmprogateway_stripe.php:1129
|
2233 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2252 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2253 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2254 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
2255 |
+
#: adminpages/membershiplevels.php:571
|
2256 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2257 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2258 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
2282 |
msgid "Day(s)"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: adminpages/discountcodes.php:610 adminpages/discountcodes.php:696
|
2286 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2287 |
#: classes/gateways/class.pmprogateway_stripe.php:1131
|
2288 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2307 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2308 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2309 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
2310 |
+
#: adminpages/membershiplevels.php:571
|
2311 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2312 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2313 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
2337 |
msgid "Month(s)"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: adminpages/discountcodes.php:610 adminpages/discountcodes.php:696
|
2341 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2342 |
#: classes/gateways/class.pmprogateway_stripe.php:1130
|
2343 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2362 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2363 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2364 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
2365 |
+
#: adminpages/membershiplevels.php:571
|
2366 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2367 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2368 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
2392 |
msgid "Week(s)"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: adminpages/discountcodes.php:610 adminpages/discountcodes.php:696
|
2396 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:571
|
2397 |
#: classes/gateways/class.pmprogateway_stripe.php:1132
|
2398 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2417 |
#: adminpages/membershiplevels.php:537 adminpages/membershiplevels.php:554
|
2418 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:564
|
2419 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:567
|
2420 |
+
#: adminpages/membershiplevels.php:571
|
2421 |
#: classes/gateways/class.pmprogateway_stripe.php:521
|
2422 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2423 |
#: classes/gateways/class.pmprogateway_stripe.php:532
|
2447 |
msgid "Year(s)"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: adminpages/discountcodes.php:618 adminpages/membershiplevels.php:446
|
2451 |
#: adminpages/discountcodes.php:451 adminpages/discountcodes.php:454
|
2452 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:475
|
2453 |
#: adminpages/discountcodes.php:476 adminpages/discountcodes.php:481
|
2462 |
msgid "The amount to be billed one cycle after the initial payment."
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: adminpages/discountcodes.php:620 adminpages/membershiplevels.php:448
|
2466 |
#: adminpages/discountcodes.php:619 adminpages/membershiplevels.php:366
|
2467 |
#: adminpages/membershiplevels.php:368 adminpages/membershiplevels.php:387
|
2468 |
#: adminpages/membershiplevels.php:389 adminpages/membershiplevels.php:390
|
2474 |
"or \"Year\"."
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: adminpages/discountcodes.php:622 adminpages/membershiplevels.php:450
|
2478 |
#: adminpages/discountcodes.php:621 adminpages/membershiplevels.php:450
|
2479 |
msgid "Stripe integration does not allow billing periods longer than 1 year."
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: adminpages/discountcodes.php:628 adminpages/membershiplevels.php:465
|
2483 |
#: adminpages/discountcodes.php:456 adminpages/discountcodes.php:459
|
2484 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:480
|
2485 |
#: adminpages/discountcodes.php:481 adminpages/discountcodes.php:486
|
2495 |
msgid "Billing Cycle Limit"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: adminpages/discountcodes.php:632 adminpages/membershiplevels.php:469
|
2499 |
#: adminpages/discountcodes.php:459 adminpages/discountcodes.php:462
|
2500 |
#: adminpages/discountcodes.php:482 adminpages/discountcodes.php:483
|
2501 |
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:489
|
2514 |
"initial payment. Set to zero if membership is indefinite."
|
2515 |
msgstr ""
|
2516 |
|
2517 |
+
#: adminpages/discountcodes.php:634 adminpages/membershiplevels.php:471
|
2518 |
#: adminpages/discountcodes.php:633 adminpages/membershiplevels.php:386
|
2519 |
#: adminpages/membershiplevels.php:388 adminpages/membershiplevels.php:407
|
2520 |
#: adminpages/membershiplevels.php:409 adminpages/membershiplevels.php:410
|
2527 |
"set an expiration date below."
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: adminpages/discountcodes.php:643 adminpages/membershiplevels.php:480
|
2531 |
#: adminpages/discountcodes.php:642 adminpages/membershiplevels.php:477
|
2532 |
#: adminpages/membershiplevels.php:478 adminpages/membershiplevels.php:480
|
2533 |
#, php-format
|
2537 |
"\">Stripe Billing Limits Add On</a>."
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: adminpages/discountcodes.php:651 adminpages/membershiplevels.php:488
|
2541 |
#: adminpages/discountcodes.php:464 adminpages/discountcodes.php:467
|
2542 |
#: adminpages/discountcodes.php:487 adminpages/discountcodes.php:488
|
2543 |
#: adminpages/discountcodes.php:489 adminpages/discountcodes.php:494
|
2553 |
msgid "Custom Trial"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: adminpages/discountcodes.php:653 adminpages/membershiplevels.php:490
|
2557 |
#: adminpages/discountcodes.php:465 adminpages/discountcodes.php:468
|
2558 |
#: adminpages/discountcodes.php:488 adminpages/discountcodes.php:489
|
2559 |
#: adminpages/discountcodes.php:490 adminpages/discountcodes.php:495
|
2570 |
msgid "Check to add a custom trial period."
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: adminpages/discountcodes.php:655 adminpages/membershiplevels.php:493
|
2574 |
#: adminpages/discountcodes.php:654 adminpages/membershiplevels.php:398
|
2575 |
#: adminpages/membershiplevels.php:400 adminpages/membershiplevels.php:419
|
2576 |
#: adminpages/membershiplevels.php:421 adminpages/membershiplevels.php:422
|
2583 |
"trials by setting an initial payment different from the billing amount."
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: adminpages/discountcodes.php:661 adminpages/membershiplevels.php:510
|
2587 |
#: adminpages/discountcodes.php:469 adminpages/discountcodes.php:472
|
2588 |
#: adminpages/discountcodes.php:492 adminpages/discountcodes.php:493
|
2589 |
#: adminpages/discountcodes.php:494 adminpages/discountcodes.php:499
|
2600 |
msgid "Trial Billing Amount"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: adminpages/discountcodes.php:672 adminpages/membershiplevels.php:521
|
2604 |
#: adminpages/discountcodes.php:472 adminpages/discountcodes.php:475
|
2605 |
#: adminpages/discountcodes.php:503 adminpages/discountcodes.php:504
|
2606 |
#: adminpages/discountcodes.php:505 adminpages/discountcodes.php:510
|
2617 |
msgid "for the first"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: adminpages/discountcodes.php:674 adminpages/membershiplevels.php:523
|
2621 |
#: adminpages/discountcodes.php:474 adminpages/discountcodes.php:477
|
2622 |
#: adminpages/discountcodes.php:505 adminpages/discountcodes.php:506
|
2623 |
#: adminpages/discountcodes.php:507 adminpages/discountcodes.php:512
|
2634 |
msgid "subscription payments"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: adminpages/discountcodes.php:676 adminpages/membershiplevels.php:525
|
2638 |
#: adminpages/discountcodes.php:675 adminpages/membershiplevels.php:406
|
2639 |
#: adminpages/membershiplevels.php:412 adminpages/membershiplevels.php:414
|
2640 |
#: adminpages/membershiplevels.php:441 adminpages/membershiplevels.php:443
|
2647 |
"Stripe integration currently does not support trial amounts greater than $0."
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: adminpages/discountcodes.php:678 adminpages/membershiplevels.php:527
|
2651 |
#: adminpages/discountcodes.php:677 adminpages/membershiplevels.php:410
|
2652 |
#: adminpages/membershiplevels.php:416 adminpages/membershiplevels.php:418
|
2653 |
#: adminpages/membershiplevels.php:445 adminpages/membershiplevels.php:447
|
2661 |
"$0."
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: adminpages/discountcodes.php:680 adminpages/membershiplevels.php:529
|
2665 |
#: adminpages/discountcodes.php:679 adminpages/membershiplevels.php:414
|
2666 |
#: adminpages/membershiplevels.php:420 adminpages/membershiplevels.php:422
|
2667 |
#: adminpages/membershiplevels.php:449 adminpages/membershiplevels.php:451
|
2674 |
"Payflow integration currently does not support trial amounts greater than $0."
|
2675 |
msgstr ""
|
2676 |
|
2677 |
+
#: adminpages/discountcodes.php:686 adminpages/membershiplevels.php:550
|
2678 |
#: adminpages/discountcodes.php:479 adminpages/discountcodes.php:482
|
2679 |
#: adminpages/discountcodes.php:510 adminpages/discountcodes.php:511
|
2680 |
#: adminpages/discountcodes.php:512 adminpages/discountcodes.php:517
|
2688 |
#: adminpages/membershiplevels.php:525 adminpages/membershiplevels.php:527
|
2689 |
#: adminpages/membershiplevels.php:533 adminpages/membershiplevels.php:538
|
2690 |
#: adminpages/membershiplevels.php:543 adminpages/membershiplevels.php:544
|
2691 |
+
#: adminpages/membershiplevels.php:546 adminpages/membershiplevels.php:550
|
2692 |
msgid "Membership Expiration"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: adminpages/discountcodes.php:687 adminpages/membershiplevels.php:551
|
2696 |
#: adminpages/discountcodes.php:483 adminpages/discountcodes.php:511
|
2697 |
#: adminpages/discountcodes.php:512 adminpages/discountcodes.php:513
|
2698 |
#: adminpages/discountcodes.php:518 adminpages/discountcodes.php:591
|
2706 |
#: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:534
|
2707 |
#: adminpages/membershiplevels.php:539 adminpages/membershiplevels.php:544
|
2708 |
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:547
|
2709 |
+
#: adminpages/membershiplevels.php:551
|
2710 |
msgid "Check this to set when membership access expires."
|
2711 |
msgstr ""
|
2712 |
|
2713 |
+
#: adminpages/discountcodes.php:691 adminpages/membershiplevels.php:566
|
2714 |
#: adminpages/discountcodes.php:484 adminpages/discountcodes.php:487
|
2715 |
#: adminpages/discountcodes.php:515 adminpages/discountcodes.php:516
|
2716 |
#: adminpages/discountcodes.php:517 adminpages/discountcodes.php:522
|
2724 |
#: adminpages/membershiplevels.php:530 adminpages/membershiplevels.php:532
|
2725 |
#: adminpages/membershiplevels.php:549 adminpages/membershiplevels.php:554
|
2726 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:560
|
2727 |
+
#: adminpages/membershiplevels.php:562 adminpages/membershiplevels.php:566
|
2728 |
msgid "Expires In"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
+
#: adminpages/discountcodes.php:705 adminpages/membershiplevels.php:579
|
2732 |
#: adminpages/discountcodes.php:500 adminpages/discountcodes.php:528
|
2733 |
#: adminpages/discountcodes.php:529 adminpages/discountcodes.php:530
|
2734 |
#: adminpages/discountcodes.php:535 adminpages/discountcodes.php:608
|
2742 |
#: adminpages/membershiplevels.php:545 adminpages/membershiplevels.php:562
|
2743 |
#: adminpages/membershiplevels.php:567 adminpages/membershiplevels.php:572
|
2744 |
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:575
|
2745 |
+
#: adminpages/membershiplevels.php:579
|
2746 |
msgid ""
|
2747 |
"Set the duration of membership access. Note that the any future payments "
|
2748 |
"(recurring subscription, if any) will be cancelled when the membership "
|
2749 |
"expires."
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: adminpages/discountcodes.php:732 adminpages/discountcodes.php:525
|
2753 |
#: adminpages/discountcodes.php:528 adminpages/discountcodes.php:556
|
2754 |
#: adminpages/discountcodes.php:557 adminpages/discountcodes.php:558
|
2755 |
#: adminpages/discountcodes.php:563 adminpages/discountcodes.php:636
|
2758 |
msgid "Memberships Discount Codes"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#: adminpages/discountcodes.php:752 adminpages/discountcodes.php:751
|
2762 |
msgid "No Discount Codes Found"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: adminpages/discountcodes.php:753 adminpages/discountcodes.php:717
|
2766 |
#: adminpages/discountcodes.php:718 adminpages/discountcodes.php:719
|
2767 |
#: adminpages/discountcodes.php:752
|
2768 |
msgid ""
|
2769 |
"Discount codes allow you to override your membership level's default pricing."
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: adminpages/discountcodes.php:754 adminpages/discountcodes.php:753
|
2773 |
msgid "Create a Discount Code"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: adminpages/discountcodes.php:755 adminpages/discountcodes.php:754
|
2777 |
msgid "Documentation: Discount Codes"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: adminpages/discountcodes.php:764 adminpages/discountcodes.php:700
|
2781 |
#: adminpages/discountcodes.php:728 adminpages/discountcodes.php:729
|
2782 |
#: adminpages/discountcodes.php:730 adminpages/discountcodes.php:763
|
2783 |
#, php-format
|
2784 |
msgid "%d discount codes found."
|
2785 |
msgstr ""
|
2786 |
|
2787 |
+
#: adminpages/discountcodes.php:769 adminpages/discountcodes.php:535
|
2788 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:566
|
2789 |
#: adminpages/discountcodes.php:567 adminpages/discountcodes.php:568
|
2790 |
#: adminpages/discountcodes.php:573 adminpages/discountcodes.php:646
|
2794 |
msgid "Search Discount Codes"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
+
#: adminpages/discountcodes.php:772 adminpages/reports/login.php:120
|
2798 |
#: adminpages/discountcodes.php:538 adminpages/discountcodes.php:541
|
2799 |
#: adminpages/discountcodes.php:569 adminpages/discountcodes.php:570
|
2800 |
#: adminpages/discountcodes.php:571 adminpages/discountcodes.php:576
|
2807 |
msgid "Search"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: adminpages/discountcodes.php:783 adminpages/discountcodes.php:549
|
2811 |
#: adminpages/discountcodes.php:559 adminpages/discountcodes.php:587
|
2812 |
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:589
|
2813 |
#: adminpages/discountcodes.php:594 adminpages/discountcodes.php:667
|
2817 |
msgid "Starts"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: adminpages/discountcodes.php:808 adminpages/membershiplevels.php:805
|
2821 |
+
#: adminpages/orders.php:1353 adminpages/discountcodes.php:765
|
2822 |
#: adminpages/discountcodes.php:766 adminpages/discountcodes.php:767
|
2823 |
#: adminpages/discountcodes.php:773 adminpages/discountcodes.php:775
|
2824 |
#: adminpages/discountcodes.php:807 adminpages/membershiplevels.php:760
|
2825 |
#: adminpages/membershiplevels.php:777 adminpages/membershiplevels.php:782
|
2826 |
#: adminpages/membershiplevels.php:787 adminpages/membershiplevels.php:792
|
2827 |
#: adminpages/membershiplevels.php:799 adminpages/membershiplevels.php:801
|
2828 |
+
#: adminpages/membershiplevels.php:805 adminpages/orders.php:1332
|
2829 |
+
#: adminpages/orders.php:1337 adminpages/orders.php:1338
|
2830 |
+
#: adminpages/orders.php:1347 adminpages/orders.php:1352
|
2831 |
+
#: adminpages/orders.php:1354
|
2832 |
msgid "Edit"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: adminpages/discountcodes.php:811 adminpages/membershiplevels.php:806
|
2836 |
+
#: adminpages/orders.php:1356 adminpages/discountcodes.php:768
|
2837 |
#: adminpages/discountcodes.php:769 adminpages/discountcodes.php:770
|
2838 |
#: adminpages/discountcodes.php:776 adminpages/discountcodes.php:778
|
2839 |
#: adminpages/discountcodes.php:810 adminpages/membershiplevels.php:761
|
2840 |
#: adminpages/membershiplevels.php:778 adminpages/membershiplevels.php:783
|
2841 |
#: adminpages/membershiplevels.php:788 adminpages/membershiplevels.php:793
|
2842 |
#: adminpages/membershiplevels.php:800 adminpages/membershiplevels.php:802
|
2843 |
+
#: adminpages/membershiplevels.php:806 adminpages/orders.php:1335
|
2844 |
+
#: adminpages/orders.php:1340 adminpages/orders.php:1341
|
2845 |
+
#: adminpages/orders.php:1350 adminpages/orders.php:1355
|
2846 |
+
#: adminpages/orders.php:1357
|
2847 |
msgid "Copy"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: adminpages/discountcodes.php:814 adminpages/discountcodes.php:617
|
2851 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
2852 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
2853 |
#: adminpages/discountcodes.php:653 adminpages/discountcodes.php:658
|
2863 |
"code anymore."
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: adminpages/discountcodes.php:818 adminpages/discountcodes.php:775
|
2867 |
#: adminpages/discountcodes.php:776 adminpages/discountcodes.php:777
|
2868 |
#: adminpages/discountcodes.php:783 adminpages/discountcodes.php:785
|
2869 |
#: adminpages/discountcodes.php:817
|
3213 |
msgstr ""
|
3214 |
|
3215 |
#: adminpages/membershiplevels.php:354 adminpages/membershiplevels.php:780
|
3216 |
+
#: adminpages/reports/login.php:181 adminpages/membershiplevels.php:291
|
3217 |
#: adminpages/membershiplevels.php:293 adminpages/membershiplevels.php:295
|
3218 |
#: adminpages/membershiplevels.php:319 adminpages/membershiplevels.php:329
|
3219 |
#: adminpages/membershiplevels.php:351 adminpages/membershiplevels.php:353
|
3228 |
#: adminpages/membershiplevels.php:742 adminpages/membershiplevels.php:759
|
3229 |
#: adminpages/membershiplevels.php:764 adminpages/membershiplevels.php:769
|
3230 |
#: adminpages/membershiplevels.php:774 adminpages/membershiplevels.php:776
|
3231 |
+
#: adminpages/membershiplevels.php:780 adminpages/reports/login.php:142
|
3232 |
+
#: adminpages/reports/login.php:144 adminpages/reports/login.php:160
|
3233 |
+
#: adminpages/reports/login.php:164 adminpages/reports/login.php:180
|
3234 |
msgid "Name"
|
3235 |
msgstr ""
|
3236 |
|
3261 |
#: adminpages/membershiplevels.php:743 adminpages/membershiplevels.php:760
|
3262 |
#: adminpages/membershiplevels.php:765 adminpages/membershiplevels.php:770
|
3263 |
#: adminpages/membershiplevels.php:775 adminpages/membershiplevels.php:777
|
3264 |
+
#: adminpages/membershiplevels.php:781
|
3265 |
msgid "Billing Details"
|
3266 |
msgstr ""
|
3267 |
|
3335 |
#: adminpages/membershiplevels.php:520 adminpages/membershiplevels.php:522
|
3336 |
#: adminpages/membershiplevels.php:528 adminpages/membershiplevels.php:533
|
3337 |
#: adminpages/membershiplevels.php:538 adminpages/membershiplevels.php:539
|
3338 |
+
#: adminpages/membershiplevels.php:541 adminpages/membershiplevels.php:545
|
3339 |
msgid "Disable New Signups"
|
3340 |
msgstr ""
|
3341 |
|
3347 |
#: adminpages/membershiplevels.php:521 adminpages/membershiplevels.php:523
|
3348 |
#: adminpages/membershiplevels.php:529 adminpages/membershiplevels.php:534
|
3349 |
#: adminpages/membershiplevels.php:539 adminpages/membershiplevels.php:540
|
3350 |
+
#: adminpages/membershiplevels.php:542 adminpages/membershiplevels.php:546
|
3351 |
msgid ""
|
3352 |
"Check to hide this level from the membership levels page and disable "
|
3353 |
"registration."
|
3356 |
#: adminpages/membershiplevels.php:562 adminpages/membershiplevels.php:545
|
3357 |
#: adminpages/membershiplevels.php:550 adminpages/membershiplevels.php:555
|
3358 |
#: adminpages/membershiplevels.php:556 adminpages/membershiplevels.php:558
|
3359 |
+
#: adminpages/membershiplevels.php:562
|
3360 |
#, php-format
|
3361 |
msgid ""
|
3362 |
"Optional: Allow more customizable expiration dates using the <a href=\"%s\" "
|
3368 |
#: adminpages/membershiplevels.php:548 adminpages/membershiplevels.php:565
|
3369 |
#: adminpages/membershiplevels.php:570 adminpages/membershiplevels.php:575
|
3370 |
#: adminpages/membershiplevels.php:576 adminpages/membershiplevels.php:578
|
3371 |
+
#: adminpages/membershiplevels.php:582
|
3372 |
#, php-format
|
3373 |
msgid ""
|
3374 |
"WARNING: This level is set with both a recurring billing amount and an "
|
3380 |
#: adminpages/membershiplevels.php:624 adminpages/membershiplevels.php:588
|
3381 |
#: adminpages/membershiplevels.php:605 adminpages/membershiplevels.php:610
|
3382 |
#: adminpages/membershiplevels.php:615 adminpages/membershiplevels.php:618
|
3383 |
+
#: adminpages/membershiplevels.php:620 adminpages/membershiplevels.php:624
|
3384 |
#, php-format
|
3385 |
msgid ""
|
3386 |
"Non-members will not see posts in these categories. You can <a href=\"%s\" "
|
3390 |
#: adminpages/membershiplevels.php:628 adminpages/membershiplevels.php:592
|
3391 |
#: adminpages/membershiplevels.php:609 adminpages/membershiplevels.php:614
|
3392 |
#: adminpages/membershiplevels.php:619 adminpages/membershiplevels.php:622
|
3393 |
+
#: adminpages/membershiplevels.php:624 adminpages/membershiplevels.php:628
|
3394 |
#, php-format
|
3395 |
msgid ""
|
3396 |
"Non-members will see the title and excerpt for posts in these categories. "
|
3401 |
#: adminpages/membershiplevels.php:631 adminpages/membershiplevels.php:595
|
3402 |
#: adminpages/membershiplevels.php:612 adminpages/membershiplevels.php:617
|
3403 |
#: adminpages/membershiplevels.php:622 adminpages/membershiplevels.php:625
|
3404 |
+
#: adminpages/membershiplevels.php:627 adminpages/membershiplevels.php:631
|
3405 |
#, php-format
|
3406 |
msgid ""
|
3407 |
"Non-members will see the title only for posts in these categories. You can "
|
3418 |
#: adminpages/membershiplevels.php:602 adminpages/membershiplevels.php:619
|
3419 |
#: adminpages/membershiplevels.php:624 adminpages/membershiplevels.php:629
|
3420 |
#: adminpages/membershiplevels.php:632 adminpages/membershiplevels.php:634
|
3421 |
+
#: adminpages/membershiplevels.php:638
|
3422 |
msgid "Categories"
|
3423 |
msgstr ""
|
3424 |
|
3429 |
#: adminpages/membershiplevels.php:584 adminpages/membershiplevels.php:610
|
3430 |
#: adminpages/membershiplevels.php:627 adminpages/membershiplevels.php:632
|
3431 |
#: adminpages/membershiplevels.php:637 adminpages/membershiplevels.php:640
|
3432 |
+
#: adminpages/membershiplevels.php:642 adminpages/membershiplevels.php:646
|
3433 |
msgid "Save Level"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: adminpages/membershiplevels.php:647 adminpages/orders.php:949
|
3437 |
#: includes/profile.php:546 includes/profile.php:670 pages/billing.php:414
|
3438 |
#: pages/cancel.php:86 shortcodes/pmpro_account.php:106
|
3439 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
|
3443 |
#: adminpages/membershiplevels.php:611 adminpages/membershiplevels.php:628
|
3444 |
#: adminpages/membershiplevels.php:633 adminpages/membershiplevels.php:638
|
3445 |
#: adminpages/membershiplevels.php:641 adminpages/membershiplevels.php:643
|
3446 |
+
#: adminpages/membershiplevels.php:647 adminpages/orders.php:511
|
3447 |
+
#: adminpages/orders.php:561 adminpages/orders.php:633
|
3448 |
+
#: adminpages/orders.php:662 adminpages/orders.php:765
|
3449 |
+
#: adminpages/orders.php:796 adminpages/orders.php:807
|
3450 |
+
#: adminpages/orders.php:894 adminpages/orders.php:930
|
3451 |
+
#: adminpages/orders.php:934 adminpages/orders.php:939
|
3452 |
+
#: adminpages/orders.php:940 adminpages/orders.php:949
|
3453 |
+
#: adminpages/orders.php:950 includes/profile.php:529 includes/profile.php:538
|
3454 |
+
#: includes/profile.php:546 includes/profile.php:547 includes/profile.php:567
|
3455 |
+
#: includes/profile.php:670 pages/account.php:44 pages/billing.php:295
|
3456 |
+
#: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
|
3457 |
+
#: pages/billing.php:342 pages/billing.php:344 pages/billing.php:348
|
3458 |
+
#: pages/billing.php:363 pages/billing.php:364 pages/billing.php:365
|
3459 |
+
#: pages/billing.php:371 pages/billing.php:372 pages/billing.php:380
|
3460 |
+
#: pages/billing.php:390 pages/billing.php:392 pages/billing.php:397
|
3461 |
+
#: pages/billing.php:401 pages/billing.php:406 pages/billing.php:414
|
3462 |
+
#: pages/cancel.php:71 pages/cancel.php:83 pages/cancel.php:84
|
3463 |
+
#: pages/cancel.php:86 shortcodes/pmpro_account.php:70
|
3464 |
#: shortcodes/pmpro_account.php:72 shortcodes/pmpro_account.php:73
|
3465 |
#: shortcodes/pmpro_account.php:106
|
3466 |
msgid "Cancel"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
#: adminpages/membershiplevels.php:750 adminpages/membershiplevels.php:791
|
3470 |
+
#: adminpages/membershiplevels.php:746 adminpages/membershiplevels.php:750
|
3471 |
+
#: adminpages/membershiplevels.php:787 adminpages/membershiplevels.php:791
|
3472 |
msgid "No Membership Levels Found"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
#: adminpages/membershiplevels.php:752 adminpages/membershiplevels.php:748
|
3476 |
+
#: adminpages/membershiplevels.php:752
|
3477 |
msgid "Video: Membership Levels"
|
3478 |
msgstr ""
|
3479 |
|
3497 |
#: adminpages/membershiplevels.php:744 adminpages/membershiplevels.php:747
|
3498 |
#: adminpages/membershiplevels.php:749 adminpages/membershiplevels.php:752
|
3499 |
#: adminpages/membershiplevels.php:754 adminpages/membershiplevels.php:755
|
3500 |
+
#: adminpages/membershiplevels.php:757 adminpages/membershiplevels.php:758
|
3501 |
+
#: adminpages/membershiplevels.php:761
|
3502 |
msgid "Search Levels"
|
3503 |
msgstr ""
|
3504 |
|
3512 |
#: adminpages/membershiplevels.php:702 adminpages/membershiplevels.php:728
|
3513 |
#: adminpages/membershiplevels.php:745 adminpages/membershiplevels.php:750
|
3514 |
#: adminpages/membershiplevels.php:755 adminpages/membershiplevels.php:761
|
3515 |
+
#: adminpages/membershiplevels.php:765
|
3516 |
msgid "Add New Level"
|
3517 |
msgstr ""
|
3518 |
|
3524 |
#: adminpages/membershiplevels.php:731 adminpages/membershiplevels.php:748
|
3525 |
#: adminpages/membershiplevels.php:753 adminpages/membershiplevels.php:758
|
3526 |
#: adminpages/membershiplevels.php:763 adminpages/membershiplevels.php:765
|
3527 |
+
#: adminpages/membershiplevels.php:769
|
3528 |
msgid "Drag and drop membership levels to reorder them on the Levels page."
|
3529 |
msgstr ""
|
3530 |
|
3541 |
#: adminpages/membershiplevels.php:744 adminpages/membershiplevels.php:761
|
3542 |
#: adminpages/membershiplevels.php:766 adminpages/membershiplevels.php:771
|
3543 |
#: adminpages/membershiplevels.php:776 adminpages/membershiplevels.php:778
|
3544 |
+
#: adminpages/membershiplevels.php:782 pages/account.php:20
|
3545 |
+
#: pages/billing.php:88 pages/cancel.php:53 pages/cancel.php:61
|
3546 |
+
#: pages/cancel.php:62 pages/confirmation.php:80 pages/confirmation.php:81
|
3547 |
+
#: pages/confirmation.php:82 pages/confirmation.php:83
|
3548 |
+
#: pages/confirmation.php:84 pages/confirmation.php:87
|
3549 |
#: pages/confirmation.php:89 pages/invoice.php:62 pages/invoice.php:63
|
3550 |
#: pages/invoice.php:64 pages/invoice.php:68 pages/invoice.php:70
|
3551 |
+
#: pages/invoice.php:72 pages/invoice.php:73 pages/invoice.php:77
|
3552 |
+
#: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:45
|
3553 |
+
#: shortcodes/pmpro_account.php:46
|
3554 |
msgid "Expiration"
|
3555 |
msgstr ""
|
3556 |
|
3565 |
#: adminpages/membershiplevels.php:745 adminpages/membershiplevels.php:762
|
3566 |
#: adminpages/membershiplevels.php:767 adminpages/membershiplevels.php:772
|
3567 |
#: adminpages/membershiplevels.php:777 adminpages/membershiplevels.php:779
|
3568 |
+
#: adminpages/membershiplevels.php:783
|
3569 |
msgid "Allow Signups"
|
3570 |
msgstr ""
|
3571 |
|
3580 |
#: adminpages/membershiplevels.php:762 adminpages/membershiplevels.php:779
|
3581 |
#: adminpages/membershiplevels.php:784 adminpages/membershiplevels.php:789
|
3582 |
#: adminpages/membershiplevels.php:794 adminpages/membershiplevels.php:801
|
3583 |
+
#: adminpages/membershiplevels.php:803 adminpages/membershiplevels.php:807
|
3584 |
#, php-format
|
3585 |
msgid ""
|
3586 |
"Are you sure you want to delete membership level %s? All subscriptions will "
|
3598 |
#: adminpages/membershiplevels.php:767 adminpages/membershiplevels.php:784
|
3599 |
#: adminpages/membershiplevels.php:789 adminpages/membershiplevels.php:794
|
3600 |
#: adminpages/membershiplevels.php:799 adminpages/membershiplevels.php:806
|
3601 |
+
#: adminpages/membershiplevels.php:808 adminpages/membershiplevels.php:812
|
3602 |
msgid "FREE"
|
3603 |
msgstr ""
|
3604 |
|
3613 |
#: adminpages/membershiplevels.php:776 adminpages/membershiplevels.php:793
|
3614 |
#: adminpages/membershiplevels.php:798 adminpages/membershiplevels.php:803
|
3615 |
#: adminpages/membershiplevels.php:808 adminpages/membershiplevels.php:815
|
3616 |
+
#: adminpages/membershiplevels.php:817 adminpages/membershiplevels.php:821
|
3617 |
msgid "After"
|
3618 |
msgstr ""
|
3619 |
|
3626 |
msgid "Members List"
|
3627 |
msgstr ""
|
3628 |
|
3629 |
+
#: adminpages/memberslist.php:21 adminpages/orders.php:981
|
3630 |
#: adminpages/memberslist.php:21 adminpages/memberslist.php:26
|
3631 |
#: adminpages/orders.php:522 adminpages/orders.php:591
|
3632 |
#: adminpages/orders.php:698 adminpages/orders.php:727
|
3668 |
msgid "Error deleting order."
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: adminpages/orders.php:310 adminpages/orders.php:130
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3672 |
#: adminpages/orders.php:180 adminpages/orders.php:281
|
3673 |
#: adminpages/orders.php:291 adminpages/orders.php:292
|
3674 |
#: adminpages/orders.php:302 adminpages/orders.php:303
|
3678 |
msgid "Error saving order."
|
3679 |
msgstr ""
|
3680 |
|
3681 |
+
#: adminpages/orders.php:381 classes/class-pmpro-admin-activity-email.php:219
|
3682 |
+
#: classes/class.memberorder.php:953 adminpages/orders.php:195
|
3683 |
#: adminpages/orders.php:245 adminpages/orders.php:317
|
3684 |
#: adminpages/orders.php:321 adminpages/orders.php:346
|
3685 |
#: adminpages/orders.php:352 adminpages/orders.php:362
|
3690 |
#: classes/class.memberorder.php:763 classes/class.memberorder.php:814
|
3691 |
#: classes/class.memberorder.php:859 classes/class.memberorder.php:860
|
3692 |
#: classes/class.memberorder.php:872 classes/class.memberorder.php:945
|
3693 |
+
#: classes/class.memberorder.php:947 classes/class.memberorder.php:949
|
3694 |
msgid "Order"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
+
#: adminpages/orders.php:382 adminpages/orders.php:1364
|
3698 |
#: pages/confirmation.php:49 pages/invoice.php:22 adminpages/orders.php:370
|
3699 |
#: adminpages/orders.php:371 adminpages/orders.php:375
|
3700 |
#: adminpages/orders.php:383 adminpages/orders.php:1341
|
3706 |
msgid "Print"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
+
#: adminpages/orders.php:385 adminpages/orders.php:197
|
3710 |
#: adminpages/orders.php:247 adminpages/orders.php:319
|
3711 |
#: adminpages/orders.php:323 adminpages/orders.php:348
|
3712 |
#: adminpages/orders.php:354 adminpages/orders.php:364
|
3715 |
msgid "New Order"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: adminpages/orders.php:431 adminpages/orders.php:220
|
3719 |
#: adminpages/orders.php:270 adminpages/orders.php:342
|
3720 |
#: adminpages/orders.php:359 adminpages/orders.php:371
|
3721 |
#: adminpages/orders.php:390 adminpages/orders.php:401
|
3726 |
msgid "Randomly generated for you."
|
3727 |
msgstr ""
|
3728 |
|
3729 |
+
#: adminpages/orders.php:436 adminpages/orders.php:225
|
3730 |
#: adminpages/orders.php:275 adminpages/orders.php:347
|
3731 |
#: adminpages/orders.php:364 adminpages/orders.php:376
|
3732 |
#: adminpages/orders.php:395 adminpages/orders.php:406
|
3737 |
msgid "User ID"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: adminpages/orders.php:449 adminpages/orders.php:234
|
3741 |
#: adminpages/orders.php:284 adminpages/orders.php:356
|
3742 |
#: adminpages/orders.php:376 adminpages/orders.php:385
|
3743 |
#: adminpages/orders.php:407 adminpages/orders.php:418
|
3747 |
msgid "Membership Level ID"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: adminpages/orders.php:462 includes/privacy.php:245 adminpages/orders.php:243
|
3751 |
#: adminpages/orders.php:293 adminpages/orders.php:365
|
3752 |
#: adminpages/orders.php:389 adminpages/orders.php:394
|
3753 |
#: adminpages/orders.php:420 adminpages/orders.php:431
|
3757 |
msgid "Billing Name"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
+
#: adminpages/orders.php:476 includes/privacy.php:249 adminpages/orders.php:251
|
3761 |
#: adminpages/orders.php:301 adminpages/orders.php:373
|
3762 |
#: adminpages/orders.php:401 adminpages/orders.php:402
|
3763 |
#: adminpages/orders.php:432 adminpages/orders.php:443
|
3767 |
msgid "Billing Street"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: adminpages/orders.php:489 includes/privacy.php:253 includes/privacy.php:358
|
3771 |
#: adminpages/orders.php:258 adminpages/orders.php:308
|
3772 |
#: adminpages/orders.php:380 adminpages/orders.php:409
|
3773 |
#: adminpages/orders.php:412 adminpages/orders.php:443
|
3778 |
msgid "Billing City"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: adminpages/orders.php:502 includes/privacy.php:257 adminpages/orders.php:265
|
3782 |
#: adminpages/orders.php:315 adminpages/orders.php:387
|
3783 |
#: adminpages/orders.php:416 adminpages/orders.php:423
|
3784 |
#: adminpages/orders.php:454 adminpages/orders.php:465
|
3788 |
msgid "Billing State"
|
3789 |
msgstr ""
|
3790 |
|
3791 |
+
#: adminpages/orders.php:515 includes/privacy.php:261 includes/privacy.php:360
|
3792 |
#: adminpages/orders.php:272 adminpages/orders.php:322
|
3793 |
#: adminpages/orders.php:394 adminpages/orders.php:423
|
3794 |
#: adminpages/orders.php:434 adminpages/orders.php:465
|
3799 |
msgid "Billing Postal Code"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: adminpages/orders.php:528 includes/privacy.php:265 includes/privacy.php:362
|
3803 |
#: adminpages/orders.php:279 adminpages/orders.php:329
|
3804 |
#: adminpages/orders.php:401 adminpages/orders.php:430
|
3805 |
#: adminpages/orders.php:445 adminpages/orders.php:476
|
3810 |
msgid "Billing Country"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
+
#: adminpages/orders.php:542 includes/privacy.php:269 adminpages/orders.php:287
|
3814 |
#: adminpages/orders.php:337 adminpages/orders.php:409
|
3815 |
#: adminpages/orders.php:438 adminpages/orders.php:457
|
3816 |
#: adminpages/orders.php:488 adminpages/orders.php:499
|
3820 |
msgid "Billing Phone"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: adminpages/orders.php:572 adminpages/orders.php:1331
|
3824 |
#: classes/class.pmproemail.php:313 classes/class.pmproemail.php:322
|
3825 |
#: classes/class.pmproemail.php:331 classes/class.pmproemail.php:413
|
3826 |
+
#: classes/class.pmproemail.php:422 classes/class.pmproemail.php:743
|
3827 |
+
#: classes/class.pmproemail.php:745
|
3828 |
#: classes/gateways/class.pmprogateway_braintree.php:509
|
3829 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1099 pages/checkout.php:88
|
3830 |
+
#: pages/checkout.php:94 pages/checkout.php:419 pages/confirmation.php:58
|
3831 |
#: pages/invoice.php:40 adminpages/orders.php:560 adminpages/orders.php:564
|
3832 |
#: adminpages/orders.php:565 adminpages/orders.php:573
|
3833 |
#: adminpages/orders.php:575 adminpages/orders.php:1307
|
3911 |
#: pages/checkout.php:78 pages/checkout.php:81 pages/checkout.php:83
|
3912 |
#: pages/checkout.php:85 pages/checkout.php:86 pages/checkout.php:89
|
3913 |
#: pages/checkout.php:92 pages/checkout.php:93 pages/checkout.php:96
|
3914 |
+
#: pages/checkout.php:417 pages/checkout.php:426 pages/checkout.php:429
|
3915 |
+
#: pages/checkout.php:498 pages/checkout.php:506 pages/checkout.php:549
|
3916 |
+
#: pages/checkout.php:565 pages/checkout.php:566 pages/checkout.php:573
|
3917 |
+
#: pages/checkout.php:594 pages/checkout.php:603 pages/checkout.php:612
|
3918 |
+
#: pages/checkout.php:616 pages/checkout.php:617 pages/checkout.php:619
|
3919 |
+
#: pages/checkout.php:622 pages/confirmation.php:51 pages/confirmation.php:52
|
3920 |
#: pages/confirmation.php:57 pages/confirmation.php:58 pages/invoice.php:32
|
3921 |
#: pages/invoice.php:33 pages/invoice.php:34 pages/invoice.php:40
|
3922 |
msgid "Discount Code"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
+
#: adminpages/orders.php:583 classes/class.pmproemail.php:868
|
3926 |
+
#: classes/class.pmproemail.php:918 includes/init.php:197
|
3927 |
#: includes/profile.php:34 adminpages/orders.php:571 adminpages/orders.php:575
|
3928 |
#: adminpages/orders.php:576 adminpages/orders.php:578
|
3929 |
#: adminpages/orders.php:584 adminpages/orders.php:586
|
3941 |
msgid "None"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: adminpages/orders.php:594 includes/privacy.php:273 adminpages/orders.php:296
|
3945 |
#: adminpages/orders.php:346 adminpages/orders.php:418
|
3946 |
#: adminpages/orders.php:447 adminpages/orders.php:470
|
3947 |
#: adminpages/orders.php:501 adminpages/orders.php:512
|
3952 |
msgid "Sub Total"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: adminpages/orders.php:607 includes/functions.php:2823
|
3956 |
+
#: includes/privacy.php:277 adminpages/orders.php:304 adminpages/orders.php:354
|
3957 |
+
#: adminpages/orders.php:426 adminpages/orders.php:455
|
3958 |
+
#: adminpages/orders.php:481 adminpages/orders.php:512
|
3959 |
+
#: adminpages/orders.php:523 adminpages/orders.php:555
|
3960 |
+
#: adminpages/orders.php:595 adminpages/orders.php:599
|
3961 |
+
#: adminpages/orders.php:600 adminpages/orders.php:608
|
3962 |
+
#: adminpages/orders.php:610 adminpages/templates/orders-email.php:60
|
|
|
|
|
3963 |
#: adminpages/templates/orders-print.php:89 includes/privacy.php:277
|
3964 |
#: pages/confirmation.php:91 pages/confirmation.php:92
|
3965 |
+
#: pages/confirmation.php:94 pages/confirmation.php:95
|
3966 |
+
#: pages/confirmation.php:99 pages/invoice.php:73 pages/invoice.php:74
|
3967 |
+
#: pages/invoice.php:75 pages/invoice.php:76 pages/invoice.php:78
|
3968 |
+
#: pages/invoice.php:80 pages/invoice.php:84 pages/invoice.php:85
|
3969 |
+
#: pages/invoice.php:89
|
3970 |
msgid "Tax"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: adminpages/orders.php:624 includes/privacy.php:281 adminpages/orders.php:312
|
3974 |
#: adminpages/orders.php:362 adminpages/orders.php:434
|
3975 |
#: adminpages/orders.php:463 adminpages/orders.php:492
|
3976 |
#: adminpages/orders.php:523 adminpages/orders.php:534
|
3980 |
msgid "Coupon Amount"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: adminpages/orders.php:656 includes/privacy.php:289 adminpages/orders.php:330
|
3984 |
#: adminpages/orders.php:380 adminpages/orders.php:452
|
3985 |
#: adminpages/orders.php:481 adminpages/orders.php:518
|
3986 |
#: adminpages/orders.php:549 adminpages/orders.php:560
|
3991 |
msgid "Payment Type"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: adminpages/orders.php:667 adminpages/orders.php:335
|
3995 |
#: adminpages/orders.php:385 adminpages/orders.php:457
|
3996 |
#: adminpages/orders.php:486 adminpages/orders.php:528
|
3997 |
#: adminpages/orders.php:559 adminpages/orders.php:570
|
4002 |
msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: adminpages/orders.php:671
|
4006 |
#: classes/gateways/class.pmprogateway_braintree.php:466
|
4007 |
#: classes/gateways/class.pmprogateway_stripe.php:1069 includes/privacy.php:293
|
4008 |
+
#: pages/billing.php:321 pages/checkout.php:367 adminpages/orders.php:339
|
4009 |
#: adminpages/orders.php:389 adminpages/orders.php:461
|
4010 |
#: adminpages/orders.php:490 adminpages/orders.php:532
|
4011 |
#: adminpages/orders.php:563 adminpages/orders.php:574
|
4059 |
#: pages/billing.php:268 pages/billing.php:271 pages/billing.php:274
|
4060 |
#: pages/billing.php:275 pages/billing.php:279 pages/billing.php:280
|
4061 |
#: pages/billing.php:288 pages/billing.php:294 pages/billing.php:297
|
4062 |
+
#: pages/billing.php:321 pages/checkout.php:365 pages/checkout.php:374
|
4063 |
+
#: pages/checkout.php:377 pages/checkout.php:423 pages/checkout.php:431
|
4064 |
+
#: pages/checkout.php:493 pages/checkout.php:507 pages/checkout.php:510
|
4065 |
+
#: pages/checkout.php:516 pages/checkout.php:517 pages/checkout.php:525
|
4066 |
+
#: pages/checkout.php:527 pages/checkout.php:534 pages/checkout.php:537
|
4067 |
msgid "Card Type"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: adminpages/orders.php:681 adminpages/orders.php:344
|
4071 |
#: adminpages/orders.php:394 adminpages/orders.php:466
|
4072 |
#: adminpages/orders.php:495 adminpages/orders.php:540
|
4073 |
#: adminpages/orders.php:571 adminpages/orders.php:582
|
4078 |
msgid "e.g. Visa, MasterCard, AMEX, etc"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: adminpages/orders.php:685
|
4082 |
#: classes/gateways/class.pmprogateway_twocheckout.php:138
|
4083 |
#: includes/privacy.php:297 adminpages/orders.php:348 adminpages/orders.php:398
|
4084 |
#: adminpages/orders.php:470 adminpages/orders.php:499
|
4096 |
msgid "Account Number"
|
4097 |
msgstr ""
|
4098 |
|
4099 |
+
#: adminpages/orders.php:696 adminpages/orders.php:353
|
4100 |
#: adminpages/orders.php:403 adminpages/orders.php:475
|
4101 |
#: adminpages/orders.php:504 adminpages/orders.php:553
|
4102 |
#: adminpages/orders.php:584 adminpages/orders.php:595
|
4107 |
msgid "Obscure all but last 4 digits."
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: adminpages/orders.php:705 adminpages/orders.php:716 includes/privacy.php:301
|
4111 |
#: adminpages/orders.php:358 adminpages/orders.php:408
|
4112 |
#: adminpages/orders.php:480 adminpages/orders.php:509
|
4113 |
#: adminpages/orders.php:561 adminpages/orders.php:592
|
4119 |
msgid "Expiration Month"
|
4120 |
msgstr ""
|
4121 |
|
4122 |
+
#: adminpages/orders.php:724 includes/privacy.php:305 adminpages/orders.php:365
|
4123 |
#: adminpages/orders.php:415 adminpages/orders.php:487
|
4124 |
#: adminpages/orders.php:516 adminpages/orders.php:569
|
4125 |
#: adminpages/orders.php:600 adminpages/orders.php:611
|
4130 |
msgid "Expiration Year"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
+
#: adminpages/orders.php:756 adminpages/orders.php:1327
|
4134 |
+
#: classes/class.memberorder.php:954 includes/privacy.php:313
|
4135 |
#: adminpages/orders.php:394 adminpages/orders.php:444
|
4136 |
#: adminpages/orders.php:516 adminpages/orders.php:545
|
4137 |
#: adminpages/orders.php:604 adminpages/orders.php:612
|
4151 |
#: classes/class.memberorder.php:815 classes/class.memberorder.php:860
|
4152 |
#: classes/class.memberorder.php:861 classes/class.memberorder.php:873
|
4153 |
#: classes/class.memberorder.php:946 classes/class.memberorder.php:948
|
4154 |
+
#: classes/class.memberorder.php:950 includes/privacy.php:313
|
4155 |
msgid "Gateway"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: adminpages/orders.php:779 adminpages/paymentsettings.php:148
|
4159 |
#: includes/privacy.php:317 adminpages/orders.php:411 adminpages/orders.php:461
|
4160 |
#: adminpages/orders.php:462 adminpages/orders.php:534
|
4161 |
#: adminpages/orders.php:563 adminpages/orders.php:633
|
4172 |
msgid "Gateway Environment"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
+
#: adminpages/orders.php:787 adminpages/paymentsettings.php:152
|
4176 |
#: adminpages/orders.php:415 adminpages/orders.php:465
|
4177 |
#: adminpages/orders.php:466 adminpages/orders.php:538
|
4178 |
#: adminpages/orders.php:567 adminpages/orders.php:640
|
4188 |
msgid "Sandbox/Testing"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
+
#: adminpages/orders.php:788 adminpages/paymentsettings.php:153
|
4192 |
#: adminpages/orders.php:416 adminpages/orders.php:466
|
4193 |
#: adminpages/orders.php:467 adminpages/orders.php:539
|
4194 |
#: adminpages/orders.php:568 adminpages/orders.php:642
|
4204 |
msgid "Live/Production"
|
4205 |
msgstr ""
|
4206 |
|
4207 |
+
#: adminpages/orders.php:796 includes/privacy.php:321 adminpages/orders.php:423
|
4208 |
#: adminpages/orders.php:473 adminpages/orders.php:474
|
4209 |
#: adminpages/orders.php:546 adminpages/orders.php:575
|
4210 |
#: adminpages/orders.php:650 adminpages/orders.php:681
|
4216 |
msgid "Payment Transaction ID"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
+
#: adminpages/orders.php:806 adminpages/orders.php:428
|
4220 |
#: adminpages/orders.php:478 adminpages/orders.php:479
|
4221 |
#: adminpages/orders.php:551 adminpages/orders.php:580
|
4222 |
#: adminpages/orders.php:659 adminpages/orders.php:690
|
4227 |
msgid "Generated by the gateway. Useful to cross reference orders."
|
4228 |
msgstr ""
|
4229 |
|
4230 |
+
#: adminpages/orders.php:811 classes/class.memberorder.php:955
|
4231 |
#: includes/privacy.php:325 adminpages/orders.php:432 adminpages/orders.php:482
|
4232 |
#: adminpages/orders.php:483 adminpages/orders.php:555
|
4233 |
#: adminpages/orders.php:584 adminpages/orders.php:664
|
4240 |
#: classes/class.memberorder.php:816 classes/class.memberorder.php:861
|
4241 |
#: classes/class.memberorder.php:862 classes/class.memberorder.php:874
|
4242 |
#: classes/class.memberorder.php:947 classes/class.memberorder.php:949
|
4243 |
+
#: classes/class.memberorder.php:951 includes/privacy.php:325
|
4244 |
msgid "Subscription Transaction ID"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
+
#: adminpages/orders.php:822 adminpages/orders.php:437
|
4248 |
#: adminpages/orders.php:487 adminpages/orders.php:488
|
4249 |
#: adminpages/orders.php:560 adminpages/orders.php:589
|
4250 |
#: adminpages/orders.php:674 adminpages/orders.php:705
|
4255 |
msgid "Generated by the gateway. Useful to cross reference subscriptions."
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: adminpages/orders.php:860 adminpages/orders.php:861
|
4259 |
msgid "at"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: adminpages/orders.php:872 adminpages/orders.php:477
|
4263 |
#: adminpages/orders.php:527 adminpages/orders.php:599
|
4264 |
#: adminpages/orders.php:628 adminpages/orders.php:716
|
4265 |
#: adminpages/orders.php:747 adminpages/orders.php:758
|
4270 |
msgid "Affiliate ID"
|
4271 |
msgstr ""
|
4272 |
|
4273 |
+
#: adminpages/orders.php:885 adminpages/orders.php:485
|
4274 |
#: adminpages/orders.php:535 adminpages/orders.php:607
|
4275 |
#: adminpages/orders.php:636 adminpages/orders.php:728
|
4276 |
#: adminpages/orders.php:759 adminpages/orders.php:770
|
4281 |
msgid "Affiliate SubID"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: adminpages/orders.php:906 adminpages/orders.php:848
|
4285 |
#: adminpages/orders.php:884 adminpages/orders.php:888
|
4286 |
#: adminpages/orders.php:893 adminpages/orders.php:894
|
4287 |
#: adminpages/orders.php:903 adminpages/orders.php:907
|
4288 |
msgid "TOS Consent"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
+
#: adminpages/orders.php:921 adminpages/orders.php:495
|
4292 |
#: adminpages/orders.php:545 adminpages/orders.php:617
|
4293 |
#: adminpages/orders.php:646 adminpages/orders.php:742
|
4294 |
#: adminpages/orders.php:773 adminpages/orders.php:784
|
4299 |
msgid "Notes"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: adminpages/orders.php:948 adminpages/orders.php:510
|
4303 |
#: adminpages/orders.php:560 adminpages/orders.php:632
|
4304 |
#: adminpages/orders.php:661 adminpages/orders.php:764
|
4305 |
#: adminpages/orders.php:795 adminpages/orders.php:806
|
4310 |
msgid "Save Order"
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: adminpages/orders.php:960 adminpages/orders.php:521
|
4314 |
#: adminpages/orders.php:571 adminpages/orders.php:678
|
4315 |
#: adminpages/orders.php:707 adminpages/orders.php:812
|
4316 |
#: adminpages/orders.php:843 adminpages/orders.php:854
|
4320 |
msgid "Add New Order"
|
4321 |
msgstr ""
|
4322 |
|
4323 |
+
#: adminpages/orders.php:1001 adminpages/reports/login.php:103
|
4324 |
+
#: adminpages/reports/memberships.php:331 adminpages/reports/sales.php:293
|
4325 |
#: classes/class-pmpro-members-list-table.php:623 adminpages/memberslist.php:30
|
4326 |
#: adminpages/orders.php:603 adminpages/orders.php:710
|
4327 |
#: adminpages/orders.php:739 adminpages/orders.php:848
|
4350 |
msgid "Show"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: adminpages/orders.php:1005 adminpages/orders.php:606
|
4354 |
#: adminpages/orders.php:713 adminpages/orders.php:742
|
4355 |
#: adminpages/orders.php:852 adminpages/orders.php:883
|
4356 |
#: adminpages/orders.php:894 adminpages/orders.php:985
|
4360 |
msgid "Within a Date Range"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
+
#: adminpages/orders.php:1007 adminpages/orders.php:607
|
4364 |
#: adminpages/orders.php:714 adminpages/orders.php:743
|
4365 |
#: adminpages/orders.php:854 adminpages/orders.php:885
|
4366 |
#: adminpages/orders.php:896 adminpages/orders.php:987
|
4370 |
msgid "Predefined Date Range"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
+
#: adminpages/orders.php:1009 adminpages/orders.php:608
|
4374 |
#: adminpages/orders.php:715 adminpages/orders.php:744
|
4375 |
#: adminpages/orders.php:856 adminpages/orders.php:887
|
4376 |
#: adminpages/orders.php:898 adminpages/orders.php:989
|
4380 |
msgid "Within a Level"
|
4381 |
msgstr ""
|
4382 |
|
4383 |
+
#: adminpages/orders.php:1011 adminpages/orders.php:992
|
4384 |
#: adminpages/orders.php:997 adminpages/orders.php:1002
|
4385 |
#: adminpages/orders.php:1012 adminpages/orders.php:1047
|
4386 |
msgid "With a Discount Code"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: adminpages/orders.php:1013 adminpages/orders.php:609
|
4390 |
#: adminpages/orders.php:716 adminpages/orders.php:745
|
4391 |
#: adminpages/orders.php:858 adminpages/orders.php:889
|
4392 |
#: adminpages/orders.php:900 adminpages/orders.php:991
|
4396 |
msgid "Within a Status"
|
4397 |
msgstr ""
|
4398 |
|
4399 |
+
#: adminpages/orders.php:1015 adminpages/orders.php:996
|
4400 |
#: adminpages/orders.php:1001 adminpages/orders.php:1006
|
4401 |
#: adminpages/orders.php:1016 adminpages/orders.php:1051
|
4402 |
msgid "Only Paid Orders"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
+
#: adminpages/orders.php:1017 adminpages/orders.php:998
|
4406 |
#: adminpages/orders.php:1003 adminpages/orders.php:1008
|
4407 |
#: adminpages/orders.php:1018 adminpages/orders.php:1053
|
4408 |
msgid "Only Free Orders"
|
4409 |
msgstr ""
|
4410 |
|
4411 |
+
#: adminpages/orders.php:1025 adminpages/orders.php:612
|
4412 |
#: adminpages/orders.php:719 adminpages/orders.php:748
|
4413 |
#: adminpages/orders.php:861 adminpages/orders.php:892
|
4414 |
#: adminpages/orders.php:903 adminpages/orders.php:994
|
4418 |
msgid "From"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
+
#: adminpages/orders.php:1040 adminpages/orders.php:624
|
4422 |
#: adminpages/orders.php:731 adminpages/orders.php:760
|
4423 |
#: adminpages/orders.php:876 adminpages/orders.php:907
|
4424 |
#: adminpages/orders.php:918 adminpages/orders.php:1009
|
4428 |
msgid "To"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
+
#: adminpages/orders.php:1053 adminpages/orders.php:636
|
4432 |
#: adminpages/orders.php:743 adminpages/orders.php:772
|
4433 |
#: adminpages/orders.php:889 adminpages/orders.php:920
|
4434 |
#: adminpages/orders.php:931 adminpages/orders.php:1022
|
4438 |
msgid "filter by "
|
4439 |
msgstr ""
|
4440 |
|
4441 |
+
#: adminpages/orders.php:1058 adminpages/reports/login.php:50
|
4442 |
+
#: adminpages/reports/memberships.php:50 adminpages/reports/sales.php:51
|
4443 |
#: adminpages/orders.php:1059 adminpages/reports/login.php:44
|
4444 |
#: adminpages/reports/login.php:50 adminpages/reports/memberships.php:47
|
4445 |
#: adminpages/reports/memberships.php:48 adminpages/reports/memberships.php:58
|
4450 |
msgid "This Month"
|
4451 |
msgstr ""
|
4452 |
|
4453 |
+
#: adminpages/orders.php:1060 adminpages/orders.php:1061
|
4454 |
msgid "Last Month"
|
4455 |
msgstr ""
|
4456 |
|
4457 |
+
#: adminpages/orders.php:1062 adminpages/reports/memberships.php:51
|
4458 |
#: adminpages/reports/sales.php:52 adminpages/orders.php:1063
|
4459 |
#: adminpages/reports/memberships.php:48 adminpages/reports/memberships.php:53
|
4460 |
#: adminpages/reports/memberships.php:54 adminpages/reports/memberships.php:69
|
4464 |
msgid "This Year"
|
4465 |
msgstr ""
|
4466 |
|
4467 |
+
#: adminpages/orders.php:1064 adminpages/orders.php:1065
|
4468 |
msgid "Last Year"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
+
#: adminpages/orders.php:1103 adminpages/orders.php:674
|
4472 |
#: adminpages/orders.php:780 adminpages/orders.php:809
|
4473 |
#: adminpages/orders.php:932 adminpages/orders.php:963
|
4474 |
#: adminpages/orders.php:969 adminpages/orders.php:1060
|
4478 |
msgid "Filter"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
+
#: adminpages/orders.php:1237 adminpages/orders.php:1240
|
4482 |
#: adminpages/orders.php:535 adminpages/orders.php:538
|
4483 |
#: adminpages/orders.php:777 adminpages/orders.php:780
|
4484 |
#: adminpages/orders.php:883 adminpages/orders.php:886
|
4496 |
msgid "Search Orders"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
+
#: adminpages/orders.php:1313 adminpages/orders.php:590
|
4500 |
#: adminpages/orders.php:893 adminpages/orders.php:903
|
4501 |
#: adminpages/orders.php:930 adminpages/orders.php:959
|
4502 |
#: adminpages/orders.php:1096 adminpages/orders.php:1127
|
4508 |
msgid "%d orders found."
|
4509 |
msgstr ""
|
4510 |
|
4511 |
+
#: adminpages/orders.php:1326 adminpages/orders.php:1448
|
4512 |
#: adminpages/orders.php:603 adminpages/orders.php:651
|
4513 |
#: adminpages/orders.php:906 adminpages/orders.php:916
|
4514 |
#: adminpages/orders.php:943 adminpages/orders.php:954
|
4527 |
msgid "Payment"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: adminpages/orders.php:1328 adminpages/orders.php:605
|
4531 |
#: adminpages/orders.php:908 adminpages/orders.php:918
|
4532 |
#: adminpages/orders.php:945 adminpages/orders.php:974
|
4533 |
#: adminpages/orders.php:1111 adminpages/orders.php:1142
|
4538 |
msgid "Transaction IDs"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
+
#: adminpages/orders.php:1359 adminpages/orders.php:664
|
4542 |
#: adminpages/orders.php:967 adminpages/orders.php:985
|
4543 |
#: adminpages/orders.php:995 adminpages/orders.php:998
|
4544 |
#: adminpages/orders.php:1027 adminpages/orders.php:1056
|
4555 |
"want to delete order %s?"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: adminpages/orders.php:1457 adminpages/orders.php:653
|
4559 |
#: adminpages/orders.php:956 adminpages/orders.php:974
|
4560 |
#: adminpages/orders.php:984 adminpages/orders.php:1013
|
4561 |
#: adminpages/orders.php:1042 adminpages/orders.php:1192
|
4567 |
msgid "Subscription"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
+
#: adminpages/orders.php:1474 adminpages/discountcodes.php:614
|
4571 |
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
4572 |
#: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
|
4573 |
#: adminpages/discountcodes.php:650 adminpages/discountcodes.php:655
|
4639 |
msgid "Membership Invoice"
|
4640 |
msgstr ""
|
4641 |
|
4642 |
+
#: adminpages/pagesettings.php:99 includes/login.php:475 includes/login.php:711
|
4643 |
+
#: includes/menus.php:66 includes/menus.php:70 includes/menus.php:160
|
4644 |
#: adminpages/pagesettings.php:99 includes/login.php:707 includes/menus.php:66
|
4645 |
+
#: includes/menus.php:70 includes/menus.php:160
|
|
|
|
|
4646 |
msgid "Log In"
|
4647 |
msgstr ""
|
4648 |
|
5293 |
msgid "Logins"
|
5294 |
msgstr ""
|
5295 |
|
5296 |
+
#: adminpages/reports/login.php:38 adminpages/reports/memberships.php:49
|
5297 |
#: adminpages/reports/sales.php:50 adminpages/reports/login.php:38
|
5298 |
#: adminpages/reports/memberships.php:43 adminpages/reports/memberships.php:46
|
5299 |
#: adminpages/reports/memberships.php:62 adminpages/reports/memberships.php:67
|
5311 |
msgid "Year to Date"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
+
#: adminpages/reports/login.php:62 adminpages/reports/memberships.php:52
|
5315 |
#: adminpages/reports/sales.php:53 adminpages/reports/login.php:50
|
5316 |
#: adminpages/reports/login.php:62 adminpages/reports/memberships.php:49
|
5317 |
#: adminpages/reports/memberships.php:50 adminpages/reports/memberships.php:58
|
5322 |
msgid "All Time"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
+
#: adminpages/reports/login.php:71 adminpages/reports/memberships.php:96
|
5326 |
#: adminpages/reports/sales.php:99 adminpages/reports.php:26
|
5327 |
#: adminpages/reports.php:37 adminpages/reports.php:40
|
5328 |
#: adminpages/reports.php:41 adminpages/reports/login.php:71
|
5348 |
msgid "All Users"
|
5349 |
msgstr ""
|
5350 |
|
5351 |
+
#: adminpages/reports/login.php:105 adminpages/reports/memberships.php:355
|
5352 |
+
#: adminpages/reports/sales.php:316
|
5353 |
#: classes/class-pmpro-members-list-table.php:625
|
5354 |
#: classes/class.pmproemail.php:182 classes/class.pmproemail.php:227
|
5355 |
#: adminpages/memberslist.php:32 adminpages/reports/login.php:67
|
5378 |
msgid "All Levels"
|
5379 |
msgstr ""
|
5380 |
|
5381 |
+
#: adminpages/reports/login.php:185 adminpages/reports/login.php:146
|
5382 |
#: adminpages/reports/login.php:148 adminpages/reports/login.php:164
|
5383 |
#: adminpages/reports/login.php:168 adminpages/reports/login.php:184
|
5384 |
msgid "Last Visit"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
+
#: adminpages/reports/login.php:186 adminpages/reports/login.php:185
|
5388 |
msgid "Visits This Week"
|
5389 |
msgstr ""
|
5390 |
|
5391 |
+
#: adminpages/reports/login.php:187 adminpages/reports/login.php:27
|
5392 |
#: adminpages/reports/login.php:28 adminpages/reports/login.php:147
|
5393 |
#: adminpages/reports/login.php:149 adminpages/reports/login.php:165
|
5394 |
#: adminpages/reports/login.php:169 adminpages/reports/login.php:186
|
5395 |
msgid "Visits This Month"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
+
#: adminpages/reports/login.php:188 adminpages/reports/login.php:187
|
5399 |
msgid "Visits This Year"
|
5400 |
msgstr ""
|
5401 |
|
5402 |
+
#: adminpages/reports/login.php:189 adminpages/reports/login.php:28
|
5403 |
#: adminpages/reports/login.php:29 adminpages/reports/login.php:188
|
5404 |
msgid "Visits All Time"
|
5405 |
msgstr ""
|
5406 |
|
5407 |
+
#: adminpages/reports/login.php:190 adminpages/reports/login.php:189
|
5408 |
msgid "Views This Week"
|
5409 |
msgstr ""
|
5410 |
|
5411 |
+
#: adminpages/reports/login.php:191 adminpages/reports/login.php:32
|
5412 |
#: adminpages/reports/login.php:33 adminpages/reports/login.php:149
|
5413 |
#: adminpages/reports/login.php:151 adminpages/reports/login.php:167
|
5414 |
#: adminpages/reports/login.php:171 adminpages/reports/login.php:190
|
5415 |
msgid "Views This Month"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: adminpages/reports/login.php:192 adminpages/reports/login.php:191
|
5419 |
msgid "Views This Year"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: adminpages/reports/login.php:193 adminpages/reports/login.php:33
|
5423 |
#: adminpages/reports/login.php:34 adminpages/reports/login.php:192
|
5424 |
msgid "Views All Time"
|
5425 |
msgstr ""
|
5426 |
|
5427 |
+
#: adminpages/reports/login.php:194 adminpages/reports/login.php:151
|
5428 |
#: adminpages/reports/login.php:153 adminpages/reports/login.php:169
|
5429 |
#: adminpages/reports/login.php:173 adminpages/reports/login.php:193
|
5430 |
msgid "Last Login"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
+
#: adminpages/reports/login.php:195 adminpages/reports/login.php:194
|
5434 |
msgid "Logins This Week"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
+
#: adminpages/reports/login.php:196 adminpages/reports/login.php:37
|
5438 |
#: adminpages/reports/login.php:38 adminpages/reports/login.php:152
|
5439 |
#: adminpages/reports/login.php:154 adminpages/reports/login.php:170
|
5440 |
#: adminpages/reports/login.php:174 adminpages/reports/login.php:195
|
5441 |
msgid "Logins This Month"
|
5442 |
msgstr ""
|
5443 |
|
5444 |
+
#: adminpages/reports/login.php:197 adminpages/reports/login.php:196
|
5445 |
msgid "Logins This Year"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
+
#: adminpages/reports/login.php:198 adminpages/reports/login.php:38
|
5449 |
#: adminpages/reports/login.php:39 adminpages/reports/login.php:197
|
5450 |
msgid "Logins All Time"
|
5451 |
msgstr ""
|
5452 |
|
5453 |
+
#: adminpages/reports/login.php:262
|
5454 |
#: classes/class-pmpro-members-list-table.php:228
|
5455 |
#: adminpages/memberslist.php:195 adminpages/memberslist.php:223
|
5456 |
#: adminpages/memberslist.php:251 adminpages/memberslist.php:261
|
5465 |
msgid "Search all levels"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
+
#: adminpages/reports/memberships.php:43 adminpages/reports/memberships.php:37
|
5469 |
#: adminpages/reports/memberships.php:40 adminpages/reports/memberships.php:48
|
5470 |
#: adminpages/reports/memberships.php:61 adminpages/reports/memberships.php:62
|
5471 |
msgid "Signups"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
+
#: adminpages/reports/memberships.php:44 adminpages/reports/memberships.php:38
|
5475 |
#: adminpages/reports/memberships.php:41 adminpages/reports/memberships.php:62
|
5476 |
#: adminpages/reports/memberships.php:63
|
5477 |
msgid "All Cancellations"
|
5478 |
msgstr ""
|
5479 |
|
5480 |
+
#: adminpages/reports/memberships.php:335 adminpages/reports/sales.php:297
|
5481 |
#: adminpages/reports/memberships.php:260
|
5482 |
#: adminpages/reports/memberships.php:267
|
5483 |
#: adminpages/reports/memberships.php:280
|
5491 |
msgid "Annual"
|
5492 |
msgstr ""
|
5493 |
|
5494 |
+
#: adminpages/reports/memberships.php:338
|
5495 |
#: adminpages/reports/memberships.php:270
|
5496 |
#: adminpages/reports/memberships.php:283
|
5497 |
#: adminpages/reports/memberships.php:311
|
5500 |
msgid "Signups vs. All Cancellations"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: adminpages/reports/memberships.php:339
|
5504 |
#: adminpages/reports/memberships.php:263
|
5505 |
#: adminpages/reports/memberships.php:271
|
5506 |
#: adminpages/reports/memberships.php:284
|
5511 |
msgid "Signups vs. Cancellations"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
+
#: adminpages/reports/memberships.php:340
|
5515 |
#: adminpages/reports/memberships.php:272
|
5516 |
#: adminpages/reports/memberships.php:285
|
5517 |
#: adminpages/reports/memberships.php:313
|
5520 |
msgid "Signups vs. Expirations"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
+
#: adminpages/reports/memberships.php:342
|
5524 |
+
#: adminpages/reports/memberships.php:353 adminpages/reports/sales.php:303
|
5525 |
+
#: adminpages/reports/sales.php:314 adminpages/membershiplevels.php:545
|
5526 |
#: adminpages/membershiplevels.php:551 adminpages/membershiplevels.php:553
|
5527 |
#: adminpages/membershiplevels.php:559 adminpages/membershiplevels.php:561
|
5528 |
#: adminpages/membershiplevels.php:580 adminpages/membershiplevels.php:588
|
5550 |
msgid "for"
|
5551 |
msgstr ""
|
5552 |
|
5553 |
+
#: adminpages/reports/memberships.php:356
|
5554 |
#: adminpages/reports/memberships.php:374
|
5555 |
msgid "All Paid Levels"
|
5556 |
msgstr ""
|
5557 |
|
5558 |
+
#: adminpages/reports/memberships.php:357
|
5559 |
#: adminpages/reports/memberships.php:375
|
5560 |
msgid "All Free Levels"
|
5561 |
msgstr ""
|
5562 |
|
5563 |
+
#: adminpages/reports/memberships.php:377 adminpages/reports/sales.php:334
|
5564 |
#: adminpages/reports/memberships.php:394 adminpages/reports/sales.php:328
|
5565 |
msgid "All Codes"
|
5566 |
msgstr ""
|
5567 |
|
5568 |
+
#: adminpages/reports/memberships.php:385 adminpages/reports/sales.php:342
|
5569 |
#: adminpages/reports/memberships.php:295
|
5570 |
#: adminpages/reports/memberships.php:304
|
5571 |
#: adminpages/reports/memberships.php:317
|
5583 |
msgid "Sales and Revenue (Testing/Sandbox)"
|
5584 |
msgstr ""
|
5585 |
|
5586 |
+
#: adminpages/reports/sales.php:44 adminpages/reports/sales.php:301
|
5587 |
#: adminpages/reports/sales.php:44 adminpages/reports/sales.php:45
|
5588 |
#: adminpages/reports/sales.php:46 adminpages/reports/sales.php:193
|
5589 |
#: adminpages/reports/sales.php:201 adminpages/reports/sales.php:202
|
5592 |
msgid "Sales"
|
5593 |
msgstr ""
|
5594 |
|
5595 |
+
#: adminpages/reports/sales.php:45 adminpages/reports/sales.php:300
|
5596 |
#: adminpages/reports/sales.php:45 adminpages/reports/sales.php:46
|
5597 |
#: adminpages/reports/sales.php:47 adminpages/reports/sales.php:192
|
5598 |
#: adminpages/reports/sales.php:200 adminpages/reports/sales.php:201
|
5601 |
msgid "Revenue"
|
5602 |
msgstr ""
|
5603 |
|
5604 |
+
#: adminpages/reports/sales.php:345 adminpages/reports/sales.php:339
|
5605 |
msgid ""
|
5606 |
"Average line calculated using data prior to current day, month, or year."
|
5607 |
msgstr ""
|
5608 |
|
5609 |
+
#: adminpages/reports/sales.php:388 adminpages/reports/sales.php:381
|
5610 |
#: adminpages/reports/sales.php:382
|
5611 |
msgid "Average*"
|
5612 |
msgstr ""
|
5638 |
msgstr ""
|
5639 |
|
5640 |
#: adminpages/templates/orders-email.php:48
|
5641 |
+
#: adminpages/templates/orders-print.php:77 pages/levels.php:18
|
5642 |
#: adminpages/templates/orders-email.php:48
|
5643 |
#: adminpages/templates/orders-print.php:77 pages/levels.php:14
|
5644 |
#: pages/levels.php:36
|
5645 |
msgid "Price"
|
5646 |
msgstr ""
|
5647 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5648 |
#: adminpages/updates.php:14 adminpages/updates.php:11
|
5649 |
#: adminpages/updates.php:14
|
5650 |
msgid "Updating Paid Memberships Pro"
|
5940 |
msgid "—"
|
5941 |
msgstr ""
|
5942 |
|
5943 |
+
#: classes/class.memberorder.php:949 classes/class.memberorder.php:553
|
5944 |
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
5945 |
#: classes/class.memberorder.php:573 classes/class.memberorder.php:644
|
5946 |
#: classes/class.memberorder.php:697 classes/class.memberorder.php:699
|
5950 |
#: classes/class.memberorder.php:743 classes/class.memberorder.php:760
|
5951 |
#: classes/class.memberorder.php:811 classes/class.memberorder.php:856
|
5952 |
#: classes/class.memberorder.php:868 classes/class.memberorder.php:941
|
5953 |
+
#: classes/class.memberorder.php:943 classes/class.memberorder.php:945
|
5954 |
+
#: includes/cleanup.php:24
|
5955 |
#, php-format
|
5956 |
msgid ""
|
5957 |
"There was an error canceling the subscription for user with ID=%s. You will "
|
5959 |
"active."
|
5960 |
msgstr ""
|
5961 |
|
5962 |
+
#: classes/class.memberorder.php:950 classes/class.memberorder.php:741
|
5963 |
#: classes/class.memberorder.php:744 classes/class.memberorder.php:761
|
5964 |
#: classes/class.memberorder.php:812 classes/class.memberorder.php:857
|
5965 |
#: classes/class.memberorder.php:869 classes/class.memberorder.php:942
|
5966 |
+
#: classes/class.memberorder.php:944 classes/class.memberorder.php:946
|
5967 |
msgid "User Email"
|
5968 |
msgstr ""
|
5969 |
|
5970 |
+
#: classes/class.memberorder.php:952 classes/class.memberorder.php:742
|
5971 |
#: classes/class.memberorder.php:745 classes/class.memberorder.php:762
|
5972 |
#: classes/class.memberorder.php:813 classes/class.memberorder.php:858
|
5973 |
#: classes/class.memberorder.php:859 classes/class.memberorder.php:871
|
5974 |
#: classes/class.memberorder.php:944 classes/class.memberorder.php:946
|
5975 |
+
#: classes/class.memberorder.php:948
|
5976 |
msgid "User Display Name"
|
5977 |
msgstr ""
|
5978 |
|
5979 |
+
#: classes/class.memberorder.php:957 classes/class.memberorder.php:864
|
5980 |
#: classes/class.memberorder.php:876 classes/class.memberorder.php:949
|
5981 |
+
#: classes/class.memberorder.php:951 classes/class.memberorder.php:953
|
5982 |
msgid "Edit User"
|
5983 |
msgstr ""
|
5984 |
|
5985 |
+
#: classes/class.memberorder.php:958 classes/class.memberorder.php:865
|
5986 |
#: classes/class.memberorder.php:877 classes/class.memberorder.php:950
|
5987 |
+
#: classes/class.memberorder.php:952 classes/class.memberorder.php:954
|
5988 |
msgid "Edit Order"
|
5989 |
msgstr ""
|
5990 |
|
6021 |
msgstr ""
|
6022 |
|
6023 |
#: classes/class.pmproemail.php:338 classes/class.pmproemail.php:434
|
6024 |
+
#: classes/class.pmproemail.php:752 classes/class.pmproemail.php:241
|
6025 |
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
6026 |
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
|
6027 |
#: classes/class.pmproemail.php:285 classes/class.pmproemail.php:294
|
6069 |
msgid "Billing information has been updated for %s at %s"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
+
#: classes/class.pmproemail.php:556 classes/class.pmproemail.php:425
|
6073 |
#: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
|
6074 |
#: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
|
6075 |
#: classes/class.pmproemail.php:496 classes/class.pmproemail.php:510
|
6079 |
msgid "Membership Payment Failed at %s"
|
6080 |
msgstr ""
|
6081 |
|
6082 |
+
#: classes/class.pmproemail.php:604 classes/class.pmproemail.php:462
|
6083 |
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
|
6084 |
#: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
|
6085 |
#: classes/class.pmproemail.php:542 classes/class.pmproemail.php:557
|
6089 |
msgid "Membership Payment Failed For %s at %s"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
+
#: classes/class.pmproemail.php:652 classes/class.pmproemail.php:508
|
6093 |
#: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
|
6094 |
#: classes/class.pmproemail.php:569 classes/class.pmproemail.php:589
|
6095 |
#: classes/class.pmproemail.php:605 classes/class.pmproemail.php:612
|
6099 |
msgid "Credit Card on File Expiring Soon at %s"
|
6100 |
msgstr ""
|
6101 |
|
6102 |
+
#: classes/class.pmproemail.php:703 classes/class.pmproemail.php:501
|
6103 |
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
6104 |
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
|
6105 |
#: classes/class.pmproemail.php:619 classes/class.pmproemail.php:639
|
6110 |
msgid "INVOICE for %s membership"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
+
#: classes/class.pmproemail.php:780 classes/class.pmproemail.php:563
|
6114 |
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
6115 |
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
|
6116 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:710
|
6121 |
msgid "Your trial at %s is ending soon"
|
6122 |
msgstr ""
|
6123 |
|
6124 |
+
#: classes/class.pmproemail.php:816 classes/class.pmproemail.php:596
|
6125 |
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
6126 |
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
|
6127 |
#: classes/class.pmproemail.php:724 classes/class.pmproemail.php:744
|
6132 |
msgid "Your membership at %s has ended"
|
6133 |
msgstr ""
|
6134 |
|
6135 |
+
#: classes/class.pmproemail.php:843 classes/class.pmproemail.php:621
|
6136 |
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
6137 |
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
|
6138 |
#: classes/class.pmproemail.php:749 classes/class.pmproemail.php:769
|
6143 |
msgid "Your membership at %s will end soon"
|
6144 |
msgstr ""
|
6145 |
|
6146 |
+
#: classes/class.pmproemail.php:873 classes/class.pmproemail.php:641
|
6147 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
6148 |
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
|
6149 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:789
|
6154 |
msgid "Your membership at %s has been changed"
|
6155 |
msgstr ""
|
6156 |
|
6157 |
+
#: classes/class.pmproemail.php:878 classes/class.pmproemail.php:928
|
6158 |
#: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
|
6159 |
#: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
|
6160 |
#: classes/class.pmproemail.php:793 classes/class.pmproemail.php:800
|
6170 |
msgid "The new level is %s"
|
6171 |
msgstr ""
|
6172 |
|
6173 |
+
#: classes/class.pmproemail.php:880 classes/class.pmproemail.php:647
|
6174 |
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
6175 |
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
|
6176 |
#: classes/class.pmproemail.php:775 classes/class.pmproemail.php:795
|
6180 |
msgid "Your membership has been cancelled"
|
6181 |
msgstr ""
|
6182 |
|
6183 |
+
#: classes/class.pmproemail.php:885 classes/class.pmproemail.php:935
|
6184 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
6185 |
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
6186 |
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
|
6199 |
msgid "This membership will expire on %s"
|
6200 |
msgstr ""
|
6201 |
|
6202 |
+
#: classes/class.pmproemail.php:889 classes/class.pmproemail.php:939
|
6203 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
6204 |
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
6205 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
|
6217 |
msgid "This membership does not expire"
|
6218 |
msgstr ""
|
6219 |
|
6220 |
+
#: classes/class.pmproemail.php:923 classes/class.pmproemail.php:679
|
6221 |
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
6222 |
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
|
6223 |
#: classes/class.pmproemail.php:806 classes/class.pmproemail.php:807
|
6229 |
msgid "Membership for %s at %s has been changed"
|
6230 |
msgstr ""
|
6231 |
|
6232 |
+
#: classes/class.pmproemail.php:930 classes/class.pmproemail.php:799
|
6233 |
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
|
6234 |
#: classes/class.pmproemail.php:812 classes/class.pmproemail.php:813
|
6235 |
#: classes/class.pmproemail.php:832 classes/class.pmproemail.php:865
|
6239 |
msgid "Membership has been cancelled"
|
6240 |
msgstr ""
|
6241 |
|
6242 |
+
#: classes/class.pmproemail.php:970 classes/class.pmproemail.php:848
|
6243 |
#: classes/class.pmproemail.php:849 classes/class.pmproemail.php:850
|
6244 |
#: classes/class.pmproemail.php:869 classes/class.pmproemail.php:904
|
6245 |
#: classes/class.pmproemail.php:911 classes/class.pmproemail.php:919
|
6248 |
msgid "Invoice for Order #: "
|
6249 |
msgstr ""
|
6250 |
|
6251 |
+
#: classes/class.pmproemail.php:1017 classes/class.pmproemail.php:1003
|
6252 |
#: classes/class.pmproemail.php:1014
|
6253 |
#, php-format
|
6254 |
msgid "Payment action required for your %s membership"
|
6255 |
msgstr ""
|
6256 |
|
6257 |
+
#: classes/class.pmproemail.php:1054 classes/class.pmproemail.php:1040
|
6258 |
#: classes/class.pmproemail.php:1051
|
6259 |
#, php-format
|
6260 |
msgid "Payment action required: membership for %s at %s"
|
6261 |
msgstr ""
|
6262 |
|
6263 |
+
#: classes/class.pmproemail.php:1090 classes/class.pmproemail.php:948
|
6264 |
#: classes/class.pmproemail.php:955 classes/class.pmproemail.php:963
|
6265 |
#: classes/class.pmproemail.php:971 classes/class.pmproemail.php:972
|
6266 |
#: classes/class.pmproemail.php:1076 classes/class.pmproemail.php:1087
|
6701 |
msgstr ""
|
6702 |
|
6703 |
#: classes/gateways/class.pmprogateway_braintree.php:454
|
6704 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1048 pages/checkout.php:355
|
6705 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
6706 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
6707 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
6742 |
#: classes/gateways/class.pmprogateway_stripe.php:902
|
6743 |
#: classes/gateways/class.pmprogateway_stripe.php:972
|
6744 |
#: classes/gateways/class.pmprogateway_stripe.php:1037
|
6745 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1048 pages/checkout.php:353
|
6746 |
+
#: pages/checkout.php:362 pages/checkout.php:365 pages/checkout.php:411
|
6747 |
+
#: pages/checkout.php:419 pages/checkout.php:476 pages/checkout.php:478
|
6748 |
+
#: pages/checkout.php:485 pages/checkout.php:493 pages/checkout.php:494
|
6749 |
+
#: pages/checkout.php:500 pages/checkout.php:501 pages/checkout.php:503
|
6750 |
+
#: pages/checkout.php:510 pages/checkout.php:513
|
6751 |
msgid "Payment Information"
|
6752 |
msgstr ""
|
6753 |
|
6754 |
#: classes/gateways/class.pmprogateway_braintree.php:455
|
6755 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1049 pages/checkout.php:356
|
6756 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
6757 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
6758 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
6793 |
#: classes/gateways/class.pmprogateway_stripe.php:903
|
6794 |
#: classes/gateways/class.pmprogateway_stripe.php:973
|
6795 |
#: classes/gateways/class.pmprogateway_stripe.php:1038
|
6796 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1049 pages/checkout.php:354
|
6797 |
+
#: pages/checkout.php:363 pages/checkout.php:366 pages/checkout.php:412
|
6798 |
+
#: pages/checkout.php:420 pages/checkout.php:476 pages/checkout.php:478
|
6799 |
+
#: pages/checkout.php:485 pages/checkout.php:493 pages/checkout.php:494
|
6800 |
+
#: pages/checkout.php:500 pages/checkout.php:502 pages/checkout.php:504
|
6801 |
+
#: pages/checkout.php:511 pages/checkout.php:514
|
6802 |
#, php-format
|
6803 |
msgid "We Accept %s"
|
6804 |
msgstr ""
|
6805 |
|
6806 |
#: classes/gateways/class.pmprogateway_braintree.php:475
|
6807 |
#: classes/gateways/class.pmprogateway_stripe.php:1082 pages/billing.php:359
|
6808 |
+
#: pages/checkout.php:378 classes/gateways/class.pmprogateway_braintree.php:303
|
6809 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
6810 |
#: classes/gateways/class.pmprogateway_braintree.php:318
|
6811 |
#: classes/gateways/class.pmprogateway_braintree.php:321
|
6850 |
#: pages/billing.php:311 pages/billing.php:312 pages/billing.php:313
|
6851 |
#: pages/billing.php:314 pages/billing.php:317 pages/billing.php:318
|
6852 |
#: pages/billing.php:326 pages/billing.php:335 pages/billing.php:337
|
6853 |
+
#: pages/billing.php:359 pages/checkout.php:376 pages/checkout.php:385
|
6854 |
+
#: pages/checkout.php:388 pages/checkout.php:459 pages/checkout.php:467
|
6855 |
+
#: pages/checkout.php:503 pages/checkout.php:519 pages/checkout.php:520
|
6856 |
+
#: pages/checkout.php:527 pages/checkout.php:548 pages/checkout.php:557
|
6857 |
+
#: pages/checkout.php:566 pages/checkout.php:570 pages/checkout.php:577
|
6858 |
+
#: pages/checkout.php:580
|
6859 |
msgid "Card Number"
|
6860 |
msgstr ""
|
6861 |
|
6899 |
msgstr ""
|
6900 |
|
6901 |
#: classes/gateways/class.pmprogateway_braintree.php:504 pages/billing.php:399
|
6902 |
+
#: pages/checkout.php:414 classes/gateways/class.pmprogateway_braintree.php:341
|
6903 |
#: classes/gateways/class.pmprogateway_braintree.php:354
|
6904 |
#: classes/gateways/class.pmprogateway_braintree.php:356
|
6905 |
#: classes/gateways/class.pmprogateway_braintree.php:359
|
6936 |
#: pages/billing.php:352 pages/billing.php:353 pages/billing.php:355
|
6937 |
#: pages/billing.php:357 pages/billing.php:358 pages/billing.php:366
|
6938 |
#: pages/billing.php:375 pages/billing.php:381 pages/billing.php:399
|
6939 |
+
#: pages/checkout.php:412 pages/checkout.php:421 pages/checkout.php:424
|
6940 |
+
#: pages/checkout.php:493 pages/checkout.php:501 pages/checkout.php:541
|
6941 |
+
#: pages/checkout.php:557 pages/checkout.php:558 pages/checkout.php:565
|
6942 |
+
#: pages/checkout.php:586 pages/checkout.php:595 pages/checkout.php:604
|
6943 |
+
#: pages/checkout.php:606 pages/checkout.php:608 pages/checkout.php:609
|
6944 |
+
#: pages/checkout.php:613 pages/checkout.php:616
|
6945 |
msgid "what's this?"
|
6946 |
msgstr ""
|
6947 |
|
6948 |
#: classes/gateways/class.pmprogateway_braintree.php:511
|
6949 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1104 pages/checkout.php:96
|
6950 |
+
#: pages/checkout.php:421 classes/gateways/class.pmprogateway_braintree.php:351
|
6951 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
6952 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
6953 |
#: classes/gateways/class.pmprogateway_braintree.php:369
|
6991 |
#: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:83
|
6992 |
#: pages/checkout.php:87 pages/checkout.php:88 pages/checkout.php:91
|
6993 |
#: pages/checkout.php:94 pages/checkout.php:95 pages/checkout.php:98
|
6994 |
+
#: pages/checkout.php:419 pages/checkout.php:428 pages/checkout.php:431
|
6995 |
+
#: pages/checkout.php:500 pages/checkout.php:508 pages/checkout.php:551
|
6996 |
+
#: pages/checkout.php:567 pages/checkout.php:568 pages/checkout.php:575
|
6997 |
+
#: pages/checkout.php:596 pages/checkout.php:605 pages/checkout.php:614
|
6998 |
+
#: pages/checkout.php:618 pages/checkout.php:619 pages/checkout.php:621
|
6999 |
+
#: pages/checkout.php:624
|
7000 |
msgid "Apply"
|
7001 |
msgstr ""
|
7002 |
|
7003 |
#: classes/gateways/class.pmprogateway_braintree.php:570
|
7004 |
#: classes/gateways/class.pmprogateway_braintree.php:587
|
7005 |
#: classes/gateways/class.pmprogateway_braintree.php:677
|
7006 |
+
#: classes/gateways/class.pmprogateway_braintree.php:848
|
7007 |
+
#: classes/gateways/class.pmprogateway_braintree.php:957
|
7008 |
+
#: classes/gateways/class.pmprogateway_braintree.php:984
|
7009 |
#: classes/gateways/class.pmprogateway_braintree.php:509
|
7010 |
#: classes/gateways/class.pmprogateway_braintree.php:524
|
7011 |
#: classes/gateways/class.pmprogateway_braintree.php:526
|
7136 |
msgid "Error during charge:"
|
7137 |
msgstr ""
|
7138 |
|
7139 |
+
#: classes/gateways/class.pmprogateway_braintree.php:750
|
7140 |
#: classes/gateways/class.pmprogateway_braintree.php:690
|
7141 |
#: classes/gateways/class.pmprogateway_braintree.php:731
|
7142 |
#: classes/gateways/class.pmprogateway_braintree.php:750
|
7148 |
msgid "Failed to update customer: %s"
|
7149 |
msgstr ""
|
7150 |
|
7151 |
+
#: classes/gateways/class.pmprogateway_braintree.php:762
|
7152 |
#: classes/gateways/class.pmprogateway_braintree.php:198
|
7153 |
#: classes/gateways/class.pmprogateway_braintree.php:221
|
7154 |
#: classes/gateways/class.pmprogateway_braintree.php:566
|
7169 |
msgid "Failed to update customer."
|
7170 |
msgstr ""
|
7171 |
|
7172 |
+
#: classes/gateways/class.pmprogateway_braintree.php:810
|
7173 |
#: classes/gateways/class.pmprogateway_braintree.php:246
|
7174 |
#: classes/gateways/class.pmprogateway_braintree.php:269
|
7175 |
#: classes/gateways/class.pmprogateway_braintree.php:614
|
7190 |
msgid "Failed to create customer."
|
7191 |
msgstr ""
|
7192 |
|
7193 |
+
#: classes/gateways/class.pmprogateway_braintree.php:817
|
7194 |
#: classes/gateways/class.pmprogateway_braintree.php:253
|
7195 |
#: classes/gateways/class.pmprogateway_braintree.php:276
|
7196 |
#: classes/gateways/class.pmprogateway_braintree.php:621
|
7211 |
msgid "Error creating customer record with Braintree:"
|
7212 |
msgstr ""
|
7213 |
|
7214 |
+
#: classes/gateways/class.pmprogateway_braintree.php:933
|
7215 |
#: classes/gateways/class.pmprogateway_braintree.php:933
|
7216 |
#: classes/gateways/class.pmprogateway_braintree.php:934
|
7217 |
#: classes/gateways/class.pmprogateway_braintree.php:935
|
7220 |
msgid "Error subscribing customer to plan with Braintree: %s (%s)"
|
7221 |
msgstr ""
|
7222 |
|
7223 |
+
#: classes/gateways/class.pmprogateway_braintree.php:948
|
7224 |
#: classes/gateways/class.pmprogateway_braintree.php:948
|
7225 |
#: classes/gateways/class.pmprogateway_braintree.php:949
|
7226 |
#: classes/gateways/class.pmprogateway_braintree.php:950
|
7229 |
msgid "Failed to subscribe with Braintree: %s"
|
7230 |
msgstr ""
|
7231 |
|
7232 |
+
#: classes/gateways/class.pmprogateway_braintree.php:1018
|
7233 |
+
#: classes/gateways/class.pmprogateway_braintree.php:1029
|
7234 |
#: classes/gateways/class.pmprogateway_braintree.php:1019
|
7235 |
#: classes/gateways/class.pmprogateway_braintree.php:1020
|
7236 |
#: classes/gateways/class.pmprogateway_braintree.php:1021
|
7243 |
msgid "Could not find the subscription. %s"
|
7244 |
msgstr ""
|
7245 |
|
7246 |
+
#: classes/gateways/class.pmprogateway_braintree.php:1036
|
7247 |
#: classes/gateways/class.pmprogateway_braintree.php:397
|
7248 |
#: classes/gateways/class.pmprogateway_braintree.php:398
|
7249 |
#: classes/gateways/class.pmprogateway_braintree.php:410
|
7301 |
msgid "Could not find the subscription."
|
7302 |
msgstr ""
|
7303 |
|
7304 |
+
#: classes/gateways/class.pmprogateway_braintree.php:1082
|
7305 |
#: classes/gateways/class.pmprogateway_braintree.php:1083
|
7306 |
msgid "Error getting subscription with Braintree:"
|
7307 |
msgstr ""
|
7878 |
msgstr ""
|
7879 |
|
7880 |
#: classes/gateways/class.pmprogateway_payflowpro.php:125
|
7881 |
+
#: pages/checkout.php:132 adminpages/paymentsettings.php:219
|
7882 |
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:228
|
7883 |
#: classes/gateways/class.pmprogateway_payflowpro.php:124
|
7884 |
#: classes/gateways/class.pmprogateway_payflowpro.php:125
|
8098 |
msgstr ""
|
8099 |
|
8100 |
#: classes/gateways/class.pmprogateway_paypal.php:281
|
8101 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:482
|
8102 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:241
|
8103 |
+
#: pages/checkout.php:207 classes/gateways/class.pmprogateway_paypal.php:178
|
8104 |
#: classes/gateways/class.pmprogateway_paypal.php:201
|
8105 |
#: classes/gateways/class.pmprogateway_paypal.php:268
|
8106 |
#: classes/gateways/class.pmprogateway_paypal.php:280
|
8117 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:202
|
8118 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:229
|
8119 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:241
|
8120 |
+
#: pages/checkout.php:205 pages/checkout.php:214 pages/checkout.php:217
|
8121 |
+
#: pages/checkout.php:263 pages/checkout.php:271 pages/checkout.php:286
|
8122 |
+
#: pages/checkout.php:288 pages/checkout.php:295 pages/checkout.php:300
|
8123 |
+
#: pages/checkout.php:302 pages/checkout.php:309 pages/checkout.php:312
|
8124 |
+
#: pages/checkout.php:675 pages/checkout.php:682 pages/checkout.php:685
|
8125 |
+
#: pages/checkout.php:701
|
8126 |
msgid "Check Out with PayPal"
|
8127 |
msgstr ""
|
8128 |
|
8129 |
#: classes/gateways/class.pmprogateway_paypal.php:287
|
8130 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:487
|
8131 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
8132 |
+
#: pages/checkout.php:515 classes/gateways/class.pmprogateway_paypal.php:184
|
8133 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
8134 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
8135 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
8147 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:234
|
8148 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
8149 |
#: pages/checkout.php:496 pages/checkout.php:509 pages/checkout.php:512
|
8150 |
+
#: pages/checkout.php:513 pages/checkout.php:598 pages/checkout.php:606
|
8151 |
+
#: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
|
8152 |
+
#: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
|
8153 |
+
#: pages/checkout.php:718 pages/checkout.php:722 pages/checkout.php:724
|
8154 |
+
#: pages/checkout.php:725 pages/checkout.php:728 pages/checkout.php:729
|
8155 |
msgid "Submit and Check Out"
|
8156 |
msgstr ""
|
8157 |
|
8158 |
#: classes/gateways/class.pmprogateway_paypal.php:287
|
8159 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:487
|
8160 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
8161 |
#: classes/gateways/class.pmprogateway_twocheckout.php:205
|
8162 |
+
#: pages/checkout.php:515 classes/gateways/class.pmprogateway_paypal.php:184
|
8163 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
8164 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
8165 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
8182 |
#: classes/gateways/class.pmprogateway_twocheckout.php:205
|
8183 |
#: classes/gateways/class.pmprogateway_twocheckout.php:214
|
8184 |
#: pages/checkout.php:496 pages/checkout.php:509 pages/checkout.php:512
|
8185 |
+
#: pages/checkout.php:513 pages/checkout.php:598 pages/checkout.php:606
|
8186 |
+
#: pages/checkout.php:681 pages/checkout.php:688 pages/checkout.php:691
|
8187 |
+
#: pages/checkout.php:704 pages/checkout.php:707 pages/checkout.php:713
|
8188 |
+
#: pages/checkout.php:718 pages/checkout.php:722 pages/checkout.php:724
|
8189 |
+
#: pages/checkout.php:725 pages/checkout.php:728 pages/checkout.php:729
|
8190 |
msgid "Submit and Confirm"
|
8191 |
msgstr ""
|
8192 |
|
8193 |
#: classes/gateways/class.pmprogateway_paypal.php:716
|
8194 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:801
|
8195 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:588
|
8196 |
#: classes/gateways/class.pmprogateway_paypal.php:385
|
8197 |
#: classes/gateways/class.pmprogateway_paypal.php:605
|
8252 |
msgid "PayPal Express"
|
8253 |
msgstr ""
|
8254 |
|
8255 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:342
|
8256 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:401
|
8257 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:268
|
8258 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:278
|
8259 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
8278 |
msgid "The PayPal Token was lost."
|
8279 |
msgstr ""
|
8280 |
|
8281 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:346
|
8282 |
+
msgid "Checkout was already processed."
|
8283 |
+
msgstr ""
|
8284 |
+
|
8285 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:71
|
8286 |
#: paid-memberships-pro.php:163
|
8287 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
10987 |
msgid "Profile Start Date Issue Detected and Fixed at %s"
|
10988 |
msgstr ""
|
10989 |
|
10990 |
+
#: includes/functions.php:384 includes/functions.php:500
|
10991 |
#: includes/functions.php:160 includes/functions.php:196
|
10992 |
#: includes/functions.php:200 includes/functions.php:202
|
10993 |
#: includes/functions.php:203 includes/functions.php:204
|
11004 |
msgid "The price for membership is <strong>%s</strong> now"
|
11005 |
msgstr ""
|
11006 |
|
11007 |
+
#: includes/functions.php:387 includes/functions.php:383 pages/levels.php:33
|
11008 |
#: pages/levels.php:43 pages/levels.php:55
|
11009 |
msgid "Free"
|
11010 |
msgstr ""
|
11011 |
|
11012 |
+
#: includes/functions.php:389 includes/functions.php:502
|
11013 |
#: includes/functions.php:202 includes/functions.php:204
|
11014 |
#: includes/functions.php:205 includes/functions.php:206
|
11015 |
#: includes/functions.php:209 includes/functions.php:245
|
11025 |
msgid "<strong>%s</strong> now"
|
11026 |
msgstr ""
|
11027 |
|
11028 |
+
#: includes/functions.php:397 includes/functions.php:330
|
11029 |
#: includes/functions.php:349 includes/functions.php:388
|
11030 |
#: includes/functions.php:393
|
11031 |
#, php-format
|
11032 |
msgid " and then <strong>%1$s per %2$s for %3$d more %4$s</strong>."
|
11033 |
msgstr ""
|
11034 |
|
11035 |
+
#: includes/functions.php:399 includes/functions.php:332
|
11036 |
#: includes/functions.php:351 includes/functions.php:390
|
11037 |
#: includes/functions.php:395
|
11038 |
#, php-format
|
11039 |
msgid " and then <strong>%1$s every %2$d %3$s for %4$d more payments</strong>."
|
11040 |
msgstr ""
|
11041 |
|
11042 |
+
#: includes/functions.php:402 includes/functions.php:335
|
11043 |
#: includes/functions.php:354 includes/functions.php:393
|
11044 |
#: includes/functions.php:398
|
11045 |
#, php-format
|
11046 |
msgid " and then <strong>%1$s after %2$d %3$s</strong>."
|
11047 |
msgstr ""
|
11048 |
|
11049 |
+
#: includes/functions.php:407 includes/functions.php:340
|
11050 |
#: includes/functions.php:359 includes/functions.php:398
|
11051 |
#: includes/functions.php:403
|
11052 |
#, php-format
|
11053 |
msgid "The price for membership is <strong>%1$s per %2$s</strong>."
|
11054 |
msgstr ""
|
11055 |
|
11056 |
+
#: includes/functions.php:409 includes/functions.php:342
|
11057 |
#: includes/functions.php:361 includes/functions.php:400
|
11058 |
#: includes/functions.php:405
|
11059 |
#, php-format
|
11060 |
msgid "<strong>%1$s per %2$s</strong>."
|
11061 |
msgstr ""
|
11062 |
|
11063 |
+
#: includes/functions.php:413 includes/functions.php:346
|
11064 |
#: includes/functions.php:365 includes/functions.php:404
|
11065 |
#: includes/functions.php:409
|
11066 |
#, php-format
|
11067 |
msgid "The price for membership is <strong>%1$s every %2$d %3$s</strong>."
|
11068 |
msgstr ""
|
11069 |
|
11070 |
+
#: includes/functions.php:415 includes/functions.php:348
|
11071 |
#: includes/functions.php:367 includes/functions.php:406
|
11072 |
#: includes/functions.php:411
|
11073 |
#, php-format
|
11074 |
msgid "<strong>%1$s every %2$d %3$s</strong>."
|
11075 |
msgstr ""
|
11076 |
|
11077 |
+
#: includes/functions.php:420 includes/functions.php:353
|
11078 |
#: includes/functions.php:372 includes/functions.php:411
|
11079 |
#: includes/functions.php:416
|
11080 |
#, php-format
|
11081 |
msgid " and then <strong>%1$s per %2$s</strong>."
|
11082 |
msgstr ""
|
11083 |
|
11084 |
+
#: includes/functions.php:422 includes/functions.php:355
|
11085 |
#: includes/functions.php:374 includes/functions.php:413
|
11086 |
#: includes/functions.php:418
|
11087 |
#, php-format
|
11088 |
msgid " and then <strong>%1$s every %2$d %3$s</strong>."
|
11089 |
msgstr ""
|
11090 |
|
11091 |
+
#: includes/functions.php:437 includes/functions.php:202
|
11092 |
#: includes/functions.php:238 includes/functions.php:249
|
11093 |
#: includes/functions.php:260 includes/functions.php:261
|
11094 |
#: includes/functions.php:262 includes/functions.php:264
|
11101 |
msgid "After your initial payment, your first payment is Free."
|
11102 |
msgstr ""
|
11103 |
|
11104 |
+
#: includes/functions.php:439 includes/functions.php:206
|
11105 |
#: includes/functions.php:242 includes/functions.php:253
|
11106 |
#: includes/functions.php:264 includes/functions.php:265
|
11107 |
#: includes/functions.php:266 includes/functions.php:268
|
11115 |
msgid "After your initial payment, your first %d payments are Free."
|
11116 |
msgstr ""
|
11117 |
|
11118 |
+
#: includes/functions.php:443 includes/functions.php:213
|
11119 |
#: includes/functions.php:249 includes/functions.php:260
|
11120 |
#: includes/functions.php:271 includes/functions.php:272
|
11121 |
#: includes/functions.php:273 includes/functions.php:275
|
11128 |
msgid "After your initial payment, your first payment will cost %s."
|
11129 |
msgstr ""
|
11130 |
|
11131 |
+
#: includes/functions.php:445 includes/functions.php:378
|
11132 |
#: includes/functions.php:397 includes/functions.php:436
|
11133 |
#: includes/functions.php:441
|
11134 |
#, php-format
|
11135 |
msgid "After your initial payment, your first %1$d payments will cost %2$s."
|
11136 |
msgstr ""
|
11137 |
|
11138 |
+
#: includes/functions.php:455 includes/functions.php:556
|
11139 |
#: includes/functions.php:388 includes/functions.php:407
|
11140 |
#: includes/functions.php:446 includes/functions.php:451
|
11141 |
#: includes/functions.php:489 includes/functions.php:508
|
11144 |
msgid "Customers in %1$s will be charged %2$s%% tax."
|
11145 |
msgstr ""
|
11146 |
|
11147 |
+
#: includes/functions.php:513 includes/functions.php:446
|
11148 |
#: includes/functions.php:465 includes/functions.php:504
|
11149 |
#: includes/functions.php:509
|
11150 |
#, php-format
|
11151 |
msgid "<strong>%1$s per %2$s for %3$d more %4$s</strong>"
|
11152 |
msgstr ""
|
11153 |
|
11154 |
+
#: includes/functions.php:515 includes/functions.php:448
|
11155 |
#: includes/functions.php:467 includes/functions.php:506
|
11156 |
#: includes/functions.php:511
|
11157 |
#, php-format
|
11158 |
msgid "<strong>%1$s every %2$d %3$s for %4$d more payments</strong>"
|
11159 |
msgstr ""
|
11160 |
|
11161 |
+
#: includes/functions.php:518 includes/functions.php:451
|
11162 |
#: includes/functions.php:470 includes/functions.php:509
|
11163 |
#: includes/functions.php:514
|
11164 |
#, php-format
|
11165 |
msgid "<strong>%1$s after %2$d %3$s</strong>"
|
11166 |
msgstr ""
|
11167 |
|
11168 |
+
#: includes/functions.php:521 includes/functions.php:454
|
11169 |
#: includes/functions.php:473 includes/functions.php:512
|
11170 |
#: includes/functions.php:517
|
11171 |
#, php-format
|
11172 |
msgid "<strong>%1$s every %2$s</strong>"
|
11173 |
msgstr ""
|
11174 |
|
11175 |
+
#: includes/functions.php:523 includes/functions.php:456
|
11176 |
#: includes/functions.php:475 includes/functions.php:514
|
11177 |
#: includes/functions.php:519
|
11178 |
#, php-format
|
11179 |
msgid "<strong>%1$s every %2$d %3$s</strong>"
|
11180 |
msgstr ""
|
11181 |
|
11182 |
+
#: includes/functions.php:545 includes/functions.php:478
|
11183 |
#: includes/functions.php:497 includes/functions.php:511
|
11184 |
#: includes/functions.php:520 includes/functions.php:536
|
11185 |
#: includes/functions.php:541
|
11186 |
msgid "Trial pricing has been applied to the first payment."
|
11187 |
msgstr ""
|
11188 |
|
11189 |
+
#: includes/functions.php:547 includes/functions.php:480
|
11190 |
#: includes/functions.php:499 includes/functions.php:513
|
11191 |
#: includes/functions.php:522 includes/functions.php:538
|
11192 |
#: includes/functions.php:543
|
11194 |
msgid "Trial pricing has been applied to the first %d payments."
|
11195 |
msgstr ""
|
11196 |
|
11197 |
+
#: includes/functions.php:572 includes/functions.php:505
|
11198 |
#: includes/functions.php:524 includes/functions.php:563
|
11199 |
#: includes/functions.php:568
|
11200 |
#, php-format
|
11201 |
msgid "Membership expires after %1$d %2$s."
|
11202 |
msgstr ""
|
11203 |
|
11204 |
+
#: includes/functions.php:591 includes/functions.php:524
|
11205 |
#: includes/functions.php:543 includes/functions.php:582
|
11206 |
#: includes/functions.php:587
|
11207 |
#, php-format
|
11208 |
msgid "%1$s membership expires after %2$d %3$s"
|
11209 |
msgstr ""
|
11210 |
|
11211 |
+
#: includes/functions.php:968 includes/functions.php:491
|
11212 |
#: includes/functions.php:514 includes/functions.php:525
|
11213 |
#: includes/functions.php:536 includes/functions.php:537
|
11214 |
#: includes/functions.php:538 includes/functions.php:545
|
11224 |
msgid "User ID not found."
|
11225 |
msgstr ""
|
11226 |
|
11227 |
+
#: includes/functions.php:986 includes/functions.php:886
|
11228 |
#: includes/functions.php:889 includes/functions.php:894
|
11229 |
#: includes/functions.php:913 includes/functions.php:952
|
11230 |
#: includes/functions.php:957 includes/functions.php:976
|
11231 |
msgid "No membership_id specified in pmpro_changeMembershipLevel."
|
11232 |
msgstr ""
|
11233 |
|
11234 |
+
#: includes/functions.php:992 includes/functions.php:1000
|
11235 |
#: includes/functions.php:508 includes/functions.php:531
|
11236 |
#: includes/functions.php:542 includes/functions.php:553
|
11237 |
#: includes/functions.php:554 includes/functions.php:555
|
11251 |
msgid "Invalid level."
|
11252 |
msgstr ""
|
11253 |
|
11254 |
+
#: includes/functions.php:1074 includes/functions.php:537
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11255 |
#: includes/functions.php:559 includes/functions.php:570
|
11256 |
#: includes/functions.php:581 includes/functions.php:582
|
11257 |
#: includes/functions.php:583 includes/functions.php:590
|
11282 |
msgid "Error interacting with database"
|
11283 |
msgstr ""
|
11284 |
|
11285 |
+
#: includes/functions.php:1180 includes/functions.php:907
|
11286 |
#: includes/functions.php:1064 includes/functions.php:1067
|
11287 |
#: includes/functions.php:1077 includes/functions.php:1096
|
11288 |
#: includes/functions.php:1123 includes/functions.php:1127
|
11293 |
msgid "Error interacting with database: %s"
|
11294 |
msgstr ""
|
11295 |
|
11296 |
+
#: includes/functions.php:1293 includes/functions.php:1331
|
11297 |
#: includes/functions.php:629 includes/functions.php:651
|
11298 |
#: includes/functions.php:667 includes/functions.php:668
|
11299 |
#: includes/functions.php:678 includes/functions.php:681
|
11327 |
msgid "Membership level not found."
|
11328 |
msgstr ""
|
11329 |
|
11330 |
+
#: includes/functions.php:1709 includes/functions.php:1100
|
11331 |
#: includes/functions.php:1101 includes/functions.php:1118
|
11332 |
#: includes/functions.php:1142 includes/functions.php:1143
|
11333 |
#: includes/functions.php:1150 includes/functions.php:1157
|
11344 |
msgid "No code was given to check."
|
11345 |
msgstr ""
|
11346 |
|
11347 |
+
#: includes/functions.php:1718 includes/functions.php:1050
|
11348 |
#: includes/functions.php:1072 includes/functions.php:1088
|
11349 |
#: includes/functions.php:1099 includes/functions.php:1102
|
11350 |
#: includes/functions.php:1109 includes/functions.php:1110
|
11364 |
msgid "The discount code could not be found."
|
11365 |
msgstr ""
|
11366 |
|
11367 |
+
#: includes/functions.php:1733 includes/functions.php:1066
|
11368 |
#: includes/functions.php:1088 includes/functions.php:1104
|
11369 |
#: includes/functions.php:1115 includes/functions.php:1118
|
11370 |
#: includes/functions.php:1124 includes/functions.php:1125
|
11385 |
msgid "This discount code goes into effect on %s."
|
11386 |
msgstr ""
|
11387 |
|
11388 |
+
#: includes/functions.php:1740 includes/functions.php:1075
|
11389 |
#: includes/functions.php:1097 includes/functions.php:1113
|
11390 |
#: includes/functions.php:1124 includes/functions.php:1127
|
11391 |
#: includes/functions.php:1131 includes/functions.php:1132
|
11406 |
msgid "This discount code expired on %s."
|
11407 |
msgstr ""
|
11408 |
|
11409 |
+
#: includes/functions.php:1749 includes/functions.php:1087
|
11410 |
#: includes/functions.php:1109 includes/functions.php:1125
|
11411 |
#: includes/functions.php:1136 includes/functions.php:1139
|
11412 |
#: includes/functions.php:1141 includes/functions.php:1142
|
11426 |
msgid "This discount code is no longer valid."
|
11427 |
msgstr ""
|
11428 |
|
11429 |
+
#: includes/functions.php:1768 includes/functions.php:1102
|
11430 |
#: includes/functions.php:1124 includes/functions.php:1140
|
11431 |
#: includes/functions.php:1151 includes/functions.php:1154
|
11432 |
#: includes/functions.php:1155 includes/functions.php:1164
|
11446 |
msgid "This discount code does not apply to this membership level."
|
11447 |
msgstr ""
|
11448 |
|
11449 |
+
#: includes/functions.php:1806 includes/functions.php:1110
|
11450 |
#: includes/functions.php:1132 includes/functions.php:1148
|
11451 |
#: includes/functions.php:1159 includes/functions.php:1162
|
11452 |
#: includes/functions.php:1172 includes/functions.php:1180
|
11466 |
msgid "This discount code is okay."
|
11467 |
msgstr ""
|
11468 |
|
11469 |
+
#: includes/functions.php:1834 includes/functions.php:1134
|
11470 |
#: includes/functions.php:1156 includes/functions.php:1172
|
11471 |
#: includes/functions.php:1183 includes/functions.php:1186
|
11472 |
#: includes/functions.php:1196 includes/functions.php:1205
|
11486 |
msgid "and"
|
11487 |
msgstr ""
|
11488 |
|
11489 |
+
#: includes/functions.php:2388 includes/functions.php:1319
|
11490 |
#: includes/functions.php:1341 includes/functions.php:1361
|
11491 |
#: includes/functions.php:1372 includes/functions.php:1375
|
11492 |
#: includes/functions.php:1385 includes/functions.php:1394
|
11509 |
msgid "Sign Up for !!name!! Now"
|
11510 |
msgstr ""
|
11511 |
|
11512 |
+
#: includes/functions.php:2412 includes/functions.php:2021
|
11513 |
#: includes/functions.php:2054 includes/functions.php:2085
|
11514 |
#: includes/functions.php:2124 includes/functions.php:2126
|
11515 |
#: includes/functions.php:2179 includes/functions.php:2223
|
11518 |
msgid "Sign Up Now"
|
11519 |
msgstr ""
|
11520 |
|
11521 |
+
#: includes/functions.php:2816 adminpages/templates/orders-email.php:56
|
11522 |
+
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:90
|
11523 |
+
#: pages/confirmation.php:91 pages/confirmation.php:93
|
11524 |
+
#: pages/confirmation.php:94 pages/confirmation.php:98 pages/invoice.php:72
|
11525 |
+
#: pages/invoice.php:73 pages/invoice.php:74 pages/invoice.php:75
|
11526 |
+
#: pages/invoice.php:77 pages/invoice.php:79 pages/invoice.php:83
|
11527 |
+
#: pages/invoice.php:84 pages/invoice.php:88
|
11528 |
+
msgid "Subtotal"
|
11529 |
+
msgstr ""
|
11530 |
+
|
11531 |
+
#: includes/functions.php:2831 pages/confirmation.php:93
|
11532 |
+
#: pages/confirmation.php:94 pages/confirmation.php:96
|
11533 |
+
#: pages/confirmation.php:97 pages/confirmation.php:101 pages/invoice.php:75
|
11534 |
+
#: pages/invoice.php:76 pages/invoice.php:77 pages/invoice.php:78
|
11535 |
+
#: pages/invoice.php:80 pages/invoice.php:82 pages/invoice.php:86
|
11536 |
+
#: pages/invoice.php:87 pages/invoice.php:91
|
11537 |
+
msgid "Coupon"
|
11538 |
+
msgstr ""
|
11539 |
+
|
11540 |
+
#: includes/init.php:176 includes/profile.php:22 pages/checkout.php:52
|
11541 |
+
#: pages/confirmation.php:53 pages/confirmation.php:126 pages/invoice.php:26
|
11542 |
#: adminpages/orders.php:601 adminpages/orders.php:904
|
11543 |
#: adminpages/orders.php:914 adminpages/orders.php:941
|
11544 |
#: adminpages/orders.php:970 adminpages/orders.php:1107
|
11561 |
#: pages/confirmation.php:105 pages/confirmation.php:113
|
11562 |
#: pages/confirmation.php:116 pages/confirmation.php:123
|
11563 |
#: pages/confirmation.php:124 pages/confirmation.php:126
|
11564 |
+
#: pages/confirmation.php:127 pages/confirmation.php:131 pages/invoice.php:26
|
11565 |
+
#: pages/invoice.php:27 pages/invoice.php:28 pages/invoice.php:49
|
11566 |
+
#: pages/invoice.php:51 pages/invoice.php:70
|
11567 |
msgid "Membership Level"
|
11568 |
msgstr ""
|
11569 |
|
11623 |
msgid "Years"
|
11624 |
msgstr ""
|
11625 |
|
11626 |
+
#: includes/login.php:268 includes/login.php:292 includes/login.php:211
|
11627 |
#: includes/login.php:235 includes/login.php:251 includes/login.php:257
|
11628 |
#: includes/login.php:264 includes/login.php:275 includes/login.php:281
|
11629 |
#: includes/login.php:288
|
11630 |
msgid "Welcome"
|
11631 |
msgstr ""
|
11632 |
|
11633 |
+
#: includes/login.php:270 includes/login.php:294 includes/login.php:213
|
11634 |
#: includes/login.php:237 includes/login.php:253 includes/login.php:259
|
11635 |
#: includes/login.php:266 includes/login.php:277 includes/login.php:283
|
11636 |
#: includes/login.php:290
|
11637 |
msgid "Lost Password"
|
11638 |
msgstr ""
|
11639 |
|
11640 |
+
#: includes/login.php:272 includes/login.php:296 includes/login.php:517
|
11641 |
+
#: includes/login.php:693 includes/login.php:215 includes/login.php:239
|
11642 |
+
#: includes/login.php:255 includes/login.php:261 includes/login.php:268
|
11643 |
+
#: includes/login.php:279 includes/login.php:285 includes/login.php:292
|
11644 |
+
#: includes/login.php:689
|
11645 |
msgid "Reset Password"
|
11646 |
msgstr ""
|
11647 |
|
11648 |
+
#: includes/login.php:320 includes/login.php:855 includes/login.php:263
|
11649 |
#: includes/login.php:303 includes/login.php:309 includes/login.php:316
|
11650 |
#: includes/login.php:751 includes/login.php:820 includes/login.php:830
|
11651 |
#: includes/login.php:868
|
11652 |
msgid "There was a problem with your username or password."
|
11653 |
msgstr ""
|
11654 |
|
11655 |
+
#: includes/login.php:324 includes/login.php:267 includes/login.php:307
|
11656 |
#: includes/login.php:313 includes/login.php:320
|
11657 |
msgid "Unknown username. Check again or try your email address."
|
11658 |
msgstr ""
|
11659 |
|
11660 |
+
#: includes/login.php:328 includes/login.php:271 includes/login.php:311
|
11661 |
#: includes/login.php:317 includes/login.php:324
|
11662 |
msgid "Empty username. Please enter your username and try again."
|
11663 |
msgstr ""
|
11664 |
|
11665 |
+
#: includes/login.php:332 includes/login.php:275 includes/login.php:315
|
11666 |
#: includes/login.php:321 includes/login.php:328
|
11667 |
msgid "Empty password. Please enter your password and try again."
|
11668 |
msgstr ""
|
11669 |
|
11670 |
+
#: includes/login.php:336 includes/login.php:279 includes/login.php:319
|
11671 |
#: includes/login.php:325 includes/login.php:332
|
11672 |
msgid "The password you entered for the user is incorrect. Please try again."
|
11673 |
msgstr ""
|
11674 |
|
11675 |
+
#: includes/login.php:340 includes/login.php:283 includes/login.php:323
|
11676 |
#: includes/login.php:329 includes/login.php:336
|
11677 |
msgid "Check your email for the confirmation link."
|
11678 |
msgstr ""
|
11679 |
|
11680 |
+
#: includes/login.php:349 includes/login.php:292 includes/login.php:332
|
11681 |
#: includes/login.php:338 includes/login.php:345
|
11682 |
msgid "You are now logged out."
|
11683 |
msgstr ""
|
11684 |
|
11685 |
+
#: includes/login.php:353 includes/login.php:296 includes/login.php:336
|
11686 |
#: includes/login.php:342 includes/login.php:349
|
11687 |
msgid "There was a problem logging you out."
|
11688 |
msgstr ""
|
11689 |
|
11690 |
+
#: includes/login.php:364 includes/login.php:307 includes/login.php:347
|
11691 |
#: includes/login.php:353 includes/login.php:360
|
11692 |
msgid "Check your email for a link to reset your password."
|
11693 |
msgstr ""
|
11694 |
|
11695 |
+
#: includes/login.php:367 includes/login.php:310 includes/login.php:350
|
11696 |
#: includes/login.php:356 includes/login.php:363
|
11697 |
msgid "There was an unexpected error regarding your email. Please try again"
|
11698 |
msgstr ""
|
11699 |
|
11700 |
+
#: includes/login.php:377 includes/login.php:320 includes/login.php:360
|
11701 |
#: includes/login.php:366 includes/login.php:373
|
11702 |
msgid "Your reset password key is invalid."
|
11703 |
msgstr ""
|
11704 |
|
11705 |
+
#: includes/login.php:381 includes/login.php:324 includes/login.php:364
|
11706 |
#: includes/login.php:370 includes/login.php:377
|
11707 |
msgid ""
|
11708 |
"Your reset password key is expired, please request a new key from the "
|
11709 |
"password reset page."
|
11710 |
msgstr ""
|
11711 |
|
11712 |
+
#: includes/login.php:393 includes/login.php:336 includes/login.php:376
|
11713 |
#: includes/login.php:382 includes/login.php:389
|
11714 |
msgid "Your password has successfully been updated."
|
11715 |
msgstr ""
|
11716 |
|
11717 |
+
#: includes/login.php:397 includes/login.php:340 includes/login.php:380
|
11718 |
#: includes/login.php:386 includes/login.php:393
|
11719 |
msgid "There was a problem updating your password"
|
11720 |
msgstr ""
|
11721 |
|
11722 |
+
#: includes/login.php:411 includes/login.php:349 includes/login.php:394
|
11723 |
#: includes/login.php:400 includes/login.php:407
|
11724 |
msgid "There is no account with that username or email address."
|
11725 |
msgstr ""
|
11726 |
|
11727 |
+
#: includes/login.php:415 includes/login.php:353 includes/login.php:398
|
11728 |
#: includes/login.php:404 includes/login.php:411
|
11729 |
msgid "Please enter a valid username."
|
11730 |
msgstr ""
|
11731 |
|
11732 |
+
#: includes/login.php:419 includes/login.php:357 includes/login.php:402
|
11733 |
#: includes/login.php:408 includes/login.php:415
|
11734 |
msgid "You've entered an invalid email address."
|
11735 |
msgstr ""
|
11736 |
|
11737 |
+
#: includes/login.php:423 includes/profile.php:603 includes/login.php:361
|
11738 |
#: includes/login.php:406 includes/login.php:412 includes/login.php:419
|
11739 |
#: includes/profile.php:586 includes/profile.php:595 includes/profile.php:603
|
11740 |
#: includes/profile.php:604 includes/profile.php:624
|
11741 |
msgid "New passwords do not match."
|
11742 |
msgstr ""
|
11743 |
|
11744 |
+
#: includes/login.php:427 includes/profile.php:599 includes/login.php:365
|
11745 |
#: includes/login.php:410 includes/login.php:416 includes/login.php:423
|
11746 |
#: includes/profile.php:582 includes/profile.php:591 includes/profile.php:599
|
11747 |
#: includes/profile.php:600 includes/profile.php:620
|
11748 |
msgid "Please complete all fields."
|
11749 |
msgstr ""
|
11750 |
|
11751 |
+
#: includes/login.php:431 includes/login.php:414 includes/login.php:420
|
11752 |
#: includes/login.php:427
|
11753 |
msgid ""
|
11754 |
"The email could not be sent. This site may not be correctly configured to "
|
11755 |
"send emails."
|
11756 |
msgstr ""
|
11757 |
|
11758 |
+
#: includes/login.php:497
|
11759 |
+
msgid "Password Reset"
|
11760 |
+
msgstr ""
|
11761 |
+
|
11762 |
+
#: includes/login.php:502 includes/login.php:498
|
11763 |
msgid ""
|
11764 |
"Please enter your username or email address. You will receive a link to "
|
11765 |
"create a new password via email."
|
11766 |
msgstr ""
|
11767 |
|
11768 |
+
#: includes/login.php:527 includes/login.php:523
|
11769 |
msgid "You are already signed in."
|
11770 |
msgstr ""
|
11771 |
|
11772 |
+
#: includes/login.php:562 includes/login.php:558
|
11773 |
msgid "Username or Email Address"
|
11774 |
msgstr ""
|
11775 |
|
11776 |
+
#: includes/login.php:567 includes/login.php:563
|
11777 |
msgid "Get New Password"
|
11778 |
msgstr ""
|
11779 |
|
11780 |
+
#: includes/login.php:646 includes/login.php:655 includes/login.php:642
|
11781 |
#: includes/login.php:651
|
11782 |
msgid ""
|
11783 |
"Your password reset link appears to be invalid. Please request a new link "
|
11784 |
"below."
|
11785 |
msgstr ""
|
11786 |
|
11787 |
+
#: includes/login.php:648 includes/login.php:657 includes/login.php:644
|
11788 |
#: includes/login.php:653
|
11789 |
msgid "Your password reset link has expired. Please request a new link below."
|
11790 |
msgstr ""
|
11791 |
|
11792 |
+
#: includes/login.php:682 includes/profile.php:651 includes/login.php:678
|
11793 |
#: includes/profile.php:634 includes/profile.php:643 includes/profile.php:651
|
11794 |
#: includes/profile.php:652 includes/profile.php:672
|
11795 |
msgid "New Password"
|
11796 |
msgstr ""
|
11797 |
|
11798 |
+
#: includes/login.php:684 includes/profile.php:654 includes/scripts.php:86
|
11799 |
#: includes/login.php:587 includes/login.php:636 includes/login.php:642
|
11800 |
#: includes/login.php:680 includes/profile.php:637 includes/profile.php:646
|
11801 |
#: includes/profile.php:654 includes/profile.php:655 includes/profile.php:675
|
11803 |
msgid "Strength Indicator"
|
11804 |
msgstr ""
|
11805 |
|
11806 |
+
#: includes/login.php:688 includes/profile.php:658 includes/login.php:684
|
11807 |
#: includes/profile.php:641 includes/profile.php:650 includes/profile.php:658
|
11808 |
#: includes/profile.php:659 includes/profile.php:679
|
11809 |
msgid "Confirm New Password"
|
11810 |
msgstr ""
|
11811 |
|
11812 |
+
#: includes/login.php:718 includes/login.php:714
|
11813 |
msgid "Join Now"
|
11814 |
msgstr ""
|
11815 |
|
11816 |
+
#: includes/login.php:720 includes/login.php:716
|
11817 |
msgid "Register"
|
11818 |
msgstr ""
|
11819 |
|
11820 |
+
#: includes/login.php:725 includes/login.php:721
|
11821 |
msgid "Lost Password?"
|
11822 |
msgstr ""
|
11823 |
|
11824 |
+
#: includes/login.php:803 includes/login.php:799
|
11825 |
msgid "Invalid Request"
|
11826 |
msgstr ""
|
11827 |
|
11828 |
+
#: includes/login.php:927 includes/login.php:940
|
11829 |
#, php-format
|
11830 |
msgid "Welcome, %s"
|
11831 |
msgstr ""
|
11832 |
|
11833 |
+
#: includes/login.php:961 includes/menus.php:76 includes/menus.php:79
|
11834 |
#: includes/menus.php:169 shortcodes/pmpro_account.php:185
|
11835 |
#: includes/login.php:974 includes/menus.php:76 includes/menus.php:79
|
11836 |
#: includes/menus.php:169 shortcodes/pmpro_account.php:185
|
11837 |
msgid "Log Out"
|
11838 |
msgstr ""
|
11839 |
|
11840 |
+
#: includes/login.php:994 includes/login.php:886 includes/login.php:959
|
11841 |
#: includes/login.php:969 includes/login.php:1007
|
11842 |
msgid "Missing request ID."
|
11843 |
msgstr ""
|
11844 |
|
11845 |
+
#: includes/login.php:998 includes/login.php:890 includes/login.php:963
|
11846 |
#: includes/login.php:973 includes/login.php:1011
|
11847 |
msgid "Missing confirm key."
|
11848 |
msgstr ""
|
11864 |
msgid "Log In Widget - PMPro"
|
11865 |
msgstr ""
|
11866 |
|
11867 |
+
#: includes/metaboxes.php:38 includes/metaboxes.php:37
|
11868 |
#: includes/metaboxes.php:38 includes/metaboxes.php:39
|
11869 |
#: includes/metaboxes.php:40
|
11870 |
msgid ""
|
11872 |
"category that requires membership."
|
11873 |
msgstr ""
|
11874 |
|
11875 |
+
#: includes/metaboxes.php:107 includes/metaboxes.php:108
|
11876 |
#: includes/metaboxes.php:99 includes/metaboxes.php:100
|
11877 |
#: includes/metaboxes.php:104 includes/metaboxes.php:105
|
11878 |
#: includes/metaboxes.php:106 includes/metaboxes.php:107
|
11879 |
msgid "Require Membership"
|
11880 |
msgstr ""
|
11881 |
|
11882 |
+
#: includes/metaboxes.php:136 includes/metaboxes.php:130
|
11883 |
#: includes/metaboxes.php:134 includes/metaboxes.php:135
|
11884 |
#: includes/metaboxes.php:136
|
11885 |
msgid ""
|
12141 |
msgid "Your profile has been updated."
|
12142 |
msgstr ""
|
12143 |
|
12144 |
+
#: includes/profile.php:507 pages/billing.php:152 pages/checkout.php:223
|
12145 |
#: includes/profile.php:490 includes/profile.php:499 includes/profile.php:507
|
12146 |
#: includes/profile.php:508 includes/profile.php:523 pages/billing.php:65
|
12147 |
#: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
|
12149 |
#: pages/billing.php:104 pages/billing.php:107 pages/billing.php:108
|
12150 |
#: pages/billing.php:110 pages/billing.php:112 pages/billing.php:113
|
12151 |
#: pages/billing.php:121 pages/billing.php:130 pages/billing.php:152
|
12152 |
+
#: pages/checkout.php:221 pages/checkout.php:230 pages/checkout.php:233
|
12153 |
+
#: pages/checkout.php:279 pages/checkout.php:287 pages/checkout.php:305
|
12154 |
+
#: pages/checkout.php:307 pages/checkout.php:309 pages/checkout.php:318
|
12155 |
+
#: pages/checkout.php:321 pages/checkout.php:324 pages/checkout.php:326
|
12156 |
+
#: pages/checkout.php:328 pages/checkout.php:333 pages/checkout.php:336
|
12157 |
msgid "First Name"
|
12158 |
msgstr ""
|
12159 |
|
12160 |
+
#: includes/profile.php:508 pages/billing.php:156 pages/checkout.php:227
|
12161 |
#: includes/profile.php:491 includes/profile.php:500 includes/profile.php:508
|
12162 |
#: includes/profile.php:509 includes/profile.php:528 pages/billing.php:69
|
12163 |
#: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
|
12165 |
#: pages/billing.php:108 pages/billing.php:111 pages/billing.php:112
|
12166 |
#: pages/billing.php:114 pages/billing.php:116 pages/billing.php:117
|
12167 |
#: pages/billing.php:125 pages/billing.php:134 pages/billing.php:156
|
12168 |
+
#: pages/checkout.php:225 pages/checkout.php:234 pages/checkout.php:237
|
12169 |
+
#: pages/checkout.php:283 pages/checkout.php:291 pages/checkout.php:309
|
12170 |
+
#: pages/checkout.php:311 pages/checkout.php:313 pages/checkout.php:322
|
12171 |
+
#: pages/checkout.php:325 pages/checkout.php:328 pages/checkout.php:330
|
12172 |
+
#: pages/checkout.php:332 pages/checkout.php:337 pages/checkout.php:340
|
12173 |
msgid "Last Name"
|
12174 |
msgstr ""
|
12175 |
|
12361 |
#: pages/account.php:105 pages/account.php:109 pages/billing.php:84
|
12362 |
#: pages/confirmation.php:61 pages/confirmation.php:63
|
12363 |
#: pages/confirmation.php:69 pages/confirmation.php:78
|
12364 |
+
#: pages/confirmation.php:79 pages/confirmation.php:82
|
12365 |
+
#: pages/confirmation.php:83 pages/invoice.php:48 pages/invoice.php:50
|
12366 |
+
#: pages/invoice.php:60 pages/invoice.php:61 pages/invoice.php:62
|
12367 |
+
#: pages/invoice.php:69 pages/invoice.php:73
|
12368 |
msgid "Payment Method"
|
12369 |
msgstr ""
|
12370 |
|
12371 |
#: pages/billing.php:86 pages/confirmation.php:85 pages/invoice.php:75
|
12372 |
#: pages/billing.php:86 pages/confirmation.php:79 pages/confirmation.php:80
|
12373 |
#: pages/confirmation.php:81 pages/confirmation.php:82
|
12374 |
+
#: pages/confirmation.php:83 pages/confirmation.php:85
|
12375 |
+
#: pages/confirmation.php:88 pages/invoice.php:61 pages/invoice.php:62
|
12376 |
+
#: pages/invoice.php:63 pages/invoice.php:67 pages/invoice.php:69
|
12377 |
+
#: pages/invoice.php:71 pages/invoice.php:75
|
12378 |
msgid "ending in"
|
12379 |
msgstr ""
|
12380 |
|
12381 |
+
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:133
|
12382 |
+
#: pages/invoice.php:143 pages/billing.php:97 pages/billing.php:103
|
12383 |
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:111
|
12384 |
#: pages/confirmation.php:113 pages/confirmation.php:121
|
12385 |
#: pages/confirmation.php:124 pages/confirmation.php:131
|
12386 |
#: pages/confirmation.php:132 pages/confirmation.php:133
|
12387 |
+
#: pages/confirmation.php:134 pages/confirmation.php:138 pages/invoice.php:121
|
12388 |
+
#: pages/invoice.php:133 pages/invoice.php:134 pages/invoice.php:135
|
12389 |
+
#: pages/invoice.php:136 pages/invoice.php:139 pages/invoice.php:141
|
12390 |
+
#: pages/invoice.php:143 pages/invoice.php:144 pages/invoice.php:148
|
12391 |
msgid "View Your Membership Account →"
|
12392 |
msgstr ""
|
12393 |
|
12405 |
msgid "Your billing information cannot be updated at this time."
|
12406 |
msgstr ""
|
12407 |
|
12408 |
+
#: pages/billing.php:148 pages/checkout.php:219 pages/confirmation.php:66
|
12409 |
#: pages/invoice.php:56 adminpages/memberslist.php:117
|
12410 |
#: adminpages/memberslist.php:150 adminpages/memberslist.php:160
|
12411 |
#: adminpages/memberslist.php:170 adminpages/memberslist.php:174
|
12414 |
#: pages/billing.php:76 pages/billing.php:77 pages/billing.php:80
|
12415 |
#: pages/billing.php:100 pages/billing.php:103 pages/billing.php:104
|
12416 |
#: pages/billing.php:108 pages/billing.php:109 pages/billing.php:117
|
12417 |
+
#: pages/billing.php:126 pages/billing.php:148 pages/checkout.php:217
|
12418 |
+
#: pages/checkout.php:226 pages/checkout.php:229 pages/checkout.php:275
|
12419 |
+
#: pages/checkout.php:283 pages/checkout.php:298 pages/checkout.php:300
|
12420 |
+
#: pages/checkout.php:302 pages/checkout.php:311 pages/checkout.php:314
|
12421 |
+
#: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
|
12422 |
+
#: pages/checkout.php:326 pages/checkout.php:329 pages/confirmation.php:59
|
12423 |
+
#: pages/confirmation.php:61 pages/confirmation.php:65
|
12424 |
+
#: pages/confirmation.php:66 pages/confirmation.php:67
|
12425 |
+
#: pages/confirmation.php:69 pages/invoice.php:46 pages/invoice.php:47
|
12426 |
+
#: pages/invoice.php:48 pages/invoice.php:49 pages/invoice.php:56
|
12427 |
msgid "Billing Address"
|
12428 |
msgstr ""
|
12429 |
|
12430 |
+
#: pages/billing.php:162 pages/checkout.php:231 pages/billing.php:73
|
12431 |
#: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
|
12432 |
#: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
|
12433 |
#: pages/billing.php:112 pages/billing.php:115 pages/billing.php:116
|
12434 |
#: pages/billing.php:118 pages/billing.php:120 pages/billing.php:121
|
12435 |
#: pages/billing.php:129 pages/billing.php:138 pages/billing.php:162
|
12436 |
+
#: pages/checkout.php:229 pages/checkout.php:238 pages/checkout.php:241
|
12437 |
+
#: pages/checkout.php:287 pages/checkout.php:295 pages/checkout.php:313
|
12438 |
+
#: pages/checkout.php:315 pages/checkout.php:317 pages/checkout.php:326
|
12439 |
+
#: pages/checkout.php:329 pages/checkout.php:332 pages/checkout.php:334
|
12440 |
+
#: pages/checkout.php:336 pages/checkout.php:341 pages/checkout.php:344
|
12441 |
msgid "Address 1"
|
12442 |
msgstr ""
|
12443 |
|
12444 |
+
#: pages/billing.php:166 pages/checkout.php:235 pages/billing.php:77
|
12445 |
#: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
|
12446 |
#: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
|
12447 |
#: pages/billing.php:116 pages/billing.php:119 pages/billing.php:120
|
12448 |
#: pages/billing.php:122 pages/billing.php:124 pages/billing.php:125
|
12449 |
#: pages/billing.php:133 pages/billing.php:142 pages/billing.php:166
|
12450 |
+
#: pages/checkout.php:233 pages/checkout.php:242 pages/checkout.php:245
|
12451 |
+
#: pages/checkout.php:291 pages/checkout.php:299 pages/checkout.php:317
|
12452 |
+
#: pages/checkout.php:319 pages/checkout.php:321 pages/checkout.php:330
|
12453 |
+
#: pages/checkout.php:333 pages/checkout.php:336 pages/checkout.php:338
|
12454 |
+
#: pages/checkout.php:340 pages/checkout.php:345 pages/checkout.php:348
|
12455 |
msgid "Address 2"
|
12456 |
msgstr ""
|
12457 |
|
12458 |
+
#: pages/billing.php:176 pages/checkout.php:242 pages/billing.php:87
|
12459 |
#: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
|
12460 |
#: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
|
12461 |
#: pages/billing.php:126 pages/billing.php:129 pages/billing.php:130
|
12462 |
#: pages/billing.php:132 pages/billing.php:134 pages/billing.php:135
|
12463 |
#: pages/billing.php:143 pages/billing.php:152 pages/billing.php:176
|
12464 |
+
#: pages/checkout.php:240 pages/checkout.php:249 pages/checkout.php:252
|
12465 |
+
#: pages/checkout.php:298 pages/checkout.php:306 pages/checkout.php:327
|
12466 |
+
#: pages/checkout.php:329 pages/checkout.php:331 pages/checkout.php:340
|
12467 |
+
#: pages/checkout.php:343 pages/checkout.php:346 pages/checkout.php:348
|
12468 |
+
#: pages/checkout.php:350 pages/checkout.php:355 pages/checkout.php:358
|
12469 |
msgid "City"
|
12470 |
msgstr ""
|
12471 |
|
12472 |
+
#: pages/billing.php:180 pages/checkout.php:246 pages/billing.php:91
|
12473 |
#: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
|
12474 |
#: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
|
12475 |
#: pages/billing.php:130 pages/billing.php:133 pages/billing.php:134
|
12476 |
#: pages/billing.php:136 pages/billing.php:138 pages/billing.php:139
|
12477 |
#: pages/billing.php:147 pages/billing.php:156 pages/billing.php:180
|
12478 |
+
#: pages/checkout.php:244 pages/checkout.php:253 pages/checkout.php:256
|
12479 |
+
#: pages/checkout.php:302 pages/checkout.php:310 pages/checkout.php:331
|
12480 |
+
#: pages/checkout.php:333 pages/checkout.php:335 pages/checkout.php:344
|
12481 |
+
#: pages/checkout.php:347 pages/checkout.php:350 pages/checkout.php:352
|
12482 |
+
#: pages/checkout.php:354 pages/checkout.php:359 pages/checkout.php:362
|
12483 |
msgid "State"
|
12484 |
msgstr ""
|
12485 |
|
12486 |
+
#: pages/billing.php:184 pages/checkout.php:250 pages/billing.php:95
|
12487 |
#: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
|
12488 |
#: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
|
12489 |
#: pages/billing.php:134 pages/billing.php:137 pages/billing.php:138
|
12490 |
#: pages/billing.php:140 pages/billing.php:142 pages/billing.php:143
|
12491 |
#: pages/billing.php:151 pages/billing.php:160 pages/billing.php:184
|
12492 |
+
#: pages/checkout.php:248 pages/checkout.php:257 pages/checkout.php:260
|
12493 |
+
#: pages/checkout.php:306 pages/checkout.php:314 pages/checkout.php:335
|
12494 |
+
#: pages/checkout.php:337 pages/checkout.php:339 pages/checkout.php:348
|
12495 |
+
#: pages/checkout.php:351 pages/checkout.php:354 pages/checkout.php:356
|
12496 |
+
#: pages/checkout.php:358 pages/checkout.php:363 pages/checkout.php:366
|
12497 |
msgid "Postal Code"
|
12498 |
msgstr ""
|
12499 |
|
12500 |
+
#: pages/billing.php:193 pages/checkout.php:255 pages/billing.php:104
|
12501 |
#: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
|
12502 |
#: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
|
12503 |
#: pages/billing.php:143 pages/billing.php:146 pages/billing.php:147
|
12504 |
#: pages/billing.php:149 pages/billing.php:151 pages/billing.php:152
|
12505 |
#: pages/billing.php:160 pages/billing.php:169 pages/billing.php:193
|
12506 |
+
#: pages/checkout.php:253 pages/checkout.php:262 pages/checkout.php:265
|
12507 |
+
#: pages/checkout.php:311 pages/checkout.php:319 pages/checkout.php:344
|
12508 |
+
#: pages/checkout.php:346 pages/checkout.php:348 pages/checkout.php:357
|
12509 |
+
#: pages/checkout.php:360 pages/checkout.php:363 pages/checkout.php:365
|
12510 |
+
#: pages/checkout.php:367 pages/checkout.php:372 pages/checkout.php:375
|
12511 |
msgid "City, State Zip"
|
12512 |
msgstr ""
|
12513 |
|
12514 |
+
#: pages/billing.php:246 pages/checkout.php:292 pages/billing.php:157
|
12515 |
#: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
|
12516 |
#: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
|
12517 |
#: pages/billing.php:196 pages/billing.php:199 pages/billing.php:200
|
12518 |
#: pages/billing.php:202 pages/billing.php:204 pages/billing.php:205
|
12519 |
#: pages/billing.php:213 pages/billing.php:222 pages/billing.php:246
|
12520 |
+
#: pages/checkout.php:290 pages/checkout.php:299 pages/checkout.php:302
|
12521 |
+
#: pages/checkout.php:348 pages/checkout.php:356 pages/checkout.php:397
|
12522 |
+
#: pages/checkout.php:399 pages/checkout.php:401 pages/checkout.php:410
|
12523 |
+
#: pages/checkout.php:413 pages/checkout.php:416 pages/checkout.php:418
|
12524 |
+
#: pages/checkout.php:420 pages/checkout.php:425 pages/checkout.php:428
|
12525 |
msgid "Country"
|
12526 |
msgstr ""
|
12527 |
|
12528 |
+
#: pages/billing.php:271 pages/checkout.php:308 pages/billing.php:182
|
12529 |
#: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
|
12530 |
#: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
|
12531 |
#: pages/billing.php:221 pages/billing.php:224 pages/billing.php:225
|
12532 |
#: pages/billing.php:227 pages/billing.php:229 pages/billing.php:230
|
12533 |
#: pages/billing.php:238 pages/billing.php:247 pages/billing.php:271
|
12534 |
+
#: pages/checkout.php:306 pages/checkout.php:315 pages/checkout.php:318
|
12535 |
+
#: pages/checkout.php:364 pages/checkout.php:372 pages/checkout.php:422
|
12536 |
+
#: pages/checkout.php:424 pages/checkout.php:426 pages/checkout.php:435
|
12537 |
+
#: pages/checkout.php:438 pages/checkout.php:441 pages/checkout.php:443
|
12538 |
+
#: pages/checkout.php:445 pages/checkout.php:450 pages/checkout.php:453
|
12539 |
msgid "Phone"
|
12540 |
msgstr ""
|
12541 |
|
12542 |
+
#: pages/billing.php:282 pages/checkout.php:153 pages/checkout.php:323
|
12543 |
#: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
|
12544 |
#: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
|
12545 |
#: pages/billing.php:215 pages/billing.php:232 pages/billing.php:235
|
12549 |
#: pages/checkout.php:197 pages/checkout.php:204 pages/checkout.php:205
|
12550 |
#: pages/checkout.php:207 pages/checkout.php:209 pages/checkout.php:216
|
12551 |
#: pages/checkout.php:218 pages/checkout.php:220 pages/checkout.php:227
|
12552 |
+
#: pages/checkout.php:230 pages/checkout.php:321 pages/checkout.php:330
|
12553 |
+
#: pages/checkout.php:333 pages/checkout.php:379 pages/checkout.php:387
|
12554 |
+
#: pages/checkout.php:436 pages/checkout.php:438 pages/checkout.php:440
|
12555 |
+
#: pages/checkout.php:449 pages/checkout.php:453 pages/checkout.php:455
|
12556 |
+
#: pages/checkout.php:457 pages/checkout.php:460 pages/checkout.php:464
|
12557 |
+
#: pages/checkout.php:467
|
12558 |
msgid "Email Address"
|
12559 |
msgstr ""
|
12560 |
|
12561 |
+
#: pages/billing.php:286 pages/checkout.php:330 pages/billing.php:197
|
12562 |
#: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
|
12563 |
#: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
|
12564 |
#: pages/billing.php:236 pages/billing.php:239 pages/billing.php:240
|
12565 |
#: pages/billing.php:242 pages/billing.php:244 pages/billing.php:245
|
12566 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:286
|
12567 |
+
#: pages/checkout.php:328 pages/checkout.php:337 pages/checkout.php:340
|
12568 |
+
#: pages/checkout.php:386 pages/checkout.php:394 pages/checkout.php:445
|
12569 |
+
#: pages/checkout.php:447 pages/checkout.php:449 pages/checkout.php:458
|
12570 |
+
#: pages/checkout.php:462 pages/checkout.php:464 pages/checkout.php:466
|
12571 |
+
#: pages/checkout.php:469 pages/checkout.php:473 pages/checkout.php:476
|
12572 |
msgid "Confirm Email"
|
12573 |
msgstr ""
|
12574 |
|
12662 |
msgid "Click here to go to the home page."
|
12663 |
msgstr ""
|
12664 |
|
12665 |
+
#: pages/checkout.php:43 pages/checkout.php:26 pages/checkout.php:27
|
12666 |
#: pages/checkout.php:28 pages/checkout.php:30 pages/checkout.php:35
|
12667 |
#: pages/checkout.php:38 pages/checkout.php:41
|
12668 |
msgid ""
|
12670 |
"<strong>click the \"Complete Payment\" button</strong> to finish your order."
|
12671 |
msgstr ""
|
12672 |
|
12673 |
+
#: pages/checkout.php:53 pages/checkout.php:33 pages/checkout.php:34
|
12674 |
#: pages/checkout.php:35 pages/checkout.php:40 pages/checkout.php:42
|
12675 |
#: pages/checkout.php:43 pages/checkout.php:46 pages/checkout.php:48
|
12676 |
#: pages/checkout.php:51
|
12677 |
msgid "change"
|
12678 |
msgstr ""
|
12679 |
|
12680 |
+
#: pages/checkout.php:57 pages/checkout.php:39 pages/checkout.php:41
|
12681 |
#: pages/checkout.php:42 pages/checkout.php:43 pages/checkout.php:44
|
12682 |
#: pages/checkout.php:50 pages/checkout.php:51 pages/checkout.php:52
|
12683 |
#: pages/checkout.php:54 pages/checkout.php:55
|
12685 |
msgid "You have selected the <strong>%s</strong> membership level."
|
12686 |
msgstr ""
|
12687 |
|
12688 |
+
#: pages/checkout.php:74 pages/checkout.php:69 pages/checkout.php:72
|
12689 |
msgid "<p class=\""
|
12690 |
msgstr ""
|
12691 |
|
12692 |
+
#: pages/checkout.php:84 pages/checkout.php:66 pages/checkout.php:71
|
12693 |
#: pages/checkout.php:79 pages/checkout.php:82
|
12694 |
msgid "Click here to change your discount code."
|
12695 |
msgstr ""
|
12696 |
|
12697 |
+
#: pages/checkout.php:86 pages/checkout.php:64 pages/checkout.php:65
|
12698 |
#: pages/checkout.php:66 pages/checkout.php:68 pages/checkout.php:73
|
12699 |
#: pages/checkout.php:74 pages/checkout.php:81 pages/checkout.php:84
|
12700 |
msgid "Click here to enter your discount code"
|
12701 |
msgstr ""
|
12702 |
|
12703 |
+
#: pages/checkout.php:86 pages/checkout.php:64 pages/checkout.php:65
|
12704 |
#: pages/checkout.php:66 pages/checkout.php:68 pages/checkout.php:73
|
12705 |
#: pages/checkout.php:74 pages/checkout.php:81 pages/checkout.php:84
|
12706 |
msgid "Do you have a discount code?"
|
12707 |
msgstr ""
|
12708 |
|
12709 |
+
#: pages/checkout.php:118 pages/checkout.php:113 pages/checkout.php:116
|
12710 |
#: pages/checkout.php:160 pages/checkout.php:162 pages/checkout.php:163
|
12711 |
#: pages/checkout.php:165 pages/checkout.php:170 pages/checkout.php:172
|
12712 |
#: pages/checkout.php:173 pages/checkout.php:175 pages/checkout.php:182
|
12714 |
msgid "Account Information"
|
12715 |
msgstr ""
|
12716 |
|
12717 |
+
#: pages/checkout.php:119 pages/checkout.php:114 pages/checkout.php:117
|
12718 |
#: pages/checkout.php:160 pages/checkout.php:163 pages/checkout.php:165
|
12719 |
#: pages/checkout.php:171 pages/checkout.php:172 pages/checkout.php:174
|
12720 |
#: pages/checkout.php:176 pages/checkout.php:183 pages/checkout.php:186
|
12721 |
msgid "Already have an account?"
|
12722 |
msgstr ""
|
12723 |
|
12724 |
+
#: pages/checkout.php:119 pages/checkout.php:114 pages/checkout.php:117
|
12725 |
#: pages/checkout.php:160 pages/checkout.php:163 pages/checkout.php:165
|
12726 |
#: pages/checkout.php:171 pages/checkout.php:172 pages/checkout.php:174
|
12727 |
#: pages/checkout.php:176 pages/checkout.php:183 pages/checkout.php:186
|
12728 |
msgid "Log in here"
|
12729 |
msgstr ""
|
12730 |
|
12731 |
+
#: pages/checkout.php:140 pages/checkout.php:135 pages/checkout.php:138
|
12732 |
#: pages/checkout.php:184 pages/checkout.php:186 pages/checkout.php:189
|
12733 |
#: pages/checkout.php:191 pages/checkout.php:192 pages/checkout.php:198
|
12734 |
#: pages/checkout.php:200 pages/checkout.php:202 pages/checkout.php:209
|
12736 |
msgid "Confirm Password"
|
12737 |
msgstr ""
|
12738 |
|
12739 |
+
#: pages/checkout.php:161 pages/checkout.php:156 pages/checkout.php:159
|
12740 |
#: pages/checkout.php:205 pages/checkout.php:213 pages/checkout.php:216
|
12741 |
#: pages/checkout.php:218 pages/checkout.php:225 pages/checkout.php:227
|
12742 |
#: pages/checkout.php:229 pages/checkout.php:236 pages/checkout.php:239
|
12743 |
msgid "Confirm Email Address"
|
12744 |
msgstr ""
|
12745 |
|
12746 |
+
#: pages/checkout.php:174 pages/checkout.php:169 pages/checkout.php:172
|
12747 |
#: pages/checkout.php:218 pages/checkout.php:226 pages/checkout.php:232
|
12748 |
#: pages/checkout.php:235 pages/checkout.php:237 pages/checkout.php:244
|
12749 |
#: pages/checkout.php:246 pages/checkout.php:248 pages/checkout.php:255
|
12751 |
msgid "Full Name"
|
12752 |
msgstr ""
|
12753 |
|
12754 |
+
#: pages/checkout.php:175 pages/checkout.php:170 pages/checkout.php:173
|
12755 |
#: pages/checkout.php:219 pages/checkout.php:227 pages/checkout.php:233
|
12756 |
#: pages/checkout.php:236 pages/checkout.php:238 pages/checkout.php:245
|
12757 |
#: pages/checkout.php:247 pages/checkout.php:249 pages/checkout.php:256
|
12759 |
msgid "LEAVE THIS BLANK"
|
12760 |
msgstr ""
|
12761 |
|
12762 |
+
#: pages/checkout.php:182 pages/checkout.php:180 pages/checkout.php:189
|
12763 |
+
#: pages/checkout.php:192 pages/checkout.php:238 pages/checkout.php:246
|
12764 |
+
#: pages/checkout.php:257 pages/checkout.php:260 pages/checkout.php:262
|
12765 |
+
#: pages/checkout.php:269 pages/checkout.php:271 pages/checkout.php:273
|
12766 |
+
#: pages/checkout.php:280 pages/checkout.php:283
|
12767 |
#, php-format
|
12768 |
msgid ""
|
12769 |
"You are logged in as <strong>%s</strong>. If you would like to use a "
|
12770 |
"different account for this membership, <a href=\"%s\">log out now</a>."
|
12771 |
msgstr ""
|
12772 |
|
12773 |
+
#: pages/checkout.php:198 pages/checkout.php:196 pages/checkout.php:205
|
12774 |
+
#: pages/checkout.php:208 pages/checkout.php:254 pages/checkout.php:262
|
12775 |
+
#: pages/checkout.php:276 pages/checkout.php:278 pages/checkout.php:285
|
12776 |
+
#: pages/checkout.php:287 pages/checkout.php:289 pages/checkout.php:292
|
12777 |
+
#: pages/checkout.php:296 pages/checkout.php:299
|
12778 |
msgid "Choose your Payment Method"
|
12779 |
msgstr ""
|
12780 |
|
12781 |
+
#: pages/checkout.php:203 pages/checkout.php:201 pages/checkout.php:210
|
12782 |
+
#: pages/checkout.php:213 pages/checkout.php:259 pages/checkout.php:267
|
12783 |
+
#: pages/checkout.php:284 pages/checkout.php:286 pages/checkout.php:293
|
12784 |
+
#: pages/checkout.php:296 pages/checkout.php:298 pages/checkout.php:300
|
12785 |
+
#: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:308
|
12786 |
msgid "Check Out with a Credit Card Here"
|
12787 |
msgstr ""
|
12788 |
|
12789 |
+
#: pages/checkout.php:413 classes/gateways/class.pmprogateway_stripe.php:623
|
12790 |
#: classes/gateways/class.pmprogateway_stripe.php:638
|
12791 |
#: classes/gateways/class.pmprogateway_stripe.php:646
|
12792 |
#: classes/gateways/class.pmprogateway_stripe.php:653
|
12793 |
#: classes/gateways/class.pmprogateway_stripe.php:654
|
12794 |
+
#: classes/gateways/class.pmprogateway_stripe.php:655 pages/checkout.php:411
|
12795 |
+
#: pages/checkout.php:420 pages/checkout.php:423 pages/checkout.php:492
|
12796 |
+
#: pages/checkout.php:500
|
12797 |
msgid "Security Code (CVC)"
|
12798 |
msgstr ""
|
12799 |
|
12800 |
+
#: pages/checkout.php:465 pages/checkout.php:277 pages/checkout.php:284
|
12801 |
+
#: pages/checkout.php:459 pages/checkout.php:463 pages/checkout.php:472
|
12802 |
+
#: pages/checkout.php:475 pages/checkout.php:567 pages/checkout.php:575
|
12803 |
+
#: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
|
12804 |
+
#: pages/checkout.php:681 pages/checkout.php:686 pages/checkout.php:690
|
12805 |
+
#: pages/checkout.php:692 pages/checkout.php:693 pages/checkout.php:696
|
12806 |
+
#: pages/checkout.php:697
|
12807 |
#, php-format
|
12808 |
msgid "I agree to the %s"
|
12809 |
msgstr ""
|
12810 |
|
12811 |
+
#: pages/checkout.php:503 pages/checkout.php:484 pages/checkout.php:497
|
12812 |
+
#: pages/checkout.php:500 pages/checkout.php:501 pages/checkout.php:586
|
12813 |
+
#: pages/checkout.php:594 pages/checkout.php:667 pages/checkout.php:674
|
12814 |
+
#: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
|
12815 |
+
#: pages/checkout.php:701 pages/checkout.php:706 pages/checkout.php:710
|
12816 |
+
#: pages/checkout.php:712 pages/checkout.php:713 pages/checkout.php:716
|
12817 |
+
#: pages/checkout.php:717
|
12818 |
msgid "Complete Payment"
|
12819 |
msgstr ""
|
12820 |
|
12821 |
+
#: pages/checkout.php:525 pages/checkout.php:506 pages/checkout.php:519
|
12822 |
+
#: pages/checkout.php:522 pages/checkout.php:523 pages/checkout.php:608
|
12823 |
+
#: pages/checkout.php:616 pages/checkout.php:687 pages/checkout.php:694
|
12824 |
+
#: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
|
12825 |
+
#: pages/checkout.php:723 pages/checkout.php:728 pages/checkout.php:732
|
12826 |
+
#: pages/checkout.php:734 pages/checkout.php:735 pages/checkout.php:738
|
12827 |
+
#: pages/checkout.php:739
|
12828 |
msgid "Processing..."
|
12829 |
msgstr ""
|
12830 |
|
12856 |
msgid "Invoice #%s on %s"
|
12857 |
msgstr ""
|
12858 |
|
12859 |
+
#: pages/confirmation.php:52 pages/confirmation.php:125 pages/invoice.php:25
|
12860 |
#: pages/confirmation.php:45 pages/confirmation.php:46
|
12861 |
#: pages/confirmation.php:51 pages/confirmation.php:52
|
12862 |
#: pages/confirmation.php:102 pages/confirmation.php:104
|
12863 |
#: pages/confirmation.php:112 pages/confirmation.php:115
|
12864 |
#: pages/confirmation.php:122 pages/confirmation.php:123
|
12865 |
+
#: pages/confirmation.php:125 pages/confirmation.php:126
|
12866 |
+
#: pages/confirmation.php:130 pages/invoice.php:25 pages/invoice.php:26
|
12867 |
+
#: pages/invoice.php:27
|
12868 |
msgid "Account"
|
12869 |
msgstr ""
|
12870 |
|
12875 |
msgid "Membership Expires"
|
12876 |
msgstr ""
|
12877 |
|
12878 |
+
#: pages/confirmation.php:95 pages/invoice.php:85 pages/invoice.php:113
|
12879 |
#: pages/confirmation.php:61 pages/confirmation.php:63
|
12880 |
#: pages/confirmation.php:65 pages/confirmation.php:71
|
12881 |
#: pages/confirmation.php:87 pages/confirmation.php:88
|
12882 |
+
#: pages/confirmation.php:90 pages/confirmation.php:91
|
12883 |
+
#: pages/confirmation.php:95 pages/invoice.php:50 pages/invoice.php:52
|
12884 |
+
#: pages/invoice.php:69 pages/invoice.php:70 pages/invoice.php:71
|
12885 |
+
#: pages/invoice.php:72 pages/invoice.php:80 pages/invoice.php:81
|
12886 |
+
#: pages/invoice.php:85 pages/invoice.php:90 pages/invoice.php:102
|
12887 |
#: pages/invoice.php:103 pages/invoice.php:104 pages/invoice.php:105
|
12888 |
#: pages/invoice.php:107 pages/invoice.php:109 pages/invoice.php:110
|
12889 |
+
#: pages/invoice.php:113 pages/invoice.php:114 pages/invoice.php:118
|
12890 |
msgid "Total Billed"
|
12891 |
msgstr ""
|
12892 |
|
12893 |
+
#: pages/confirmation.php:113 pages/confirmation.php:97
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12894 |
#: pages/confirmation.php:100 pages/confirmation.php:103
|
12895 |
#: pages/confirmation.php:110 pages/confirmation.php:111
|
12896 |
#: pages/confirmation.php:113 pages/confirmation.php:114
|
12897 |
+
#: pages/confirmation.php:118
|
12898 |
#, php-format
|
12899 |
msgid ""
|
12900 |
"Below are details about your membership account. A welcome email has been "
|
12901 |
"sent to %s."
|
12902 |
msgstr ""
|
12903 |
|
12904 |
+
#: pages/confirmation.php:126 shortcodes/pmpro_account.php:234
|
12905 |
#: pages/confirmation.php:103 pages/confirmation.php:105
|
12906 |
#: pages/confirmation.php:113 pages/confirmation.php:116
|
12907 |
#: pages/confirmation.php:123 pages/confirmation.php:124
|
12908 |
#: pages/confirmation.php:126 pages/confirmation.php:127
|
12909 |
+
#: pages/confirmation.php:131 shortcodes/pmpro_account.php:151
|
12910 |
+
#: shortcodes/pmpro_account.php:227 shortcodes/pmpro_account.php:234
|
12911 |
msgid "Pending"
|
12912 |
msgstr ""
|
12913 |
|
12914 |
+
#: pages/confirmation.php:135 pages/confirmation.php:113
|
12915 |
#: pages/confirmation.php:115 pages/confirmation.php:123
|
12916 |
#: pages/confirmation.php:126 pages/confirmation.php:133
|
12917 |
#: pages/confirmation.php:134 pages/confirmation.php:135
|
12918 |
+
#: pages/confirmation.php:136 pages/confirmation.php:140
|
12919 |
msgid ""
|
12920 |
"If your account is not activated within a few minutes, please contact the "
|
12921 |
"site owner."
|
12922 |
msgstr ""
|
12923 |
|
12924 |
+
#: pages/invoice.php:111 pages/invoice.php:88 pages/invoice.php:100
|
12925 |
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:103
|
12926 |
#: pages/invoice.php:106 pages/invoice.php:108 pages/invoice.php:111
|
12927 |
+
#: pages/invoice.php:112 pages/invoice.php:116
|
12928 |
msgid "Invoice #"
|
12929 |
msgstr ""
|
12930 |
|
12931 |
+
#: pages/invoice.php:137 pages/invoice.php:114 pages/invoice.php:126
|
12932 |
#: pages/invoice.php:127 pages/invoice.php:128 pages/invoice.php:129
|
12933 |
#: pages/invoice.php:132 pages/invoice.php:134 pages/invoice.php:137
|
12934 |
+
#: pages/invoice.php:138 pages/invoice.php:142
|
12935 |
msgid "No invoices found."
|
12936 |
msgstr ""
|
12937 |
|
12938 |
+
#: pages/invoice.php:145 pages/invoice.php:125 pages/invoice.php:137
|
12939 |
#: pages/invoice.php:138 pages/invoice.php:139 pages/invoice.php:140
|
12940 |
#: pages/invoice.php:143 pages/invoice.php:145 pages/invoice.php:146
|
12941 |
+
#: pages/invoice.php:150
|
12942 |
msgid "← View All Invoices"
|
12943 |
msgstr ""
|
12944 |
|
12945 |
+
#: pages/levels.php:48 pages/levels.php:47 pages/levels.php:49
|
12946 |
#: pages/levels.php:66 pages/levels.php:68 pages/levels.php:69
|
12947 |
#: pages/levels.php:71 pages/levels.php:113 pages/levels.php:115
|
12948 |
msgid "Select"
|
12949 |
msgstr ""
|
12950 |
|
12951 |
+
#: pages/levels.php:54 shortcodes/pmpro_account.php:94 pages/account.php:33
|
12952 |
#: pages/levels.php:57 pages/levels.php:72 pages/levels.php:75
|
12953 |
#: pages/levels.php:78 pages/levels.php:123 shortcodes/pmpro_account.php:59
|
12954 |
#: shortcodes/pmpro_account.php:60 shortcodes/pmpro_account.php:61
|
12956 |
msgid "Renew"
|
12957 |
msgstr ""
|
12958 |
|
12959 |
+
#: pages/levels.php:58 pages/levels.php:63 pages/levels.php:76
|
12960 |
#: pages/levels.php:79 pages/levels.php:82 pages/levels.php:117
|
12961 |
#: pages/levels.php:129
|
12962 |
msgid "Your Level"
|
12963 |
msgstr ""
|
12964 |
|
12965 |
+
#: pages/levels.php:72 pages/levels.php:79 pages/levels.php:90
|
12966 |
#: pages/levels.php:94 pages/levels.php:97 pages/levels.php:98
|
12967 |
#: pages/levels.php:129 pages/levels.php:145
|
12968 |
msgid "← Return to Your Account"
|
12969 |
msgstr ""
|
12970 |
|
12971 |
+
#: pages/levels.php:74 pages/levels.php:81 pages/levels.php:92
|
12972 |
#: pages/levels.php:96 pages/levels.php:99 pages/levels.php:100
|
12973 |
#: pages/levels.php:131 pages/levels.php:147
|
12974 |
msgid "← Return to Home"
|
13379 |
#: services/authnet-silent-post.php:138 services/authnet-silent-post.php:141
|
13380 |
#: services/authnet-silent-post.php:144 services/authnet-silent-post.php:145
|
13381 |
#: services/authnet-silent-post.php:149 services/authnet-silent-post.php:167
|
13382 |
+
#: services/authnet-silent-post.php:172 services/authnet-silent-post.php:173
|
13383 |
msgid ""
|
13384 |
"<p>A payment is being held for review within Authorize.net.</p><p>Payment "
|
13385 |
"Information From Authorize.net"
|
13386 |
msgstr ""
|
13387 |
|
13388 |
+
#: services/braintree-webhook.php:425
|
13389 |
+
#, php-format
|
13390 |
+
msgid ""
|
13391 |
+
"<p>A member's Braintree subscription has expired at your site. This "
|
13392 |
+
"typically happens if you've set up billing limits on your levels.</p><p>We "
|
13393 |
+
"have not removed the user's membership level.</p><p>You can view details on "
|
13394 |
+
"this user here: %s</p>"
|
13395 |
+
msgstr ""
|
13396 |
+
|
13397 |
+
#: services/braintree-webhook.php:427
|
13398 |
+
#, php-format
|
13399 |
+
msgid "A member's Braintree subscription has expired at %s"
|
13400 |
+
msgstr ""
|
13401 |
+
|
13402 |
#: shortcodes/pmpro_account.php:43 pages/account.php:19
|
13403 |
#: shortcodes/pmpro_account.php:43 shortcodes/pmpro_account.php:44
|
13404 |
#: shortcodes/pmpro_account.php:45
|
13825 |
msgid "Expired"
|
13826 |
msgstr ""
|
13827 |
|
13828 |
+
#: adminpages/orders.php:119 adminpages/orders.php:169
|
13829 |
+
#: adminpages/orders.php:270 adminpages/orders.php:284
|
13830 |
+
#: adminpages/orders.php:285 adminpages/orders.php:295
|
13831 |
+
#: adminpages/orders.php:296 adminpages/orders.php:297
|
13832 |
+
#: adminpages/orders.php:298 adminpages/orders.php:301
|
13833 |
+
#: adminpages/orders.php:304 adminpages/orders.php:314
|
13834 |
+
msgid "Order saved successfully."
|
13835 |
+
msgstr ""
|
13836 |
+
|
13837 |
+
#: adminpages/orders.php:124 adminpages/orders.php:174
|
13838 |
+
#: adminpages/orders.php:275 adminpages/orders.php:287
|
13839 |
+
#: adminpages/orders.php:288 adminpages/orders.php:298
|
13840 |
+
#: adminpages/orders.php:299 adminpages/orders.php:300
|
13841 |
+
#: adminpages/orders.php:301 adminpages/orders.php:304
|
13842 |
+
#: adminpages/orders.php:307 adminpages/orders.php:317
|
13843 |
+
msgid "Error updating order timestamp."
|
13844 |
+
msgstr ""
|
13845 |
+
|
13846 |
#: adminpages/orders.php:325 adminpages/orders.php:375
|
13847 |
#: adminpages/orders.php:447 adminpages/orders.php:476
|
13848 |
#: adminpages/orders.php:513 adminpages/orders.php:544
|
14396 |
msgid "<strong>%s every %d %s</strong>"
|
14397 |
msgstr ""
|
14398 |
|
14399 |
+
#: includes/functions.php:520 includes/functions.php:542
|
14400 |
+
#: includes/functions.php:553 includes/functions.php:564
|
14401 |
+
#: includes/functions.php:565 includes/functions.php:566
|
14402 |
+
#: includes/functions.php:573 includes/functions.php:597
|
14403 |
+
#: includes/functions.php:598 includes/functions.php:600
|
14404 |
+
#: includes/functions.php:607 includes/functions.php:623
|
14405 |
+
#: includes/functions.php:646 includes/functions.php:725
|
14406 |
+
#: includes/functions.php:791 includes/functions.php:797
|
14407 |
+
#: includes/functions.php:911 includes/functions.php:914
|
14408 |
+
#: includes/functions.php:919 includes/functions.php:938
|
14409 |
+
#: includes/functions.php:976 includes/functions.php:977
|
14410 |
+
#: includes/functions.php:978 includes/functions.php:982
|
14411 |
+
#: includes/functions.php:987 includes/functions.php:1001
|
14412 |
+
msgid "not changing?"
|
14413 |
+
msgstr ""
|
14414 |
+
|
14415 |
#: includes/functions.php:556 includes/functions.php:557
|
14416 |
#: includes/functions.php:566
|
14417 |
#, php-format
|
pages/billing.php
CHANGED
@@ -168,7 +168,7 @@
|
|
168 |
</div> <!-- end pmpro_checkout-field-baddress2 -->
|
169 |
|
170 |
<?php
|
171 |
-
$longform_address = apply_filters("pmpro_longform_address",
|
172 |
if($longform_address)
|
173 |
{
|
174 |
?>
|
168 |
</div> <!-- end pmpro_checkout-field-baddress2 -->
|
169 |
|
170 |
<?php
|
171 |
+
$longform_address = apply_filters("pmpro_longform_address", true);
|
172 |
if($longform_address)
|
173 |
{
|
174 |
?>
|
pages/confirmation.php
CHANGED
@@ -61,7 +61,7 @@
|
|
61 |
</ul>
|
62 |
<hr />
|
63 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_invoice_details' ); ?>">
|
64 |
-
<?php if(!empty($pmpro_invoice->billing->
|
65 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_invoice-billing-address' ); ?>">
|
66 |
<strong><?php _e('Billing Address', 'paid-memberships-pro' );?></strong>
|
67 |
<p>
|
@@ -93,20 +93,15 @@
|
|
93 |
|
94 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_invoice-total' ); ?>">
|
95 |
<strong><?php _e('Total Billed', 'paid-memberships-pro' );?></strong>
|
96 |
-
<p
|
97 |
-
<?php
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
<?php echo pmpro_escape_price( pmpro_formatPrice($pmpro_invoice->total) );?>
|
106 |
-
<?php } ?>
|
107 |
-
<?php } else { ?>
|
108 |
-
<?php echo pmpro_escape_price( pmpro_formatPrice(0) ); ?>
|
109 |
-
<?php } ?></p>
|
110 |
</div> <!-- end pmpro_invoice-total -->
|
111 |
|
112 |
</div> <!-- end pmpro_invoice -->
|
61 |
</ul>
|
62 |
<hr />
|
63 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_invoice_details' ); ?>">
|
64 |
+
<?php if(!empty($pmpro_invoice->billing->street)) { ?>
|
65 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_invoice-billing-address' ); ?>">
|
66 |
<strong><?php _e('Billing Address', 'paid-memberships-pro' );?></strong>
|
67 |
<p>
|
93 |
|
94 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_invoice-total' ); ?>">
|
95 |
<strong><?php _e('Total Billed', 'paid-memberships-pro' );?></strong>
|
96 |
+
<p>
|
97 |
+
<?php
|
98 |
+
if ( (float)$pmpro_invoice->total > 0 ) {
|
99 |
+
echo pmpro_get_price_parts( $pmpro_invoice, 'span' );
|
100 |
+
} else {
|
101 |
+
echo pmpro_escape_price( pmpro_formatPrice(0) );
|
102 |
+
}
|
103 |
+
?>
|
104 |
+
</p>
|
|
|
|
|
|
|
|
|
|
|
105 |
</div> <!-- end pmpro_invoice-total -->
|
106 |
|
107 |
</div> <!-- end pmpro_invoice -->
|
pages/invoice.php
CHANGED
@@ -51,7 +51,7 @@
|
|
51 |
|
52 |
<hr />
|
53 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_invoice_details' ); ?>">
|
54 |
-
<?php if(!empty($pmpro_invoice->billing->
|
55 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_invoice-billing-address' ); ?>">
|
56 |
<strong><?php _e('Billing Address', 'paid-memberships-pro' );?></strong>
|
57 |
<p>
|
@@ -83,20 +83,15 @@
|
|
83 |
|
84 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_invoice-total' ); ?>">
|
85 |
<strong><?php _e('Total Billed', 'paid-memberships-pro' );?></strong>
|
86 |
-
<p
|
87 |
-
<?php
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
<?php echo pmpro_escape_price( pmpro_formatPrice($pmpro_invoice->total) );?>
|
96 |
-
<?php } ?>
|
97 |
-
<?php } else { ?>
|
98 |
-
<?php echo pmpro_escape_price( pmpro_formatPrice(0) ); ?>
|
99 |
-
<?php } ?></p>
|
100 |
</div> <!-- end pmpro_invoice-total -->
|
101 |
</div> <!-- end pmpro_invoice_details -->
|
102 |
<hr />
|
51 |
|
52 |
<hr />
|
53 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_invoice_details' ); ?>">
|
54 |
+
<?php if(!empty($pmpro_invoice->billing->street)) { ?>
|
55 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_invoice-billing-address' ); ?>">
|
56 |
<strong><?php _e('Billing Address', 'paid-memberships-pro' );?></strong>
|
57 |
<p>
|
83 |
|
84 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_invoice-total' ); ?>">
|
85 |
<strong><?php _e('Total Billed', 'paid-memberships-pro' );?></strong>
|
86 |
+
<p>
|
87 |
+
<?php
|
88 |
+
if ( (float)$pmpro_invoice->total > 0 ) {
|
89 |
+
echo pmpro_get_price_parts( $pmpro_invoice, 'span' );
|
90 |
+
} else {
|
91 |
+
echo pmpro_escape_price( pmpro_formatPrice(0) );
|
92 |
+
}
|
93 |
+
?>
|
94 |
+
</p>
|
|
|
|
|
|
|
|
|
|
|
95 |
</div> <!-- end pmpro_invoice-total -->
|
96 |
</div> <!-- end pmpro_invoice_details -->
|
97 |
<hr />
|
pages/levels.php
CHANGED
@@ -1,26 +1,8 @@
|
|
1 |
<?php
|
2 |
global $wpdb, $pmpro_msg, $pmpro_msgt, $current_user;
|
3 |
|
4 |
-
$pmpro_levels = pmpro_getAllLevels(false, true);
|
5 |
-
$
|
6 |
-
|
7 |
-
if(!empty($pmpro_level_order))
|
8 |
-
{
|
9 |
-
$order = explode(',',$pmpro_level_order);
|
10 |
-
|
11 |
-
//reorder array
|
12 |
-
$reordered_levels = array();
|
13 |
-
foreach($order as $level_id) {
|
14 |
-
foreach($pmpro_levels as $key=>$level) {
|
15 |
-
if($level_id == $level->id)
|
16 |
-
$reordered_levels[] = $pmpro_levels[$key];
|
17 |
-
}
|
18 |
-
}
|
19 |
-
|
20 |
-
$pmpro_levels = $reordered_levels;
|
21 |
-
}
|
22 |
-
|
23 |
-
$pmpro_levels = apply_filters("pmpro_levels_array", $pmpro_levels);
|
24 |
|
25 |
if($pmpro_msg)
|
26 |
{
|
1 |
<?php
|
2 |
global $wpdb, $pmpro_msg, $pmpro_msgt, $current_user;
|
3 |
|
4 |
+
$pmpro_levels = pmpro_sort_levels_by_order( pmpro_getAllLevels(false, true) );
|
5 |
+
$pmpro_levels = apply_filters( 'pmpro_levels_array', $pmpro_levels );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
|
7 |
if($pmpro_msg)
|
8 |
{
|
paid-memberships-pro.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Paid Memberships Pro
|
4 |
* Plugin URI: https://www.paidmembershipspro.com
|
5 |
* Description: The most complete member management and membership subscriptions plugin for WordPress.
|
6 |
-
* Version: 2.5.
|
7 |
* Author: Stranger Studios
|
8 |
* Author URI: https://www.strangerstudios.com
|
9 |
* Text Domain: paid-memberships-pro
|
@@ -16,7 +16,7 @@
|
|
16 |
*/
|
17 |
|
18 |
// version constant
|
19 |
-
define( 'PMPRO_VERSION', '2.5.
|
20 |
define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
|
21 |
define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
|
22 |
|
@@ -181,7 +181,7 @@ global $all_membership_levels;
|
|
181 |
// we sometimes refer to this array of levels
|
182 |
// DEPRECATED: Remove this in v3.0.
|
183 |
global $membership_levels;
|
184 |
-
$membership_levels = pmpro_getAllLevels( true, true );
|
185 |
|
186 |
/*
|
187 |
Activation/Deactivation
|
3 |
* Plugin Name: Paid Memberships Pro
|
4 |
* Plugin URI: https://www.paidmembershipspro.com
|
5 |
* Description: The most complete member management and membership subscriptions plugin for WordPress.
|
6 |
+
* Version: 2.5.8
|
7 |
* Author: Stranger Studios
|
8 |
* Author URI: https://www.strangerstudios.com
|
9 |
* Text Domain: paid-memberships-pro
|
16 |
*/
|
17 |
|
18 |
// version constant
|
19 |
+
define( 'PMPRO_VERSION', '2.5.8' );
|
20 |
define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
|
21 |
define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
|
22 |
|
181 |
// we sometimes refer to this array of levels
|
182 |
// DEPRECATED: Remove this in v3.0.
|
183 |
global $membership_levels;
|
184 |
+
$membership_levels = pmpro_sort_levels_by_order( pmpro_getAllLevels( true, true ) );
|
185 |
|
186 |
/*
|
187 |
Activation/Deactivation
|
preheaders/checkout.php
CHANGED
@@ -681,7 +681,7 @@ if ( ! empty( $pmpro_confirmed ) ) {
|
|
681 |
|
682 |
$wpdb->query( "INSERT INTO $wpdb->pmpro_discount_codes_uses (code_id, user_id, order_id, timestamp) VALUES('" . $discount_code_id . "', '" . $user_id . "', '" . intval( $code_order_id ) . "', '" . current_time( "mysql" ) . "')" );
|
683 |
|
684 |
-
do_action( 'pmpro_discount_code_used', $
|
685 |
}
|
686 |
|
687 |
//save billing info ect, as user meta
|
681 |
|
682 |
$wpdb->query( "INSERT INTO $wpdb->pmpro_discount_codes_uses (code_id, user_id, order_id, timestamp) VALUES('" . $discount_code_id . "', '" . $user_id . "', '" . intval( $code_order_id ) . "', '" . current_time( "mysql" ) . "')" );
|
683 |
|
684 |
+
do_action( 'pmpro_discount_code_used', $discount_code_id, $user_id, $code_order_id );
|
685 |
}
|
686 |
|
687 |
//save billing info ect, as user meta
|
preheaders/levels.php
CHANGED
@@ -30,23 +30,12 @@ if (isset($_REQUEST['msg'])) {
|
|
30 |
|
31 |
global $pmpro_levels, $pmpro_level_order;
|
32 |
|
33 |
-
$pmpro_levels = pmpro_getAllLevels(false, true);
|
34 |
-
$pmpro_level_order = pmpro_getOption('level_order');
|
35 |
-
|
36 |
-
if(!empty($pmpro_level_order))
|
37 |
-
{
|
38 |
-
$order = explode(',',$pmpro_level_order);
|
39 |
-
|
40 |
-
//reorder array
|
41 |
-
$reordered_levels = array();
|
42 |
-
foreach($order as $level_id) {
|
43 |
-
foreach($pmpro_levels as $key=>$level) {
|
44 |
-
if($level_id == $level->id)
|
45 |
-
$reordered_levels[$key] = $pmpro_levels[$key];
|
46 |
-
}
|
47 |
-
}
|
48 |
-
|
49 |
-
$pmpro_levels = $reordered_levels;
|
50 |
-
}
|
51 |
|
52 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
global $pmpro_levels, $pmpro_level_order;
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
+
/**
|
35 |
+
* This actually isn't needed to draw the levels page.
|
36 |
+
* But, there may be custom code that relies on the ordered global of Membership Levels array here.
|
37 |
+
* We will evenutally deprecate this.
|
38 |
+
*
|
39 |
+
*/
|
40 |
+
$pmpro_levels = pmpro_sort_levels_by_order( pmpro_getAllLevels(false, true) );
|
41 |
+
$pmpro_levels = apply_filters( 'pmpro_levels_array', $pmpro_levels );
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Paid Memberships Pro ===
|
2 |
Contributors: strangerstudios, kimannwall, andrewza, dlparker1005, paidmembershipspro
|
3 |
Tags: memberships, members, subscriptions, ecommerce, user registration, member, membership, e-commerce, paypal, stripe, braintree, authorize.net, payflow, restrict access, restrict content, directory
|
4 |
-
Requires at least: 4
|
5 |
Tested up to: 5.7
|
6 |
-
Stable tag: 2.5.
|
7 |
|
8 |
Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site.
|
9 |
|
@@ -153,6 +153,38 @@ Not sure? You can find out by doing a bit a research.
|
|
153 |
9. Membership Account page, display all sections or show specific sections using shortcode attributes.
|
154 |
|
155 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
= 2.5.7 - 2021-03-10 =
|
157 |
* ENHANCEMENT: Added a pmpro_checkout_message filter that can be used to filter error messages shown at checkout.
|
158 |
* BUG FIX/ENHANCEMENT: Now making sure some billing address fields are available for the billing failure emails sent during the PayPal IPN handler.
|
1 |
=== Paid Memberships Pro ===
|
2 |
Contributors: strangerstudios, kimannwall, andrewza, dlparker1005, paidmembershipspro
|
3 |
Tags: memberships, members, subscriptions, ecommerce, user registration, member, membership, e-commerce, paypal, stripe, braintree, authorize.net, payflow, restrict access, restrict content, directory
|
4 |
+
Requires at least: 4.7
|
5 |
Tested up to: 5.7
|
6 |
+
Stable tag: 2.5.8
|
7 |
|
8 |
Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site.
|
9 |
|
153 |
9. Membership Account page, display all sections or show specific sections using shortcode attributes.
|
154 |
|
155 |
== Changelog ==
|
156 |
+
= 2.5.8 - 2021-04-30 =
|
157 |
+
* ENHANCEMENT: Added `pmpro_membership_content_filter` filter to let other plugins change how PMPro filters member content.
|
158 |
+
* ENHANCEMENT: Improved de_DE email template translation. (Thanks, biker238 on GitHub)
|
159 |
+
* ENHANCEMENT: Added `pmpro_change_level` filter.
|
160 |
+
* ENHANCEMENT: Improved display of prices on invoices and added pmpro_display_price_parts function and filters so plugins like the upcoming AvaTax add on can add subtotals to the price displays.
|
161 |
+
* ENHANCEMENT: Added a pmpro_after_all_membesrhip_level_changes hook that fires at the end of the page load and can be used to process all membership changes in bulk.
|
162 |
+
* ENHANCEMENT: The "User" column on the orders page now shows the username and email.
|
163 |
+
* ENHANCEMENT: Added a pmpro_stripe_create_subscription_array filter. (Thanks, ermGit on GitHub)
|
164 |
+
* BUG FIX/ENHANCEMENT: pmpro_change_level returns true now if the function is called to change a user’s level to one they already have.
|
165 |
+
* BUG FIX/ENHANCEMENT: No longer calling $order->updateTimestamp() on orders adminpage.
|
166 |
+
* BUG FIX/ENHANCEMENT: Updated conditional to check ‘street’ instead of ‘name’ when displaying billing address on Invoice/Confirmation.
|
167 |
+
* BUG FIX/ENHANCEMENT: Improved localization and added missing strings to translation.
|
168 |
+
* BUG FIX/ENHANCEMENT: Updated to use `get_user_locale1 to load localization.
|
169 |
+
* BUG FIX/ENHANCEMENT: Now Preserving existing values for `post__not_in` and `category__not_in` when filtering search and archive queries.
|
170 |
+
* BUG FIX/ENHANCEMENT: Fixed sorting of the Membership Level column on the Users List table in the WP admin dashboard.
|
171 |
+
* BUG FIX/ENHANCEMENT: Added a pmpro_sort_levels_by_order function and using it in various places to make sure levels are listed in the order they are in on the PMPro settings page.
|
172 |
+
* BUG FIX/ENHANCEMENT: Added an extra check in the pmpro_is_checkout function that helps with issues that were coming up in some add ons.
|
173 |
+
* BUG FIX/ENHANCEMENT: The level cache now takes into account the $include_active parameter.
|
174 |
+
* BUG FIX/ENHANCEMENT: The CSS class is now properly added to the body tag when a PMPro page block is used on a page.
|
175 |
+
* BUG FIX/EHNANCEMENT: Better timezone handling in sales reports.
|
176 |
+
* BUG FIX/ENHANCEMENT: Fixed a few places where we might think a free order was paid if using a currency with more or less than 2 decimal places.
|
177 |
+
* BUG FIX: Fixed deprecated jQuery functions in pmpro-admin.js.
|
178 |
+
* BUG FIX: Fixed warning for a missing/deleted level in the pmpro_post_classes function.
|
179 |
+
* BUG FIX: Default `pmpro_longform_address` to true on Billing Information page.
|
180 |
+
* BUG FIX: Fixed `pmpro_twocheckout_validate` filter.
|
181 |
+
* BUG FIX: Fixed variables passed to the `pmpro_discount_code_used` filter.
|
182 |
+
* BUG FIX: CZK currency should have 2 decimals.
|
183 |
+
* BUG FIX: Avoiding a redirect loop if the login page is deleted. (Thanks, George Stephanis)
|
184 |
+
* BUG FIX: Fixed the password reset link in new user notification email when not using pretty permalinks.
|
185 |
+
* BUG FIX: Fixed issues with password reset URLs on multisite networks.
|
186 |
+
* BUG FIX: Fixed the issue where sales weren't showing up on report charts sometimes on the 31st of the month.
|
187 |
+
|
188 |
= 2.5.7 - 2021-03-10 =
|
189 |
* ENHANCEMENT: Added a pmpro_checkout_message filter that can be used to filter error messages shown at checkout.
|
190 |
* BUG FIX/ENHANCEMENT: Now making sure some billing address fields are available for the billing failure emails sent during the PayPal IPN handler.
|
services/twocheckout-ins.php
CHANGED
@@ -247,7 +247,7 @@
|
|
247 |
else if( empty ( $check['response_code'] ) )
|
248 |
$r = false; //Invalid response
|
249 |
else
|
250 |
-
$r = $check['response_code'];
|
251 |
|
252 |
/**
|
253 |
* Filter if an twocheckout request is valid or not.
|
@@ -259,7 +259,7 @@
|
|
259 |
*/
|
260 |
$r = apply_filters('pmpro_twocheckout_validate', $r, $check);
|
261 |
|
262 |
-
return $
|
263 |
}
|
264 |
|
265 |
/*
|
247 |
else if( empty ( $check['response_code'] ) )
|
248 |
$r = false; //Invalid response
|
249 |
else
|
250 |
+
$r = $check['response_code'] === 'Success';
|
251 |
|
252 |
/**
|
253 |
* Filter if an twocheckout request is valid or not.
|
259 |
*/
|
260 |
$r = apply_filters('pmpro_twocheckout_validate', $r, $check);
|
261 |
|
262 |
+
return $r;
|
263 |
}
|
264 |
|
265 |
/*
|