Version Description
- 2020-08-10 =
- BUG FIX: Fixed issues with password resets on WP Engine hosting due to security features added by their mu-plugin.
- BUG FIX: Fixed issue where end dates were showing up incorrectly in the confirmation email sometimes.
- BUG FIX: Fixed issue where renewing memberships were extended one day less than they should have been in some cases.
- BUG FIX: Fixed issue where users without a PMPro Plus license were sometimes not getting an error when trying to update a Plus Add On.
- BUG FIX/ENHANCEMENT: Added compatibility for core auto-updates for our Add Ons which aren't hosted in the .org repository.
- BUG FIX/ENHANCEMENT: Fixed issue where PHP sessions were set up to track ReCAPTCHA even if you weren't using ReCAPTCHA. ReCAPTCHA is now only loaded on the checkout page. Loading sessions unecessarily would break some Varnish cache setups.
- BUG FIX/ENHANCEMENT: Updated the single invoice/order page. No longer showing the end date, which isn't really related to the order. Showing a better status related to the order now.
- BUG FIX/ENHANCEMENT: Fixed some links to the PMPro site in the plugin admin area.
- BUG FIX/ENHANCEMENT: Now saving a hash of the Stripe secretkey when saving webhook ids. This allows us to keep track of webhook ids if you switch between gateway environments or swap your Stripe keys for some reason.
- BUG FIX/ENHANCEMENT: No longer running the Terms of Service text through wpautop. This usually just added extra spacing to your TOS. Shortcodes are rendered now though. Added a filter pmpro_tos_content so you can change the TOS content or how it is shown.
- ENHANCEMENT: Added a checkout_levels API endpoint. This will allow us to build features that adjust the price on the frontend at checkout.
- ENHANCEMENT: Added a pmpro_member_profile_edit_form_tag action to the form tag on the frontend member profile page. This is useful to set the form enctype for file uploads.
- ENHANCEMENT: Added Romanian Leu as a currency option.
- ENHANCEMENT: Added the pmpro_stripe_payment_intent_params filter. Useful if you would like to set a specific statement descriptor for the site. See https://gist.github.com/ideadude/16983fdfa0da12fc40ef36d870f4cbd0
- REFACTOR: Removed some unused methods from the Stripe class.
- REFACTOR: Removed the help pointer about the menu location change.
Download this release
Release Info
Developer | strangerstudios |
Plugin | Paid Memberships Pro |
Version | 2.4.1 |
Comparing to | |
See all releases |
Code changes from version 2.4 to 2.4.1
- CHANGELOG.txt +18 -0
- adminpages/dashboard.php +1 -1
- adminpages/license.php +4 -4
- classes/class.pmproemail.php +1 -1
- classes/gateways/class.pmprogateway_stripe.php +93 -14
- includes/addons.php +5 -3
- includes/compatibility.php +5 -0
- includes/compatibility/wp-engine.php +39 -0
- includes/currencies.php +8 -0
- includes/filters.php +2 -2
- includes/pointers.php +4 -1
- includes/profile.php +10 -1
- includes/recaptcha.php +17 -8
- includes/rest-api.php +43 -0
- languages/paid-memberships-pro.mo +0 -0
- languages/paid-memberships-pro.po +868 -680
- languages/paid-memberships-pro.pot +868 -680
- pages/checkout.php +14 -1
- pages/invoice.php +11 -3
- paid-memberships-pro.php +2 -2
- readme.txt +21 -3
CHANGELOG.txt
CHANGED
@@ -1,4 +1,22 @@
|
|
1 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
= 2.4 - 2020-07-24 =
|
3 |
* FEATURE: Now detecting if the Stripe webhook is set up correctly. You can now create or disable the webhook from the payment settings page in the WP admin dashboard.
|
4 |
* FEATURE: Added a link to use and set up SendWP for more reliable email sending from WP.
|
1 |
== Changelog ==
|
2 |
+
= 2.4.1 - 2020-08-10 =
|
3 |
+
* BUG FIX: Fixed issues with password resets on WP Engine hosting due to security features added by their mu-plugin.
|
4 |
+
* BUG FIX: Fixed issue where end dates were showing up incorrectly in the confirmation email sometimes.
|
5 |
+
* BUG FIX: Fixed issue where renewing memberships were extended one day less than they should have been in some cases.
|
6 |
+
* BUG FIX: Fixed issue where users without a PMPro Plus license were sometimes not getting an error when trying to update a Plus Add On.
|
7 |
+
* BUG FIX/ENHANCEMENT: Added compatibility for core auto-updates for our Add Ons which aren't hosted in the .org repository.
|
8 |
+
* BUG FIX/ENHANCEMENT: Fixed issue where PHP sessions were set up to track ReCAPTCHA even if you weren't using ReCAPTCHA. ReCAPTCHA is now only loaded on the checkout page. Loading sessions unecessarily would break some Varnish cache setups.
|
9 |
+
* BUG FIX/ENHANCEMENT: Updated the single invoice/order page. No longer showing the end date, which isn't really related to the order. Showing a better status related to the order now.
|
10 |
+
* BUG FIX/ENHANCEMENT: Fixed some links to the PMPro site in the plugin admin area.
|
11 |
+
* BUG FIX/ENHANCEMENT: Now saving a hash of the Stripe secretkey when saving webhook ids. This allows us to keep track of webhook ids if you switch between gateway environments or swap your Stripe keys for some reason.
|
12 |
+
* BUG FIX/ENHANCEMENT: No longer running the Terms of Service text through wpautop. This usually just added extra spacing to your TOS. Shortcodes are rendered now though. Added a filter pmpro_tos_content so you can change the TOS content or how it is shown.
|
13 |
+
* ENHANCEMENT: Added a checkout_levels API endpoint. This will allow us to build features that adjust the price on the frontend at checkout.
|
14 |
+
* ENHANCEMENT: Added a pmpro_member_profile_edit_form_tag action to the form tag on the frontend member profile page. This is useful to set the form enctype for file uploads.
|
15 |
+
* ENHANCEMENT: Added Romanian Leu as a currency option.
|
16 |
+
* ENHANCEMENT: Added the pmpro_stripe_payment_intent_params filter. Useful if you would like to set a specific statement descriptor for the site. See https://gist.github.com/ideadude/16983fdfa0da12fc40ef36d870f4cbd0
|
17 |
+
* REFACTOR: Removed some unused methods from the Stripe class.
|
18 |
+
* REFACTOR: Removed the help pointer about the menu location change.
|
19 |
+
|
20 |
= 2.4 - 2020-07-24 =
|
21 |
* FEATURE: Now detecting if the Stripe webhook is set up correctly. You can now create or disable the webhook from the payment settings page in the WP admin dashboard.
|
22 |
* FEATURE: Added a link to use and set up SendWP for more reliable email sending from WP.
|
adminpages/dashboard.php
CHANGED
@@ -172,7 +172,7 @@ function pmpro_dashboard_welcome_callback() { ?>
|
|
172 |
<?php } elseif ( ! pmpro_license_isValid() ) { ?>
|
173 |
<p class="pmpro_message pmpro_alert">
|
174 |
<strong><?php echo esc_html_e( 'Your license is invalid or expired.', 'paid-memberships-pro' ); ?></strong><br />
|
175 |
-
|
176 |
<?php } else { ?>
|
177 |
<p class="pmpro_message pmpro_success"><?php printf(__( '<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site.', 'paid-memberships-pro' ), ucwords($pmpro_license_check['license']));?></p>
|
178 |
<?php } ?>
|
172 |
<?php } elseif ( ! pmpro_license_isValid() ) { ?>
|
173 |
<p class="pmpro_message pmpro_alert">
|
174 |
<strong><?php echo esc_html_e( 'Your license is invalid or expired.', 'paid-memberships-pro' ); ?></strong><br />
|
175 |
+
<?php printf(__( '<a href="%s">View your membership account</a> to verify your license key.', 'paid-memberships-pro' ), 'https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-dashboard%26utm_campaign%3Dmembership-account%26utm_content%3Dverify-license-key' );?>
|
176 |
<?php } else { ?>
|
177 |
<p class="pmpro_message pmpro_success"><?php printf(__( '<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site.', 'paid-memberships-pro' ), ucwords($pmpro_license_check['license']));?></p>
|
178 |
<?php } ?>
|
adminpages/license.php
CHANGED
@@ -44,9 +44,9 @@ if ( defined( 'PMPRO_DIR' ) ) {
|
|
44 |
|
45 |
<div class="about-text">
|
46 |
<?php if(!pmpro_license_isValid() && empty($key)) { ?>
|
47 |
-
<p class="pmpro_message pmpro_error"><strong><?php _e('Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href="https://www.paidmembershipspro.com/
|
48 |
<?php } elseif(!pmpro_license_isValid()) { ?>
|
49 |
-
<p class="pmpro_message pmpro_error"><strong><?php _e('Your license is invalid or expired.', 'paid-memberships-pro' );?></strong> <?php _e('Visit the PMPro <a href="https://www.paidmembershipspro.com/
|
50 |
<?php } else { ?>
|
51 |
<p class="pmpro_message pmpro_success"><?php printf(__('<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site.', 'paid-memberships-pro' ), ucwords($pmpro_license_check['license']));?></p>
|
52 |
<?php } ?>
|
@@ -70,8 +70,8 @@ if ( defined( 'PMPRO_DIR' ) ) {
|
|
70 |
<a class="button button-primary button-hero" href="https://www.paidmembershipspro.com/membership-checkout/?level=20&utm_source=plugin&utm_medium=pmpro-license&utm_campaign=plus-checkout&utm_content=buy-plus" target="_blank"><?php echo esc_html( 'Buy Plus License', 'paid-memberships-pro' ); ?></a>
|
71 |
<a class="button button-hero" href="https://www.paidmembershipspro.com/pricing/?utm_source=plugin&utm_medium=pmpro-license&utm_campaign=pricing&utm_content=view-license-options" target="_blank"><?php echo esc_html( 'View Support License Options', 'paid-memberships-pro' ); ?></a>
|
72 |
<?php } else { ?>
|
73 |
-
<a class="button button-primary button-hero" href="https://www.paidmembershipspro.com/
|
74 |
-
<a class="button button-hero" href="https://www.paidmembershipspro.com/
|
75 |
<?php } ?>
|
76 |
</p>
|
77 |
|
44 |
|
45 |
<div class="about-text">
|
46 |
<?php if(!pmpro_license_isValid() && empty($key)) { ?>
|
47 |
+
<p class="pmpro_message pmpro_error"><strong><?php _e('Enter your support license key.</strong> Your license key can be found in your membership email receipt or in your <a href="https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dno-key" target="_blank">Membership Account</a>.', 'paid-memberships-pro' );?></p>
|
48 |
<?php } elseif(!pmpro_license_isValid()) { ?>
|
49 |
+
<p class="pmpro_message pmpro_error"><strong><?php _e('Your license is invalid or expired.', 'paid-memberships-pro' );?></strong> <?php _e('Visit the PMPro <a href="https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-valid" target="_blank">Membership Account</a> page to confirm that your account is active and to find your license key.', 'paid-memberships-pro' );?></p>
|
50 |
<?php } else { ?>
|
51 |
<p class="pmpro_message pmpro_success"><?php printf(__('<strong>Thank you!</strong> A valid <strong>%s</strong> license key has been used to activate your support license on this site.', 'paid-memberships-pro' ), ucwords($pmpro_license_check['license']));?></p>
|
52 |
<?php } ?>
|
70 |
<a class="button button-primary button-hero" href="https://www.paidmembershipspro.com/membership-checkout/?level=20&utm_source=plugin&utm_medium=pmpro-license&utm_campaign=plus-checkout&utm_content=buy-plus" target="_blank"><?php echo esc_html( 'Buy Plus License', 'paid-memberships-pro' ); ?></a>
|
71 |
<a class="button button-hero" href="https://www.paidmembershipspro.com/pricing/?utm_source=plugin&utm_medium=pmpro-license&utm_campaign=pricing&utm_content=view-license-options" target="_blank"><?php echo esc_html( 'View Support License Options', 'paid-memberships-pro' ); ?></a>
|
72 |
<?php } else { ?>
|
73 |
+
<a class="button button-primary button-hero" href="https://www.paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dview-account" target="_blank"><?php echo esc_html( 'Manage My Account', 'paid-memberships-pro' ); ?></a>
|
74 |
+
<a class="button button-hero" href="https://www.paidmembershipspro.com/login/?redirect_to=%2Fnew-topic%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign%3Dsupport%26utm_content%3Dnew-support-ticket" target="_blank"><?php echo esc_html( 'Open Support Ticket', 'paid-memberships-pro' ); ?></a>
|
75 |
<?php } ?>
|
76 |
</p>
|
77 |
|
classes/class.pmproemail.php
CHANGED
@@ -333,7 +333,7 @@
|
|
333 |
$this->data["discount_code"] = "";
|
334 |
}
|
335 |
|
336 |
-
$enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(CONVERT_TZ(enddate, '+00:00', @@global.time_zone)
|
337 |
if($enddate)
|
338 |
$this->data["membership_expiration"] = "<p>" . sprintf(__("This membership will expire on %s.", 'paid-memberships-pro' ), date_i18n(get_option('date_format'), $enddate)) . "</p>\n";
|
339 |
else
|
333 |
$this->data["discount_code"] = "";
|
334 |
}
|
335 |
|
336 |
+
$enddate = $wpdb->get_var("SELECT UNIX_TIMESTAMP(CONVERT_TZ(enddate, '+00:00', @@global.time_zone)) FROM $wpdb->pmpro_memberships_users WHERE user_id = '" . $user->ID . "' AND status = 'active' LIMIT 1");
|
337 |
if($enddate)
|
338 |
$this->data["membership_expiration"] = "<p>" . sprintf(__("This membership will expire on %s.", 'paid-memberships-pro' ), date_i18n(get_option('date_format'), $enddate)) . "</p>\n";
|
339 |
else
|
classes/gateways/class.pmprogateway_stripe.php
CHANGED
@@ -289,7 +289,7 @@ class PMProGateway_stripe extends PMProGateway {
|
|
289 |
if ( ! empty( $values['stripe_publishablekey'] ) && ! empty( $values['stripe_secretkey'] ) ) {
|
290 |
|
291 |
// Check if webhook is enabled or not.
|
292 |
-
$webhook =
|
293 |
|
294 |
if ( ! $webhook ) {
|
295 |
$stripe = new PMProGateway_stripe;
|
@@ -311,7 +311,7 @@ class PMProGateway_stripe extends PMProGateway {
|
|
311 |
$required_update = true;
|
312 |
} else {
|
313 |
$required_update = false;
|
314 |
-
|
315 |
pmpro_setOption( 'stripe_webhook', 1 );
|
316 |
$values['stripe_webhook'] = 1; // Checkbox option.
|
317 |
}
|
@@ -589,12 +589,82 @@ class PMProGateway_stripe extends PMProGateway {
|
|
589 |
|
590 |
return $fields;
|
591 |
}
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
598 |
}
|
599 |
|
600 |
/**
|
@@ -650,7 +720,7 @@ class PMProGateway_stripe extends PMProGateway {
|
|
650 |
]);
|
651 |
|
652 |
if ( $create ) {
|
653 |
-
|
654 |
return $create->id;
|
655 |
}
|
656 |
} catch (\Throwable $th) {
|
@@ -666,7 +736,7 @@ class PMProGateway_stripe extends PMProGateway {
|
|
666 |
* @since 2.4
|
667 |
*/
|
668 |
static function does_webhook_exist() {
|
669 |
-
$saved_webhook =
|
670 |
if ( $saved_webhook ) {
|
671 |
return $saved_webhook;
|
672 |
}
|
@@ -762,7 +832,7 @@ class PMProGateway_stripe extends PMProGateway {
|
|
762 |
);
|
763 |
|
764 |
if ( $update ) {
|
765 |
-
|
766 |
return $update;
|
767 |
}
|
768 |
} catch (\Throwable $th) {
|
@@ -771,7 +841,7 @@ class PMProGateway_stripe extends PMProGateway {
|
|
771 |
}
|
772 |
|
773 |
} else {
|
774 |
-
|
775 |
}
|
776 |
|
777 |
}
|
@@ -789,9 +859,9 @@ class PMProGateway_stripe extends PMProGateway {
|
|
789 |
try {
|
790 |
$stripe = new Stripe_Client( $secretkey );
|
791 |
$delete = $stripe->webhookEndpoints->delete( $webhook_id, [] );
|
792 |
-
|
793 |
} catch (\Throwable $th) {
|
794 |
-
|
795 |
return new WP_Error( 'error', $th->getMessage() );
|
796 |
}
|
797 |
|
@@ -2630,6 +2700,15 @@ class PMProGateway_stripe extends PMProGateway {
|
|
2630 |
'setup_future_usage' => 'off_session',
|
2631 |
);
|
2632 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2633 |
|
2634 |
try {
|
2635 |
$payment_intent = Stripe_PaymentIntent::create( $params );
|
289 |
if ( ! empty( $values['stripe_publishablekey'] ) && ! empty( $values['stripe_secretkey'] ) ) {
|
290 |
|
291 |
// Check if webhook is enabled or not.
|
292 |
+
$webhook = self::get_webhook_ids( $values['stripe_secretkey'] );
|
293 |
|
294 |
if ( ! $webhook ) {
|
295 |
$stripe = new PMProGateway_stripe;
|
311 |
$required_update = true;
|
312 |
} else {
|
313 |
$required_update = false;
|
314 |
+
self::update_webhook_ids( $webhook['webhook_id'], $values['stripe_secretkey'] );
|
315 |
pmpro_setOption( 'stripe_webhook', 1 );
|
316 |
$values['stripe_webhook'] = 1; // Checkbox option.
|
317 |
}
|
589 |
|
590 |
return $fields;
|
591 |
}
|
592 |
+
|
593 |
+
/**
|
594 |
+
* Get the webhook ids stored locally in wp_options.
|
595 |
+
*
|
596 |
+
* @since 2.4.1
|
597 |
+
*/
|
598 |
+
static function get_webhook_ids( $secret_key = null ) {
|
599 |
+
$webhook_ids = pmpro_getOption( 'stripe_webhook_ids' );
|
600 |
+
|
601 |
+
// Need to check in case its stored using the old option.
|
602 |
+
if ( empty( $webhook_ids ) ) {
|
603 |
+
$webhook_id = pmpro_getOption( 'stripe_webhook_id' );
|
604 |
+
if ( ! empty( $webhook_id ) ) {
|
605 |
+
// We store ids with the cooresponding secret key now.
|
606 |
+
// Assume this webhook is for the currently selected environment.
|
607 |
+
$secret_key = pmpro_getOption( 'stripe_secretkey' );
|
608 |
+
$webhook_ids = array( $secret_key => $webhook_id );
|
609 |
+
delete_option( 'pmpro_stripe_webhook_id' );
|
610 |
+
update_option( 'pmpro_stripe_webhook_ids', $webhook_ids );
|
611 |
+
}
|
612 |
+
}
|
613 |
+
|
614 |
+
// If secret key is 'true', then load the current secret key.
|
615 |
+
if ( $secret_key === true ) {
|
616 |
+
$secret_key = pmpro_getOption( 'stripe_secretkey' );
|
617 |
+
|
618 |
+
// No key, then there will be no webhook.
|
619 |
+
if ( empty( $secret_key ) ) {
|
620 |
+
return false;
|
621 |
+
}
|
622 |
+
}
|
623 |
+
|
624 |
+
// If a secret key was passed in, return just the id for that key.
|
625 |
+
if ( ! empty( $secret_key ) ) {
|
626 |
+
$secret_key_hash = wp_hash( $secret_key );
|
627 |
+
if ( isset( $webhook_ids[$secret_key_hash] ) ) {
|
628 |
+
return $webhook_ids[$secret_key_hash];
|
629 |
+
} else {
|
630 |
+
return false;
|
631 |
+
}
|
632 |
+
}
|
633 |
+
|
634 |
+
if ( empty( $webhook_ids ) ) {
|
635 |
+
$webhook_ids = array();
|
636 |
+
}
|
637 |
+
|
638 |
+
return $webhook_ids;
|
639 |
+
}
|
640 |
+
|
641 |
+
/**
|
642 |
+
* Update webhook ids.
|
643 |
+
*
|
644 |
+
* @since 2.4.1
|
645 |
+
*/
|
646 |
+
static function update_webhook_ids( $webhook_id, $secret_key = null ) {
|
647 |
+
if ( empty( $secret_key ) ) {
|
648 |
+
$secret_key = pmpro_getOption( 'stripe_secretkey' );
|
649 |
+
}
|
650 |
+
|
651 |
+
if ( empty( $secret_key ) ) {
|
652 |
+
return false;
|
653 |
+
}
|
654 |
+
|
655 |
+
// Hash the secret key so it's not left behind in the DB.
|
656 |
+
$secret_key_hash = wp_hash( $secret_key );
|
657 |
+
|
658 |
+
$webhook_ids = self::get_webhook_ids();
|
659 |
+
|
660 |
+
if ( ! empty( $webhook_id ) ) {
|
661 |
+
$webhook_ids[$secret_key_hash] = $webhook_id;
|
662 |
+
} else {
|
663 |
+
unset( $webhook_ids[$secret_key_hash] );
|
664 |
+
}
|
665 |
+
|
666 |
+
update_option( 'pmpro_stripe_webhook_ids', $webhook_ids );
|
667 |
+
return true;
|
668 |
}
|
669 |
|
670 |
/**
|
720 |
]);
|
721 |
|
722 |
if ( $create ) {
|
723 |
+
self::update_webhook_ids( $create->id );
|
724 |
return $create->id;
|
725 |
}
|
726 |
} catch (\Throwable $th) {
|
736 |
* @since 2.4
|
737 |
*/
|
738 |
static function does_webhook_exist() {
|
739 |
+
$saved_webhook = self::get_webhook_ids( true );
|
740 |
if ( $saved_webhook ) {
|
741 |
return $saved_webhook;
|
742 |
}
|
832 |
);
|
833 |
|
834 |
if ( $update ) {
|
835 |
+
self:update_webhook_ids( $webhook['webhook_id'] );
|
836 |
return $update;
|
837 |
}
|
838 |
} catch (\Throwable $th) {
|
841 |
}
|
842 |
|
843 |
} else {
|
844 |
+
self::update_webhook_ids( $webhook['webhook_id'] );
|
845 |
}
|
846 |
|
847 |
}
|
859 |
try {
|
860 |
$stripe = new Stripe_Client( $secretkey );
|
861 |
$delete = $stripe->webhookEndpoints->delete( $webhook_id, [] );
|
862 |
+
self::update_webhook_ids( '', $secretkey );
|
863 |
} catch (\Throwable $th) {
|
864 |
+
self::update_webhook_ids( '', $secretkey );
|
865 |
return new WP_Error( 'error', $th->getMessage() );
|
866 |
}
|
867 |
|
2700 |
'setup_future_usage' => 'off_session',
|
2701 |
);
|
2702 |
|
2703 |
+
/**
|
2704 |
+
* Filter params used to create the payment intent.
|
2705 |
+
*
|
2706 |
+
* @since 2.4.1
|
2707 |
+
*
|
2708 |
+
* @param array $params Array of params sent to Stripe.
|
2709 |
+
* @param object $order Order object for this checkout.
|
2710 |
+
*/
|
2711 |
+
$params = apply_filters( 'pmpro_stripe_payment_intent_params', $params, $order );
|
2712 |
|
2713 |
try {
|
2714 |
$payment_intent = Stripe_PaymentIntent::create( $params );
|
includes/addons.php
CHANGED
@@ -133,6 +133,8 @@ function pmpro_update_plugins_filter( $value ) {
|
|
133 |
if ( ! empty( $addon['License'] ) && version_compare( $plugin_data['Version'], $addon['Version'], '<' ) ) {
|
134 |
$value->response[ $plugin_file ] = pmpro_getPluginAPIObjectFromAddon( $addon );
|
135 |
$value->response[ $plugin_file ]->new_version = $addon['Version'];
|
|
|
|
|
136 |
}
|
137 |
}
|
138 |
|
@@ -235,7 +237,7 @@ function pmpro_getPluginAPIObjectFromAddon( $addon ) {
|
|
235 |
if ( ! empty( $key ) && ! empty( $api->package ) ) {
|
236 |
$api->package = add_query_arg( 'key', $key, $api->package );
|
237 |
}
|
238 |
-
if ( empty( $api->upgrade_notice ) && ! pmpro_license_isValid() ) {
|
239 |
$api->upgrade_notice = __( 'Important: This plugin requires a valid PMPro Plus license key to update.', 'paid-memberships-pro' );
|
240 |
}
|
241 |
|
@@ -304,7 +306,7 @@ function pmpro_admin_init_updating_plugins() {
|
|
304 |
|
305 |
$slug = str_replace( '.php', '', basename( $plugin ) );
|
306 |
$addon = pmpro_getAddonBySlug( $slug );
|
307 |
-
if ( ! empty( $addon ) && ! pmpro_license_isValid() ) {
|
308 |
require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
309 |
|
310 |
echo '<div class="wrap"><h2>' . __( 'Update Plugin' ) . '</h2>';
|
@@ -330,7 +332,7 @@ function pmpro_admin_init_updating_plugins() {
|
|
330 |
|
331 |
$slug = str_replace( '.php', '', basename( $plugin ) );
|
332 |
$addon = pmpro_getAddonBySlug( $slug );
|
333 |
-
if ( ! empty( $addon ) && ! pmpro_license_isValid() ) {
|
334 |
$msg = __( 'You must enter a valid PMPro Plus License Key under Settings > PMPro License to update this add on.', 'paid-memberships-pro' );
|
335 |
echo '<div class="error"><p>' . $msg . '</p></div>';
|
336 |
|
133 |
if ( ! empty( $addon['License'] ) && version_compare( $plugin_data['Version'], $addon['Version'], '<' ) ) {
|
134 |
$value->response[ $plugin_file ] = pmpro_getPluginAPIObjectFromAddon( $addon );
|
135 |
$value->response[ $plugin_file ]->new_version = $addon['Version'];
|
136 |
+
} else {
|
137 |
+
$value->no_update[ $plugin_file ] = pmpro_getPluginAPIObjectFromAddon( $addon );
|
138 |
}
|
139 |
}
|
140 |
|
237 |
if ( ! empty( $key ) && ! empty( $api->package ) ) {
|
238 |
$api->package = add_query_arg( 'key', $key, $api->package );
|
239 |
}
|
240 |
+
if ( empty( $api->upgrade_notice ) && ! pmpro_license_isValid( null, 'plus' ) ) {
|
241 |
$api->upgrade_notice = __( 'Important: This plugin requires a valid PMPro Plus license key to update.', 'paid-memberships-pro' );
|
242 |
}
|
243 |
|
306 |
|
307 |
$slug = str_replace( '.php', '', basename( $plugin ) );
|
308 |
$addon = pmpro_getAddonBySlug( $slug );
|
309 |
+
if ( ! empty( $addon ) && ! pmpro_license_isValid( null, 'plus' ) ) {
|
310 |
require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
311 |
|
312 |
echo '<div class="wrap"><h2>' . __( 'Update Plugin' ) . '</h2>';
|
332 |
|
333 |
$slug = str_replace( '.php', '', basename( $plugin ) );
|
334 |
$addon = pmpro_getAddonBySlug( $slug );
|
335 |
+
if ( ! empty( $addon ) && ! pmpro_license_isValid( null, 'plus' ) ) {
|
336 |
$msg = __( 'You must enter a valid PMPro Plus License Key under Settings > PMPro License to update this add on.', 'paid-memberships-pro' );
|
337 |
echo '<div class="error"><p>' . $msg . '</p></div>';
|
338 |
|
includes/compatibility.php
CHANGED
@@ -30,6 +30,11 @@ function pmpro_compatibility_checker () {
|
|
30 |
'file' => 'woocommerce.php',
|
31 |
'check_type' => 'constant',
|
32 |
'check_value' => 'WC_PLUGIN_FILE'
|
|
|
|
|
|
|
|
|
|
|
33 |
)
|
34 |
);
|
35 |
|
30 |
'file' => 'woocommerce.php',
|
31 |
'check_type' => 'constant',
|
32 |
'check_value' => 'WC_PLUGIN_FILE'
|
33 |
+
),
|
34 |
+
array(
|
35 |
+
'file' => 'wp-engine.php',
|
36 |
+
'check_type' => 'function',
|
37 |
+
'check_value' => 'wpe_filter_site_url'
|
38 |
)
|
39 |
);
|
40 |
|
includes/compatibility/wp-engine.php
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* WP Engine Compatibility
|
4 |
+
*
|
5 |
+
* In addition to this code to fix the PMPro password reset form, note that
|
6 |
+
* WP Engine also has aggressive caching that your login page
|
7 |
+
* should be excluded from, especially if you experience issues
|
8 |
+
* with your login page.
|
9 |
+
* https://wpengine.com/support/cache/#Cache_Exclusions
|
10 |
+
*
|
11 |
+
* @since 2.4.1
|
12 |
+
*/
|
13 |
+
|
14 |
+
/**
|
15 |
+
* Add wpe-login parameter when sending lost password email.
|
16 |
+
*
|
17 |
+
* @param string $url of lost password page.
|
18 |
+
*/
|
19 |
+
function pmpro_wpe_fix_lostpass( $url ) {
|
20 |
+
if ( strpos( $url, 'wpe-login=true' ) === false ) {
|
21 |
+
$url = add_query_arg( 'wpe-login', true, $url );
|
22 |
+
}
|
23 |
+
return $url;
|
24 |
+
}
|
25 |
+
add_filter( 'lostpassword_url', 'pmpro_wpe_fix_lostpass' );
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Add wpe-login parameter when resetting password.
|
29 |
+
*
|
30 |
+
* @param string $url of reset password page.
|
31 |
+
* @param string $path to lost password page from site domain.
|
32 |
+
*/
|
33 |
+
function pmpro_wpe_fix_resetpass( $url, $path ) {
|
34 |
+
if ( strpos( $path, 'action=resetpass' ) !== false && strpos( $path, 'wpe-login=true' ) === false ) {
|
35 |
+
$url = add_query_arg( 'wpe-login', 'true', $url );
|
36 |
+
}
|
37 |
+
return $url;
|
38 |
+
}
|
39 |
+
add_filter( 'site_url', 'pmpro_wpe_fix_resetpass', 10, 2 );
|
includes/currencies.php
CHANGED
@@ -64,6 +64,14 @@
|
|
64 |
'NOK' => __('Norwegian Krone', 'paid-memberships-pro' ),
|
65 |
'PHP' => __('Philippine Pesos', 'paid-memberships-pro' ),
|
66 |
'PLN' => __('Polish Zloty', 'paid-memberships-pro' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
'RUB' => array(
|
68 |
'name' => __('Russian Ruble (₽)', 'paid-memberships-pro'),
|
69 |
'decimals' => '2',
|
64 |
'NOK' => __('Norwegian Krone', 'paid-memberships-pro' ),
|
65 |
'PHP' => __('Philippine Pesos', 'paid-memberships-pro' ),
|
66 |
'PLN' => __('Polish Zloty', 'paid-memberships-pro' ),
|
67 |
+
'RON' => array(
|
68 |
+
'name' => __( 'Romanian Leu', 'paid-memberships-pro' ),
|
69 |
+
'decimals' => '2',
|
70 |
+
'thousands_separator' => '.',
|
71 |
+
'decimal_separator' => ',',
|
72 |
+
'symbol' => ' Lei',
|
73 |
+
'position' => 'right'
|
74 |
+
),
|
75 |
'RUB' => array(
|
76 |
'name' => __('Russian Ruble (₽)', 'paid-memberships-pro'),
|
77 |
'decimals' => '2',
|
includes/filters.php
CHANGED
@@ -22,8 +22,8 @@ function pmpro_checkout_level_extend_memberships( $level ) {
|
|
22 |
}
|
23 |
|
24 |
// calculate days left
|
25 |
-
$todays_date = current_time( '
|
26 |
-
$expiration_date = $user_level->enddate;
|
27 |
$time_left = $expiration_date - $todays_date;
|
28 |
|
29 |
// time left?
|
22 |
}
|
23 |
|
24 |
// calculate days left
|
25 |
+
$todays_date = strtotime( current_time( 'Y-m-d' ) );
|
26 |
+
$expiration_date = strtotime( date( 'Y-m-d', $user_level->enddate ) );
|
27 |
$time_left = $expiration_date - $todays_date;
|
28 |
|
29 |
// time left?
|
includes/pointers.php
CHANGED
@@ -1,8 +1,11 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Notes in a Pointer dialog box for guiding users in the dashboard interface.
|
|
|
|
|
4 |
*/
|
5 |
-
add_action( 'admin_enqueue_scripts', 'pmpro_enqueue_admin_pointer_scripts' );
|
|
|
6 |
/**
|
7 |
* Enqueue the scripts needed to builder admin pointers.
|
8 |
*
|
1 |
<?php
|
2 |
/**
|
3 |
* Notes in a Pointer dialog box for guiding users in the dashboard interface.
|
4 |
+
*
|
5 |
+
* NOTE: Disabled for now until we need a new pointer.
|
6 |
*/
|
7 |
+
///add_action( 'admin_enqueue_scripts', 'pmpro_enqueue_admin_pointer_scripts' );
|
8 |
+
|
9 |
/**
|
10 |
* Enqueue the scripts needed to builder admin pointers.
|
11 |
*
|
includes/profile.php
CHANGED
@@ -480,7 +480,16 @@ function pmpro_member_profile_edit_form() {
|
|
480 |
}
|
481 |
?>
|
482 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_member_profile_edit_wrap' ); ?>">
|
483 |
-
<form id="member-profile-edit" class="<?php echo pmpro_get_element_class( 'pmpro_form' ); ?>" action="" method="post"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
484 |
|
485 |
<?php wp_nonce_field( 'update-user_' . $current_user->ID, 'update_user_nonce' ); ?>
|
486 |
|
480 |
}
|
481 |
?>
|
482 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_member_profile_edit_wrap' ); ?>">
|
483 |
+
<form id="member-profile-edit" class="<?php echo pmpro_get_element_class( 'pmpro_form' ); ?>" action="" method="post"
|
484 |
+
<?php
|
485 |
+
/**
|
486 |
+
* Fires inside the member-profile-edit form tag in the pmpro_member_profile_edit_form function.
|
487 |
+
*
|
488 |
+
* @since 2.4.1
|
489 |
+
*/
|
490 |
+
do_action( 'pmpro_member_profile_edit_form_tag' );
|
491 |
+
?>
|
492 |
+
>
|
493 |
|
494 |
<?php wp_nonce_field( 'update-user_' . $current_user->ID, 'update_user_nonce' ); ?>
|
495 |
|
includes/recaptcha.php
CHANGED
@@ -1,19 +1,28 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
2 |
function pmpro_init_recaptcha() {
|
3 |
-
//don't load
|
4 |
-
if(is_admin()) {
|
5 |
-
return;
|
6 |
-
}
|
7 |
-
|
8 |
-
//use recaptcha?
|
9 |
global $recaptcha, $recaptcha_validated;
|
10 |
$recaptcha = pmpro_getOption( 'recaptcha' );
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
$recaptcha_validated = pmpro_get_session_var( 'pmpro_recaptcha_validated' );
|
13 |
if ( ! empty( $recaptcha_validated ) ) {
|
14 |
$recaptcha = false;
|
15 |
}
|
16 |
|
|
|
17 |
if($recaptcha) {
|
18 |
global $recaptcha_publickey, $recaptcha_privatekey;
|
19 |
|
@@ -116,7 +125,7 @@ function pmpro_init_recaptcha() {
|
|
116 |
$recaptcha_privatekey = pmpro_getOption( 'recaptcha_privatekey' );
|
117 |
}
|
118 |
}
|
119 |
-
add_action( '
|
120 |
|
121 |
/**
|
122 |
* AJAX Method to Validate a ReCAPTCHA Response Token
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Prep the ReCAPTCHA library if needed.
|
4 |
+
* Fires on the wp hook.
|
5 |
+
*/
|
6 |
function pmpro_init_recaptcha() {
|
7 |
+
//don't load if setting is off
|
|
|
|
|
|
|
|
|
|
|
8 |
global $recaptcha, $recaptcha_validated;
|
9 |
$recaptcha = pmpro_getOption( 'recaptcha' );
|
10 |
+
if ( empty( $recaptcha ) ) {
|
11 |
+
return;
|
12 |
+
}
|
13 |
+
|
14 |
+
//don't load unless we're on the checkout page
|
15 |
+
if ( ! pmpro_is_checkout() ) {
|
16 |
+
return;
|
17 |
+
}
|
18 |
+
|
19 |
+
//check for validation
|
20 |
$recaptcha_validated = pmpro_get_session_var( 'pmpro_recaptcha_validated' );
|
21 |
if ( ! empty( $recaptcha_validated ) ) {
|
22 |
$recaptcha = false;
|
23 |
}
|
24 |
|
25 |
+
//captcha is needed. set up functions to output
|
26 |
if($recaptcha) {
|
27 |
global $recaptcha_publickey, $recaptcha_privatekey;
|
28 |
|
125 |
$recaptcha_privatekey = pmpro_getOption( 'recaptcha_privatekey' );
|
126 |
}
|
127 |
}
|
128 |
+
add_action( 'wp', 'pmpro_init_recaptcha', 5 );
|
129 |
|
130 |
/**
|
131 |
* AJAX Method to Validate a ReCAPTCHA Response Token
|
includes/rest-api.php
CHANGED
@@ -160,6 +160,17 @@ if ( class_exists( 'WP_REST_Controller' ) ) {
|
|
160 |
),
|
161 |
));
|
162 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
163 |
}
|
164 |
|
165 |
/**
|
@@ -495,6 +506,38 @@ if ( class_exists( 'WP_REST_Controller' ) ) {
|
|
495 |
return new WP_REST_Response( $checkout_level );
|
496 |
}
|
497 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498 |
/**
|
499 |
* Default permissions check for endpoints/routes.
|
500 |
* Defaults to 'subscriber' for all GET requests and
|
160 |
),
|
161 |
));
|
162 |
|
163 |
+
/**
|
164 |
+
* Get membership levels after checkout options are applied.
|
165 |
+
* Example: https://example.com/wp-json/pmpro/v1/checkout_levels
|
166 |
+
*/
|
167 |
+
register_rest_route( $pmpro_namespace, '/checkout_levels',
|
168 |
+
array(
|
169 |
+
array(
|
170 |
+
'methods' => WP_REST_Server::READABLE,
|
171 |
+
'callback' => array( $this, 'pmpro_rest_api_get_checkout_levels' ),
|
172 |
+
),
|
173 |
+
));
|
174 |
}
|
175 |
|
176 |
/**
|
506 |
return new WP_REST_Response( $checkout_level );
|
507 |
}
|
508 |
|
509 |
+
/**
|
510 |
+
* Get membership levels at checkout.
|
511 |
+
* Example: https://example.com/wp-json/pmpro/v1/checkout_levels
|
512 |
+
*/
|
513 |
+
function pmpro_rest_api_get_checkout_levels( $request ) {
|
514 |
+
$params = $request->get_params();
|
515 |
+
|
516 |
+
global $pmpro_checkout_level_ids;
|
517 |
+
if ( ! empty( $pmpro_checkout_level_ids ) ) {
|
518 |
+
// MMPU Compatibility...
|
519 |
+
$level_ids = $pmpro_checkout_level_ids;
|
520 |
+
} elseif ( isset( $_REQUEST['level'] ) ) {
|
521 |
+
$level_ids = explode( '+', $_REQUEST['level'] );
|
522 |
+
}
|
523 |
+
|
524 |
+
if ( empty( $level_ids ) ) {
|
525 |
+
return new WP_REST_Response( 'No levels found.', 400 );
|
526 |
+
}
|
527 |
+
$discount_code = isset( $params['discount_code'] ) ? $params['discount_code'] : null;
|
528 |
+
|
529 |
+
$r = array();
|
530 |
+
$r['initial_payment'] = 0.00;
|
531 |
+
foreach ( $level_ids as $level_id ) {
|
532 |
+
$r[ $level_id ] = pmpro_getLevelAtCheckout( $level_id, $discount_code );
|
533 |
+
if ( ! empty( $r[ $level_id ]->initial_payment ) ) {
|
534 |
+
$r['initial_payment'] += intval( $r[ $level_id ]->initial_payment );
|
535 |
+
}
|
536 |
+
}
|
537 |
+
$r['initial_payment_formatted'] = pmpro_formatPrice( $r['initial_payment'] );
|
538 |
+
return new WP_REST_Response( $r );
|
539 |
+
}
|
540 |
+
|
541 |
/**
|
542 |
* Default permissions check for endpoints/routes.
|
543 |
* Defaults to 'subscriber' for all GET requests and
|
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: 2020-
|
10 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11 |
"Last-Translator: \n"
|
12 |
"Language-Team: Stranger Studios <info@paidmembershipspro.com>\n"
|
@@ -222,10 +222,10 @@ msgstr ""
|
|
222 |
#: adminpages/orders.php:1439 adminpages/orders.php:1440
|
223 |
#: adminpages/orders.php:1445 adminpages/orders.php:1455
|
224 |
#: adminpages/orders.php:1462 adminpages/orders.php:1472
|
225 |
-
#: includes/profile.php:186 includes/profile.php:191
|
226 |
#: shortcodes/pmpro_account.php:145 shortcodes/pmpro_account.php:146
|
227 |
#: shortcodes/pmpro_account.php:148 shortcodes/pmpro_account.php:158
|
228 |
-
#: shortcodes/pmpro_account.php:234
|
229 |
msgid "N/A"
|
230 |
msgstr ""
|
231 |
|
@@ -361,6 +361,7 @@ msgstr ""
|
|
361 |
#: classes/gateways/class.pmprogateway_stripe.php:66
|
362 |
#: classes/gateways/class.pmprogateway_stripe.php:68
|
363 |
#: classes/gateways/class.pmprogateway_stripe.php:71
|
|
|
364 |
#, php-format
|
365 |
msgid ""
|
366 |
"The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to "
|
@@ -587,7 +588,7 @@ msgstr ""
|
|
587 |
msgid "Payment Gateway & SSL Settings"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: adminpages/admin_header.php:251 includes/profile.php:
|
591 |
#: shortcodes/pmpro_account.php:161 adminpages/admin_header.php:131
|
592 |
#: adminpages/admin_header.php:152 adminpages/admin_header.php:162
|
593 |
#: adminpages/admin_header.php:171 adminpages/admin_header.php:183
|
@@ -600,10 +601,11 @@ msgstr ""
|
|
600 |
#: adminpages/orders.php:376 adminpages/orders.php:1345
|
601 |
#: adminpages/orders.php:1350 adminpages/orders.php:1351
|
602 |
#: adminpages/orders.php:1360 adminpages/orders.php:1365
|
603 |
-
#: includes/profile.php:
|
604 |
-
#: pages/account.php:77 shortcodes/pmpro_account.php:106
|
605 |
#: shortcodes/pmpro_account.php:108 shortcodes/pmpro_account.php:109
|
606 |
#: shortcodes/pmpro_account.php:111 shortcodes/pmpro_account.php:160
|
|
|
607 |
msgid "Email"
|
608 |
msgstr ""
|
609 |
|
@@ -663,18 +665,20 @@ msgstr ""
|
|
663 |
#: adminpages/advancedsettings.php:42 adminpages/advancedsettings.php:43
|
664 |
#: adminpages/advancedsettings.php:46 adminpages/advancedsettings.php:60
|
665 |
#: adminpages/advancedsettings.php:61 adminpages/advancedsettings.php:62
|
666 |
-
#: adminpages/advancedsettings.php:67
|
667 |
msgid "Your advanced settings have been updated."
|
668 |
msgstr ""
|
669 |
|
670 |
#: adminpages/advancedsettings.php:106 includes/updates/upgrade_1.php:7
|
671 |
-
#: adminpages/advancedsettings.php:104
|
|
|
672 |
#, php-format
|
673 |
msgid ""
|
674 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Join Now</a>"
|
675 |
msgstr ""
|
676 |
|
677 |
#: adminpages/advancedsettings.php:111 adminpages/advancedsettings.php:109
|
|
|
678 |
#, php-format
|
679 |
msgid ""
|
680 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
|
@@ -685,24 +689,29 @@ msgstr ""
|
|
685 |
#: adminpages/advancedsettings.php:76 adminpages/advancedsettings.php:78
|
686 |
#: adminpages/advancedsettings.php:81 adminpages/advancedsettings.php:95
|
687 |
#: adminpages/advancedsettings.php:97 adminpages/advancedsettings.php:99
|
688 |
-
#: adminpages/advancedsettings.php:114
|
|
|
689 |
msgid ""
|
690 |
"This content is for members only. Visit the site and log in/register to read."
|
691 |
msgstr ""
|
692 |
|
693 |
#: adminpages/advancedsettings.php:140 adminpages/advancedsettings.php:138
|
|
|
694 |
msgid "WordPress Dashboard"
|
695 |
msgstr ""
|
696 |
|
697 |
#: adminpages/advancedsettings.php:143 adminpages/advancedsettings.php:141
|
|
|
698 |
msgid "Block all users with the Subscriber role from accessing the Dashboard."
|
699 |
msgstr ""
|
700 |
|
701 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:146
|
|
|
702 |
msgid "WordPress Toolbar"
|
703 |
msgstr ""
|
704 |
|
705 |
#: adminpages/advancedsettings.php:151 adminpages/advancedsettings.php:149
|
|
|
706 |
msgid "Hide the Toolbar from all users with the Subscriber role."
|
707 |
msgstr ""
|
708 |
|
@@ -710,7 +719,7 @@ msgstr ""
|
|
710 |
#: adminpages/advancedsettings.php:92 adminpages/advancedsettings.php:94
|
711 |
#: adminpages/advancedsettings.php:97 adminpages/advancedsettings.php:113
|
712 |
#: adminpages/advancedsettings.php:115 adminpages/advancedsettings.php:118
|
713 |
-
#: adminpages/advancedsettings.php:162
|
714 |
msgid "Message for Logged-in Non-members"
|
715 |
msgstr ""
|
716 |
|
@@ -718,7 +727,7 @@ msgstr ""
|
|
718 |
#: adminpages/advancedsettings.php:96 adminpages/advancedsettings.php:98
|
719 |
#: adminpages/advancedsettings.php:101 adminpages/advancedsettings.php:117
|
720 |
#: adminpages/advancedsettings.php:119 adminpages/advancedsettings.php:122
|
721 |
-
#: adminpages/advancedsettings.php:166
|
722 |
msgid ""
|
723 |
"This message replaces the post content for non-members. Available variables"
|
724 |
msgstr ""
|
@@ -727,12 +736,13 @@ msgstr ""
|
|
727 |
#: adminpages/advancedsettings.php:101 adminpages/advancedsettings.php:103
|
728 |
#: adminpages/advancedsettings.php:106 adminpages/advancedsettings.php:122
|
729 |
#: adminpages/advancedsettings.php:124 adminpages/advancedsettings.php:127
|
730 |
-
#: adminpages/advancedsettings.php:171
|
731 |
msgid "Message for Logged-out Users"
|
732 |
msgstr ""
|
733 |
|
734 |
#: adminpages/advancedsettings.php:177 adminpages/advancedsettings.php:186
|
735 |
-
#: adminpages/advancedsettings.php:175 adminpages/advancedsettings.php:
|
|
|
736 |
msgid "Available variables"
|
737 |
msgstr ""
|
738 |
|
@@ -740,7 +750,7 @@ msgstr ""
|
|
740 |
#: adminpages/advancedsettings.php:105 adminpages/advancedsettings.php:107
|
741 |
#: adminpages/advancedsettings.php:110 adminpages/advancedsettings.php:126
|
742 |
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:131
|
743 |
-
#: adminpages/advancedsettings.php:175
|
744 |
msgid "This message replaces the post content for logged-out visitors."
|
745 |
msgstr ""
|
746 |
|
@@ -748,7 +758,7 @@ msgstr ""
|
|
748 |
#: adminpages/advancedsettings.php:110 adminpages/advancedsettings.php:112
|
749 |
#: adminpages/advancedsettings.php:115 adminpages/advancedsettings.php:131
|
750 |
#: adminpages/advancedsettings.php:133 adminpages/advancedsettings.php:136
|
751 |
-
#: adminpages/advancedsettings.php:180
|
752 |
msgid "Message for RSS Feed"
|
753 |
msgstr ""
|
754 |
|
@@ -756,7 +766,7 @@ msgstr ""
|
|
756 |
#: adminpages/advancedsettings.php:114 adminpages/advancedsettings.php:116
|
757 |
#: adminpages/advancedsettings.php:119 adminpages/advancedsettings.php:135
|
758 |
#: adminpages/advancedsettings.php:137 adminpages/advancedsettings.php:140
|
759 |
-
#: adminpages/advancedsettings.php:184
|
760 |
msgid "This message replaces the post content in RSS feeds."
|
761 |
msgstr ""
|
762 |
|
@@ -764,6 +774,7 @@ msgstr ""
|
|
764 |
#: adminpages/advancedsettings.php:125 adminpages/advancedsettings.php:141
|
765 |
#: adminpages/advancedsettings.php:143 adminpages/advancedsettings.php:148
|
766 |
#: adminpages/advancedsettings.php:151 adminpages/advancedsettings.php:197
|
|
|
767 |
msgid "Filter searches and archives?"
|
768 |
msgstr ""
|
769 |
|
@@ -771,6 +782,7 @@ msgstr ""
|
|
771 |
#: adminpages/advancedsettings.php:129 adminpages/advancedsettings.php:145
|
772 |
#: adminpages/advancedsettings.php:147 adminpages/advancedsettings.php:152
|
773 |
#: adminpages/advancedsettings.php:155 adminpages/advancedsettings.php:201
|
|
|
774 |
msgid ""
|
775 |
"No - Non-members will see restricted posts/pages in searches and archives."
|
776 |
msgstr ""
|
@@ -779,6 +791,7 @@ msgstr ""
|
|
779 |
#: adminpages/advancedsettings.php:130 adminpages/advancedsettings.php:146
|
780 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:153
|
781 |
#: adminpages/advancedsettings.php:156 adminpages/advancedsettings.php:202
|
|
|
782 |
msgid ""
|
783 |
"Yes - Only members will see restricted posts/pages in searches and archives."
|
784 |
msgstr ""
|
@@ -788,6 +801,7 @@ msgstr ""
|
|
788 |
#: adminpages/advancedsettings.php:136 adminpages/advancedsettings.php:152
|
789 |
#: adminpages/advancedsettings.php:154 adminpages/advancedsettings.php:159
|
790 |
#: adminpages/advancedsettings.php:162 adminpages/advancedsettings.php:208
|
|
|
791 |
msgid "Show Excerpts to Non-Members?"
|
792 |
msgstr ""
|
793 |
|
@@ -796,6 +810,7 @@ msgstr ""
|
|
796 |
#: adminpages/advancedsettings.php:140 adminpages/advancedsettings.php:156
|
797 |
#: adminpages/advancedsettings.php:158 adminpages/advancedsettings.php:163
|
798 |
#: adminpages/advancedsettings.php:166 adminpages/advancedsettings.php:212
|
|
|
799 |
msgid "No - Hide excerpts."
|
800 |
msgstr ""
|
801 |
|
@@ -804,22 +819,25 @@ msgstr ""
|
|
804 |
#: adminpages/advancedsettings.php:141 adminpages/advancedsettings.php:157
|
805 |
#: adminpages/advancedsettings.php:159 adminpages/advancedsettings.php:164
|
806 |
#: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:213
|
|
|
807 |
msgid "Yes - Show excerpts."
|
808 |
msgstr ""
|
809 |
|
810 |
#: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:218
|
811 |
#: adminpages/advancedsettings.php:225 adminpages/advancedsettings.php:227
|
812 |
-
#: adminpages/advancedsettings.php:
|
813 |
-
#: adminpages/advancedsettings.php:
|
814 |
-
#: adminpages/advancedsettings.php:
|
|
|
815 |
msgid "Require Terms of Service on signups?"
|
816 |
msgstr ""
|
817 |
|
818 |
#: adminpages/advancedsettings.php:236 adminpages/advancedsettings.php:225
|
819 |
#: adminpages/advancedsettings.php:232 adminpages/advancedsettings.php:234
|
820 |
-
#: adminpages/advancedsettings.php:
|
821 |
-
#: adminpages/advancedsettings.php:
|
822 |
-
#: adminpages/advancedsettings.php:
|
|
|
823 |
msgid ""
|
824 |
"If yes, create a WordPress page containing your TOS agreement and assign it "
|
825 |
"using the dropdown above."
|
@@ -830,6 +848,7 @@ msgstr ""
|
|
830 |
#: adminpages/advancedsettings.php:202 adminpages/advancedsettings.php:215
|
831 |
#: adminpages/advancedsettings.php:218 adminpages/advancedsettings.php:234
|
832 |
#: adminpages/advancedsettings.php:236 adminpages/advancedsettings.php:239
|
|
|
833 |
msgid "Use reCAPTCHA?"
|
834 |
msgstr ""
|
835 |
|
@@ -850,8 +869,10 @@ msgstr ""
|
|
850 |
#: adminpages/advancedsettings.php:225 adminpages/advancedsettings.php:226
|
851 |
#: adminpages/advancedsettings.php:228 adminpages/advancedsettings.php:238
|
852 |
#: adminpages/advancedsettings.php:240 adminpages/advancedsettings.php:243
|
853 |
-
#: adminpages/advancedsettings.php:
|
854 |
-
#: adminpages/advancedsettings.php:
|
|
|
|
|
855 |
#: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
|
856 |
#: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
|
857 |
#: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
|
@@ -865,10 +886,11 @@ msgstr ""
|
|
865 |
#: adminpages/membershiplevels.php:818 adminpages/paymentsettings.php:210
|
866 |
#: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:236
|
867 |
#: adminpages/paymentsettings.php:253 adminpages/paymentsettings.php:256
|
868 |
-
#: adminpages/paymentsettings.php:257 adminpages/paymentsettings.php:
|
869 |
-
#: adminpages/paymentsettings.php:
|
870 |
-
#: adminpages/paymentsettings.php:
|
871 |
-
#: adminpages/paymentsettings.php:
|
|
|
872 |
#: classes/gateways/class.pmprogateway_stripe.php:173
|
873 |
#: classes/gateways/class.pmprogateway_stripe.php:174
|
874 |
#: classes/gateways/class.pmprogateway_stripe.php:184
|
@@ -887,11 +909,12 @@ msgstr ""
|
|
887 |
#: classes/gateways/class.pmprogateway_stripe.php:319
|
888 |
#: classes/gateways/class.pmprogateway_stripe.php:320
|
889 |
#: classes/gateways/class.pmprogateway_stripe.php:321
|
|
|
890 |
#: includes/compatibility/beaver-builder.php:43
|
891 |
-
#: includes/compatibility/beaver-builder.php:137 includes/profile.php:
|
892 |
-
#: includes/profile.php:
|
893 |
-
#: includes/profile.php:
|
894 |
-
#: includes/profile.php:125
|
895 |
msgid "No"
|
896 |
msgstr ""
|
897 |
|
@@ -900,6 +923,7 @@ msgstr ""
|
|
900 |
#: adminpages/advancedsettings.php:207 adminpages/advancedsettings.php:220
|
901 |
#: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:239
|
902 |
#: adminpages/advancedsettings.php:241 adminpages/advancedsettings.php:244
|
|
|
903 |
msgid "Yes - Free memberships only."
|
904 |
msgstr ""
|
905 |
|
@@ -908,6 +932,7 @@ msgstr ""
|
|
908 |
#: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:221
|
909 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:240
|
910 |
#: adminpages/advancedsettings.php:242 adminpages/advancedsettings.php:245
|
|
|
911 |
msgid "Yes - All memberships."
|
912 |
msgstr ""
|
913 |
|
@@ -916,6 +941,7 @@ msgstr ""
|
|
916 |
#: adminpages/advancedsettings.php:210 adminpages/advancedsettings.php:223
|
917 |
#: adminpages/advancedsettings.php:226 adminpages/advancedsettings.php:242
|
918 |
#: adminpages/advancedsettings.php:244 adminpages/advancedsettings.php:247
|
|
|
919 |
msgid "A free reCAPTCHA key is required."
|
920 |
msgstr ""
|
921 |
|
@@ -924,74 +950,78 @@ msgstr ""
|
|
924 |
#: adminpages/advancedsettings.php:210 adminpages/advancedsettings.php:223
|
925 |
#: adminpages/advancedsettings.php:226 adminpages/advancedsettings.php:242
|
926 |
#: adminpages/advancedsettings.php:244 adminpages/advancedsettings.php:247
|
|
|
927 |
msgid "Click here to signup for reCAPTCHA"
|
928 |
msgstr ""
|
929 |
|
930 |
#: adminpages/advancedsettings.php:257 adminpages/advancedsettings.php:192
|
931 |
#: adminpages/advancedsettings.php:195 adminpages/advancedsettings.php:250
|
932 |
-
#: adminpages/advancedsettings.php:255
|
933 |
msgid "reCAPTCHA Version"
|
934 |
msgstr ""
|
935 |
|
936 |
#: adminpages/advancedsettings.php:260 adminpages/advancedsettings.php:195
|
937 |
#: adminpages/advancedsettings.php:198 adminpages/advancedsettings.php:252
|
938 |
-
#: adminpages/advancedsettings.php:258
|
939 |
msgid " v2 - Checkbox"
|
940 |
msgstr ""
|
941 |
|
942 |
#: adminpages/advancedsettings.php:261 adminpages/advancedsettings.php:196
|
943 |
#: adminpages/advancedsettings.php:199 adminpages/advancedsettings.php:253
|
944 |
-
#: adminpages/advancedsettings.php:259
|
945 |
msgid "v3 - Invisible"
|
946 |
msgstr ""
|
947 |
|
948 |
#: adminpages/advancedsettings.php:263 adminpages/advancedsettings.php:198
|
949 |
#: adminpages/advancedsettings.php:201 adminpages/advancedsettings.php:255
|
950 |
-
#: adminpages/advancedsettings.php:261
|
951 |
msgid "Changing your version will require new API keys."
|
952 |
msgstr ""
|
953 |
|
954 |
#: adminpages/advancedsettings.php:267 adminpages/advancedsettings.php:202
|
955 |
#: adminpages/advancedsettings.php:205 adminpages/advancedsettings.php:248
|
956 |
#: adminpages/advancedsettings.php:257 adminpages/advancedsettings.php:265
|
|
|
957 |
msgid "reCAPTCHA Site Key"
|
958 |
msgstr ""
|
959 |
|
960 |
#: adminpages/advancedsettings.php:273 adminpages/advancedsettings.php:208
|
961 |
#: adminpages/advancedsettings.php:211 adminpages/advancedsettings.php:251
|
962 |
#: adminpages/advancedsettings.php:260 adminpages/advancedsettings.php:271
|
|
|
963 |
msgid "reCAPTCHA Secret Key"
|
964 |
msgstr ""
|
965 |
|
966 |
#: adminpages/advancedsettings.php:286 adminpages/advancedsettings.php:246
|
967 |
-
#: adminpages/advancedsettings.php:284
|
968 |
msgid "Notifications"
|
969 |
msgstr ""
|
970 |
|
971 |
#: adminpages/advancedsettings.php:290 adminpages/advancedsettings.php:250
|
972 |
-
#: adminpages/advancedsettings.php:288
|
973 |
msgid "Show all notifications."
|
974 |
msgstr ""
|
975 |
|
976 |
#: adminpages/advancedsettings.php:293 adminpages/advancedsettings.php:253
|
977 |
-
#: adminpages/advancedsettings.php:291
|
978 |
msgid "Show only security notifications."
|
979 |
msgstr ""
|
980 |
|
981 |
#: adminpages/advancedsettings.php:297 adminpages/advancedsettings.php:257
|
982 |
-
#: adminpages/advancedsettings.php:295
|
983 |
msgid ""
|
984 |
"Notifications are occasionally shown on the Paid Memberships Pro settings "
|
985 |
"pages."
|
986 |
msgstr ""
|
987 |
|
988 |
#: adminpages/advancedsettings.php:302 adminpages/advancedsettings.php:300
|
|
|
989 |
msgid "Activity Email Frequency"
|
990 |
msgstr ""
|
991 |
|
992 |
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:351
|
993 |
#: adminpages/reports/sales.php:290 adminpages/advancedsettings.php:305
|
994 |
-
#: adminpages/reports/memberships.php:258
|
995 |
#: adminpages/reports/memberships.php:265
|
996 |
#: adminpages/reports/memberships.php:278
|
997 |
#: adminpages/reports/memberships.php:294
|
@@ -1005,12 +1035,13 @@ msgid "Daily"
|
|
1005 |
msgstr ""
|
1006 |
|
1007 |
#: adminpages/advancedsettings.php:310 adminpages/advancedsettings.php:308
|
|
|
1008 |
msgid "Weekly"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:352
|
1012 |
#: adminpages/reports/sales.php:291 adminpages/advancedsettings.php:311
|
1013 |
-
#: adminpages/reports/memberships.php:259
|
1014 |
#: adminpages/reports/memberships.php:266
|
1015 |
#: adminpages/reports/memberships.php:279
|
1016 |
#: adminpages/reports/memberships.php:295
|
@@ -1024,12 +1055,14 @@ msgid "Monthly"
|
|
1024 |
msgstr ""
|
1025 |
|
1026 |
#: adminpages/advancedsettings.php:316 includes/privacy.php:175
|
1027 |
-
#: adminpages/advancedsettings.php:314 adminpages/
|
1028 |
-
#: adminpages/memberslist.php:
|
|
|
1029 |
msgid "Never"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: adminpages/advancedsettings.php:320 adminpages/advancedsettings.php:318
|
|
|
1033 |
msgid ""
|
1034 |
"Send periodic sales and revenue updates from this site to the administration "
|
1035 |
"email address."
|
@@ -1039,6 +1072,7 @@ msgstr ""
|
|
1039 |
#: adminpages/advancedsettings.php:147 adminpages/advancedsettings.php:163
|
1040 |
#: adminpages/advancedsettings.php:165 adminpages/advancedsettings.php:221
|
1041 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:331
|
|
|
1042 |
msgid "Hide Ads From Members?"
|
1043 |
msgstr ""
|
1044 |
|
@@ -1047,6 +1081,7 @@ msgstr ""
|
|
1047 |
#: adminpages/advancedsettings.php:152 adminpages/advancedsettings.php:168
|
1048 |
#: adminpages/advancedsettings.php:170 adminpages/advancedsettings.php:226
|
1049 |
#: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:336
|
|
|
1050 |
msgid "Hide Ads From All Members"
|
1051 |
msgstr ""
|
1052 |
|
@@ -1055,6 +1090,7 @@ msgstr ""
|
|
1055 |
#: adminpages/advancedsettings.php:153 adminpages/advancedsettings.php:169
|
1056 |
#: adminpages/advancedsettings.php:171 adminpages/advancedsettings.php:227
|
1057 |
#: adminpages/advancedsettings.php:230 adminpages/advancedsettings.php:337
|
|
|
1058 |
msgid "Hide Ads From Certain Members"
|
1059 |
msgstr ""
|
1060 |
|
@@ -1063,6 +1099,7 @@ msgstr ""
|
|
1063 |
#: adminpages/advancedsettings.php:161 adminpages/advancedsettings.php:177
|
1064 |
#: adminpages/advancedsettings.php:179 adminpages/advancedsettings.php:235
|
1065 |
#: adminpages/advancedsettings.php:238 adminpages/advancedsettings.php:345
|
|
|
1066 |
msgid "To hide ads in your template code, use code like the following"
|
1067 |
msgstr ""
|
1068 |
|
@@ -1071,6 +1108,7 @@ msgstr ""
|
|
1071 |
#: adminpages/advancedsettings.php:172 adminpages/advancedsettings.php:188
|
1072 |
#: adminpages/advancedsettings.php:190 adminpages/advancedsettings.php:244
|
1073 |
#: adminpages/advancedsettings.php:262 adminpages/advancedsettings.php:354
|
|
|
1074 |
msgid "Choose Levels to Hide Ads From"
|
1075 |
msgstr ""
|
1076 |
|
@@ -1079,6 +1117,7 @@ msgstr ""
|
|
1079 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1080 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
1081 |
#: adminpages/advancedsettings.php:296 adminpages/advancedsettings.php:388
|
|
|
1082 |
msgid "Redirect all traffic from registration page to /susbcription/?"
|
1083 |
msgstr ""
|
1084 |
|
@@ -1087,6 +1126,7 @@ msgstr ""
|
|
1087 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1088 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
1089 |
#: adminpages/advancedsettings.php:296 adminpages/advancedsettings.php:388
|
|
|
1090 |
msgid "multisite only"
|
1091 |
msgstr ""
|
1092 |
|
@@ -1099,20 +1139,21 @@ msgstr ""
|
|
1099 |
#: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:211
|
1100 |
#: adminpages/advancedsettings.php:227 adminpages/advancedsettings.php:229
|
1101 |
#: adminpages/advancedsettings.php:283 adminpages/advancedsettings.php:301
|
1102 |
-
#: adminpages/advancedsettings.php:393 adminpages/
|
1103 |
-
#: adminpages/membershiplevels.php:
|
1104 |
-
#: adminpages/membershiplevels.php:
|
1105 |
-
#: adminpages/membershiplevels.php:
|
1106 |
-
#: adminpages/membershiplevels.php:
|
1107 |
-
#: adminpages/membershiplevels.php:
|
1108 |
-
#: adminpages/membershiplevels.php:
|
1109 |
-
#: adminpages/membershiplevels.php:
|
1110 |
-
#: adminpages/membershiplevels.php:
|
1111 |
-
#: adminpages/membershiplevels.php:
|
1112 |
-
#: adminpages/membershiplevels.php:
|
1113 |
-
#: adminpages/
|
1114 |
-
#: adminpages/paymentsettings.php:
|
1115 |
-
#: adminpages/paymentsettings.php:
|
|
|
1116 |
#: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
|
1117 |
#: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:435
|
1118 |
#: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:455
|
@@ -1135,19 +1176,20 @@ msgstr ""
|
|
1135 |
#: classes/gateways/class.pmprogateway_stripe.php:321
|
1136 |
#: classes/gateways/class.pmprogateway_stripe.php:322
|
1137 |
#: classes/gateways/class.pmprogateway_stripe.php:323
|
|
|
1138 |
#: includes/compatibility/beaver-builder.php:42
|
1139 |
-
#: includes/compatibility/beaver-builder.php:136 includes/profile.php:
|
1140 |
-
#: includes/profile.php:
|
1141 |
-
#: includes/profile.php:
|
1142 |
-
#: includes/profile.php:126
|
1143 |
msgid "Yes"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: adminpages/advancedsettings.php:467
|
1147 |
msgid "Uninstall PMPro on deletion?"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: adminpages/advancedsettings.php:472
|
1151 |
msgid "Yes - Delete all PMPro Data."
|
1152 |
msgstr ""
|
1153 |
|
@@ -1157,15 +1199,16 @@ msgstr ""
|
|
1157 |
#: adminpages/advancedsettings.php:368 adminpages/advancedsettings.php:375
|
1158 |
#: adminpages/advancedsettings.php:384 adminpages/advancedsettings.php:407
|
1159 |
#: adminpages/advancedsettings.php:427 adminpages/advancedsettings.php:507
|
1160 |
-
#: adminpages/
|
1161 |
-
#: adminpages/pagesettings.php:
|
1162 |
-
#: adminpages/pagesettings.php:
|
1163 |
-
#: adminpages/pagesettings.php:
|
1164 |
-
#: adminpages/pagesettings.php:
|
1165 |
-
#: adminpages/pagesettings.php:
|
1166 |
-
#: adminpages/
|
1167 |
-
#: adminpages/paymentsettings.php:
|
1168 |
-
#: adminpages/paymentsettings.php:
|
|
|
1169 |
#: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:526
|
1170 |
#: adminpages/paymentsettings.php:532 adminpages/paymentsettings.php:534
|
1171 |
msgid "Save Settings"
|
@@ -1258,29 +1301,30 @@ msgstr ""
|
|
1258 |
#: adminpages/dashboard.php:219 adminpages/reports/login.php:179
|
1259 |
#: classes/class.memberorder.php:870 pages/checkout.php:118
|
1260 |
#: shortcodes/pmpro_account.php:160 adminpages/dashboard.php:215
|
1261 |
-
#: adminpages/dashboard.php:
|
1262 |
-
#: adminpages/memberslist.php:
|
1263 |
-
#: adminpages/memberslist.php:
|
1264 |
-
#: adminpages/
|
1265 |
-
#: adminpages/orders.php:
|
1266 |
-
#:
|
1267 |
-
#:
|
1268 |
-
#: pages/
|
1269 |
-
#: pages/checkout.php:
|
1270 |
-
#: pages/checkout.php:
|
1271 |
-
#: pages/checkout.php:191 pages/checkout.php:194
|
1272 |
#: shortcodes/pmpro_account.php:105 shortcodes/pmpro_account.php:107
|
1273 |
#: shortcodes/pmpro_account.php:108 shortcodes/pmpro_account.php:110
|
1274 |
-
#: shortcodes/pmpro_account.php:159
|
1275 |
msgid "Username"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
#: adminpages/dashboard.php:220 adminpages/dashboard.php:288
|
1279 |
#: adminpages/reports/login.php:181 includes/privacy.php:241
|
1280 |
-
#: pages/billing.php:58 pages/cancel.php:60 pages/invoice.php:
|
1281 |
#: pages/levels.php:35 shortcodes/pmpro_account.php:42
|
1282 |
#: shortcodes/pmpro_account.php:211 adminpages/dashboard.php:216
|
1283 |
-
#: adminpages/dashboard.php:
|
|
|
1284 |
#: adminpages/memberslist.php:175 adminpages/orders.php:1300
|
1285 |
#: adminpages/orders.php:1306 adminpages/orders.php:1315
|
1286 |
#: adminpages/reports/login.php:181 includes/privacy.php:241
|
@@ -1288,42 +1332,44 @@ msgstr ""
|
|
1288 |
#: pages/billing.php:16 pages/billing.php:25 pages/billing.php:27
|
1289 |
#: pages/billing.php:28 pages/billing.php:30 pages/billing.php:41
|
1290 |
#: pages/billing.php:44 pages/billing.php:45 pages/billing.php:49
|
1291 |
-
#: pages/billing.php:50 pages/billing.php:57 pages/
|
1292 |
-
#: pages/cancel.php:
|
1293 |
-
#: pages/invoice.php:
|
1294 |
-
#: pages/invoice.php:
|
1295 |
-
#: pages/levels.php:35 shortcodes/pmpro_account.php:42
|
1296 |
#: shortcodes/pmpro_account.php:43 shortcodes/pmpro_account.php:44
|
1297 |
#: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:125
|
1298 |
#: shortcodes/pmpro_account.php:126 shortcodes/pmpro_account.php:128
|
1299 |
-
#: shortcodes/pmpro_account.php:204
|
1300 |
msgid "Level"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
#: adminpages/dashboard.php:221 adminpages/reports/login.php:182
|
1304 |
-
#: adminpages/dashboard.php:217 adminpages/dashboard.php:
|
1305 |
-
#: adminpages/
|
1306 |
-
#: adminpages/memberslist.php:
|
1307 |
-
#: adminpages/memberslist.php:
|
1308 |
-
#: adminpages/reports/login.php:
|
1309 |
-
#: adminpages/reports/login.php:
|
|
|
1310 |
msgid "Joined"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: adminpages/dashboard.php:222 adminpages/discountcodes.php:750
|
1314 |
#: adminpages/reports/login.php:183 includes/profile.php:86
|
1315 |
-
#: adminpages/dashboard.php:218 adminpages/dashboard.php:
|
1316 |
-
#: adminpages/
|
1317 |
-
#: adminpages/discountcodes.php:
|
1318 |
-
#: adminpages/discountcodes.php:
|
1319 |
-
#: adminpages/discountcodes.php:
|
1320 |
-
#: adminpages/discountcodes.php:
|
1321 |
-
#: adminpages/discountcodes.php:
|
1322 |
-
#: adminpages/memberslist.php:
|
1323 |
-
#: adminpages/memberslist.php:
|
1324 |
-
#: adminpages/memberslist.php:
|
1325 |
-
#: adminpages/reports/login.php:
|
1326 |
-
#: adminpages/reports/login.php:
|
|
|
1327 |
#: includes/profile.php:98 includes/profile.php:102 includes/profile.php:107
|
1328 |
#: includes/profile.php:114 includes/profile.php:117 includes/profile.php:118
|
1329 |
#: includes/profile.php:120 includes/profile.php:122
|
@@ -1332,13 +1378,14 @@ msgstr ""
|
|
1332 |
|
1333 |
#: adminpages/dashboard.php:228 adminpages/reports/login.php:261
|
1334 |
#: classes/class-pmpro-members-list-table.php:226 adminpages/dashboard.php:224
|
1335 |
-
#: adminpages/dashboard.php:
|
1336 |
-
#: adminpages/memberslist.php:
|
1337 |
-
#: adminpages/memberslist.php:
|
1338 |
-
#: adminpages/memberslist.php:
|
1339 |
-
#: adminpages/memberslist.php:
|
1340 |
-
#: adminpages/reports/login.php:
|
1341 |
-
#: adminpages/reports/login.php:
|
|
|
1342 |
#: classes/class-pmpro-members-list-table.php:226
|
1343 |
#: classes/class-pmpro-members-list-table.php:252
|
1344 |
#: classes/class-pmpro-members-list-table.php:257
|
@@ -1347,23 +1394,24 @@ msgstr ""
|
|
1347 |
|
1348 |
#: adminpages/dashboard.php:286 adminpages/discountcodes.php:449
|
1349 |
#: adminpages/discountcodes.php:748 adminpages/orders.php:415
|
1350 |
-
#: adminpages/dashboard.php:282 adminpages/dashboard.php:
|
1351 |
-
#: adminpages/
|
1352 |
-
#: adminpages/discountcodes.php:
|
1353 |
-
#: adminpages/discountcodes.php:
|
1354 |
-
#: adminpages/discountcodes.php:
|
1355 |
-
#: adminpages/discountcodes.php:
|
1356 |
-
#: adminpages/discountcodes.php:
|
1357 |
-
#: adminpages/discountcodes.php:
|
1358 |
-
#: adminpages/discountcodes.php:
|
1359 |
-
#: adminpages/discountcodes.php:
|
1360 |
-
#: adminpages/discountcodes.php:
|
1361 |
-
#: adminpages/
|
1362 |
-
#: adminpages/orders.php:
|
1363 |
-
#: adminpages/orders.php:
|
1364 |
-
#: adminpages/orders.php:
|
1365 |
-
#: adminpages/orders.php:
|
1366 |
-
#: adminpages/orders.php:
|
|
|
1367 |
#: adminpages/orders.php:598 adminpages/orders.php:901
|
1368 |
#: adminpages/orders.php:911 adminpages/orders.php:938
|
1369 |
#: adminpages/orders.php:967 adminpages/orders.php:1104
|
@@ -1376,17 +1424,17 @@ msgstr ""
|
|
1376 |
|
1377 |
#: adminpages/dashboard.php:287
|
1378 |
#: classes/gateways/class.pmprogateway_payflowpro.php:117
|
1379 |
-
#: adminpages/dashboard.php:283 adminpages/dashboard.php:
|
1380 |
-
#: adminpages/
|
1381 |
-
#: adminpages/orders.php:
|
1382 |
-
#: adminpages/orders.php:
|
1383 |
-
#: adminpages/orders.php:
|
1384 |
-
#: adminpages/orders.php:
|
1385 |
-
#: adminpages/orders.php:
|
1386 |
-
#: adminpages/paymentsettings.php:
|
1387 |
-
#: adminpages/
|
1388 |
-
#: adminpages/reports/login.php:
|
1389 |
-
#: adminpages/reports/login.php:179
|
1390 |
#: classes/gateways/class.pmprogateway_payflowpro.php:116
|
1391 |
#: classes/gateways/class.pmprogateway_payflowpro.php:117
|
1392 |
msgid "User"
|
@@ -1394,21 +1442,22 @@ msgstr ""
|
|
1394 |
|
1395 |
#: adminpages/dashboard.php:289 adminpages/templates/orders-email.php:64
|
1396 |
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
1397 |
-
#: pages/confirmation.php:98 pages/invoice.php:
|
1398 |
-
#: adminpages/dashboard.php:
|
1399 |
-
#: adminpages/orders.php:
|
1400 |
-
#: adminpages/orders.php:
|
1401 |
-
#: adminpages/orders.php:
|
1402 |
-
#: adminpages/orders.php:
|
1403 |
-
#: adminpages/orders.php:
|
1404 |
-
#: adminpages/orders.php:
|
1405 |
-
#: adminpages/orders.php:
|
1406 |
-
#: adminpages/orders.php:
|
1407 |
-
#: adminpages/orders.php:
|
1408 |
-
#: adminpages/orders.php:
|
1409 |
-
#: adminpages/orders.php:
|
1410 |
-
#: adminpages/orders.php:
|
1411 |
-
#: adminpages/orders.php:
|
|
|
1412 |
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
1413 |
#: pages/confirmation.php:95 pages/confirmation.php:96
|
1414 |
#: pages/confirmation.php:98 pages/invoice.php:77 pages/invoice.php:78
|
@@ -1418,69 +1467,71 @@ msgid "Total"
|
|
1418 |
msgstr ""
|
1419 |
|
1420 |
#: adminpages/dashboard.php:290 includes/privacy.php:202
|
1421 |
-
#: includes/privacy.php:309 pages/invoice.php:
|
1422 |
#: shortcodes/pmpro_account.php:213 adminpages/dashboard.php:286
|
1423 |
-
#: adminpages/dashboard.php:
|
1424 |
-
#: adminpages/orders.php:
|
1425 |
-
#: adminpages/orders.php:
|
1426 |
-
#: adminpages/orders.php:
|
1427 |
-
#: adminpages/orders.php:
|
1428 |
-
#: adminpages/orders.php:
|
1429 |
-
#: adminpages/orders.php:
|
1430 |
-
#: adminpages/orders.php:
|
1431 |
-
#: adminpages/orders.php:
|
1432 |
-
#: adminpages/orders.php:
|
1433 |
-
#: adminpages/orders.php:
|
1434 |
-
#: adminpages/orders.php:
|
1435 |
-
#: adminpages/orders.php:
|
1436 |
-
#: adminpages/orders.php:
|
1437 |
-
#:
|
1438 |
-
#: pages/invoice.php:29 shortcodes/pmpro_account.php:130
|
1439 |
-
#: shortcodes/pmpro_account.php:206
|
1440 |
msgid "Status"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: adminpages/dashboard.php:291 pages/invoice.php:
|
1444 |
#: shortcodes/pmpro_account.php:210 adminpages/dashboard.php:287
|
1445 |
-
#: adminpages/dashboard.php:
|
1446 |
-
#: adminpages/orders.php:
|
1447 |
-
#: adminpages/orders.php:
|
1448 |
-
#: adminpages/orders.php:
|
1449 |
-
#: adminpages/orders.php:
|
1450 |
-
#: adminpages/orders.php:
|
1451 |
-
#: adminpages/orders.php:
|
1452 |
-
#: adminpages/orders.php:
|
1453 |
-
#: adminpages/orders.php:
|
1454 |
-
#: adminpages/orders.php:
|
1455 |
-
#: adminpages/orders.php:
|
1456 |
-
#: adminpages/orders.php:
|
1457 |
-
#: adminpages/orders.php:
|
1458 |
-
#: adminpages/orders.php:
|
1459 |
-
#: adminpages/orders.php:
|
1460 |
-
#: pages/invoice.php:
|
1461 |
-
#: pages/invoice.php:
|
1462 |
-
#:
|
1463 |
-
#: shortcodes/pmpro_account.php:
|
1464 |
-
#: shortcodes/pmpro_account.php:203
|
|
|
1465 |
msgid "Date"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
#: adminpages/dashboard.php:298 adminpages/dashboard.php:294
|
1469 |
-
#: adminpages/dashboard.php:
|
1470 |
-
#: adminpages/orders.php:
|
1471 |
-
#: adminpages/orders.php:
|
1472 |
-
#: adminpages/orders.php:
|
1473 |
-
#: adminpages/orders.php:
|
1474 |
-
#: adminpages/orders.php:
|
1475 |
-
#: adminpages/orders.php:
|
1476 |
-
#: adminpages/orders.php:
|
1477 |
-
#: adminpages/orders.php:1512
|
1478 |
msgid "No orders found."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
#: adminpages/dashboard.php:315 adminpages/dashboard.php:330
|
1482 |
-
#: adminpages/dashboard.php:311 adminpages/dashboard.php:
|
1483 |
-
#: adminpages/dashboard.php:
|
|
|
1484 |
#: adminpages/orders.php:933 adminpages/orders.php:943
|
1485 |
#: adminpages/orders.php:972 adminpages/orders.php:1001
|
1486 |
#: adminpages/orders.php:1141 adminpages/orders.php:1172
|
@@ -1493,8 +1544,9 @@ msgid "deleted"
|
|
1493 |
msgstr ""
|
1494 |
|
1495 |
#: adminpages/dashboard.php:317 adminpages/dashboard.php:332
|
1496 |
-
#: adminpages/dashboard.php:313 adminpages/dashboard.php:
|
1497 |
-
#: adminpages/dashboard.php:
|
|
|
1498 |
#: adminpages/orders.php:1347 adminpages/orders.php:1371
|
1499 |
#: adminpages/orders.php:1376 adminpages/orders.php:1377
|
1500 |
#: adminpages/orders.php:1386 adminpages/orders.php:1397
|
@@ -1506,13 +1558,14 @@ msgstr ""
|
|
1506 |
#: classes/class-pmpro-admin-activity-email.php:344
|
1507 |
#: adminpages/dashboard.php:372 adminpages/dashboard.php:377
|
1508 |
#: adminpages/dashboard.php:380 adminpages/dashboard.php:383
|
|
|
1509 |
#: classes/class-pmpro-admin-activity-email.php:344
|
1510 |
msgid "No news found."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
#: adminpages/dashboard.php:393 adminpages/dashboard.php:378
|
1514 |
#: adminpages/dashboard.php:383 adminpages/dashboard.php:386
|
1515 |
-
#: adminpages/dashboard.php:389
|
1516 |
#, php-format
|
1517 |
msgid "Posted %s"
|
1518 |
msgstr ""
|
@@ -1685,7 +1738,7 @@ msgstr ""
|
|
1685 |
#: adminpages/orders.php:375 adminpages/orders.php:386
|
1686 |
#: adminpages/orders.php:394 adminpages/orders.php:401
|
1687 |
#: adminpages/orders.php:402 adminpages/orders.php:406
|
1688 |
-
#: adminpages/orders.php:412
|
1689 |
msgid "This will be generated when you save."
|
1690 |
msgstr ""
|
1691 |
|
@@ -1700,7 +1753,7 @@ msgstr ""
|
|
1700 |
|
1701 |
#: adminpages/discountcodes.php:505
|
1702 |
#: classes/gateways/class.pmprogateway_braintree.php:479
|
1703 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1704 |
#: pages/checkout.php:389 adminpages/discountcodes.php:367
|
1705 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
1706 |
#: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
|
@@ -1740,16 +1793,18 @@ msgstr ""
|
|
1740 |
#: classes/gateways/class.pmprogateway_stripe.php:621
|
1741 |
#: classes/gateways/class.pmprogateway_stripe.php:628
|
1742 |
#: classes/gateways/class.pmprogateway_stripe.php:629
|
1743 |
-
#: classes/gateways/class.pmprogateway_stripe.php:630
|
|
|
1744 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
|
1745 |
#: pages/billing.php:268 pages/billing.php:310 pages/billing.php:313
|
1746 |
#: pages/billing.php:316 pages/billing.php:317 pages/billing.php:319
|
1747 |
#: pages/billing.php:321 pages/billing.php:322 pages/billing.php:330
|
1748 |
-
#: pages/billing.php:339 pages/billing.php:342 pages/
|
1749 |
-
#: pages/checkout.php:
|
1750 |
-
#: pages/checkout.php:
|
1751 |
-
#: pages/checkout.php:
|
1752 |
-
#: pages/checkout.php:
|
|
|
1753 |
msgid "Expiration Date"
|
1754 |
msgstr ""
|
1755 |
|
@@ -1858,7 +1913,7 @@ msgid "Billing Amount"
|
|
1858 |
msgstr ""
|
1859 |
|
1860 |
#: adminpages/discountcodes.php:605 adminpages/membershiplevels.php:433
|
1861 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1862 |
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:605
|
1863 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
1864 |
#: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
|
@@ -1887,12 +1942,13 @@ msgstr ""
|
|
1887 |
#: classes/gateways/class.pmprogateway_stripe.php:784
|
1888 |
#: classes/gateways/class.pmprogateway_stripe.php:785
|
1889 |
#: classes/gateways/class.pmprogateway_stripe.php:786
|
|
|
1890 |
msgid "per"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
1894 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
1895 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1896 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1897 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1898 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -1936,12 +1992,13 @@ msgstr ""
|
|
1936 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
1937 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1938 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
|
|
1939 |
msgid "Day(s)"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
1943 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
1944 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1945 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1946 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1947 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -1985,12 +2042,13 @@ msgstr ""
|
|
1985 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
1986 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1987 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
|
|
1988 |
msgid "Month(s)"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
1992 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
1993 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1994 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1995 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1996 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -2034,12 +2092,13 @@ msgstr ""
|
|
2034 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
2035 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
2036 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
|
|
2037 |
msgid "Week(s)"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
2041 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
2042 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
2043 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2044 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
2045 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -2083,6 +2142,7 @@ msgstr ""
|
|
2083 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
2084 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
2085 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
|
|
2086 |
msgid "Year(s)"
|
2087 |
msgstr ""
|
2088 |
|
@@ -2370,7 +2430,7 @@ msgstr ""
|
|
2370 |
msgid " View Orders"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: adminpages/emailsettings.php:85
|
2374 |
msgid "Send Emails From"
|
2375 |
msgstr ""
|
2376 |
|
@@ -2410,11 +2470,11 @@ msgid ""
|
|
2410 |
"use the above settings."
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: adminpages/emailsettings.php:120
|
2414 |
msgid "Customizing Email Content"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: adminpages/emailsettings.php:129
|
2418 |
#, php-format
|
2419 |
msgid ""
|
2420 |
"There are several ways to modify the appearance of your Paid Memberships Pro "
|
@@ -2427,11 +2487,11 @@ msgid ""
|
|
2427 |
"Memberships Pro emails</a>."
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: adminpages/emailsettings.php:134
|
2431 |
msgid "Email Deliverability"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: adminpages/emailsettings.php:145
|
2435 |
#, php-format
|
2436 |
msgid ""
|
2437 |
"If you are having issues with email delivery from your server, <a href=\"%s"
|
@@ -2444,15 +2504,15 @@ msgid ""
|
|
2444 |
"and Paid Memberships Pro</a></em>."
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: adminpages/emailsettings.php:161
|
2448 |
msgid "View Your SendWP Account"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: adminpages/emailsettings.php:161
|
2452 |
msgid "Your site is connected to SendWP."
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: adminpages/emailsettings.php:162
|
2456 |
#, php-format
|
2457 |
msgid "Please enable email sending inside %s."
|
2458 |
msgstr ""
|
@@ -2460,7 +2520,7 @@ msgstr ""
|
|
2460 |
#: adminpages/emailsettings.php:174 adminpages/emailsettings.php:86
|
2461 |
#: adminpages/emailsettings.php:104 adminpages/emailsettings.php:115
|
2462 |
#: adminpages/emailsettings.php:125 adminpages/emailsettings.php:129
|
2463 |
-
#: adminpages/emailsettings.php:130
|
2464 |
msgid "Send the site admin emails"
|
2465 |
msgstr ""
|
2466 |
|
@@ -2468,6 +2528,7 @@ msgstr ""
|
|
2468 |
#: adminpages/emailsettings.php:114 adminpages/emailsettings.php:125
|
2469 |
#: adminpages/emailsettings.php:135 adminpages/emailsettings.php:139
|
2470 |
#: adminpages/emailsettings.php:140 adminpages/emailsettings.php:141
|
|
|
2471 |
msgid "when a member checks out."
|
2472 |
msgstr ""
|
2473 |
|
@@ -2475,6 +2536,7 @@ msgstr ""
|
|
2475 |
#: adminpages/emailsettings.php:123 adminpages/emailsettings.php:134
|
2476 |
#: adminpages/emailsettings.php:144 adminpages/emailsettings.php:148
|
2477 |
#: adminpages/emailsettings.php:149 adminpages/emailsettings.php:150
|
|
|
2478 |
msgid "when an admin changes a user's membership level through the dashboard."
|
2479 |
msgstr ""
|
2480 |
|
@@ -2482,6 +2544,7 @@ msgstr ""
|
|
2482 |
#: adminpages/emailsettings.php:132 adminpages/emailsettings.php:143
|
2483 |
#: adminpages/emailsettings.php:153 adminpages/emailsettings.php:157
|
2484 |
#: adminpages/emailsettings.php:158 adminpages/emailsettings.php:159
|
|
|
2485 |
msgid "when a user cancels his or her account."
|
2486 |
msgstr ""
|
2487 |
|
@@ -2489,21 +2552,24 @@ msgstr ""
|
|
2489 |
#: adminpages/emailsettings.php:141 adminpages/emailsettings.php:152
|
2490 |
#: adminpages/emailsettings.php:162 adminpages/emailsettings.php:166
|
2491 |
#: adminpages/emailsettings.php:167 adminpages/emailsettings.php:168
|
|
|
2492 |
msgid "when a user updates his or her billing information."
|
2493 |
msgstr ""
|
2494 |
|
2495 |
#: adminpages/emailsettings.php:192 adminpages/emailsettings.php:129
|
2496 |
#: adminpages/emailsettings.php:147 adminpages/emailsettings.php:158
|
2497 |
#: adminpages/emailsettings.php:168 adminpages/emailsettings.php:172
|
2498 |
-
#: adminpages/emailsettings.php:174
|
2499 |
msgid "Send members emails"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
#: adminpages/emailsettings.php:196 adminpages/emailsettings.php:184
|
|
|
2503 |
msgid "Default WP notification email."
|
2504 |
msgstr ""
|
2505 |
|
2506 |
#: adminpages/emailsettings.php:197 adminpages/emailsettings.php:185
|
|
|
2507 |
msgid ""
|
2508 |
"Recommended: Leave unchecked. Members will still get an email confirmation "
|
2509 |
"from PMPro after checkout."
|
@@ -2555,23 +2621,23 @@ msgstr ""
|
|
2555 |
msgid "Paid Memberships Pro Support License"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: adminpages/license.php:47 adminpages/license.php:47
|
2559 |
msgid ""
|
2560 |
"Enter your support license key.</strong> Your license key can be found in "
|
2561 |
"your membership email receipt or in your <a href=\"https://www."
|
2562 |
-
"paidmembershipspro.com/
|
2563 |
-
"%
|
2564 |
"%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership "
|
2565 |
"Account</a>."
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: adminpages/license.php:49 adminpages/license.php:49
|
2569 |
msgid ""
|
2570 |
-
"Visit the PMPro <a href=\"https://www.paidmembershipspro.com/
|
2571 |
-
"
|
2572 |
-
"%
|
2573 |
-
"
|
2574 |
-
"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
#: adminpages/license.php:49 adminpages/license.php:49 includes/license.php:91
|
@@ -2975,7 +3041,7 @@ msgstr ""
|
|
2975 |
msgid "Save Level"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: adminpages/membershiplevels.php:641 includes/profile.php:
|
2979 |
#: pages/billing.php:414 pages/cancel.php:83
|
2980 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
|
2981 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
|
@@ -2989,16 +3055,17 @@ msgstr ""
|
|
2989 |
#: adminpages/orders.php:796 adminpages/orders.php:807
|
2990 |
#: adminpages/orders.php:894 adminpages/orders.php:930
|
2991 |
#: adminpages/orders.php:934 adminpages/orders.php:939
|
2992 |
-
#: adminpages/orders.php:940 adminpages/orders.php:949 includes/profile.php:
|
2993 |
-
#:
|
2994 |
-
#: pages/billing.php:
|
2995 |
-
#: pages/billing.php:
|
2996 |
-
#: pages/billing.php:
|
2997 |
-
#: pages/billing.php:
|
2998 |
-
#: pages/billing.php:
|
2999 |
-
#: pages/billing.php:
|
3000 |
-
#: pages/cancel.php:
|
3001 |
-
#: shortcodes/pmpro_account.php:
|
|
|
3002 |
msgid "Cancel"
|
3003 |
msgstr ""
|
3004 |
|
@@ -3037,7 +3104,7 @@ msgid "Drag and drop membership levels to reorder them on the Levels page."
|
|
3037 |
msgstr ""
|
3038 |
|
3039 |
#: adminpages/membershiplevels.php:776 pages/billing.php:88 pages/cancel.php:61
|
3040 |
-
#: pages/confirmation.php:82 pages/invoice.php:
|
3041 |
#: shortcodes/pmpro_account.php:44 adminpages/membershiplevels.php:510
|
3042 |
#: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
|
3043 |
#: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
|
@@ -3048,14 +3115,14 @@ msgstr ""
|
|
3048 |
#: adminpages/membershiplevels.php:716 adminpages/membershiplevels.php:718
|
3049 |
#: adminpages/membershiplevels.php:744 adminpages/membershiplevels.php:761
|
3050 |
#: adminpages/membershiplevels.php:766 adminpages/membershiplevels.php:771
|
3051 |
-
#: adminpages/membershiplevels.php:776 pages/account.php:20
|
3052 |
-
#: pages/
|
3053 |
-
#: pages/confirmation.php:
|
3054 |
-
#: pages/confirmation.php:
|
3055 |
-
#: pages/confirmation.php:
|
3056 |
-
#: pages/invoice.php:
|
3057 |
-
#:
|
3058 |
-
#: shortcodes/pmpro_account.php:46
|
3059 |
msgid "Expiration"
|
3060 |
msgstr ""
|
3061 |
|
@@ -3152,8 +3219,8 @@ msgstr ""
|
|
3152 |
#: adminpages/orders.php:169 adminpages/orders.php:270
|
3153 |
#: adminpages/orders.php:284 adminpages/orders.php:285
|
3154 |
#: adminpages/orders.php:295 adminpages/orders.php:296
|
3155 |
-
#: adminpages/orders.php:297 adminpages/orders.php:
|
3156 |
-
#: adminpages/orders.php:314
|
3157 |
msgid "Order saved successfully."
|
3158 |
msgstr ""
|
3159 |
|
@@ -3161,8 +3228,8 @@ msgstr ""
|
|
3161 |
#: adminpages/orders.php:174 adminpages/orders.php:275
|
3162 |
#: adminpages/orders.php:287 adminpages/orders.php:288
|
3163 |
#: adminpages/orders.php:298 adminpages/orders.php:299
|
3164 |
-
#: adminpages/orders.php:300 adminpages/orders.php:
|
3165 |
-
#: adminpages/orders.php:317
|
3166 |
msgid "Error updating order timestamp."
|
3167 |
msgstr ""
|
3168 |
|
@@ -3170,8 +3237,8 @@ msgstr ""
|
|
3170 |
#: adminpages/orders.php:180 adminpages/orders.php:281
|
3171 |
#: adminpages/orders.php:291 adminpages/orders.php:292
|
3172 |
#: adminpages/orders.php:302 adminpages/orders.php:303
|
3173 |
-
#: adminpages/orders.php:304 adminpages/orders.php:
|
3174 |
-
#: adminpages/orders.php:321
|
3175 |
msgid "Error saving order."
|
3176 |
msgstr ""
|
3177 |
|
@@ -3181,24 +3248,26 @@ msgstr ""
|
|
3181 |
#: adminpages/orders.php:395 adminpages/orders.php:406
|
3182 |
#: adminpages/orders.php:418 adminpages/orders.php:424
|
3183 |
#: adminpages/orders.php:425 adminpages/orders.php:426
|
3184 |
-
#: adminpages/orders.php:429 adminpages/orders.php:
|
|
|
3185 |
msgid "User ID"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
#: adminpages/orders.php:578 classes/class.pmproemail.php:865
|
3189 |
#: classes/class.pmproemail.php:915 includes/init.php:198
|
3190 |
#: includes/profile.php:34 adminpages/orders.php:571 adminpages/orders.php:575
|
3191 |
-
#: adminpages/orders.php:576 adminpages/orders.php:
|
3192 |
-
#:
|
3193 |
-
#: classes/class.pmproemail.php:
|
3194 |
-
#: classes/class.pmproemail.php:
|
3195 |
-
#:
|
3196 |
-
#: includes/init.php:
|
3197 |
-
#: includes/init.php:
|
3198 |
-
#: includes/init.php:
|
3199 |
-
#: includes/init.php:
|
3200 |
-
#: includes/init.php:
|
3201 |
-
#: includes/profile.php:
|
|
|
3202 |
msgid "None"
|
3203 |
msgstr ""
|
3204 |
|
@@ -3208,7 +3277,7 @@ msgstr ""
|
|
3208 |
#: adminpages/orders.php:501 adminpages/orders.php:512
|
3209 |
#: adminpages/orders.php:542 adminpages/orders.php:582
|
3210 |
#: adminpages/orders.php:586 adminpages/orders.php:587
|
3211 |
-
#: adminpages/orders.php:597 includes/privacy.php:273
|
3212 |
msgid "Sub Total"
|
3213 |
msgstr ""
|
3214 |
|
@@ -3219,7 +3288,7 @@ msgstr ""
|
|
3219 |
#: adminpages/orders.php:692 adminpages/orders.php:737
|
3220 |
#: adminpages/orders.php:775 adminpages/orders.php:779
|
3221 |
#: adminpages/orders.php:780 adminpages/orders.php:782
|
3222 |
-
#: adminpages/orders.php:792 includes/privacy.php:321
|
3223 |
msgid "Payment Transaction ID"
|
3224 |
msgstr ""
|
3225 |
|
@@ -3242,8 +3311,9 @@ msgstr ""
|
|
3242 |
#: adminpages/orders.php:1211 adminpages/orders.php:1245
|
3243 |
#: adminpages/orders.php:1251 adminpages/orders.php:1338
|
3244 |
#: adminpages/orders.php:1343 adminpages/orders.php:1344
|
3245 |
-
#: adminpages/orders.php:
|
3246 |
-
#: adminpages/orders.php:
|
|
|
3247 |
#, php-format
|
3248 |
msgid ""
|
3249 |
"Deleting orders is permanent and can affect active users. Are you sure you "
|
@@ -3660,13 +3730,13 @@ msgid "Additional Page Settings"
|
|
3660 |
msgstr ""
|
3661 |
|
3662 |
#: adminpages/paymentsettings.php:66 adminpages/paymentsettings.php:49
|
3663 |
-
#: adminpages/paymentsettings.php:64 adminpages/paymentsettings.php:
|
3664 |
-
#: adminpages/paymentsettings.php:82
|
3665 |
msgid "Your payment settings have been updated."
|
3666 |
msgstr ""
|
3667 |
|
3668 |
#: adminpages/paymentsettings.php:115 adminpages/paymentsettings.php:112
|
3669 |
-
#: adminpages/paymentsettings.php:113
|
3670 |
msgid ""
|
3671 |
"Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target="
|
3672 |
"\"_blank\" href=\"https://www.paidmembershipspro.com/documentation/initial-"
|
@@ -3682,27 +3752,29 @@ msgstr ""
|
|
3682 |
|
3683 |
#: adminpages/paymentsettings.php:122 adminpages/paymentsettings.php:101
|
3684 |
#: adminpages/paymentsettings.php:118 adminpages/paymentsettings.php:119
|
3685 |
-
#: adminpages/paymentsettings.php:120
|
3686 |
msgid "Choose a Gateway"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
#: adminpages/paymentsettings.php:127 adminpages/paymentsettings.php:93
|
3690 |
#: adminpages/paymentsettings.php:106 adminpages/paymentsettings.php:110
|
3691 |
#: adminpages/paymentsettings.php:123 adminpages/paymentsettings.php:124
|
3692 |
-
#: adminpages/paymentsettings.php:125 adminpages/paymentsettings.php:
|
3693 |
-
#: adminpages/paymentsettings.php:
|
3694 |
-
#: adminpages/paymentsettings.php:154
|
3695 |
msgid "Payment Gateway"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
#: adminpages/paymentsettings.php:142 adminpages/paymentsettings.php:138
|
3699 |
#: adminpages/paymentsettings.php:139 adminpages/paymentsettings.php:140
|
|
|
3700 |
msgid ""
|
3701 |
"It is not connected to a live gateway environment and cannot accept payments."
|
3702 |
msgstr ""
|
3703 |
|
3704 |
#: adminpages/paymentsettings.php:142 adminpages/paymentsettings.php:138
|
3705 |
#: adminpages/paymentsettings.php:139 adminpages/paymentsettings.php:140
|
|
|
3706 |
msgid ""
|
3707 |
"This gateway is for membership sites with Free levels or for sites that "
|
3708 |
"accept payment offline."
|
@@ -3718,9 +3790,9 @@ msgstr ""
|
|
3718 |
#: adminpages/orders.php:757 adminpages/orders.php:767
|
3719 |
#: adminpages/paymentsettings.php:124 adminpages/paymentsettings.php:141
|
3720 |
#: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:145
|
3721 |
-
#: adminpages/paymentsettings.php:146 adminpages/paymentsettings.php:
|
3722 |
-
#: adminpages/paymentsettings.php:
|
3723 |
-
#: includes/privacy.php:317
|
3724 |
msgid "Gateway Environment"
|
3725 |
msgstr ""
|
3726 |
|
@@ -3734,8 +3806,8 @@ msgstr ""
|
|
3734 |
#: adminpages/orders.php:779 adminpages/paymentsettings.php:128
|
3735 |
#: adminpages/paymentsettings.php:145 adminpages/paymentsettings.php:148
|
3736 |
#: adminpages/paymentsettings.php:149 adminpages/paymentsettings.php:150
|
3737 |
-
#: adminpages/paymentsettings.php:
|
3738 |
-
#: adminpages/paymentsettings.php:188
|
3739 |
msgid "Sandbox/Testing"
|
3740 |
msgstr ""
|
3741 |
|
@@ -3749,30 +3821,32 @@ msgstr ""
|
|
3749 |
#: adminpages/orders.php:784 adminpages/paymentsettings.php:129
|
3750 |
#: adminpages/paymentsettings.php:146 adminpages/paymentsettings.php:149
|
3751 |
#: adminpages/paymentsettings.php:150 adminpages/paymentsettings.php:151
|
3752 |
-
#: adminpages/paymentsettings.php:
|
3753 |
-
#: adminpages/paymentsettings.php:189
|
3754 |
msgid "Live/Production"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
#: adminpages/paymentsettings.php:187 adminpages/paymentsettings.php:148
|
3758 |
#: adminpages/paymentsettings.php:165 adminpages/paymentsettings.php:182
|
3759 |
#: adminpages/paymentsettings.php:184 adminpages/paymentsettings.php:185
|
|
|
3760 |
msgid "Currency and Tax Settings"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
#: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:153
|
3764 |
#: adminpages/paymentsettings.php:170 adminpages/paymentsettings.php:187
|
3765 |
#: adminpages/paymentsettings.php:189 adminpages/paymentsettings.php:190
|
3766 |
-
#: adminpages/paymentsettings.php:
|
3767 |
-
#: adminpages/paymentsettings.php:
|
3768 |
-
#: adminpages/paymentsettings.php:386
|
3769 |
msgid "Currency"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
#: adminpages/paymentsettings.php:208 adminpages/paymentsettings.php:169
|
3773 |
#: adminpages/paymentsettings.php:186 adminpages/paymentsettings.php:203
|
3774 |
#: adminpages/paymentsettings.php:205 adminpages/paymentsettings.php:206
|
3775 |
-
#: adminpages/paymentsettings.php:
|
|
|
3776 |
msgid ""
|
3777 |
"Not all currencies will be supported by every gateway. Please check with "
|
3778 |
"your gateway."
|
@@ -3781,65 +3855,73 @@ msgstr ""
|
|
3781 |
#: adminpages/paymentsettings.php:213 adminpages/paymentsettings.php:174
|
3782 |
#: adminpages/paymentsettings.php:191 adminpages/paymentsettings.php:208
|
3783 |
#: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:211
|
3784 |
-
#: adminpages/paymentsettings.php:
|
3785 |
-
#: adminpages/paymentsettings.php:
|
|
|
3786 |
msgid "Accepted Credit Card Types"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
#: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:188
|
3790 |
#: adminpages/paymentsettings.php:205 adminpages/paymentsettings.php:222
|
3791 |
#: adminpages/paymentsettings.php:224 adminpages/paymentsettings.php:225
|
3792 |
-
#: adminpages/paymentsettings.php:
|
3793 |
-
#: adminpages/paymentsettings.php:
|
|
|
3794 |
msgid "Sales Tax"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
#: adminpages/paymentsettings.php:227 pages/billing.php:167
|
3798 |
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:205
|
3799 |
#: adminpages/paymentsettings.php:222 adminpages/paymentsettings.php:224
|
3800 |
-
#: adminpages/paymentsettings.php:225 adminpages/paymentsettings.php:
|
3801 |
-
#: adminpages/paymentsettings.php:
|
3802 |
-
#: adminpages/paymentsettings.php:
|
3803 |
-
#: pages/billing.php:
|
3804 |
-
#: pages/billing.php:
|
3805 |
-
#: pages/billing.php:
|
3806 |
-
#: pages/billing.php:
|
3807 |
-
#: pages/billing.php:143
|
|
|
3808 |
msgid "optional"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:191
|
3812 |
#: adminpages/paymentsettings.php:208 adminpages/paymentsettings.php:225
|
3813 |
#: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:228
|
3814 |
-
#: adminpages/paymentsettings.php:
|
3815 |
-
#: adminpages/paymentsettings.php:
|
|
|
3816 |
msgid "Tax State"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:192
|
3820 |
#: adminpages/paymentsettings.php:209 adminpages/paymentsettings.php:226
|
3821 |
#: adminpages/paymentsettings.php:228 adminpages/paymentsettings.php:229
|
3822 |
-
#: adminpages/paymentsettings.php:
|
3823 |
-
#: adminpages/paymentsettings.php:
|
|
|
3824 |
msgid "abbreviation, e.g. \"PA\""
|
3825 |
msgstr ""
|
3826 |
|
3827 |
#: adminpages/paymentsettings.php:232 adminpages/paymentsettings.php:193
|
3828 |
#: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:227
|
3829 |
#: adminpages/paymentsettings.php:229 adminpages/paymentsettings.php:230
|
|
|
3830 |
msgid "Tax Rate"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
#: adminpages/paymentsettings.php:233 adminpages/paymentsettings.php:194
|
3834 |
#: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:228
|
3835 |
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:231
|
3836 |
-
#: adminpages/paymentsettings.php:
|
3837 |
-
#: adminpages/paymentsettings.php:
|
|
|
3838 |
msgid "decimal, e.g. \"0.06\""
|
3839 |
msgstr ""
|
3840 |
|
3841 |
#: adminpages/paymentsettings.php:234 adminpages/paymentsettings.php:229
|
3842 |
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:232
|
|
|
3843 |
msgid ""
|
3844 |
"US only. If values are given, tax will be applied for any members ordering "
|
3845 |
"from the selected state.<br />For non-US or more complex tax rules, use the "
|
@@ -3854,20 +3936,22 @@ msgstr ""
|
|
3854 |
#: adminpages/paymentsettings.php:146 adminpages/paymentsettings.php:201
|
3855 |
#: adminpages/paymentsettings.php:218 adminpages/paymentsettings.php:235
|
3856 |
#: adminpages/paymentsettings.php:238 adminpages/paymentsettings.php:239
|
|
|
3857 |
msgid "SSL Settings"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
#: adminpages/paymentsettings.php:246 adminpages/paymentsettings.php:206
|
3861 |
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:240
|
3862 |
#: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:244
|
3863 |
-
#: adminpages/paymentsettings.php:
|
3864 |
-
#: adminpages/paymentsettings.php:457
|
3865 |
msgid "Force SSL"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
#: adminpages/paymentsettings.php:253 adminpages/paymentsettings.php:213
|
3869 |
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:247
|
3870 |
#: adminpages/paymentsettings.php:250 adminpages/paymentsettings.php:251
|
|
|
3871 |
msgid ""
|
3872 |
"Your Site URL starts with https:// and so PMPro will allow your entire site "
|
3873 |
"to be served over HTTPS."
|
@@ -3876,15 +3960,16 @@ msgstr ""
|
|
3876 |
#: adminpages/paymentsettings.php:261 adminpages/paymentsettings.php:212
|
3877 |
#: adminpages/paymentsettings.php:221 adminpages/paymentsettings.php:238
|
3878 |
#: adminpages/paymentsettings.php:255 adminpages/paymentsettings.php:258
|
3879 |
-
#: adminpages/paymentsettings.php:259 adminpages/paymentsettings.php:
|
3880 |
-
#: adminpages/paymentsettings.php:
|
|
|
3881 |
msgid "Yes (with JavaScript redirects)"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
#: adminpages/paymentsettings.php:263 adminpages/paymentsettings.php:214
|
3885 |
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:240
|
3886 |
#: adminpages/paymentsettings.php:257 adminpages/paymentsettings.php:260
|
3887 |
-
#: adminpages/paymentsettings.php:261
|
3888 |
msgid ""
|
3889 |
"Recommended: Yes. Try the JavaScript redirects setting if you are having "
|
3890 |
"issues with infinite redirect loops."
|
@@ -3893,14 +3978,14 @@ msgstr ""
|
|
3893 |
#: adminpages/paymentsettings.php:271 adminpages/paymentsettings.php:219
|
3894 |
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:248
|
3895 |
#: adminpages/paymentsettings.php:265 adminpages/paymentsettings.php:268
|
3896 |
-
#: adminpages/paymentsettings.php:269 adminpages/paymentsettings.php:
|
3897 |
-
#: adminpages/paymentsettings.php:
|
3898 |
-
#: adminpages/paymentsettings.php:470
|
3899 |
msgid "SSL Seal Code"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
#: adminpages/paymentsettings.php:275 adminpages/paymentsettings.php:272
|
3903 |
-
#: adminpages/paymentsettings.php:273
|
3904 |
msgid ""
|
3905 |
"Your <strong><a target=\"_blank\" href=\"https://www.paidmembershipspro.com/"
|
3906 |
"documentation/initial-plugin-setup/ssl/?utm_source=plugin&utm_medium=pmpro-"
|
@@ -3913,14 +3998,14 @@ msgstr ""
|
|
3913 |
#: adminpages/paymentsettings.php:280 adminpages/paymentsettings.php:228
|
3914 |
#: adminpages/paymentsettings.php:240 adminpages/paymentsettings.php:257
|
3915 |
#: adminpages/paymentsettings.php:274 adminpages/paymentsettings.php:277
|
3916 |
-
#: adminpages/paymentsettings.php:278
|
3917 |
msgid "Extra HTTPS URL Filter"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
#: adminpages/paymentsettings.php:283 adminpages/paymentsettings.php:231
|
3921 |
#: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:260
|
3922 |
#: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:280
|
3923 |
-
#: adminpages/paymentsettings.php:281
|
3924 |
msgid ""
|
3925 |
"Pass all generated HTML through a URL filter to add HTTPS to URLs used on "
|
3926 |
"secure pages. Check this if you are using SSL and have warnings on your "
|
@@ -4023,6 +4108,7 @@ msgstr ""
|
|
4023 |
#: classes/class-pmpro-members-list-table.php:592
|
4024 |
#: classes/class-pmpro-members-list-table.php:600
|
4025 |
#: classes/class-pmpro-members-list-table.php:616
|
|
|
4026 |
#: classes/class-pmpro-members-list-table.php:660
|
4027 |
msgid "Show"
|
4028 |
msgstr ""
|
@@ -4060,6 +4146,7 @@ msgstr ""
|
|
4060 |
#: classes/class-pmpro-members-list-table.php:594
|
4061 |
#: classes/class-pmpro-members-list-table.php:606
|
4062 |
#: classes/class-pmpro-members-list-table.php:618
|
|
|
4063 |
#: classes/class-pmpro-members-list-table.php:662
|
4064 |
#: classes/class.pmproemail.php:145 classes/class.pmproemail.php:147
|
4065 |
#: classes/class.pmproemail.php:154 classes/class.pmproemail.php:182
|
@@ -4345,7 +4432,7 @@ msgstr ""
|
|
4345 |
|
4346 |
#: adminpages/templates/orders-email.php:56
|
4347 |
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:93
|
4348 |
-
#: pages/invoice.php:
|
4349 |
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:90
|
4350 |
#: pages/confirmation.php:91 pages/confirmation.php:93 pages/invoice.php:72
|
4351 |
#: pages/invoice.php:73 pages/invoice.php:74 pages/invoice.php:75
|
@@ -4355,7 +4442,7 @@ msgstr ""
|
|
4355 |
|
4356 |
#: adminpages/templates/orders-email.php:60
|
4357 |
#: adminpages/templates/orders-print.php:89 includes/privacy.php:277
|
4358 |
-
#: pages/confirmation.php:94 pages/invoice.php:
|
4359 |
#: adminpages/orders.php:354 adminpages/orders.php:426
|
4360 |
#: adminpages/orders.php:455 adminpages/orders.php:481
|
4361 |
#: adminpages/orders.php:512 adminpages/orders.php:523
|
@@ -4519,6 +4606,7 @@ msgid ""
|
|
4519 |
"you can <a %s>update the \"Activity Email Frequency\" setting here</a>."
|
4520 |
msgstr ""
|
4521 |
|
|
|
4522 |
#: classes/class-pmpro-admin-activity-email.php:408
|
4523 |
#, php-format
|
4524 |
msgid "[%1$s] PMPro Activity for %2$s: %3$s"
|
@@ -4542,6 +4630,7 @@ msgstr ""
|
|
4542 |
#: classes/class-pmpro-members-list-table.php:604
|
4543 |
#: classes/class-pmpro-members-list-table.php:628
|
4544 |
#: classes/class-pmpro-members-list-table.php:629
|
|
|
4545 |
#: classes/class-pmpro-members-list-table.php:672
|
4546 |
msgid "Cancelled Members"
|
4547 |
msgstr ""
|
@@ -4556,6 +4645,7 @@ msgstr ""
|
|
4556 |
#: classes/class-pmpro-members-list-table.php:605
|
4557 |
#: classes/class-pmpro-members-list-table.php:629
|
4558 |
#: classes/class-pmpro-members-list-table.php:634
|
|
|
4559 |
#: classes/class-pmpro-members-list-table.php:673
|
4560 |
msgid "Expired Members"
|
4561 |
msgstr ""
|
@@ -4570,6 +4660,7 @@ msgstr ""
|
|
4570 |
#: classes/class-pmpro-members-list-table.php:571
|
4571 |
#: classes/class-pmpro-members-list-table.php:606
|
4572 |
#: classes/class-pmpro-members-list-table.php:630
|
|
|
4573 |
#: classes/class-pmpro-members-list-table.php:639
|
4574 |
#: classes/class-pmpro-members-list-table.php:674
|
4575 |
msgid "Old Members"
|
@@ -4690,9 +4781,9 @@ msgstr ""
|
|
4690 |
#: classes/class.pmproemail.php:422 classes/class.pmproemail.php:740
|
4691 |
#: classes/class.pmproemail.php:742
|
4692 |
#: classes/gateways/class.pmprogateway_braintree.php:509
|
4693 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4694 |
#: pages/checkout.php:89 pages/checkout.php:426 pages/confirmation.php:58
|
4695 |
-
#: pages/invoice.php:
|
4696 |
#: adminpages/orders.php:565 adminpages/orders.php:575
|
4697 |
#: adminpages/orders.php:1307 adminpages/orders.php:1313
|
4698 |
#: adminpages/orders.php:1318 adminpages/orders.php:1322
|
@@ -4764,7 +4855,8 @@ msgstr ""
|
|
4764 |
#: classes/gateways/class.pmprogateway_stripe.php:652
|
4765 |
#: classes/gateways/class.pmprogateway_stripe.php:659
|
4766 |
#: classes/gateways/class.pmprogateway_stripe.php:660
|
4767 |
-
#: classes/gateways/class.pmprogateway_stripe.php:661
|
|
|
4768 |
#: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:70
|
4769 |
#: pages/checkout.php:75 pages/checkout.php:76 pages/checkout.php:77
|
4770 |
#: pages/checkout.php:78 pages/checkout.php:81 pages/checkout.php:83
|
@@ -5229,6 +5321,8 @@ msgstr ""
|
|
5229 |
#: classes/gateways/class.pmprogateway_authorizenet.php:910
|
5230 |
#: classes/gateways/class.pmprogateway_authorizenet.php:911
|
5231 |
#: classes/gateways/class.pmprogateway_authorizenet.php:912
|
|
|
|
|
5232 |
#: classes/gateways/class.pmprogateway_authorizenet.php:929
|
5233 |
#: classes/gateways/class.pmprogateway_authorizenet.php:930
|
5234 |
msgid "Could not connect to Authorize.net"
|
@@ -5251,6 +5345,7 @@ msgstr ""
|
|
5251 |
#: classes/gateways/class.pmprogateway_stripe.php:81
|
5252 |
#: classes/gateways/class.pmprogateway_stripe.php:83
|
5253 |
#: classes/gateways/class.pmprogateway_stripe.php:86
|
|
|
5254 |
#, php-format
|
5255 |
msgid ""
|
5256 |
"The %s gateway depends on the %s PHP extension. Please enable it, or ask "
|
@@ -5431,7 +5526,7 @@ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
|
5431 |
msgstr ""
|
5432 |
|
5433 |
#: classes/gateways/class.pmprogateway_braintree.php:454
|
5434 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5435 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
5436 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
5437 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -5468,7 +5563,8 @@ msgstr ""
|
|
5468 |
#: classes/gateways/class.pmprogateway_stripe.php:569
|
5469 |
#: classes/gateways/class.pmprogateway_stripe.php:576
|
5470 |
#: classes/gateways/class.pmprogateway_stripe.php:577
|
5471 |
-
#: classes/gateways/class.pmprogateway_stripe.php:578
|
|
|
5472 |
#: pages/checkout.php:411 pages/checkout.php:419 pages/checkout.php:476
|
5473 |
#: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
|
5474 |
#: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
|
@@ -5477,7 +5573,7 @@ msgid "Payment Information"
|
|
5477 |
msgstr ""
|
5478 |
|
5479 |
#: classes/gateways/class.pmprogateway_braintree.php:455
|
5480 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5481 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
5482 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
5483 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -5514,7 +5610,8 @@ msgstr ""
|
|
5514 |
#: classes/gateways/class.pmprogateway_stripe.php:570
|
5515 |
#: classes/gateways/class.pmprogateway_stripe.php:577
|
5516 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
5517 |
-
#: classes/gateways/class.pmprogateway_stripe.php:579
|
|
|
5518 |
#: pages/checkout.php:412 pages/checkout.php:420 pages/checkout.php:476
|
5519 |
#: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
|
5520 |
#: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
|
@@ -5524,7 +5621,7 @@ msgid "We Accept %s"
|
|
5524 |
msgstr ""
|
5525 |
|
5526 |
#: classes/gateways/class.pmprogateway_braintree.php:466
|
5527 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5528 |
#: pages/billing.php:321 pages/checkout.php:374 adminpages/orders.php:339
|
5529 |
#: adminpages/orders.php:389 adminpages/orders.php:461
|
5530 |
#: adminpages/orders.php:490 adminpages/orders.php:532
|
@@ -5568,21 +5665,23 @@ msgstr ""
|
|
5568 |
#: classes/gateways/class.pmprogateway_stripe.php:581
|
5569 |
#: classes/gateways/class.pmprogateway_stripe.php:588
|
5570 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
5571 |
-
#: classes/gateways/class.pmprogateway_stripe.php:590
|
|
|
5572 |
#: pages/billing.php:234 pages/billing.php:238 pages/billing.php:247
|
5573 |
#: pages/billing.php:250 pages/billing.php:253 pages/billing.php:262
|
5574 |
#: pages/billing.php:268 pages/billing.php:271 pages/billing.php:274
|
5575 |
#: pages/billing.php:275 pages/billing.php:279 pages/billing.php:280
|
5576 |
#: pages/billing.php:288 pages/billing.php:294 pages/billing.php:297
|
5577 |
-
#: pages/
|
5578 |
-
#: pages/checkout.php:
|
5579 |
-
#: pages/checkout.php:
|
5580 |
-
#: pages/checkout.php:
|
|
|
5581 |
msgid "Card Type"
|
5582 |
msgstr ""
|
5583 |
|
5584 |
#: classes/gateways/class.pmprogateway_braintree.php:475
|
5585 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5586 |
#: pages/checkout.php:385 classes/gateways/class.pmprogateway_braintree.php:303
|
5587 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
5588 |
#: classes/gateways/class.pmprogateway_braintree.php:318
|
@@ -5618,17 +5717,18 @@ msgstr ""
|
|
5618 |
#: classes/gateways/class.pmprogateway_stripe.php:617
|
5619 |
#: classes/gateways/class.pmprogateway_stripe.php:624
|
5620 |
#: classes/gateways/class.pmprogateway_stripe.php:625
|
5621 |
-
#: classes/gateways/class.pmprogateway_stripe.php:626
|
|
|
5622 |
#: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
|
5623 |
#: pages/billing.php:263 pages/billing.php:305 pages/billing.php:309
|
5624 |
#: pages/billing.php:311 pages/billing.php:312 pages/billing.php:313
|
5625 |
#: pages/billing.php:314 pages/billing.php:317 pages/billing.php:318
|
5626 |
#: pages/billing.php:326 pages/billing.php:335 pages/billing.php:337
|
5627 |
-
#: pages/
|
5628 |
-
#: pages/checkout.php:
|
5629 |
-
#: pages/checkout.php:
|
5630 |
-
#: pages/checkout.php:
|
5631 |
-
#: pages/checkout.php:580
|
5632 |
msgid "Card Number"
|
5633 |
msgstr ""
|
5634 |
|
@@ -5663,11 +5763,11 @@ msgstr ""
|
|
5663 |
#: pages/billing.php:301 pages/billing.php:343 pages/billing.php:348
|
5664 |
#: pages/billing.php:351 pages/billing.php:352 pages/billing.php:354
|
5665 |
#: pages/billing.php:356 pages/billing.php:357 pages/billing.php:365
|
5666 |
-
#: pages/billing.php:374 pages/billing.php:380 pages/
|
5667 |
-
#: pages/checkout.php:
|
5668 |
-
#: pages/checkout.php:
|
5669 |
-
#: pages/checkout.php:
|
5670 |
-
#: pages/checkout.php:612 pages/checkout.php:615
|
5671 |
msgid "CVV"
|
5672 |
msgstr ""
|
5673 |
|
@@ -5708,17 +5808,17 @@ msgstr ""
|
|
5708 |
#: pages/billing.php:302 pages/billing.php:344 pages/billing.php:349
|
5709 |
#: pages/billing.php:352 pages/billing.php:353 pages/billing.php:355
|
5710 |
#: pages/billing.php:357 pages/billing.php:358 pages/billing.php:366
|
5711 |
-
#: pages/billing.php:375 pages/billing.php:381 pages/
|
5712 |
-
#: pages/checkout.php:
|
5713 |
-
#: pages/checkout.php:
|
5714 |
-
#: pages/checkout.php:
|
5715 |
-
#: pages/checkout.php:
|
5716 |
-
#: pages/checkout.php:613 pages/checkout.php:616
|
5717 |
msgid "what's this?"
|
5718 |
msgstr ""
|
5719 |
|
5720 |
#: classes/gateways/class.pmprogateway_braintree.php:511
|
5721 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5722 |
#: pages/checkout.php:428 classes/gateways/class.pmprogateway_braintree.php:351
|
5723 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
5724 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
@@ -5755,7 +5855,8 @@ msgstr ""
|
|
5755 |
#: classes/gateways/class.pmprogateway_stripe.php:654
|
5756 |
#: classes/gateways/class.pmprogateway_stripe.php:661
|
5757 |
#: classes/gateways/class.pmprogateway_stripe.php:662
|
5758 |
-
#: classes/gateways/class.pmprogateway_stripe.php:663
|
|
|
5759 |
#: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:83
|
5760 |
#: pages/checkout.php:87 pages/checkout.php:88 pages/checkout.php:91
|
5761 |
#: pages/checkout.php:95 pages/checkout.php:98 pages/checkout.php:428
|
@@ -6835,6 +6936,7 @@ msgstr ""
|
|
6835 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:208
|
6836 |
#: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
|
6837 |
#: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
|
|
|
6838 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:163
|
6839 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:173
|
6840 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:196
|
@@ -6873,7 +6975,7 @@ msgstr ""
|
|
6873 |
#: classes/gateways/class.pmprogateway_paypal.php:287
|
6874 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:481
|
6875 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
6876 |
-
#: pages/checkout.php:
|
6877 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
6878 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
6879 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
@@ -6902,7 +7004,7 @@ msgstr ""
|
|
6902 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:481
|
6903 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
6904 |
#: classes/gateways/class.pmprogateway_twocheckout.php:205
|
6905 |
-
#: pages/checkout.php:
|
6906 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
6907 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
6908 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
@@ -6944,6 +7046,7 @@ msgstr ""
|
|
6944 |
#: classes/gateways/class.pmprogateway_paypal.php:693
|
6945 |
#: classes/gateways/class.pmprogateway_paypal.php:694
|
6946 |
#: classes/gateways/class.pmprogateway_paypal.php:703
|
|
|
6947 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
6948 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:303
|
6949 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:305
|
@@ -6959,6 +7062,7 @@ msgstr ""
|
|
6959 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:784
|
6960 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:785
|
6961 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:786
|
|
|
6962 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:216
|
6963 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:220
|
6964 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:230
|
@@ -7060,6 +7164,7 @@ msgstr ""
|
|
7060 |
#: classes/gateways/class.pmprogateway_stripe.php:203
|
7061 |
#: classes/gateways/class.pmprogateway_stripe.php:229
|
7062 |
#: classes/gateways/class.pmprogateway_stripe.php:231
|
|
|
7063 |
#: paid-memberships-pro.php:117 paid-memberships-pro.php:118
|
7064 |
#: paid-memberships-pro.php:125 paid-memberships-pro.php:126
|
7065 |
#: paid-memberships-pro.php:127 paid-memberships-pro.php:128
|
@@ -7074,6 +7179,7 @@ msgstr ""
|
|
7074 |
#: classes/gateways/class.pmprogateway_stripe.php:331
|
7075 |
#: classes/gateways/class.pmprogateway_stripe.php:299
|
7076 |
#: classes/gateways/class.pmprogateway_stripe.php:307
|
|
|
7077 |
#: classes/gateways/class.pmprogateway_stripe.php:337
|
7078 |
#: classes/gateways/class.pmprogateway_stripe.php:339
|
7079 |
#: classes/gateways/class.pmprogateway_stripe.php:340
|
@@ -7096,6 +7202,7 @@ msgstr ""
|
|
7096 |
#: classes/gateways/class.pmprogateway_stripe.php:283
|
7097 |
#: classes/gateways/class.pmprogateway_stripe.php:284
|
7098 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
|
|
7099 |
msgid "Stripe Settings"
|
7100 |
msgstr ""
|
7101 |
|
@@ -7118,6 +7225,7 @@ msgstr ""
|
|
7118 |
#: classes/gateways/class.pmprogateway_stripe.php:288
|
7119 |
#: classes/gateways/class.pmprogateway_stripe.php:289
|
7120 |
#: classes/gateways/class.pmprogateway_stripe.php:291
|
|
|
7121 |
msgid "Publishable Key"
|
7122 |
msgstr ""
|
7123 |
|
@@ -7128,6 +7236,7 @@ msgstr ""
|
|
7128 |
#: classes/gateways/class.pmprogateway_stripe.php:297
|
7129 |
#: classes/gateways/class.pmprogateway_stripe.php:298
|
7130 |
#: classes/gateways/class.pmprogateway_stripe.php:299
|
|
|
7131 |
msgid "Your Publishable Key appears incorrect."
|
7132 |
msgstr ""
|
7133 |
|
@@ -7150,18 +7259,25 @@ msgstr ""
|
|
7150 |
#: classes/gateways/class.pmprogateway_stripe.php:305
|
7151 |
#: classes/gateways/class.pmprogateway_stripe.php:306
|
7152 |
#: classes/gateways/class.pmprogateway_stripe.php:307
|
|
|
7153 |
msgid "Secret Key"
|
7154 |
msgstr ""
|
7155 |
|
|
|
7156 |
#: classes/gateways/class.pmprogateway_stripe.php:367
|
7157 |
msgid "Webhook"
|
7158 |
msgstr ""
|
7159 |
|
|
|
|
|
7160 |
#: classes/gateways/class.pmprogateway_stripe.php:371
|
7161 |
#: classes/gateways/class.pmprogateway_stripe.php:376
|
7162 |
msgid "Create Webhook"
|
7163 |
msgstr ""
|
7164 |
|
|
|
|
|
|
|
7165 |
#: classes/gateways/class.pmprogateway_stripe.php:378
|
7166 |
#: classes/gateways/class.pmprogateway_stripe.php:473
|
7167 |
#: classes/gateways/class.pmprogateway_stripe.php:490
|
@@ -7191,6 +7307,7 @@ msgstr ""
|
|
7191 |
#: classes/gateways/class.pmprogateway_stripe.php:313
|
7192 |
#: classes/gateways/class.pmprogateway_stripe.php:314
|
7193 |
#: classes/gateways/class.pmprogateway_stripe.php:315
|
|
|
7194 |
msgid "Show Billing Address Fields"
|
7195 |
msgstr ""
|
7196 |
|
@@ -7214,6 +7331,7 @@ msgstr ""
|
|
7214 |
#: classes/gateways/class.pmprogateway_stripe.php:323
|
7215 |
#: classes/gateways/class.pmprogateway_stripe.php:324
|
7216 |
#: classes/gateways/class.pmprogateway_stripe.php:325
|
|
|
7217 |
msgid ""
|
7218 |
"Stripe doesn't require billing address fields. Choose 'No' to hide them on "
|
7219 |
"the checkout page.<br /><strong>If No, make sure you disable address "
|
@@ -7224,6 +7342,7 @@ msgstr ""
|
|
7224 |
#: classes/gateways/class.pmprogateway_stripe.php:351
|
7225 |
#: classes/gateways/class.pmprogateway_stripe.php:352
|
7226 |
#: classes/gateways/class.pmprogateway_stripe.php:354
|
|
|
7227 |
#, php-format
|
7228 |
msgid ""
|
7229 |
"Optional: Offer PayPal Express as an option at checkout using the <a target="
|
@@ -7231,14 +7350,17 @@ msgid ""
|
|
7231 |
"Option at Checkout Add On\">Add PayPal Express Add On</a>."
|
7232 |
msgstr ""
|
7233 |
|
|
|
7234 |
#: classes/gateways/class.pmprogateway_stripe.php:432
|
7235 |
msgid "Webhook creation failed. You might already have a webhook set up."
|
7236 |
msgstr ""
|
7237 |
|
|
|
7238 |
#: classes/gateways/class.pmprogateway_stripe.php:447
|
7239 |
msgid "Your webhook is enabled."
|
7240 |
msgstr ""
|
7241 |
|
|
|
7242 |
#: classes/gateways/class.pmprogateway_stripe.php:497
|
7243 |
msgid "There was an error deleting the webhook."
|
7244 |
msgstr ""
|
@@ -7249,18 +7371,20 @@ msgstr ""
|
|
7249 |
#: classes/gateways/class.pmprogateway_stripe.php:379
|
7250 |
#: classes/gateways/class.pmprogateway_stripe.php:380
|
7251 |
#: classes/gateways/class.pmprogateway_stripe.php:381
|
|
|
7252 |
msgid "Verification steps confirmed. Your payment is processing."
|
7253 |
msgstr ""
|
7254 |
|
7255 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7256 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
7257 |
#: classes/gateways/class.pmprogateway_stripe.php:577
|
7258 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
7259 |
#: classes/gateways/class.pmprogateway_stripe.php:580
|
|
|
7260 |
msgid "CVC"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7264 |
#: classes/gateways/class.pmprogateway_stripe.php:650
|
7265 |
#: classes/gateways/class.pmprogateway_stripe.php:655
|
7266 |
#: classes/gateways/class.pmprogateway_stripe.php:656
|
@@ -7272,13 +7396,14 @@ msgstr ""
|
|
7272 |
#: classes/gateways/class.pmprogateway_stripe.php:725
|
7273 |
#: classes/gateways/class.pmprogateway_stripe.php:726
|
7274 |
#: classes/gateways/class.pmprogateway_stripe.php:727
|
|
|
7275 |
#, php-format
|
7276 |
msgid ""
|
7277 |
"%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may "
|
7278 |
"have been deleted."
|
7279 |
msgstr ""
|
7280 |
|
7281 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7282 |
#: classes/gateways/class.pmprogateway_stripe.php:567
|
7283 |
#: classes/gateways/class.pmprogateway_stripe.php:568
|
7284 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
@@ -7301,10 +7426,11 @@ msgstr ""
|
|
7301 |
#: classes/gateways/class.pmprogateway_stripe.php:732
|
7302 |
#: classes/gateways/class.pmprogateway_stripe.php:733
|
7303 |
#: classes/gateways/class.pmprogateway_stripe.php:734
|
|
|
7304 |
msgid "Subscription Updates"
|
7305 |
msgstr ""
|
7306 |
|
7307 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7308 |
#: classes/gateways/class.pmprogateway_stripe.php:571
|
7309 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
7310 |
#: classes/gateways/class.pmprogateway_stripe.php:582
|
@@ -7327,12 +7453,13 @@ msgstr ""
|
|
7327 |
#: classes/gateways/class.pmprogateway_stripe.php:736
|
7328 |
#: classes/gateways/class.pmprogateway_stripe.php:737
|
7329 |
#: classes/gateways/class.pmprogateway_stripe.php:738
|
|
|
7330 |
msgid ""
|
7331 |
"Subscription updates, allow you to change the member's subscription values "
|
7332 |
"at predefined times. Be sure to click Update Profile after making changes."
|
7333 |
msgstr ""
|
7334 |
|
7335 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7336 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
7337 |
#: classes/gateways/class.pmprogateway_stripe.php:574
|
7338 |
#: classes/gateways/class.pmprogateway_stripe.php:584
|
@@ -7355,12 +7482,13 @@ msgstr ""
|
|
7355 |
#: classes/gateways/class.pmprogateway_stripe.php:738
|
7356 |
#: classes/gateways/class.pmprogateway_stripe.php:739
|
7357 |
#: classes/gateways/class.pmprogateway_stripe.php:740
|
|
|
7358 |
msgid ""
|
7359 |
"Subscription updates, allow you to change the member's subscription values "
|
7360 |
"at predefined times. Be sure to click Update User after making changes."
|
7361 |
msgstr ""
|
7362 |
|
7363 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7364 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
7365 |
#: classes/gateways/class.pmprogateway_stripe.php:579
|
7366 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
@@ -7382,20 +7510,21 @@ msgstr ""
|
|
7382 |
#: classes/gateways/class.pmprogateway_stripe.php:736
|
7383 |
#: classes/gateways/class.pmprogateway_stripe.php:743
|
7384 |
#: classes/gateways/class.pmprogateway_stripe.php:744
|
7385 |
-
#: classes/gateways/class.pmprogateway_stripe.php:745
|
|
|
7386 |
#: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
|
7387 |
#: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
|
7388 |
#: pages/billing.php:362 pages/billing.php:363 pages/billing.php:364
|
7389 |
#: pages/billing.php:370 pages/billing.php:371 pages/billing.php:379
|
7390 |
#: pages/billing.php:389 pages/billing.php:391 pages/billing.php:396
|
7391 |
-
#: pages/billing.php:400 pages/billing.php:405
|
7392 |
msgid "Update"
|
7393 |
msgstr ""
|
7394 |
|
7395 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7396 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7397 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7398 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7399 |
#: classes/gateways/class.pmprogateway_stripe.php:1236
|
7400 |
#: classes/gateways/class.pmprogateway_stripe.php:1243
|
7401 |
#: classes/gateways/class.pmprogateway_stripe.php:1247
|
@@ -7416,13 +7545,17 @@ msgstr ""
|
|
7416 |
#: classes/gateways/class.pmprogateway_stripe.php:1297
|
7417 |
#: classes/gateways/class.pmprogateway_stripe.php:1302
|
7418 |
#: classes/gateways/class.pmprogateway_stripe.php:1310
|
|
|
|
|
|
|
|
|
7419 |
#, php-format
|
7420 |
msgid "Error: %s"
|
7421 |
msgstr ""
|
7422 |
|
7423 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7424 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7425 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7426 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
7427 |
#: classes/gateways/class.pmprogateway_stripe.php:192
|
7428 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
@@ -7457,11 +7590,14 @@ msgstr ""
|
|
7457 |
#: classes/gateways/class.pmprogateway_stripe.php:1384
|
7458 |
#: classes/gateways/class.pmprogateway_stripe.php:1392
|
7459 |
#: classes/gateways/class.pmprogateway_stripe.php:1410
|
|
|
|
|
|
|
7460 |
msgid "Error creating customer record with Stripe:"
|
7461 |
msgstr ""
|
7462 |
|
7463 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7464 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7465 |
#: classes/gateways/class.pmprogateway_stripe.php:1275
|
7466 |
#: classes/gateways/class.pmprogateway_stripe.php:1303
|
7467 |
#: classes/gateways/class.pmprogateway_stripe.php:1313
|
@@ -7485,11 +7621,13 @@ msgstr ""
|
|
7485 |
#: classes/gateways/class.pmprogateway_stripe.php:1444
|
7486 |
#: classes/gateways/class.pmprogateway_stripe.php:1451
|
7487 |
#: classes/gateways/class.pmprogateway_stripe.php:1469
|
|
|
|
|
7488 |
msgid "Error getting subscription with Stripe:"
|
7489 |
msgstr ""
|
7490 |
|
7491 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7492 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7493 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
7494 |
#: classes/gateways/class.pmprogateway_stripe.php:279
|
7495 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
@@ -7534,11 +7672,13 @@ msgstr ""
|
|
7534 |
#: classes/gateways/class.pmprogateway_stripe.php:1610
|
7535 |
#: classes/gateways/class.pmprogateway_stripe.php:1615
|
7536 |
#: classes/gateways/class.pmprogateway_stripe.php:1625
|
|
|
|
|
7537 |
msgid "Error creating plan with Stripe:"
|
7538 |
msgstr ""
|
7539 |
|
7540 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7541 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7542 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
7543 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
7544 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
@@ -7578,10 +7718,12 @@ msgstr ""
|
|
7578 |
#: classes/gateways/class.pmprogateway_stripe.php:1646
|
7579 |
#: classes/gateways/class.pmprogateway_stripe.php:1656
|
7580 |
#: classes/gateways/class.pmprogateway_stripe.php:1660
|
|
|
|
|
7581 |
msgid "Error subscribing customer to plan with Stripe:"
|
7582 |
msgstr ""
|
7583 |
|
7584 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7585 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
7586 |
#: classes/gateways/class.pmprogateway_stripe.php:770
|
7587 |
#: classes/gateways/class.pmprogateway_stripe.php:780
|
@@ -7607,10 +7749,11 @@ msgstr ""
|
|
7607 |
#: classes/gateways/class.pmprogateway_stripe.php:1734
|
7608 |
#: classes/gateways/class.pmprogateway_stripe.php:1736
|
7609 |
#: classes/gateways/class.pmprogateway_stripe.php:1751
|
|
|
7610 |
msgid "Could not cancel the old subscription. Updates have not been processed."
|
7611 |
msgstr ""
|
7612 |
|
7613 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7614 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
7615 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
7616 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
@@ -7645,10 +7788,11 @@ msgstr ""
|
|
7645 |
#: classes/gateways/class.pmprogateway_stripe.php:1885
|
7646 |
#: classes/gateways/class.pmprogateway_stripe.php:1887
|
7647 |
#: classes/gateways/class.pmprogateway_stripe.php:1902
|
|
|
7648 |
msgid "Could not cancel old subscription."
|
7649 |
msgstr ""
|
7650 |
|
7651 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7652 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
7653 |
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
7654 |
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
@@ -7679,11 +7823,12 @@ msgstr ""
|
|
7679 |
#: classes/gateways/class.pmprogateway_stripe.php:1901
|
7680 |
#: classes/gateways/class.pmprogateway_stripe.php:1903
|
7681 |
#: classes/gateways/class.pmprogateway_stripe.php:1918
|
|
|
7682 |
msgid "Could not find the customer."
|
7683 |
msgstr ""
|
7684 |
|
7685 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7686 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7687 |
#: classes/gateways/class.pmprogateway_stripe.php:1836
|
7688 |
#: classes/gateways/class.pmprogateway_stripe.php:1837
|
7689 |
#: classes/gateways/class.pmprogateway_stripe.php:1847
|
@@ -7705,10 +7850,12 @@ msgstr ""
|
|
7705 |
#: classes/gateways/class.pmprogateway_stripe.php:2076
|
7706 |
#: classes/gateways/class.pmprogateway_stripe.php:2085
|
7707 |
#: classes/gateways/class.pmprogateway_stripe.php:2091
|
|
|
|
|
7708 |
msgid "Error: "
|
7709 |
msgstr ""
|
7710 |
|
7711 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7712 |
#: classes/gateways/class.pmprogateway_stripe.php:1849
|
7713 |
#: classes/gateways/class.pmprogateway_stripe.php:1850
|
7714 |
#: classes/gateways/class.pmprogateway_stripe.php:1860
|
@@ -7727,29 +7874,32 @@ msgstr ""
|
|
7727 |
#: classes/gateways/class.pmprogateway_stripe.php:2088
|
7728 |
#: classes/gateways/class.pmprogateway_stripe.php:2090
|
7729 |
#: classes/gateways/class.pmprogateway_stripe.php:2105
|
|
|
7730 |
#, php-format
|
7731 |
msgid "Error: Unkown error while refunding charge #%s"
|
7732 |
msgstr ""
|
7733 |
|
7734 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7735 |
#: classes/gateways/class.pmprogateway_stripe.php:2438
|
7736 |
#: classes/gateways/class.pmprogateway_stripe.php:2479
|
7737 |
#: classes/gateways/class.pmprogateway_stripe.php:2485
|
7738 |
#: classes/gateways/class.pmprogateway_stripe.php:2547
|
7739 |
#: classes/gateways/class.pmprogateway_stripe.php:2549
|
7740 |
#: classes/gateways/class.pmprogateway_stripe.php:2564
|
|
|
7741 |
msgid ""
|
7742 |
"Customer authentication is required to complete this transaction. Please "
|
7743 |
"complete the verification steps issued by your payment provider."
|
7744 |
msgstr ""
|
7745 |
|
7746 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7747 |
#: classes/gateways/class.pmprogateway_stripe.php:2455
|
7748 |
#: classes/gateways/class.pmprogateway_stripe.php:2496
|
7749 |
#: classes/gateways/class.pmprogateway_stripe.php:2502
|
7750 |
#: classes/gateways/class.pmprogateway_stripe.php:2564
|
7751 |
#: classes/gateways/class.pmprogateway_stripe.php:2566
|
7752 |
#: classes/gateways/class.pmprogateway_stripe.php:2581
|
|
|
7753 |
msgid ""
|
7754 |
"Customer authentication is required to finish setting up your subscription. "
|
7755 |
"Please complete the verification steps issued by your payment provider."
|
@@ -7843,13 +7993,13 @@ msgstr ""
|
|
7843 |
msgid "Check Out with 2Checkout"
|
7844 |
msgstr ""
|
7845 |
|
7846 |
-
#: includes/addons.php:
|
7847 |
#: includes/addons.php:239
|
7848 |
msgid ""
|
7849 |
"Important: This plugin requires a valid PMPro Plus license key to update."
|
7850 |
msgstr ""
|
7851 |
|
7852 |
-
#: includes/addons.php:
|
7853 |
#: includes/addons.php:292
|
7854 |
msgid ""
|
7855 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
@@ -7858,12 +8008,12 @@ msgid ""
|
|
7858 |
"updated:"
|
7859 |
msgstr ""
|
7860 |
|
7861 |
-
#: includes/addons.php:
|
7862 |
#: includes/addons.php:310
|
7863 |
msgid "Update Plugin"
|
7864 |
msgstr ""
|
7865 |
|
7866 |
-
#: includes/addons.php:
|
7867 |
#: includes/addons.php:312
|
7868 |
msgid ""
|
7869 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
@@ -7871,12 +8021,12 @@ msgid ""
|
|
7871 |
"Key</a> to update PMPro Plus add ons."
|
7872 |
msgstr ""
|
7873 |
|
7874 |
-
#: includes/addons.php:
|
7875 |
#: includes/addons.php:315
|
7876 |
msgid "Return to the PMPro Add Ons page"
|
7877 |
msgstr ""
|
7878 |
|
7879 |
-
#: includes/addons.php:
|
7880 |
#: includes/addons.php:334
|
7881 |
msgid ""
|
7882 |
"You must enter a valid PMPro Plus License Key under Settings > PMPro License "
|
@@ -9055,8 +9205,8 @@ msgstr ""
|
|
9055 |
msgid "US Armed Forces"
|
9056 |
msgstr ""
|
9057 |
|
9058 |
-
#: includes/currencies.php:7 includes/currencies.php:
|
9059 |
-
#: includes/currencies.php:
|
9060 |
#: includes/currencies.php:17 includes/currencies.php:37
|
9061 |
#: includes/currencies.php:44 includes/currencies.php:64
|
9062 |
#: includes/currencies.php:68 includes/currencies.php:75
|
@@ -9069,7 +9219,7 @@ msgstr ""
|
|
9069 |
msgid "US Dollars ($)"
|
9070 |
msgstr ""
|
9071 |
|
9072 |
-
#: includes/currencies.php:9 includes/currencies.php:
|
9073 |
#: includes/currencies.php:8 includes/currencies.php:9
|
9074 |
#: includes/currencies.php:19 includes/currencies.php:40
|
9075 |
#: includes/currencies.php:47 includes/currencies.php:67
|
@@ -9081,7 +9231,7 @@ msgstr ""
|
|
9081 |
msgid "Euros (€)"
|
9082 |
msgstr ""
|
9083 |
|
9084 |
-
#: includes/currencies.php:14 includes/currencies.php:
|
9085 |
#: includes/currencies.php:9 includes/currencies.php:14
|
9086 |
#: includes/currencies.php:24 includes/currencies.php:39
|
9087 |
#: includes/currencies.php:46 includes/currencies.php:66
|
@@ -9110,7 +9260,7 @@ msgstr ""
|
|
9110 |
msgid "Brazilian Real (R$)"
|
9111 |
msgstr ""
|
9112 |
|
9113 |
-
#: includes/currencies.php:25 includes/currencies.php:
|
9114 |
#: includes/currencies.php:12 includes/currencies.php:24
|
9115 |
#: includes/currencies.php:25 includes/currencies.php:34
|
9116 |
#: includes/currencies.php:35 includes/currencies.php:38
|
@@ -9259,13 +9409,17 @@ msgstr ""
|
|
9259 |
msgid "Polish Zloty"
|
9260 |
msgstr ""
|
9261 |
|
9262 |
-
#: includes/currencies.php:68
|
|
|
|
|
|
|
|
|
9263 |
#: includes/currencies.php:65 includes/currencies.php:68
|
9264 |
#: includes/currencies.php:73
|
9265 |
msgid "Russian Ruble (₽)"
|
9266 |
msgstr ""
|
9267 |
|
9268 |
-
#: includes/currencies.php:
|
9269 |
#: includes/currencies.php:28 includes/currencies.php:45
|
9270 |
#: includes/currencies.php:52 includes/currencies.php:62
|
9271 |
#: includes/currencies.php:64 includes/currencies.php:65
|
@@ -9275,7 +9429,7 @@ msgstr ""
|
|
9275 |
msgid "Singapore Dollar ($)"
|
9276 |
msgstr ""
|
9277 |
|
9278 |
-
#: includes/currencies.php:
|
9279 |
#: includes/currencies.php:57 includes/currencies.php:67
|
9280 |
#: includes/currencies.php:69 includes/currencies.php:70
|
9281 |
#: includes/currencies.php:73 includes/currencies.php:75
|
@@ -9284,7 +9438,7 @@ msgstr ""
|
|
9284 |
msgid "South African Rand (R)"
|
9285 |
msgstr ""
|
9286 |
|
9287 |
-
#: includes/currencies.php:
|
9288 |
#: includes/currencies.php:50 includes/currencies.php:54
|
9289 |
#: includes/currencies.php:61 includes/currencies.php:71
|
9290 |
#: includes/currencies.php:73 includes/currencies.php:75
|
@@ -9294,7 +9448,7 @@ msgstr ""
|
|
9294 |
msgid "South Korean Won"
|
9295 |
msgstr ""
|
9296 |
|
9297 |
-
#: includes/currencies.php:
|
9298 |
#: includes/currencies.php:31 includes/currencies.php:51
|
9299 |
#: includes/currencies.php:55 includes/currencies.php:62
|
9300 |
#: includes/currencies.php:72 includes/currencies.php:74
|
@@ -9304,7 +9458,7 @@ msgstr ""
|
|
9304 |
msgid "Swedish Krona"
|
9305 |
msgstr ""
|
9306 |
|
9307 |
-
#: includes/currencies.php:
|
9308 |
#: includes/currencies.php:32 includes/currencies.php:52
|
9309 |
#: includes/currencies.php:56 includes/currencies.php:63
|
9310 |
#: includes/currencies.php:73 includes/currencies.php:75
|
@@ -9314,7 +9468,7 @@ msgstr ""
|
|
9314 |
msgid "Swiss Franc"
|
9315 |
msgstr ""
|
9316 |
|
9317 |
-
#: includes/currencies.php:
|
9318 |
#: includes/currencies.php:33 includes/currencies.php:53
|
9319 |
#: includes/currencies.php:57 includes/currencies.php:64
|
9320 |
#: includes/currencies.php:74 includes/currencies.php:76
|
@@ -9324,7 +9478,7 @@ msgstr ""
|
|
9324 |
msgid "Taiwan New Dollars"
|
9325 |
msgstr ""
|
9326 |
|
9327 |
-
#: includes/currencies.php:
|
9328 |
#: includes/currencies.php:34 includes/currencies.php:54
|
9329 |
#: includes/currencies.php:58 includes/currencies.php:65
|
9330 |
#: includes/currencies.php:75 includes/currencies.php:77
|
@@ -9334,7 +9488,7 @@ msgstr ""
|
|
9334 |
msgid "Thai Baht"
|
9335 |
msgstr ""
|
9336 |
|
9337 |
-
#: includes/currencies.php:
|
9338 |
#: includes/currencies.php:55 includes/currencies.php:59
|
9339 |
#: includes/currencies.php:66 includes/currencies.php:76
|
9340 |
#: includes/currencies.php:78 includes/currencies.php:82
|
@@ -9344,7 +9498,7 @@ msgstr ""
|
|
9344 |
msgid "Turkish Lira"
|
9345 |
msgstr ""
|
9346 |
|
9347 |
-
#: includes/currencies.php:
|
9348 |
#: includes/currencies.php:56 includes/currencies.php:60
|
9349 |
#: includes/currencies.php:67 includes/currencies.php:77
|
9350 |
#: includes/currencies.php:79 includes/currencies.php:84
|
@@ -9691,7 +9845,8 @@ msgstr ""
|
|
9691 |
#: includes/functions.php:1077 includes/functions.php:1096
|
9692 |
#: includes/functions.php:1123 includes/functions.php:1127
|
9693 |
#: includes/functions.php:1129 includes/functions.php:1135
|
9694 |
-
#: includes/functions.php:1138 includes/functions.php:
|
|
|
9695 |
#, php-format
|
9696 |
msgid "Error interacting with database: %s"
|
9697 |
msgstr ""
|
@@ -9720,10 +9875,11 @@ msgstr ""
|
|
9720 |
#: includes/functions.php:1179 includes/functions.php:1193
|
9721 |
#: includes/functions.php:1198 includes/functions.php:1202
|
9722 |
#: includes/functions.php:1204 includes/functions.php:1212
|
9723 |
-
#: includes/functions.php:1213 includes/functions.php:
|
9724 |
-
#: includes/functions.php:
|
9725 |
-
#: includes/functions.php:
|
9726 |
-
#: includes/functions.php:
|
|
|
9727 |
msgid "Membership level not found."
|
9728 |
msgstr ""
|
9729 |
|
@@ -9738,7 +9894,8 @@ msgstr ""
|
|
9738 |
#: includes/functions.php:1547 includes/functions.php:1586
|
9739 |
#: includes/functions.php:1605 includes/functions.php:1609
|
9740 |
#: includes/functions.php:1611 includes/functions.php:1620
|
9741 |
-
#: includes/functions.php:1625 includes/functions.php:
|
|
|
9742 |
msgid "No code was given to check."
|
9743 |
msgstr ""
|
9744 |
|
@@ -9757,7 +9914,7 @@ msgstr ""
|
|
9757 |
#: includes/functions.php:1595 includes/functions.php:1614
|
9758 |
#: includes/functions.php:1618 includes/functions.php:1620
|
9759 |
#: includes/functions.php:1629 includes/functions.php:1634
|
9760 |
-
#: includes/functions.php:1639
|
9761 |
msgid "The discount code could not be found."
|
9762 |
msgstr ""
|
9763 |
|
@@ -9776,7 +9933,7 @@ msgstr ""
|
|
9776 |
#: includes/functions.php:1610 includes/functions.php:1629
|
9777 |
#: includes/functions.php:1633 includes/functions.php:1635
|
9778 |
#: includes/functions.php:1644 includes/functions.php:1649
|
9779 |
-
#: includes/functions.php:1654
|
9780 |
#, php-format
|
9781 |
msgid "This discount code goes into effect on %s."
|
9782 |
msgstr ""
|
@@ -9796,7 +9953,7 @@ msgstr ""
|
|
9796 |
#: includes/functions.php:1617 includes/functions.php:1636
|
9797 |
#: includes/functions.php:1640 includes/functions.php:1642
|
9798 |
#: includes/functions.php:1651 includes/functions.php:1656
|
9799 |
-
#: includes/functions.php:1661
|
9800 |
#, php-format
|
9801 |
msgid "This discount code expired on %s."
|
9802 |
msgstr ""
|
@@ -9816,7 +9973,7 @@ msgstr ""
|
|
9816 |
#: includes/functions.php:1626 includes/functions.php:1646
|
9817 |
#: includes/functions.php:1650 includes/functions.php:1652
|
9818 |
#: includes/functions.php:1661 includes/functions.php:1665
|
9819 |
-
#: includes/functions.php:1670
|
9820 |
msgid "This discount code is no longer valid."
|
9821 |
msgstr ""
|
9822 |
|
@@ -9834,7 +9991,8 @@ msgstr ""
|
|
9834 |
#: includes/functions.php:1606 includes/functions.php:1645
|
9835 |
#: includes/functions.php:1666 includes/functions.php:1670
|
9836 |
#: includes/functions.php:1672 includes/functions.php:1681
|
9837 |
-
#: includes/functions.php:1684 includes/functions.php:
|
|
|
9838 |
msgid "This discount code does not apply to this membership level."
|
9839 |
msgstr ""
|
9840 |
|
@@ -9853,7 +10011,7 @@ msgstr ""
|
|
9853 |
#: includes/functions.php:1683 includes/functions.php:1703
|
9854 |
#: includes/functions.php:1707 includes/functions.php:1709
|
9855 |
#: includes/functions.php:1718 includes/functions.php:1722
|
9856 |
-
#: includes/functions.php:1727
|
9857 |
msgid "This discount code is okay."
|
9858 |
msgstr ""
|
9859 |
|
@@ -9872,7 +10030,7 @@ msgstr ""
|
|
9872 |
#: includes/functions.php:1711 includes/functions.php:1730
|
9873 |
#: includes/functions.php:1734 includes/functions.php:1736
|
9874 |
#: includes/functions.php:1745 includes/functions.php:1750
|
9875 |
-
#: includes/functions.php:1755
|
9876 |
msgid "and"
|
9877 |
msgstr ""
|
9878 |
|
@@ -9894,6 +10052,7 @@ msgstr ""
|
|
9894 |
#: includes/functions.php:2034 includes/functions.php:2061
|
9895 |
#: includes/functions.php:2100 includes/functions.php:2102
|
9896 |
#: includes/functions.php:2155 includes/functions.php:2199
|
|
|
9897 |
msgid "Sign Up for !!name!! Now"
|
9898 |
msgstr ""
|
9899 |
|
@@ -9901,6 +10060,7 @@ msgstr ""
|
|
9901 |
#: includes/functions.php:2054 includes/functions.php:2085
|
9902 |
#: includes/functions.php:2124 includes/functions.php:2126
|
9903 |
#: includes/functions.php:2179 includes/functions.php:2223
|
|
|
9904 |
msgid "Sign Up Now"
|
9905 |
msgstr ""
|
9906 |
|
@@ -9916,11 +10076,11 @@ msgstr ""
|
|
9916 |
#: includes/init.php:220 includes/init.php:222 includes/init.php:230
|
9917 |
#: includes/init.php:238 includes/init.php:242 includes/init.php:243
|
9918 |
#: includes/init.php:244 includes/init.php:258 includes/init.php:262
|
9919 |
-
#: includes/profile.php:
|
9920 |
-
#: includes/profile.php:
|
9921 |
-
#: pages/checkout.php:
|
9922 |
-
#: pages/checkout.php:
|
9923 |
-
#: pages/confirmation.php:46 pages/confirmation.php:47
|
9924 |
#: pages/confirmation.php:52 pages/confirmation.php:53
|
9925 |
#: pages/confirmation.php:62 pages/confirmation.php:64
|
9926 |
#: pages/confirmation.php:70 pages/confirmation.php:91
|
@@ -9933,7 +10093,7 @@ msgstr ""
|
|
9933 |
msgid "Membership Level"
|
9934 |
msgstr ""
|
9935 |
|
9936 |
-
#: includes/lib/SendWP/sendwp.php:90
|
9937 |
msgid "Something went wrong. SendWP was not installed correctly."
|
9938 |
msgstr ""
|
9939 |
|
@@ -10006,117 +10166,118 @@ msgid "Years"
|
|
10006 |
msgstr ""
|
10007 |
|
10008 |
#: includes/login.php:251 includes/login.php:275 includes/login.php:211
|
10009 |
-
#: includes/login.php:235
|
10010 |
msgid "Welcome"
|
10011 |
msgstr ""
|
10012 |
|
10013 |
#: includes/login.php:253 includes/login.php:277 includes/login.php:213
|
10014 |
-
#: includes/login.php:237
|
10015 |
msgid "Lost Password"
|
10016 |
msgstr ""
|
10017 |
|
10018 |
#: includes/login.php:255 includes/login.php:279 includes/login.php:215
|
10019 |
-
#: includes/login.php:239
|
10020 |
msgid "Reset Password"
|
10021 |
msgstr ""
|
10022 |
|
10023 |
#: includes/login.php:303 includes/login.php:820 includes/login.php:263
|
10024 |
-
#: includes/login.php:751
|
10025 |
msgid "There was a problem with your username or password."
|
10026 |
msgstr ""
|
10027 |
|
10028 |
-
#: includes/login.php:307 includes/login.php:267
|
10029 |
msgid "Unknown username. Check again or try your email address."
|
10030 |
msgstr ""
|
10031 |
|
10032 |
-
#: includes/login.php:311 includes/login.php:271
|
10033 |
msgid "Empty username. Please enter your username and try again."
|
10034 |
msgstr ""
|
10035 |
|
10036 |
-
#: includes/login.php:315 includes/login.php:275
|
10037 |
msgid "Empty password. Please enter your password and try again."
|
10038 |
msgstr ""
|
10039 |
|
10040 |
-
#: includes/login.php:319 includes/login.php:279
|
10041 |
msgid "The password you entered for the user is incorrect. Please try again."
|
10042 |
msgstr ""
|
10043 |
|
10044 |
-
#: includes/login.php:323 includes/login.php:283
|
10045 |
msgid "Check your email for the confirmation link."
|
10046 |
msgstr ""
|
10047 |
|
10048 |
-
#: includes/login.php:332 includes/login.php:292
|
10049 |
msgid "You are now logged out."
|
10050 |
msgstr ""
|
10051 |
|
10052 |
-
#: includes/login.php:336 includes/login.php:296
|
10053 |
msgid "There was a problem logging you out."
|
10054 |
msgstr ""
|
10055 |
|
10056 |
-
#: includes/login.php:347 includes/login.php:307
|
10057 |
msgid "Check your email for a link to reset your password."
|
10058 |
msgstr ""
|
10059 |
|
10060 |
-
#: includes/login.php:350 includes/login.php:310
|
10061 |
msgid "There was an unexpected error regarding your email. Please try again"
|
10062 |
msgstr ""
|
10063 |
|
10064 |
-
#: includes/login.php:360 includes/login.php:320
|
10065 |
msgid "Your reset password key is invalid."
|
10066 |
msgstr ""
|
10067 |
|
10068 |
-
#: includes/login.php:364 includes/login.php:324
|
10069 |
msgid ""
|
10070 |
"Your reset password key is expired, please request a new key from the "
|
10071 |
"password reset page."
|
10072 |
msgstr ""
|
10073 |
|
10074 |
-
#: includes/login.php:376 includes/login.php:336
|
10075 |
msgid "Your password has successfully been updated."
|
10076 |
msgstr ""
|
10077 |
|
10078 |
-
#: includes/login.php:380 includes/login.php:340
|
10079 |
msgid "There was a problem updating your password"
|
10080 |
msgstr ""
|
10081 |
|
10082 |
-
#: includes/login.php:394 includes/login.php:349
|
10083 |
msgid "There is no account with that username or email address."
|
10084 |
msgstr ""
|
10085 |
|
10086 |
-
#: includes/login.php:398 includes/login.php:353
|
10087 |
msgid "Please enter a valid username."
|
10088 |
msgstr ""
|
10089 |
|
10090 |
-
#: includes/login.php:402 includes/login.php:357
|
10091 |
msgid "You've entered an invalid email address."
|
10092 |
msgstr ""
|
10093 |
|
10094 |
-
#: includes/login.php:406 includes/profile.php:
|
10095 |
-
#: includes/profile.php:624
|
10096 |
msgid "New passwords do not match."
|
10097 |
msgstr ""
|
10098 |
|
10099 |
-
#: includes/login.php:410 includes/profile.php:
|
10100 |
-
#: includes/profile.php:620
|
10101 |
msgid "Please complete all fields."
|
10102 |
msgstr ""
|
10103 |
|
10104 |
-
#: includes/login.php:414
|
10105 |
msgid ""
|
10106 |
"The email could not be sent. This site may not be correctly configured to "
|
10107 |
"send emails."
|
10108 |
msgstr ""
|
10109 |
|
10110 |
-
#: includes/login.php:636 includes/profile.php:
|
10111 |
-
#: includes/login.php:587 includes/
|
|
|
10112 |
msgid "Strength Indicator"
|
10113 |
msgstr ""
|
10114 |
|
10115 |
-
#: includes/login.php:959 includes/login.php:886
|
10116 |
msgid "Missing request ID."
|
10117 |
msgstr ""
|
10118 |
|
10119 |
-
#: includes/login.php:963 includes/login.php:890
|
10120 |
msgid "Missing confirm key."
|
10121 |
msgstr ""
|
10122 |
|
@@ -10159,11 +10320,11 @@ msgid ""
|
|
10159 |
"Only members of these levels will be able to view posts in this category."
|
10160 |
msgstr ""
|
10161 |
|
10162 |
-
#: includes/pointers.php:
|
10163 |
msgid "PMPro v2.0 Update"
|
10164 |
msgstr ""
|
10165 |
|
10166 |
-
#: includes/pointers.php:
|
10167 |
#, php-format
|
10168 |
msgid ""
|
10169 |
"The Memberships menu has moved. Check out the new dashboard. The Membership "
|
@@ -10171,7 +10332,7 @@ msgid ""
|
|
10171 |
"\">Settings</a>."
|
10172 |
msgstr ""
|
10173 |
|
10174 |
-
#: includes/pointers.php:
|
10175 |
msgid "Close"
|
10176 |
msgstr ""
|
10177 |
|
@@ -10439,22 +10600,26 @@ msgstr ""
|
|
10439 |
msgid "That post has since been updated."
|
10440 |
msgstr ""
|
10441 |
|
10442 |
-
#: includes/profile.php:31 includes/profile.php:
|
10443 |
-
#: includes/profile.php:
|
|
|
10444 |
msgid "Current Level"
|
10445 |
msgstr ""
|
10446 |
|
10447 |
-
#: includes/profile.php:58
|
|
|
10448 |
#: includes/profile.php:67 includes/profile.php:72
|
10449 |
#: shortcodes/pmpro_account.php:148 shortcodes/pmpro_account.php:224
|
|
|
10450 |
msgid "Paid"
|
10451 |
msgstr ""
|
10452 |
|
10453 |
#: includes/profile.php:60 includes/profile.php:190 includes/profile.php:237
|
10454 |
#: includes/profile.php:54 includes/profile.php:60 includes/profile.php:65
|
10455 |
#: includes/profile.php:68 includes/profile.php:69 includes/profile.php:74
|
10456 |
-
#: includes/profile.php:
|
10457 |
-
#: includes/profile.php:
|
|
|
10458 |
msgid "Not paying."
|
10459 |
msgstr ""
|
10460 |
|
@@ -10466,108 +10631,114 @@ msgid ""
|
|
10466 |
"checkbox is selected below."
|
10467 |
msgstr ""
|
10468 |
|
10469 |
-
#: includes/profile.php:120 includes/profile.php:
|
|
|
10470 |
msgid "Send the user an email about this change."
|
10471 |
msgstr ""
|
10472 |
|
10473 |
-
#: includes/profile.php:126 includes/profile.php:
|
|
|
10474 |
msgid "Cancel this user's subscription at the gateway."
|
10475 |
msgstr ""
|
10476 |
|
10477 |
-
#: includes/profile.php:140 includes/profile.php:
|
|
|
10478 |
msgid "TOS Consent History"
|
10479 |
msgstr ""
|
10480 |
|
10481 |
-
#: includes/profile.php:440 includes/profile.php:473
|
10482 |
msgid "Please enter a display name."
|
10483 |
msgstr ""
|
10484 |
|
10485 |
-
#: includes/profile.php:450 includes/profile.php:483
|
10486 |
msgid "Please enter an email address."
|
10487 |
msgstr ""
|
10488 |
|
10489 |
-
#: includes/profile.php:452 includes/profile.php:485
|
10490 |
msgid "The email address isn’t correct."
|
10491 |
msgstr ""
|
10492 |
|
10493 |
-
#: includes/profile.php:456 includes/profile.php:489
|
10494 |
msgid "This email is already registered, please choose another one."
|
10495 |
msgstr ""
|
10496 |
|
10497 |
-
#: includes/profile.php:474 includes/profile.php:507
|
10498 |
msgid "Your profile has been updated."
|
10499 |
msgstr ""
|
10500 |
|
10501 |
-
#: includes/profile.php:
|
10502 |
-
#: includes/profile.php:
|
10503 |
-
#: pages/billing.php:
|
10504 |
-
#: pages/billing.php:
|
10505 |
-
#: pages/billing.php:
|
10506 |
-
#: pages/billing.php:
|
10507 |
-
#: pages/billing.php:
|
10508 |
-
#: pages/checkout.php:
|
10509 |
-
#: pages/checkout.php:
|
10510 |
-
#: pages/checkout.php:
|
10511 |
-
#: pages/checkout.php:
|
|
|
10512 |
msgid "First Name"
|
10513 |
msgstr ""
|
10514 |
|
10515 |
-
#: includes/profile.php:
|
10516 |
-
#: includes/profile.php:
|
10517 |
-
#: pages/billing.php:
|
10518 |
-
#: pages/billing.php:
|
10519 |
-
#: pages/billing.php:
|
10520 |
-
#: pages/billing.php:
|
10521 |
-
#: pages/billing.php:
|
10522 |
-
#: pages/checkout.php:
|
10523 |
-
#: pages/checkout.php:
|
10524 |
-
#: pages/checkout.php:
|
10525 |
-
#: pages/checkout.php:
|
|
|
10526 |
msgid "Last Name"
|
10527 |
msgstr ""
|
10528 |
|
10529 |
-
#: includes/profile.php:492 includes/profile.php:533
|
10530 |
msgid "Display name publicly as"
|
10531 |
msgstr ""
|
10532 |
|
10533 |
-
#: includes/profile.php:528 includes/profile.php:566
|
10534 |
msgid "Update Profile"
|
10535 |
msgstr ""
|
10536 |
|
10537 |
-
#: includes/profile.php:584 includes/profile.php:622
|
10538 |
msgid "Please enter your current password."
|
10539 |
msgstr ""
|
10540 |
|
10541 |
-
#: includes/profile.php:588 includes/profile.php:626
|
10542 |
msgid "Your current password is incorrect."
|
10543 |
msgstr ""
|
10544 |
|
10545 |
-
#: includes/profile.php:599 includes/profile.php:637
|
10546 |
msgid "Your password has been updated."
|
10547 |
msgstr ""
|
10548 |
|
10549 |
-
#: includes/profile.php:
|
10550 |
-
#: pages/account.php:
|
10551 |
-
#: shortcodes/pmpro_account.php:
|
10552 |
-
#: shortcodes/pmpro_account.php:116
|
10553 |
msgid "Change Password"
|
10554 |
msgstr ""
|
10555 |
|
10556 |
-
#: includes/profile.php:629 includes/profile.php:667
|
10557 |
msgid "Current Password"
|
10558 |
msgstr ""
|
10559 |
|
10560 |
-
#: includes/profile.php:
|
10561 |
-
#: includes/profile.php:535 includes/profile.php:546 includes/profile.php:
|
|
|
10562 |
#: includes/profile.php:674 includes/profile.php:681
|
10563 |
msgid "Required Field"
|
10564 |
msgstr ""
|
10565 |
|
10566 |
-
#: includes/profile.php:634 includes/profile.php:672
|
10567 |
msgid "New Password"
|
10568 |
msgstr ""
|
10569 |
|
10570 |
-
#: includes/profile.php:641 includes/profile.php:679
|
10571 |
msgid "Confirm New Password"
|
10572 |
msgstr ""
|
10573 |
|
@@ -10624,7 +10795,7 @@ msgstr ""
|
|
10624 |
#: pages/billing.php:34 pages/billing.php:14 pages/billing.php:23
|
10625 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
10626 |
#: pages/billing.php:28 pages/billing.php:31 pages/billing.php:32
|
10627 |
-
#: pages/billing.php:33 pages/billing.php:389
|
10628 |
#, php-format
|
10629 |
msgid "Logged in as <strong>%s</strong>."
|
10630 |
msgstr ""
|
@@ -10632,7 +10803,7 @@ msgstr ""
|
|
10632 |
#: pages/billing.php:34 pages/billing.php:14 pages/billing.php:23
|
10633 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
10634 |
#: pages/billing.php:28 pages/billing.php:31 pages/billing.php:32
|
10635 |
-
#: pages/billing.php:33 pages/billing.php:389
|
10636 |
msgid "logout"
|
10637 |
msgstr ""
|
10638 |
|
@@ -10640,7 +10811,7 @@ msgstr ""
|
|
10640 |
#: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
|
10641 |
#: pages/billing.php:32 pages/billing.php:43 pages/billing.php:46
|
10642 |
#: pages/billing.php:47 pages/billing.php:51 pages/billing.php:52
|
10643 |
-
#: pages/billing.php:59
|
10644 |
msgid "Membership Fee"
|
10645 |
msgstr ""
|
10646 |
|
@@ -10648,7 +10819,7 @@ msgstr ""
|
|
10648 |
#: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
|
10649 |
#: pages/billing.php:36 pages/billing.php:47 pages/billing.php:50
|
10650 |
#: pages/billing.php:51 pages/billing.php:55 pages/billing.php:56
|
10651 |
-
#: pages/billing.php:63 pages/levels.php:70
|
10652 |
#, php-format
|
10653 |
msgid "%s every %d %s."
|
10654 |
msgstr ""
|
@@ -10657,7 +10828,7 @@ msgstr ""
|
|
10657 |
#: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
|
10658 |
#: pages/billing.php:38 pages/billing.php:49 pages/billing.php:52
|
10659 |
#: pages/billing.php:53 pages/billing.php:57 pages/billing.php:58
|
10660 |
-
#: pages/billing.php:65 pages/levels.php:66
|
10661 |
#, php-format
|
10662 |
msgid "%s per %s."
|
10663 |
msgstr ""
|
@@ -10667,20 +10838,22 @@ msgstr ""
|
|
10667 |
#: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
|
10668 |
#: pages/billing.php:59 pages/billing.php:62 pages/billing.php:63
|
10669 |
#: pages/billing.php:67 pages/billing.php:68 pages/billing.php:76
|
|
|
10670 |
msgid "Duration"
|
10671 |
msgstr ""
|
10672 |
|
10673 |
-
#: pages/billing.php:84 pages/confirmation.php:79 pages/invoice.php:
|
10674 |
-
#: pages/account.php:105 pages/account.php:109 pages/
|
10675 |
-
#: pages/confirmation.php:
|
10676 |
-
#: pages/confirmation.php:
|
10677 |
-
#: pages/confirmation.php:
|
10678 |
-
#: pages/invoice.php:
|
|
|
10679 |
msgid "Payment Method"
|
10680 |
msgstr ""
|
10681 |
|
10682 |
-
#: pages/billing.php:86 pages/confirmation.php:81 pages/invoice.php:
|
10683 |
-
#: pages/confirmation.php:79 pages/confirmation.php:80
|
10684 |
#: pages/confirmation.php:81 pages/confirmation.php:82
|
10685 |
#: pages/confirmation.php:83 pages/confirmation.php:88 pages/invoice.php:61
|
10686 |
#: pages/invoice.php:62 pages/invoice.php:63 pages/invoice.php:67
|
@@ -10689,13 +10862,14 @@ msgid "ending in"
|
|
10689 |
msgstr ""
|
10690 |
|
10691 |
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:133
|
10692 |
-
#: pages/invoice.php:
|
10693 |
-
#: pages/
|
10694 |
-
#: pages/confirmation.php:
|
10695 |
-
#: pages/confirmation.php:
|
10696 |
-
#: pages/confirmation.php:
|
10697 |
-
#: pages/
|
10698 |
-
#: pages/invoice.php:
|
|
|
10699 |
msgid "View Your Membership Account →"
|
10700 |
msgstr ""
|
10701 |
|
@@ -10703,18 +10877,18 @@ msgstr ""
|
|
10703 |
#: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
|
10704 |
#: pages/billing.php:57 pages/billing.php:77 pages/billing.php:80
|
10705 |
#: pages/billing.php:81 pages/billing.php:85 pages/billing.php:86
|
10706 |
-
#: pages/billing.php:94 pages/billing.php:100
|
10707 |
msgid ""
|
10708 |
"Your payment subscription is managed by PayPal. Please <a href=\"http://www."
|
10709 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
10710 |
msgstr ""
|
10711 |
|
10712 |
-
#: pages/billing.php:124
|
10713 |
msgid "Your billing information cannot be updated at this time."
|
10714 |
msgstr ""
|
10715 |
|
10716 |
#: pages/billing.php:148 pages/checkout.php:226 pages/confirmation.php:66
|
10717 |
-
#: pages/invoice.php:
|
10718 |
#: adminpages/memberslist.php:150 adminpages/memberslist.php:160
|
10719 |
#: adminpages/memberslist.php:170 adminpages/memberslist.php:174
|
10720 |
#: pages/account.php:90 pages/account.php:94 pages/billing.php:58
|
@@ -10722,15 +10896,15 @@ msgstr ""
|
|
10722 |
#: pages/billing.php:76 pages/billing.php:77 pages/billing.php:80
|
10723 |
#: pages/billing.php:100 pages/billing.php:103 pages/billing.php:104
|
10724 |
#: pages/billing.php:108 pages/billing.php:109 pages/billing.php:117
|
10725 |
-
#: pages/billing.php:126 pages/
|
10726 |
-
#: pages/checkout.php:
|
10727 |
-
#: pages/checkout.php:
|
10728 |
-
#: pages/checkout.php:
|
10729 |
-
#: pages/checkout.php:
|
10730 |
-
#: pages/confirmation.php:
|
10731 |
-
#: pages/confirmation.php:
|
10732 |
-
#: pages/confirmation.php:
|
10733 |
-
#: pages/invoice.php:48 pages/invoice.php:49
|
10734 |
msgid "Billing Address"
|
10735 |
msgstr ""
|
10736 |
|
@@ -10739,11 +10913,12 @@ msgstr ""
|
|
10739 |
#: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
|
10740 |
#: pages/billing.php:112 pages/billing.php:115 pages/billing.php:116
|
10741 |
#: pages/billing.php:118 pages/billing.php:120 pages/billing.php:121
|
10742 |
-
#: pages/billing.php:129 pages/billing.php:138 pages/
|
10743 |
-
#: pages/checkout.php:
|
10744 |
-
#: pages/checkout.php:
|
10745 |
-
#: pages/checkout.php:
|
10746 |
-
#: pages/checkout.php:
|
|
|
10747 |
msgid "Address 1"
|
10748 |
msgstr ""
|
10749 |
|
@@ -10752,11 +10927,12 @@ msgstr ""
|
|
10752 |
#: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
|
10753 |
#: pages/billing.php:116 pages/billing.php:119 pages/billing.php:120
|
10754 |
#: pages/billing.php:122 pages/billing.php:124 pages/billing.php:125
|
10755 |
-
#: pages/billing.php:133 pages/billing.php:142 pages/
|
10756 |
-
#: pages/checkout.php:
|
10757 |
-
#: pages/checkout.php:
|
10758 |
-
#: pages/checkout.php:
|
10759 |
-
#: pages/checkout.php:
|
|
|
10760 |
msgid "Address 2"
|
10761 |
msgstr ""
|
10762 |
|
@@ -10765,11 +10941,12 @@ msgstr ""
|
|
10765 |
#: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
|
10766 |
#: pages/billing.php:126 pages/billing.php:129 pages/billing.php:130
|
10767 |
#: pages/billing.php:132 pages/billing.php:134 pages/billing.php:135
|
10768 |
-
#: pages/billing.php:143 pages/billing.php:152 pages/
|
10769 |
-
#: pages/checkout.php:
|
10770 |
-
#: pages/checkout.php:
|
10771 |
-
#: pages/checkout.php:
|
10772 |
-
#: pages/checkout.php:
|
|
|
10773 |
msgid "City"
|
10774 |
msgstr ""
|
10775 |
|
@@ -10778,11 +10955,12 @@ msgstr ""
|
|
10778 |
#: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
|
10779 |
#: pages/billing.php:130 pages/billing.php:133 pages/billing.php:134
|
10780 |
#: pages/billing.php:136 pages/billing.php:138 pages/billing.php:139
|
10781 |
-
#: pages/billing.php:147 pages/billing.php:156 pages/
|
10782 |
-
#: pages/checkout.php:
|
10783 |
-
#: pages/checkout.php:
|
10784 |
-
#: pages/checkout.php:
|
10785 |
-
#: pages/checkout.php:
|
|
|
10786 |
msgid "State"
|
10787 |
msgstr ""
|
10788 |
|
@@ -10791,11 +10969,12 @@ msgstr ""
|
|
10791 |
#: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
|
10792 |
#: pages/billing.php:134 pages/billing.php:137 pages/billing.php:138
|
10793 |
#: pages/billing.php:140 pages/billing.php:142 pages/billing.php:143
|
10794 |
-
#: pages/billing.php:151 pages/billing.php:160 pages/
|
10795 |
-
#: pages/checkout.php:
|
10796 |
-
#: pages/checkout.php:
|
10797 |
-
#: pages/checkout.php:
|
10798 |
-
#: pages/checkout.php:
|
|
|
10799 |
msgid "Postal Code"
|
10800 |
msgstr ""
|
10801 |
|
@@ -10804,11 +10983,12 @@ msgstr ""
|
|
10804 |
#: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
|
10805 |
#: pages/billing.php:143 pages/billing.php:146 pages/billing.php:147
|
10806 |
#: pages/billing.php:149 pages/billing.php:151 pages/billing.php:152
|
10807 |
-
#: pages/billing.php:160 pages/billing.php:169 pages/
|
10808 |
-
#: pages/checkout.php:
|
10809 |
-
#: pages/checkout.php:
|
10810 |
-
#: pages/checkout.php:
|
10811 |
-
#: pages/checkout.php:
|
|
|
10812 |
msgid "City, State Zip"
|
10813 |
msgstr ""
|
10814 |
|
@@ -10817,11 +10997,12 @@ msgstr ""
|
|
10817 |
#: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
|
10818 |
#: pages/billing.php:196 pages/billing.php:199 pages/billing.php:200
|
10819 |
#: pages/billing.php:202 pages/billing.php:204 pages/billing.php:205
|
10820 |
-
#: pages/billing.php:213 pages/billing.php:222 pages/
|
10821 |
-
#: pages/checkout.php:
|
10822 |
-
#: pages/checkout.php:
|
10823 |
-
#: pages/checkout.php:
|
10824 |
-
#: pages/checkout.php:
|
|
|
10825 |
msgid "Country"
|
10826 |
msgstr ""
|
10827 |
|
@@ -10830,11 +11011,12 @@ msgstr ""
|
|
10830 |
#: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
|
10831 |
#: pages/billing.php:221 pages/billing.php:224 pages/billing.php:225
|
10832 |
#: pages/billing.php:227 pages/billing.php:229 pages/billing.php:230
|
10833 |
-
#: pages/billing.php:238 pages/billing.php:247 pages/
|
10834 |
-
#: pages/checkout.php:
|
10835 |
-
#: pages/checkout.php:
|
10836 |
-
#: pages/checkout.php:
|
10837 |
-
#: pages/checkout.php:
|
|
|
10838 |
msgid "Phone"
|
10839 |
msgstr ""
|
10840 |
|
@@ -10844,14 +11026,15 @@ msgstr ""
|
|
10844 |
#: pages/billing.php:215 pages/billing.php:232 pages/billing.php:235
|
10845 |
#: pages/billing.php:236 pages/billing.php:238 pages/billing.php:240
|
10846 |
#: pages/billing.php:241 pages/billing.php:249 pages/billing.php:258
|
10847 |
-
#: pages/
|
10848 |
-
#: pages/checkout.php:
|
10849 |
-
#: pages/checkout.php:
|
10850 |
-
#: pages/checkout.php:
|
10851 |
-
#: pages/checkout.php:
|
10852 |
-
#: pages/checkout.php:
|
10853 |
-
#: pages/checkout.php:
|
10854 |
-
#: pages/checkout.php:
|
|
|
10855 |
msgid "Email Address"
|
10856 |
msgstr ""
|
10857 |
|
@@ -10860,11 +11043,12 @@ msgstr ""
|
|
10860 |
#: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
|
10861 |
#: pages/billing.php:236 pages/billing.php:239 pages/billing.php:240
|
10862 |
#: pages/billing.php:242 pages/billing.php:244 pages/billing.php:245
|
10863 |
-
#: pages/billing.php:253 pages/billing.php:262 pages/
|
10864 |
-
#: pages/checkout.php:
|
10865 |
-
#: pages/checkout.php:
|
10866 |
-
#: pages/checkout.php:
|
10867 |
-
#: pages/checkout.php:
|
|
|
10868 |
msgid "Confirm Email"
|
10869 |
msgstr ""
|
10870 |
|
@@ -10873,7 +11057,7 @@ msgstr ""
|
|
10873 |
#: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
|
10874 |
#: pages/billing.php:259 pages/billing.php:262 pages/billing.php:263
|
10875 |
#: pages/billing.php:267 pages/billing.php:268 pages/billing.php:270
|
10876 |
-
#: pages/billing.php:276 pages/billing.php:285
|
10877 |
msgid "Credit Card Information"
|
10878 |
msgstr ""
|
10879 |
|
@@ -10882,28 +11066,28 @@ msgstr ""
|
|
10882 |
#: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
|
10883 |
#: pages/billing.php:260 pages/billing.php:263 pages/billing.php:264
|
10884 |
#: pages/billing.php:268 pages/billing.php:269 pages/billing.php:271
|
10885 |
-
#: pages/billing.php:277 pages/billing.php:286
|
10886 |
#, php-format
|
10887 |
msgid "We accept %s"
|
10888 |
msgstr ""
|
10889 |
|
10890 |
#: pages/billing.php:446 shortcodes/pmpro_account.php:68 pages/billing.php:410
|
10891 |
#: pages/billing.php:412 pages/billing.php:418 pages/billing.php:422
|
10892 |
-
#: shortcodes/pmpro_account.php:68
|
10893 |
#, php-format
|
10894 |
msgid "Your membership is not active. <a href='%s'>Renew now.</a>"
|
10895 |
msgstr ""
|
10896 |
|
10897 |
#: pages/billing.php:449 shortcodes/pmpro_account.php:71 pages/billing.php:407
|
10898 |
#: pages/billing.php:409 pages/billing.php:415 pages/billing.php:425
|
10899 |
-
#: shortcodes/pmpro_account.php:71
|
10900 |
#, php-format
|
10901 |
msgid "You do not have an active membership. <a href='%s'>Register here.</a>"
|
10902 |
msgstr ""
|
10903 |
|
10904 |
#: pages/billing.php:452 shortcodes/pmpro_account.php:74 pages/billing.php:404
|
10905 |
#: pages/billing.php:406 pages/billing.php:412 pages/billing.php:428
|
10906 |
-
#: shortcodes/pmpro_account.php:74
|
10907 |
#, php-format
|
10908 |
msgid ""
|
10909 |
"You do not have an active membership. <a href='%s'>Choose a membership level."
|
@@ -10916,7 +11100,7 @@ msgstr ""
|
|
10916 |
#: pages/billing.php:380 pages/billing.php:381 pages/billing.php:385
|
10917 |
#: pages/billing.php:387 pages/billing.php:408 pages/billing.php:413
|
10918 |
#: pages/billing.php:415 pages/billing.php:417 pages/billing.php:421
|
10919 |
-
#: pages/billing.php:422 pages/billing.php:431
|
10920 |
msgid ""
|
10921 |
"This subscription is not recurring. So you don't need to update your billing "
|
10922 |
"information."
|
@@ -10980,7 +11164,7 @@ msgstr ""
|
|
10980 |
msgid "You have selected the <strong>%s</strong> membership level."
|
10981 |
msgstr ""
|
10982 |
|
10983 |
-
#: pages/checkout.php:69
|
10984 |
msgid "<p class=\""
|
10985 |
msgstr ""
|
10986 |
|
@@ -11085,7 +11269,7 @@ msgstr ""
|
|
11085 |
msgid "Security Code (CVC)"
|
11086 |
msgstr ""
|
11087 |
|
11088 |
-
#: pages/checkout.php:
|
11089 |
#: pages/checkout.php:459 pages/checkout.php:567 pages/checkout.php:575
|
11090 |
#: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
|
11091 |
#: pages/checkout.php:681 pages/checkout.php:686 pages/checkout.php:690
|
@@ -11095,7 +11279,7 @@ msgstr ""
|
|
11095 |
msgid "I agree to the %s"
|
11096 |
msgstr ""
|
11097 |
|
11098 |
-
#: pages/checkout.php:
|
11099 |
#: pages/checkout.php:594 pages/checkout.php:667 pages/checkout.php:674
|
11100 |
#: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
|
11101 |
#: pages/checkout.php:701 pages/checkout.php:706 pages/checkout.php:710
|
@@ -11104,7 +11288,7 @@ msgstr ""
|
|
11104 |
msgid "Complete Payment"
|
11105 |
msgstr ""
|
11106 |
|
11107 |
-
#: pages/checkout.php:
|
11108 |
#: pages/checkout.php:616 pages/checkout.php:687 pages/checkout.php:694
|
11109 |
#: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
|
11110 |
#: pages/checkout.php:723 pages/checkout.php:728 pages/checkout.php:732
|
@@ -11162,14 +11346,14 @@ msgstr ""
|
|
11162 |
msgid "Account"
|
11163 |
msgstr ""
|
11164 |
|
11165 |
-
#: pages/confirmation.php:55 pages/
|
11166 |
-
#: pages/
|
11167 |
#: pages/confirmation.php:54 pages/confirmation.php:55 pages/invoice.php:29
|
11168 |
#: pages/invoice.php:30 pages/invoice.php:31
|
11169 |
msgid "Membership Expires"
|
11170 |
msgstr ""
|
11171 |
|
11172 |
-
#: pages/confirmation.php:90 pages/invoice.php:
|
11173 |
#: pages/confirmation.php:61 pages/confirmation.php:63
|
11174 |
#: pages/confirmation.php:65 pages/confirmation.php:71
|
11175 |
#: pages/confirmation.php:87 pages/confirmation.php:88
|
@@ -11181,7 +11365,7 @@ msgstr ""
|
|
11181 |
msgid "Total Billed"
|
11182 |
msgstr ""
|
11183 |
|
11184 |
-
#: pages/confirmation.php:96 pages/invoice.php:
|
11185 |
#: pages/confirmation.php:94 pages/confirmation.php:96 pages/invoice.php:75
|
11186 |
#: pages/invoice.php:76 pages/invoice.php:77 pages/invoice.php:78
|
11187 |
#: pages/invoice.php:80 pages/invoice.php:82
|
@@ -11203,7 +11387,7 @@ msgstr ""
|
|
11203 |
#: pages/confirmation.php:113 pages/confirmation.php:116
|
11204 |
#: pages/confirmation.php:123 pages/confirmation.php:124
|
11205 |
#: pages/confirmation.php:126 shortcodes/pmpro_account.php:151
|
11206 |
-
#: shortcodes/pmpro_account.php:227
|
11207 |
msgid "Pending"
|
11208 |
msgstr ""
|
11209 |
|
@@ -11217,23 +11401,19 @@ msgid ""
|
|
11217 |
"site owner."
|
11218 |
msgstr ""
|
11219 |
|
11220 |
-
#: pages/invoice.php:
|
11221 |
-
msgid "Success"
|
11222 |
-
msgstr ""
|
11223 |
-
|
11224 |
-
#: pages/invoice.php:103 pages/invoice.php:88 pages/invoice.php:100
|
11225 |
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:103
|
11226 |
#: pages/invoice.php:106 pages/invoice.php:108
|
11227 |
msgid "Invoice #"
|
11228 |
msgstr ""
|
11229 |
|
11230 |
-
#: pages/invoice.php:
|
11231 |
#: pages/invoice.php:127 pages/invoice.php:128 pages/invoice.php:129
|
11232 |
#: pages/invoice.php:132 pages/invoice.php:134
|
11233 |
msgid "No invoices found."
|
11234 |
msgstr ""
|
11235 |
|
11236 |
-
#: pages/invoice.php:
|
11237 |
#: pages/invoice.php:138 pages/invoice.php:139 pages/invoice.php:140
|
11238 |
#: pages/invoice.php:143 pages/invoice.php:145
|
11239 |
msgid "← View All Invoices"
|
@@ -11340,63 +11520,65 @@ msgstr ""
|
|
11340 |
#: preheaders/billing.php:162 preheaders/checkout.php:336
|
11341 |
#: preheaders/billing.php:145 preheaders/billing.php:147
|
11342 |
#: preheaders/billing.php:151 preheaders/billing.php:153
|
11343 |
-
#: preheaders/billing.php:158 preheaders/billing.php:
|
11344 |
-
#: preheaders/billing.php:
|
11345 |
-
#: preheaders/billing.php:
|
11346 |
-
#: preheaders/billing.php:
|
11347 |
-
#: preheaders/checkout.php:
|
11348 |
-
#: preheaders/checkout.php:
|
11349 |
-
#: preheaders/checkout.php:
|
11350 |
-
#: preheaders/checkout.php:
|
11351 |
-
#: preheaders/checkout.php:482
|
11352 |
msgid "Please complete all required fields."
|
11353 |
msgstr ""
|
11354 |
|
11355 |
#: preheaders/billing.php:165 preheaders/checkout.php:344
|
11356 |
#: preheaders/billing.php:148 preheaders/billing.php:150
|
11357 |
#: preheaders/billing.php:154 preheaders/billing.php:156
|
11358 |
-
#: preheaders/billing.php:161 preheaders/billing.php:
|
11359 |
-
#: preheaders/billing.php:
|
11360 |
-
#: preheaders/billing.php:
|
11361 |
-
#: preheaders/billing.php:
|
11362 |
-
#: preheaders/checkout.php:
|
11363 |
-
#: preheaders/checkout.php:
|
11364 |
-
#: preheaders/checkout.php:
|
11365 |
-
#: preheaders/checkout.php:
|
11366 |
-
#: preheaders/checkout.php:492
|
11367 |
msgid "Your email addresses do not match. Please try again."
|
11368 |
msgstr ""
|
11369 |
|
11370 |
#: preheaders/billing.php:168 preheaders/checkout.php:349
|
11371 |
#: preheaders/billing.php:151 preheaders/billing.php:153
|
11372 |
#: preheaders/billing.php:157 preheaders/billing.php:159
|
11373 |
-
#: preheaders/billing.php:164 preheaders/billing.php:
|
11374 |
-
#: preheaders/billing.php:
|
11375 |
-
#: preheaders/billing.php:
|
11376 |
-
#: preheaders/billing.php:
|
11377 |
-
#: preheaders/checkout.php:
|
11378 |
-
#: preheaders/checkout.php:
|
11379 |
-
#: preheaders/checkout.php:
|
11380 |
-
#: preheaders/checkout.php:
|
11381 |
-
#: preheaders/checkout.php:498
|
11382 |
msgid "The email address entered is in an invalid format. Please try again."
|
11383 |
msgstr ""
|
11384 |
|
11385 |
#: preheaders/billing.php:172 preheaders/billing.php:155
|
11386 |
#: preheaders/billing.php:157 preheaders/billing.php:161
|
11387 |
#: preheaders/billing.php:163 preheaders/billing.php:168
|
11388 |
-
#: preheaders/billing.php:
|
11389 |
-
#: preheaders/billing.php:
|
11390 |
-
#: preheaders/billing.php:
|
|
|
11391 |
msgid "All good!"
|
11392 |
msgstr ""
|
11393 |
|
11394 |
#: preheaders/billing.php:239 preheaders/billing.php:222
|
11395 |
#: preheaders/billing.php:224 preheaders/billing.php:228
|
11396 |
#: preheaders/billing.php:230 preheaders/billing.php:235
|
11397 |
-
#: preheaders/billing.php:
|
11398 |
-
#: preheaders/billing.php:
|
11399 |
-
#: preheaders/billing.php:
|
|
|
11400 |
#, php-format
|
11401 |
msgid "Information updated. <a href=\"%s\">« back to my account</a>"
|
11402 |
msgstr ""
|
@@ -11404,10 +11586,10 @@ msgstr ""
|
|
11404 |
#: preheaders/billing.php:245 preheaders/billing.php:228
|
11405 |
#: preheaders/billing.php:230 preheaders/billing.php:234
|
11406 |
#: preheaders/billing.php:236 preheaders/billing.php:241
|
11407 |
-
#: preheaders/billing.php:
|
11408 |
-
#: preheaders/billing.php:
|
11409 |
-
#: preheaders/billing.php:
|
11410 |
-
#: preheaders/billing.php:380
|
11411 |
msgid "Error updating billing information."
|
11412 |
msgstr ""
|
11413 |
|
@@ -11678,7 +11860,7 @@ msgstr ""
|
|
11678 |
#: shortcodes/pmpro_account.php:145 pages/account.php:64
|
11679 |
#: shortcodes/pmpro_account.php:90 shortcodes/pmpro_account.php:92
|
11680 |
#: shortcodes/pmpro_account.php:93 shortcodes/pmpro_account.php:95
|
11681 |
-
#: shortcodes/pmpro_account.php:144
|
11682 |
msgid "View all Membership Options"
|
11683 |
msgstr ""
|
11684 |
|
@@ -11686,6 +11868,7 @@ msgstr ""
|
|
11686 |
#: pages/account.php:71 shortcodes/pmpro_account.php:99
|
11687 |
#: shortcodes/pmpro_account.php:101 shortcodes/pmpro_account.php:102
|
11688 |
#: shortcodes/pmpro_account.php:104 shortcodes/pmpro_account.php:153
|
|
|
11689 |
msgid "My Account"
|
11690 |
msgstr ""
|
11691 |
|
@@ -11693,18 +11876,19 @@ msgstr ""
|
|
11693 |
#: pages/account.php:129 shortcodes/pmpro_account.php:118
|
11694 |
#: shortcodes/pmpro_account.php:120 shortcodes/pmpro_account.php:121
|
11695 |
#: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:199
|
|
|
11696 |
msgid "Past Invoices"
|
11697 |
msgstr ""
|
11698 |
|
11699 |
#: shortcodes/pmpro_account.php:212 pages/account.php:93
|
11700 |
#: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:126
|
11701 |
#: shortcodes/pmpro_account.php:127 shortcodes/pmpro_account.php:129
|
11702 |
-
#: shortcodes/pmpro_account.php:205
|
11703 |
msgid "Amount"
|
11704 |
msgstr ""
|
11705 |
|
11706 |
#: shortcodes/pmpro_account.php:236 shortcodes/pmpro_account.php:153
|
11707 |
-
#: shortcodes/pmpro_account.php:229
|
11708 |
msgid "Refunded"
|
11709 |
msgstr ""
|
11710 |
|
@@ -11712,7 +11896,7 @@ msgstr ""
|
|
11712 |
#: pages/account.php:144 shortcodes/pmpro_account.php:152
|
11713 |
#: shortcodes/pmpro_account.php:154 shortcodes/pmpro_account.php:155
|
11714 |
#: shortcodes/pmpro_account.php:157 shortcodes/pmpro_account.php:168
|
11715 |
-
#: shortcodes/pmpro_account.php:244
|
11716 |
msgid "View All Invoices"
|
11717 |
msgstr ""
|
11718 |
|
@@ -11720,7 +11904,7 @@ msgstr ""
|
|
11720 |
#: pages/account.php:150 shortcodes/pmpro_account.php:159
|
11721 |
#: shortcodes/pmpro_account.php:161 shortcodes/pmpro_account.php:162
|
11722 |
#: shortcodes/pmpro_account.php:164 shortcodes/pmpro_account.php:175
|
11723 |
-
#: shortcodes/pmpro_account.php:251
|
11724 |
msgid "Member Links"
|
11725 |
msgstr ""
|
11726 |
|
@@ -12018,23 +12202,23 @@ msgid ""
|
|
12018 |
"still get an email confirmation from PMPro after checkout.)"
|
12019 |
msgstr ""
|
12020 |
|
12021 |
-
#: adminpages/license.php:47
|
12022 |
msgid ""
|
12023 |
"Enter your support license key.</strong> Your license key can be found in "
|
12024 |
"your membership email receipt or in your <a href=\"https://www."
|
12025 |
-
"paidmembershipspro.com/
|
12026 |
-
"%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign"
|
12027 |
"%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership "
|
12028 |
"Account</a>."
|
12029 |
msgstr ""
|
12030 |
|
12031 |
-
#: adminpages/license.php:49
|
12032 |
msgid ""
|
12033 |
-
"Visit the PMPro <a href=\"https://www.paidmembershipspro.com/
|
12034 |
-
"redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin
|
12035 |
-
"%3Dpmpro-license%26utm_campaign%3Dmembership-account
|
12036 |
-
"valid\" target=\"_blank\">Membership Account</a>
|
12037 |
-
"account is active and to find your license key."
|
12038 |
msgstr ""
|
12039 |
|
12040 |
#: adminpages/membershiplevels.php:364
|
@@ -13236,6 +13420,10 @@ msgid ""
|
|
13236 |
"been sent to %s."
|
13237 |
msgstr ""
|
13238 |
|
|
|
|
|
|
|
|
|
13239 |
#: pages/invoice.php:29
|
13240 |
msgid "success"
|
13241 |
msgstr ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: paid-memberships-pro\n"
|
8 |
"Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
|
9 |
+
"POT-Creation-Date: 2020-08-11 05:46+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"
|
222 |
#: adminpages/orders.php:1439 adminpages/orders.php:1440
|
223 |
#: adminpages/orders.php:1445 adminpages/orders.php:1455
|
224 |
#: adminpages/orders.php:1462 adminpages/orders.php:1472
|
225 |
+
#: includes/profile.php:155 includes/profile.php:186 includes/profile.php:191
|
226 |
#: shortcodes/pmpro_account.php:145 shortcodes/pmpro_account.php:146
|
227 |
#: shortcodes/pmpro_account.php:148 shortcodes/pmpro_account.php:158
|
228 |
+
#: shortcodes/pmpro_account.php:234 shortcodes/pmpro_account.php:241
|
229 |
msgid "N/A"
|
230 |
msgstr ""
|
231 |
|
361 |
#: classes/gateways/class.pmprogateway_stripe.php:66
|
362 |
#: classes/gateways/class.pmprogateway_stripe.php:68
|
363 |
#: classes/gateways/class.pmprogateway_stripe.php:71
|
364 |
+
#: classes/gateways/class.pmprogateway_stripe.php:73
|
365 |
#, php-format
|
366 |
msgid ""
|
367 |
"The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to "
|
588 |
msgid "Payment Gateway & SSL Settings"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: adminpages/admin_header.php:251 includes/profile.php:502
|
592 |
#: shortcodes/pmpro_account.php:161 adminpages/admin_header.php:131
|
593 |
#: adminpages/admin_header.php:152 adminpages/admin_header.php:162
|
594 |
#: adminpages/admin_header.php:171 adminpages/admin_header.php:183
|
601 |
#: adminpages/orders.php:376 adminpages/orders.php:1345
|
602 |
#: adminpages/orders.php:1350 adminpages/orders.php:1351
|
603 |
#: adminpages/orders.php:1360 adminpages/orders.php:1365
|
604 |
+
#: includes/profile.php:493 includes/profile.php:539 pages/account.php:52
|
605 |
+
#: pages/account.php:56 pages/account.php:77 shortcodes/pmpro_account.php:106
|
606 |
#: shortcodes/pmpro_account.php:108 shortcodes/pmpro_account.php:109
|
607 |
#: shortcodes/pmpro_account.php:111 shortcodes/pmpro_account.php:160
|
608 |
+
#: shortcodes/pmpro_account.php:161
|
609 |
msgid "Email"
|
610 |
msgstr ""
|
611 |
|
665 |
#: adminpages/advancedsettings.php:42 adminpages/advancedsettings.php:43
|
666 |
#: adminpages/advancedsettings.php:46 adminpages/advancedsettings.php:60
|
667 |
#: adminpages/advancedsettings.php:61 adminpages/advancedsettings.php:62
|
668 |
+
#: adminpages/advancedsettings.php:67 adminpages/advancedsettings.php:68
|
669 |
msgid "Your advanced settings have been updated."
|
670 |
msgstr ""
|
671 |
|
672 |
#: adminpages/advancedsettings.php:106 includes/updates/upgrade_1.php:7
|
673 |
+
#: adminpages/advancedsettings.php:104 adminpages/advancedsettings.php:106
|
674 |
+
#: includes/updates/upgrade_1.php:7
|
675 |
#, php-format
|
676 |
msgid ""
|
677 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Join Now</a>"
|
678 |
msgstr ""
|
679 |
|
680 |
#: adminpages/advancedsettings.php:111 adminpages/advancedsettings.php:109
|
681 |
+
#: adminpages/advancedsettings.php:111
|
682 |
#, php-format
|
683 |
msgid ""
|
684 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
|
689 |
#: adminpages/advancedsettings.php:76 adminpages/advancedsettings.php:78
|
690 |
#: adminpages/advancedsettings.php:81 adminpages/advancedsettings.php:95
|
691 |
#: adminpages/advancedsettings.php:97 adminpages/advancedsettings.php:99
|
692 |
+
#: adminpages/advancedsettings.php:114 adminpages/advancedsettings.php:116
|
693 |
+
#: includes/updates/upgrade_1.php:13
|
694 |
msgid ""
|
695 |
"This content is for members only. Visit the site and log in/register to read."
|
696 |
msgstr ""
|
697 |
|
698 |
#: adminpages/advancedsettings.php:140 adminpages/advancedsettings.php:138
|
699 |
+
#: adminpages/advancedsettings.php:140
|
700 |
msgid "WordPress Dashboard"
|
701 |
msgstr ""
|
702 |
|
703 |
#: adminpages/advancedsettings.php:143 adminpages/advancedsettings.php:141
|
704 |
+
#: adminpages/advancedsettings.php:143
|
705 |
msgid "Block all users with the Subscriber role from accessing the Dashboard."
|
706 |
msgstr ""
|
707 |
|
708 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:146
|
709 |
+
#: adminpages/advancedsettings.php:148
|
710 |
msgid "WordPress Toolbar"
|
711 |
msgstr ""
|
712 |
|
713 |
#: adminpages/advancedsettings.php:151 adminpages/advancedsettings.php:149
|
714 |
+
#: adminpages/advancedsettings.php:151
|
715 |
msgid "Hide the Toolbar from all users with the Subscriber role."
|
716 |
msgstr ""
|
717 |
|
719 |
#: adminpages/advancedsettings.php:92 adminpages/advancedsettings.php:94
|
720 |
#: adminpages/advancedsettings.php:97 adminpages/advancedsettings.php:113
|
721 |
#: adminpages/advancedsettings.php:115 adminpages/advancedsettings.php:118
|
722 |
+
#: adminpages/advancedsettings.php:162 adminpages/advancedsettings.php:164
|
723 |
msgid "Message for Logged-in Non-members"
|
724 |
msgstr ""
|
725 |
|
727 |
#: adminpages/advancedsettings.php:96 adminpages/advancedsettings.php:98
|
728 |
#: adminpages/advancedsettings.php:101 adminpages/advancedsettings.php:117
|
729 |
#: adminpages/advancedsettings.php:119 adminpages/advancedsettings.php:122
|
730 |
+
#: adminpages/advancedsettings.php:166 adminpages/advancedsettings.php:168
|
731 |
msgid ""
|
732 |
"This message replaces the post content for non-members. Available variables"
|
733 |
msgstr ""
|
736 |
#: adminpages/advancedsettings.php:101 adminpages/advancedsettings.php:103
|
737 |
#: adminpages/advancedsettings.php:106 adminpages/advancedsettings.php:122
|
738 |
#: adminpages/advancedsettings.php:124 adminpages/advancedsettings.php:127
|
739 |
+
#: adminpages/advancedsettings.php:171 adminpages/advancedsettings.php:173
|
740 |
msgid "Message for Logged-out Users"
|
741 |
msgstr ""
|
742 |
|
743 |
#: adminpages/advancedsettings.php:177 adminpages/advancedsettings.php:186
|
744 |
+
#: adminpages/advancedsettings.php:175 adminpages/advancedsettings.php:177
|
745 |
+
#: adminpages/advancedsettings.php:184 adminpages/advancedsettings.php:186
|
746 |
msgid "Available variables"
|
747 |
msgstr ""
|
748 |
|
750 |
#: adminpages/advancedsettings.php:105 adminpages/advancedsettings.php:107
|
751 |
#: adminpages/advancedsettings.php:110 adminpages/advancedsettings.php:126
|
752 |
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:131
|
753 |
+
#: adminpages/advancedsettings.php:175 adminpages/advancedsettings.php:177
|
754 |
msgid "This message replaces the post content for logged-out visitors."
|
755 |
msgstr ""
|
756 |
|
758 |
#: adminpages/advancedsettings.php:110 adminpages/advancedsettings.php:112
|
759 |
#: adminpages/advancedsettings.php:115 adminpages/advancedsettings.php:131
|
760 |
#: adminpages/advancedsettings.php:133 adminpages/advancedsettings.php:136
|
761 |
+
#: adminpages/advancedsettings.php:180 adminpages/advancedsettings.php:182
|
762 |
msgid "Message for RSS Feed"
|
763 |
msgstr ""
|
764 |
|
766 |
#: adminpages/advancedsettings.php:114 adminpages/advancedsettings.php:116
|
767 |
#: adminpages/advancedsettings.php:119 adminpages/advancedsettings.php:135
|
768 |
#: adminpages/advancedsettings.php:137 adminpages/advancedsettings.php:140
|
769 |
+
#: adminpages/advancedsettings.php:184 adminpages/advancedsettings.php:186
|
770 |
msgid "This message replaces the post content in RSS feeds."
|
771 |
msgstr ""
|
772 |
|
774 |
#: adminpages/advancedsettings.php:125 adminpages/advancedsettings.php:141
|
775 |
#: adminpages/advancedsettings.php:143 adminpages/advancedsettings.php:148
|
776 |
#: adminpages/advancedsettings.php:151 adminpages/advancedsettings.php:197
|
777 |
+
#: adminpages/advancedsettings.php:199
|
778 |
msgid "Filter searches and archives?"
|
779 |
msgstr ""
|
780 |
|
782 |
#: adminpages/advancedsettings.php:129 adminpages/advancedsettings.php:145
|
783 |
#: adminpages/advancedsettings.php:147 adminpages/advancedsettings.php:152
|
784 |
#: adminpages/advancedsettings.php:155 adminpages/advancedsettings.php:201
|
785 |
+
#: adminpages/advancedsettings.php:203
|
786 |
msgid ""
|
787 |
"No - Non-members will see restricted posts/pages in searches and archives."
|
788 |
msgstr ""
|
791 |
#: adminpages/advancedsettings.php:130 adminpages/advancedsettings.php:146
|
792 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:153
|
793 |
#: adminpages/advancedsettings.php:156 adminpages/advancedsettings.php:202
|
794 |
+
#: adminpages/advancedsettings.php:204
|
795 |
msgid ""
|
796 |
"Yes - Only members will see restricted posts/pages in searches and archives."
|
797 |
msgstr ""
|
801 |
#: adminpages/advancedsettings.php:136 adminpages/advancedsettings.php:152
|
802 |
#: adminpages/advancedsettings.php:154 adminpages/advancedsettings.php:159
|
803 |
#: adminpages/advancedsettings.php:162 adminpages/advancedsettings.php:208
|
804 |
+
#: adminpages/advancedsettings.php:210
|
805 |
msgid "Show Excerpts to Non-Members?"
|
806 |
msgstr ""
|
807 |
|
810 |
#: adminpages/advancedsettings.php:140 adminpages/advancedsettings.php:156
|
811 |
#: adminpages/advancedsettings.php:158 adminpages/advancedsettings.php:163
|
812 |
#: adminpages/advancedsettings.php:166 adminpages/advancedsettings.php:212
|
813 |
+
#: adminpages/advancedsettings.php:214
|
814 |
msgid "No - Hide excerpts."
|
815 |
msgstr ""
|
816 |
|
819 |
#: adminpages/advancedsettings.php:141 adminpages/advancedsettings.php:157
|
820 |
#: adminpages/advancedsettings.php:159 adminpages/advancedsettings.php:164
|
821 |
#: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:213
|
822 |
+
#: adminpages/advancedsettings.php:215
|
823 |
msgid "Yes - Show excerpts."
|
824 |
msgstr ""
|
825 |
|
826 |
#: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:218
|
827 |
#: adminpages/advancedsettings.php:225 adminpages/advancedsettings.php:227
|
828 |
+
#: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:238
|
829 |
+
#: adminpages/advancedsettings.php:241 adminpages/advancedsettings.php:257
|
830 |
+
#: adminpages/advancedsettings.php:266 adminpages/advancedsettings.php:290
|
831 |
+
#: adminpages/advancedsettings.php:308
|
832 |
msgid "Require Terms of Service on signups?"
|
833 |
msgstr ""
|
834 |
|
835 |
#: adminpages/advancedsettings.php:236 adminpages/advancedsettings.php:225
|
836 |
#: adminpages/advancedsettings.php:232 adminpages/advancedsettings.php:234
|
837 |
+
#: adminpages/advancedsettings.php:236 adminpages/advancedsettings.php:245
|
838 |
+
#: adminpages/advancedsettings.php:248 adminpages/advancedsettings.php:264
|
839 |
+
#: adminpages/advancedsettings.php:273 adminpages/advancedsettings.php:297
|
840 |
+
#: adminpages/advancedsettings.php:315
|
841 |
msgid ""
|
842 |
"If yes, create a WordPress page containing your TOS agreement and assign it "
|
843 |
"using the dropdown above."
|
848 |
#: adminpages/advancedsettings.php:202 adminpages/advancedsettings.php:215
|
849 |
#: adminpages/advancedsettings.php:218 adminpages/advancedsettings.php:234
|
850 |
#: adminpages/advancedsettings.php:236 adminpages/advancedsettings.php:239
|
851 |
+
#: adminpages/advancedsettings.php:241
|
852 |
msgid "Use reCAPTCHA?"
|
853 |
msgstr ""
|
854 |
|
869 |
#: adminpages/advancedsettings.php:225 adminpages/advancedsettings.php:226
|
870 |
#: adminpages/advancedsettings.php:228 adminpages/advancedsettings.php:238
|
871 |
#: adminpages/advancedsettings.php:240 adminpages/advancedsettings.php:243
|
872 |
+
#: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:282
|
873 |
+
#: adminpages/advancedsettings.php:300 adminpages/advancedsettings.php:335
|
874 |
+
#: adminpages/advancedsettings.php:337 adminpages/advancedsettings.php:392
|
875 |
+
#: adminpages/advancedsettings.php:393 adminpages/advancedsettings.php:471
|
876 |
#: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
|
877 |
#: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
|
878 |
#: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
|
886 |
#: adminpages/membershiplevels.php:818 adminpages/paymentsettings.php:210
|
887 |
#: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:236
|
888 |
#: adminpages/paymentsettings.php:253 adminpages/paymentsettings.php:256
|
889 |
+
#: adminpages/paymentsettings.php:257 adminpages/paymentsettings.php:259
|
890 |
+
#: adminpages/paymentsettings.php:414 adminpages/paymentsettings.php:429
|
891 |
+
#: adminpages/paymentsettings.php:434 adminpages/paymentsettings.php:436
|
892 |
+
#: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:459
|
893 |
+
#: adminpages/paymentsettings.php:461
|
894 |
#: classes/gateways/class.pmprogateway_stripe.php:173
|
895 |
#: classes/gateways/class.pmprogateway_stripe.php:174
|
896 |
#: classes/gateways/class.pmprogateway_stripe.php:184
|
909 |
#: classes/gateways/class.pmprogateway_stripe.php:319
|
910 |
#: classes/gateways/class.pmprogateway_stripe.php:320
|
911 |
#: classes/gateways/class.pmprogateway_stripe.php:321
|
912 |
+
#: classes/gateways/class.pmprogateway_stripe.php:393
|
913 |
#: includes/compatibility/beaver-builder.php:43
|
914 |
+
#: includes/compatibility/beaver-builder.php:137 includes/profile.php:89
|
915 |
+
#: includes/profile.php:101 includes/profile.php:105 includes/profile.php:110
|
916 |
+
#: includes/profile.php:117 includes/profile.php:120 includes/profile.php:121
|
917 |
+
#: includes/profile.php:123 includes/profile.php:125
|
918 |
msgid "No"
|
919 |
msgstr ""
|
920 |
|
923 |
#: adminpages/advancedsettings.php:207 adminpages/advancedsettings.php:220
|
924 |
#: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:239
|
925 |
#: adminpages/advancedsettings.php:241 adminpages/advancedsettings.php:244
|
926 |
+
#: adminpages/advancedsettings.php:246
|
927 |
msgid "Yes - Free memberships only."
|
928 |
msgstr ""
|
929 |
|
932 |
#: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:221
|
933 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:240
|
934 |
#: adminpages/advancedsettings.php:242 adminpages/advancedsettings.php:245
|
935 |
+
#: adminpages/advancedsettings.php:247
|
936 |
msgid "Yes - All memberships."
|
937 |
msgstr ""
|
938 |
|
941 |
#: adminpages/advancedsettings.php:210 adminpages/advancedsettings.php:223
|
942 |
#: adminpages/advancedsettings.php:226 adminpages/advancedsettings.php:242
|
943 |
#: adminpages/advancedsettings.php:244 adminpages/advancedsettings.php:247
|
944 |
+
#: adminpages/advancedsettings.php:249
|
945 |
msgid "A free reCAPTCHA key is required."
|
946 |
msgstr ""
|
947 |
|
950 |
#: adminpages/advancedsettings.php:210 adminpages/advancedsettings.php:223
|
951 |
#: adminpages/advancedsettings.php:226 adminpages/advancedsettings.php:242
|
952 |
#: adminpages/advancedsettings.php:244 adminpages/advancedsettings.php:247
|
953 |
+
#: adminpages/advancedsettings.php:249
|
954 |
msgid "Click here to signup for reCAPTCHA"
|
955 |
msgstr ""
|
956 |
|
957 |
#: adminpages/advancedsettings.php:257 adminpages/advancedsettings.php:192
|
958 |
#: adminpages/advancedsettings.php:195 adminpages/advancedsettings.php:250
|
959 |
+
#: adminpages/advancedsettings.php:255 adminpages/advancedsettings.php:257
|
960 |
msgid "reCAPTCHA Version"
|
961 |
msgstr ""
|
962 |
|
963 |
#: adminpages/advancedsettings.php:260 adminpages/advancedsettings.php:195
|
964 |
#: adminpages/advancedsettings.php:198 adminpages/advancedsettings.php:252
|
965 |
+
#: adminpages/advancedsettings.php:258 adminpages/advancedsettings.php:260
|
966 |
msgid " v2 - Checkbox"
|
967 |
msgstr ""
|
968 |
|
969 |
#: adminpages/advancedsettings.php:261 adminpages/advancedsettings.php:196
|
970 |
#: adminpages/advancedsettings.php:199 adminpages/advancedsettings.php:253
|
971 |
+
#: adminpages/advancedsettings.php:259 adminpages/advancedsettings.php:261
|
972 |
msgid "v3 - Invisible"
|
973 |
msgstr ""
|
974 |
|
975 |
#: adminpages/advancedsettings.php:263 adminpages/advancedsettings.php:198
|
976 |
#: adminpages/advancedsettings.php:201 adminpages/advancedsettings.php:255
|
977 |
+
#: adminpages/advancedsettings.php:261 adminpages/advancedsettings.php:263
|
978 |
msgid "Changing your version will require new API keys."
|
979 |
msgstr ""
|
980 |
|
981 |
#: adminpages/advancedsettings.php:267 adminpages/advancedsettings.php:202
|
982 |
#: adminpages/advancedsettings.php:205 adminpages/advancedsettings.php:248
|
983 |
#: adminpages/advancedsettings.php:257 adminpages/advancedsettings.php:265
|
984 |
+
#: adminpages/advancedsettings.php:267
|
985 |
msgid "reCAPTCHA Site Key"
|
986 |
msgstr ""
|
987 |
|
988 |
#: adminpages/advancedsettings.php:273 adminpages/advancedsettings.php:208
|
989 |
#: adminpages/advancedsettings.php:211 adminpages/advancedsettings.php:251
|
990 |
#: adminpages/advancedsettings.php:260 adminpages/advancedsettings.php:271
|
991 |
+
#: adminpages/advancedsettings.php:273
|
992 |
msgid "reCAPTCHA Secret Key"
|
993 |
msgstr ""
|
994 |
|
995 |
#: adminpages/advancedsettings.php:286 adminpages/advancedsettings.php:246
|
996 |
+
#: adminpages/advancedsettings.php:284 adminpages/advancedsettings.php:286
|
997 |
msgid "Notifications"
|
998 |
msgstr ""
|
999 |
|
1000 |
#: adminpages/advancedsettings.php:290 adminpages/advancedsettings.php:250
|
1001 |
+
#: adminpages/advancedsettings.php:288 adminpages/advancedsettings.php:290
|
1002 |
msgid "Show all notifications."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
#: adminpages/advancedsettings.php:293 adminpages/advancedsettings.php:253
|
1006 |
+
#: adminpages/advancedsettings.php:291 adminpages/advancedsettings.php:293
|
1007 |
msgid "Show only security notifications."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
#: adminpages/advancedsettings.php:297 adminpages/advancedsettings.php:257
|
1011 |
+
#: adminpages/advancedsettings.php:295 adminpages/advancedsettings.php:297
|
1012 |
msgid ""
|
1013 |
"Notifications are occasionally shown on the Paid Memberships Pro settings "
|
1014 |
"pages."
|
1015 |
msgstr ""
|
1016 |
|
1017 |
#: adminpages/advancedsettings.php:302 adminpages/advancedsettings.php:300
|
1018 |
+
#: adminpages/advancedsettings.php:302
|
1019 |
msgid "Activity Email Frequency"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:351
|
1023 |
#: adminpages/reports/sales.php:290 adminpages/advancedsettings.php:305
|
1024 |
+
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:258
|
1025 |
#: adminpages/reports/memberships.php:265
|
1026 |
#: adminpages/reports/memberships.php:278
|
1027 |
#: adminpages/reports/memberships.php:294
|
1035 |
msgstr ""
|
1036 |
|
1037 |
#: adminpages/advancedsettings.php:310 adminpages/advancedsettings.php:308
|
1038 |
+
#: adminpages/advancedsettings.php:310
|
1039 |
msgid "Weekly"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:352
|
1043 |
#: adminpages/reports/sales.php:291 adminpages/advancedsettings.php:311
|
1044 |
+
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:259
|
1045 |
#: adminpages/reports/memberships.php:266
|
1046 |
#: adminpages/reports/memberships.php:279
|
1047 |
#: adminpages/reports/memberships.php:295
|
1055 |
msgstr ""
|
1056 |
|
1057 |
#: adminpages/advancedsettings.php:316 includes/privacy.php:175
|
1058 |
+
#: adminpages/advancedsettings.php:314 adminpages/advancedsettings.php:316
|
1059 |
+
#: adminpages/memberslist.php:184 adminpages/memberslist.php:212
|
1060 |
+
#: includes/privacy.php:175
|
1061 |
msgid "Never"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
#: adminpages/advancedsettings.php:320 adminpages/advancedsettings.php:318
|
1065 |
+
#: adminpages/advancedsettings.php:320
|
1066 |
msgid ""
|
1067 |
"Send periodic sales and revenue updates from this site to the administration "
|
1068 |
"email address."
|
1072 |
#: adminpages/advancedsettings.php:147 adminpages/advancedsettings.php:163
|
1073 |
#: adminpages/advancedsettings.php:165 adminpages/advancedsettings.php:221
|
1074 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:331
|
1075 |
+
#: adminpages/advancedsettings.php:333
|
1076 |
msgid "Hide Ads From Members?"
|
1077 |
msgstr ""
|
1078 |
|
1081 |
#: adminpages/advancedsettings.php:152 adminpages/advancedsettings.php:168
|
1082 |
#: adminpages/advancedsettings.php:170 adminpages/advancedsettings.php:226
|
1083 |
#: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:336
|
1084 |
+
#: adminpages/advancedsettings.php:338
|
1085 |
msgid "Hide Ads From All Members"
|
1086 |
msgstr ""
|
1087 |
|
1090 |
#: adminpages/advancedsettings.php:153 adminpages/advancedsettings.php:169
|
1091 |
#: adminpages/advancedsettings.php:171 adminpages/advancedsettings.php:227
|
1092 |
#: adminpages/advancedsettings.php:230 adminpages/advancedsettings.php:337
|
1093 |
+
#: adminpages/advancedsettings.php:339
|
1094 |
msgid "Hide Ads From Certain Members"
|
1095 |
msgstr ""
|
1096 |
|
1099 |
#: adminpages/advancedsettings.php:161 adminpages/advancedsettings.php:177
|
1100 |
#: adminpages/advancedsettings.php:179 adminpages/advancedsettings.php:235
|
1101 |
#: adminpages/advancedsettings.php:238 adminpages/advancedsettings.php:345
|
1102 |
+
#: adminpages/advancedsettings.php:346
|
1103 |
msgid "To hide ads in your template code, use code like the following"
|
1104 |
msgstr ""
|
1105 |
|
1108 |
#: adminpages/advancedsettings.php:172 adminpages/advancedsettings.php:188
|
1109 |
#: adminpages/advancedsettings.php:190 adminpages/advancedsettings.php:244
|
1110 |
#: adminpages/advancedsettings.php:262 adminpages/advancedsettings.php:354
|
1111 |
+
#: adminpages/advancedsettings.php:355
|
1112 |
msgid "Choose Levels to Hide Ads From"
|
1113 |
msgstr ""
|
1114 |
|
1117 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1118 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
1119 |
#: adminpages/advancedsettings.php:296 adminpages/advancedsettings.php:388
|
1120 |
+
#: adminpages/advancedsettings.php:389
|
1121 |
msgid "Redirect all traffic from registration page to /susbcription/?"
|
1122 |
msgstr ""
|
1123 |
|
1126 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1127 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
1128 |
#: adminpages/advancedsettings.php:296 adminpages/advancedsettings.php:388
|
1129 |
+
#: adminpages/advancedsettings.php:389
|
1130 |
msgid "multisite only"
|
1131 |
msgstr ""
|
1132 |
|
1139 |
#: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:211
|
1140 |
#: adminpages/advancedsettings.php:227 adminpages/advancedsettings.php:229
|
1141 |
#: adminpages/advancedsettings.php:283 adminpages/advancedsettings.php:301
|
1142 |
+
#: adminpages/advancedsettings.php:393 adminpages/advancedsettings.php:394
|
1143 |
+
#: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
|
1144 |
+
#: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
|
1145 |
+
#: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
|
1146 |
+
#: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:662
|
1147 |
+
#: adminpages/membershiplevels.php:667 adminpages/membershiplevels.php:668
|
1148 |
+
#: adminpages/membershiplevels.php:672 adminpages/membershiplevels.php:684
|
1149 |
+
#: adminpages/membershiplevels.php:694 adminpages/membershiplevels.php:744
|
1150 |
+
#: adminpages/membershiplevels.php:746 adminpages/membershiplevels.php:779
|
1151 |
+
#: adminpages/membershiplevels.php:796 adminpages/membershiplevels.php:801
|
1152 |
+
#: adminpages/membershiplevels.php:806 adminpages/membershiplevels.php:811
|
1153 |
+
#: adminpages/membershiplevels.php:818 adminpages/paymentsettings.php:211
|
1154 |
+
#: adminpages/paymentsettings.php:220 adminpages/paymentsettings.php:237
|
1155 |
+
#: adminpages/paymentsettings.php:254 adminpages/paymentsettings.php:257
|
1156 |
+
#: adminpages/paymentsettings.php:258 adminpages/paymentsettings.php:260
|
1157 |
#: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
|
1158 |
#: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:435
|
1159 |
#: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:455
|
1176 |
#: classes/gateways/class.pmprogateway_stripe.php:321
|
1177 |
#: classes/gateways/class.pmprogateway_stripe.php:322
|
1178 |
#: classes/gateways/class.pmprogateway_stripe.php:323
|
1179 |
+
#: classes/gateways/class.pmprogateway_stripe.php:395
|
1180 |
#: includes/compatibility/beaver-builder.php:42
|
1181 |
+
#: includes/compatibility/beaver-builder.php:136 includes/profile.php:90
|
1182 |
+
#: includes/profile.php:102 includes/profile.php:106 includes/profile.php:111
|
1183 |
+
#: includes/profile.php:118 includes/profile.php:121 includes/profile.php:122
|
1184 |
+
#: includes/profile.php:124 includes/profile.php:126
|
1185 |
msgid "Yes"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: adminpages/advancedsettings.php:467 adminpages/advancedsettings.php:467
|
1189 |
msgid "Uninstall PMPro on deletion?"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: adminpages/advancedsettings.php:472 adminpages/advancedsettings.php:472
|
1193 |
msgid "Yes - Delete all PMPro Data."
|
1194 |
msgstr ""
|
1195 |
|
1199 |
#: adminpages/advancedsettings.php:368 adminpages/advancedsettings.php:375
|
1200 |
#: adminpages/advancedsettings.php:384 adminpages/advancedsettings.php:407
|
1201 |
#: adminpages/advancedsettings.php:427 adminpages/advancedsettings.php:507
|
1202 |
+
#: adminpages/advancedsettings.php:520 adminpages/pagesettings.php:209
|
1203 |
+
#: adminpages/pagesettings.php:223 adminpages/pagesettings.php:251
|
1204 |
+
#: adminpages/pagesettings.php:254 adminpages/pagesettings.php:294
|
1205 |
+
#: adminpages/pagesettings.php:295 adminpages/pagesettings.php:310
|
1206 |
+
#: adminpages/pagesettings.php:315 adminpages/pagesettings.php:329
|
1207 |
+
#: adminpages/pagesettings.php:331 adminpages/pagesettings.php:338
|
1208 |
+
#: adminpages/pagesettings.php:439 adminpages/paymentsettings.php:238
|
1209 |
+
#: adminpages/paymentsettings.php:250 adminpages/paymentsettings.php:267
|
1210 |
+
#: adminpages/paymentsettings.php:284 adminpages/paymentsettings.php:287
|
1211 |
+
#: adminpages/paymentsettings.php:288 adminpages/paymentsettings.php:290
|
1212 |
#: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:526
|
1213 |
#: adminpages/paymentsettings.php:532 adminpages/paymentsettings.php:534
|
1214 |
msgid "Save Settings"
|
1301 |
#: adminpages/dashboard.php:219 adminpages/reports/login.php:179
|
1302 |
#: classes/class.memberorder.php:870 pages/checkout.php:118
|
1303 |
#: shortcodes/pmpro_account.php:160 adminpages/dashboard.php:215
|
1304 |
+
#: adminpages/dashboard.php:219 adminpages/dashboard.php:223
|
1305 |
+
#: adminpages/memberslist.php:112 adminpages/memberslist.php:145
|
1306 |
+
#: adminpages/memberslist.php:155 adminpages/memberslist.php:165
|
1307 |
+
#: adminpages/memberslist.php:169 adminpages/orders.php:1298
|
1308 |
+
#: adminpages/orders.php:1304 adminpages/orders.php:1313
|
1309 |
+
#: adminpages/reports/login.php:179 classes/class.memberorder.php:858
|
1310 |
+
#: classes/class.memberorder.php:870 pages/account.php:51 pages/account.php:55
|
1311 |
+
#: pages/account.php:76 pages/checkout.php:118 pages/checkout.php:167
|
1312 |
+
#: pages/checkout.php:168 pages/checkout.php:171 pages/checkout.php:173
|
1313 |
+
#: pages/checkout.php:175 pages/checkout.php:180 pages/checkout.php:182
|
1314 |
+
#: pages/checkout.php:184 pages/checkout.php:191 pages/checkout.php:194
|
1315 |
#: shortcodes/pmpro_account.php:105 shortcodes/pmpro_account.php:107
|
1316 |
#: shortcodes/pmpro_account.php:108 shortcodes/pmpro_account.php:110
|
1317 |
+
#: shortcodes/pmpro_account.php:159 shortcodes/pmpro_account.php:160
|
1318 |
msgid "Username"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
#: adminpages/dashboard.php:220 adminpages/dashboard.php:288
|
1322 |
#: adminpages/reports/login.php:181 includes/privacy.php:241
|
1323 |
+
#: pages/billing.php:58 pages/cancel.php:60 pages/invoice.php:112
|
1324 |
#: pages/levels.php:35 shortcodes/pmpro_account.php:42
|
1325 |
#: shortcodes/pmpro_account.php:211 adminpages/dashboard.php:216
|
1326 |
+
#: adminpages/dashboard.php:220 adminpages/dashboard.php:284
|
1327 |
+
#: adminpages/dashboard.php:288 adminpages/dashboard.php:292
|
1328 |
#: adminpages/memberslist.php:175 adminpages/orders.php:1300
|
1329 |
#: adminpages/orders.php:1306 adminpages/orders.php:1315
|
1330 |
#: adminpages/reports/login.php:181 includes/privacy.php:241
|
1332 |
#: pages/billing.php:16 pages/billing.php:25 pages/billing.php:27
|
1333 |
#: pages/billing.php:28 pages/billing.php:30 pages/billing.php:41
|
1334 |
#: pages/billing.php:44 pages/billing.php:45 pages/billing.php:49
|
1335 |
+
#: pages/billing.php:50 pages/billing.php:57 pages/billing.php:58
|
1336 |
+
#: pages/cancel.php:52 pages/cancel.php:60 pages/cancel.php:61
|
1337 |
+
#: pages/invoice.php:89 pages/invoice.php:101 pages/invoice.php:102
|
1338 |
+
#: pages/invoice.php:103 pages/invoice.php:104 pages/invoice.php:109
|
1339 |
+
#: pages/levels.php:13 pages/levels.php:35 shortcodes/pmpro_account.php:42
|
1340 |
#: shortcodes/pmpro_account.php:43 shortcodes/pmpro_account.php:44
|
1341 |
#: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:125
|
1342 |
#: shortcodes/pmpro_account.php:126 shortcodes/pmpro_account.php:128
|
1343 |
+
#: shortcodes/pmpro_account.php:204 shortcodes/pmpro_account.php:211
|
1344 |
msgid "Level"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
#: adminpages/dashboard.php:221 adminpages/reports/login.php:182
|
1348 |
+
#: adminpages/dashboard.php:217 adminpages/dashboard.php:221
|
1349 |
+
#: adminpages/dashboard.php:225 adminpages/memberslist.php:120
|
1350 |
+
#: adminpages/memberslist.php:153 adminpages/memberslist.php:163
|
1351 |
+
#: adminpages/memberslist.php:173 adminpages/memberslist.php:177
|
1352 |
+
#: adminpages/reports/login.php:144 adminpages/reports/login.php:146
|
1353 |
+
#: adminpages/reports/login.php:162 adminpages/reports/login.php:166
|
1354 |
+
#: adminpages/reports/login.php:182
|
1355 |
msgid "Joined"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
#: adminpages/dashboard.php:222 adminpages/discountcodes.php:750
|
1359 |
#: adminpages/reports/login.php:183 includes/profile.php:86
|
1360 |
+
#: adminpages/dashboard.php:218 adminpages/dashboard.php:222
|
1361 |
+
#: adminpages/dashboard.php:226 adminpages/discountcodes.php:550
|
1362 |
+
#: adminpages/discountcodes.php:560 adminpages/discountcodes.php:588
|
1363 |
+
#: adminpages/discountcodes.php:589 adminpages/discountcodes.php:590
|
1364 |
+
#: adminpages/discountcodes.php:595 adminpages/discountcodes.php:668
|
1365 |
+
#: adminpages/discountcodes.php:722 adminpages/discountcodes.php:748
|
1366 |
+
#: adminpages/discountcodes.php:749 adminpages/discountcodes.php:750
|
1367 |
+
#: adminpages/memberslist.php:121 adminpages/memberslist.php:159
|
1368 |
+
#: adminpages/memberslist.php:169 adminpages/memberslist.php:179
|
1369 |
+
#: adminpages/memberslist.php:183 adminpages/memberslist.php:187
|
1370 |
+
#: adminpages/reports/login.php:145 adminpages/reports/login.php:147
|
1371 |
+
#: adminpages/reports/login.php:163 adminpages/reports/login.php:167
|
1372 |
+
#: adminpages/reports/login.php:183 includes/profile.php:86
|
1373 |
#: includes/profile.php:98 includes/profile.php:102 includes/profile.php:107
|
1374 |
#: includes/profile.php:114 includes/profile.php:117 includes/profile.php:118
|
1375 |
#: includes/profile.php:120 includes/profile.php:122
|
1378 |
|
1379 |
#: adminpages/dashboard.php:228 adminpages/reports/login.php:261
|
1380 |
#: classes/class-pmpro-members-list-table.php:226 adminpages/dashboard.php:224
|
1381 |
+
#: adminpages/dashboard.php:228 adminpages/dashboard.php:232
|
1382 |
+
#: adminpages/memberslist.php:195 adminpages/memberslist.php:223
|
1383 |
+
#: adminpages/memberslist.php:251 adminpages/memberslist.php:261
|
1384 |
+
#: adminpages/memberslist.php:262 adminpages/memberslist.php:266
|
1385 |
+
#: adminpages/memberslist.php:268 adminpages/memberslist.php:272
|
1386 |
+
#: adminpages/reports/login.php:210 adminpages/reports/login.php:212
|
1387 |
+
#: adminpages/reports/login.php:228 adminpages/reports/login.php:232
|
1388 |
+
#: adminpages/reports/login.php:261
|
1389 |
#: classes/class-pmpro-members-list-table.php:226
|
1390 |
#: classes/class-pmpro-members-list-table.php:252
|
1391 |
#: classes/class-pmpro-members-list-table.php:257
|
1394 |
|
1395 |
#: adminpages/dashboard.php:286 adminpages/discountcodes.php:449
|
1396 |
#: adminpages/discountcodes.php:748 adminpages/orders.php:415
|
1397 |
+
#: adminpages/dashboard.php:282 adminpages/dashboard.php:286
|
1398 |
+
#: adminpages/dashboard.php:290 adminpages/discountcodes.php:311
|
1399 |
+
#: adminpages/discountcodes.php:314 adminpages/discountcodes.php:315
|
1400 |
+
#: adminpages/discountcodes.php:316 adminpages/discountcodes.php:321
|
1401 |
+
#: adminpages/discountcodes.php:386 adminpages/discountcodes.php:427
|
1402 |
+
#: adminpages/discountcodes.php:447 adminpages/discountcodes.php:449
|
1403 |
+
#: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
|
1404 |
+
#: adminpages/discountcodes.php:586 adminpages/discountcodes.php:587
|
1405 |
+
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:593
|
1406 |
+
#: adminpages/discountcodes.php:666 adminpages/discountcodes.php:720
|
1407 |
+
#: adminpages/discountcodes.php:746 adminpages/discountcodes.php:747
|
1408 |
+
#: adminpages/discountcodes.php:748 adminpages/orders.php:215
|
1409 |
+
#: adminpages/orders.php:265 adminpages/orders.php:337
|
1410 |
+
#: adminpages/orders.php:349 adminpages/orders.php:366
|
1411 |
+
#: adminpages/orders.php:380 adminpages/orders.php:391
|
1412 |
+
#: adminpages/orders.php:401 adminpages/orders.php:408
|
1413 |
+
#: adminpages/orders.php:409 adminpages/orders.php:413
|
1414 |
+
#: adminpages/orders.php:415 adminpages/orders.php:419
|
1415 |
#: adminpages/orders.php:598 adminpages/orders.php:901
|
1416 |
#: adminpages/orders.php:911 adminpages/orders.php:938
|
1417 |
#: adminpages/orders.php:967 adminpages/orders.php:1104
|
1424 |
|
1425 |
#: adminpages/dashboard.php:287
|
1426 |
#: classes/gateways/class.pmprogateway_payflowpro.php:117
|
1427 |
+
#: adminpages/dashboard.php:283 adminpages/dashboard.php:287
|
1428 |
+
#: adminpages/dashboard.php:291 adminpages/orders.php:599
|
1429 |
+
#: adminpages/orders.php:902 adminpages/orders.php:912
|
1430 |
+
#: adminpages/orders.php:939 adminpages/orders.php:968
|
1431 |
+
#: adminpages/orders.php:1105 adminpages/orders.php:1136
|
1432 |
+
#: adminpages/orders.php:1142 adminpages/orders.php:1233
|
1433 |
+
#: adminpages/orders.php:1309 adminpages/orders.php:1354
|
1434 |
+
#: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:215
|
1435 |
+
#: adminpages/paymentsettings.php:220 adminpages/reports/login.php:141
|
1436 |
+
#: adminpages/reports/login.php:143 adminpages/reports/login.php:159
|
1437 |
+
#: adminpages/reports/login.php:163 adminpages/reports/login.php:179
|
1438 |
#: classes/gateways/class.pmprogateway_payflowpro.php:116
|
1439 |
#: classes/gateways/class.pmprogateway_payflowpro.php:117
|
1440 |
msgid "User"
|
1442 |
|
1443 |
#: adminpages/dashboard.php:289 adminpages/templates/orders-email.php:64
|
1444 |
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
1445 |
+
#: pages/confirmation.php:98 pages/invoice.php:88 adminpages/dashboard.php:285
|
1446 |
+
#: adminpages/dashboard.php:289 adminpages/dashboard.php:293
|
1447 |
+
#: adminpages/orders.php:320 adminpages/orders.php:370
|
1448 |
+
#: adminpages/orders.php:442 adminpages/orders.php:471
|
1449 |
+
#: adminpages/orders.php:504 adminpages/orders.php:535
|
1450 |
+
#: adminpages/orders.php:546 adminpages/orders.php:582
|
1451 |
+
#: adminpages/orders.php:602 adminpages/orders.php:622
|
1452 |
+
#: adminpages/orders.php:626 adminpages/orders.php:627
|
1453 |
+
#: adminpages/orders.php:637 adminpages/orders.php:905
|
1454 |
+
#: adminpages/orders.php:915 adminpages/orders.php:942
|
1455 |
+
#: adminpages/orders.php:971 adminpages/orders.php:1108
|
1456 |
+
#: adminpages/orders.php:1139 adminpages/orders.php:1145
|
1457 |
+
#: adminpages/orders.php:1236 adminpages/orders.php:1301
|
1458 |
+
#: adminpages/orders.php:1307 adminpages/orders.php:1312
|
1459 |
+
#: adminpages/orders.php:1316 adminpages/orders.php:1357
|
1460 |
+
#: adminpages/templates/orders-email.php:64
|
1461 |
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
1462 |
#: pages/confirmation.php:95 pages/confirmation.php:96
|
1463 |
#: pages/confirmation.php:98 pages/invoice.php:77 pages/invoice.php:78
|
1467 |
msgstr ""
|
1468 |
|
1469 |
#: adminpages/dashboard.php:290 includes/privacy.php:202
|
1470 |
+
#: includes/privacy.php:309 pages/invoice.php:28
|
1471 |
#: shortcodes/pmpro_account.php:213 adminpages/dashboard.php:286
|
1472 |
+
#: adminpages/dashboard.php:290 adminpages/dashboard.php:294
|
1473 |
+
#: adminpages/orders.php:373 adminpages/orders.php:423
|
1474 |
+
#: adminpages/orders.php:495 adminpages/orders.php:524
|
1475 |
+
#: adminpages/orders.php:579 adminpages/orders.php:606
|
1476 |
+
#: adminpages/orders.php:610 adminpages/orders.php:621
|
1477 |
+
#: adminpages/orders.php:667 adminpages/orders.php:705
|
1478 |
+
#: adminpages/orders.php:709 adminpages/orders.php:710
|
1479 |
+
#: adminpages/orders.php:712 adminpages/orders.php:722
|
1480 |
+
#: adminpages/orders.php:909 adminpages/orders.php:919
|
1481 |
+
#: adminpages/orders.php:946 adminpages/orders.php:975
|
1482 |
+
#: adminpages/orders.php:1112 adminpages/orders.php:1143
|
1483 |
+
#: adminpages/orders.php:1149 adminpages/orders.php:1240
|
1484 |
+
#: adminpages/orders.php:1305 adminpages/orders.php:1311
|
1485 |
+
#: adminpages/orders.php:1316 adminpages/orders.php:1320
|
1486 |
+
#: adminpages/orders.php:1361 includes/privacy.php:202 includes/privacy.php:309
|
1487 |
+
#: pages/invoice.php:27 pages/invoice.php:29 shortcodes/pmpro_account.php:130
|
1488 |
+
#: shortcodes/pmpro_account.php:206 shortcodes/pmpro_account.php:213
|
1489 |
msgid "Status"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: adminpages/dashboard.php:291 pages/invoice.php:110
|
1493 |
#: shortcodes/pmpro_account.php:210 adminpages/dashboard.php:287
|
1494 |
+
#: adminpages/dashboard.php:291 adminpages/dashboard.php:295
|
1495 |
+
#: adminpages/orders.php:442 adminpages/orders.php:492
|
1496 |
+
#: adminpages/orders.php:493 adminpages/orders.php:565
|
1497 |
+
#: adminpages/orders.php:594 adminpages/orders.php:607
|
1498 |
+
#: adminpages/orders.php:679 adminpages/orders.php:710
|
1499 |
+
#: adminpages/orders.php:721 adminpages/orders.php:770
|
1500 |
+
#: adminpages/orders.php:806 adminpages/orders.php:810
|
1501 |
+
#: adminpages/orders.php:811 adminpages/orders.php:815
|
1502 |
+
#: adminpages/orders.php:825 adminpages/orders.php:910
|
1503 |
+
#: adminpages/orders.php:920 adminpages/orders.php:947
|
1504 |
+
#: adminpages/orders.php:976 adminpages/orders.php:1113
|
1505 |
+
#: adminpages/orders.php:1144 adminpages/orders.php:1150
|
1506 |
+
#: adminpages/orders.php:1241 adminpages/orders.php:1306
|
1507 |
+
#: adminpages/orders.php:1312 adminpages/orders.php:1317
|
1508 |
+
#: adminpages/orders.php:1321 adminpages/orders.php:1362 pages/account.php:91
|
1509 |
+
#: pages/invoice.php:87 pages/invoice.php:99 pages/invoice.php:100
|
1510 |
+
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:105
|
1511 |
+
#: pages/invoice.php:107 shortcodes/pmpro_account.php:122
|
1512 |
+
#: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:125
|
1513 |
+
#: shortcodes/pmpro_account.php:127 shortcodes/pmpro_account.php:203
|
1514 |
+
#: shortcodes/pmpro_account.php:210
|
1515 |
msgid "Date"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
#: adminpages/dashboard.php:298 adminpages/dashboard.php:294
|
1519 |
+
#: adminpages/dashboard.php:298 adminpages/dashboard.php:302
|
1520 |
+
#: adminpages/orders.php:674 adminpages/orders.php:977
|
1521 |
+
#: adminpages/orders.php:995 adminpages/orders.php:1005
|
1522 |
+
#: adminpages/orders.php:1008 adminpages/orders.php:1043
|
1523 |
+
#: adminpages/orders.php:1072 adminpages/orders.php:1228
|
1524 |
+
#: adminpages/orders.php:1262 adminpages/orders.php:1268
|
1525 |
+
#: adminpages/orders.php:1383 adminpages/orders.php:1457
|
1526 |
+
#: adminpages/orders.php:1462 adminpages/orders.php:1463
|
1527 |
+
#: adminpages/orders.php:1478 adminpages/orders.php:1512
|
1528 |
msgid "No orders found."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
#: adminpages/dashboard.php:315 adminpages/dashboard.php:330
|
1532 |
+
#: adminpages/dashboard.php:311 adminpages/dashboard.php:315
|
1533 |
+
#: adminpages/dashboard.php:319 adminpages/dashboard.php:326
|
1534 |
+
#: adminpages/dashboard.php:330 adminpages/orders.php:630
|
1535 |
#: adminpages/orders.php:933 adminpages/orders.php:943
|
1536 |
#: adminpages/orders.php:972 adminpages/orders.php:1001
|
1537 |
#: adminpages/orders.php:1141 adminpages/orders.php:1172
|
1544 |
msgstr ""
|
1545 |
|
1546 |
#: adminpages/dashboard.php:317 adminpages/dashboard.php:332
|
1547 |
+
#: adminpages/dashboard.php:313 adminpages/dashboard.php:317
|
1548 |
+
#: adminpages/dashboard.php:321 adminpages/dashboard.php:328
|
1549 |
+
#: adminpages/dashboard.php:332 adminpages/orders.php:1275
|
1550 |
#: adminpages/orders.php:1347 adminpages/orders.php:1371
|
1551 |
#: adminpages/orders.php:1376 adminpages/orders.php:1377
|
1552 |
#: adminpages/orders.php:1386 adminpages/orders.php:1397
|
1558 |
#: classes/class-pmpro-admin-activity-email.php:344
|
1559 |
#: adminpages/dashboard.php:372 adminpages/dashboard.php:377
|
1560 |
#: adminpages/dashboard.php:380 adminpages/dashboard.php:383
|
1561 |
+
#: adminpages/dashboard.php:387
|
1562 |
#: classes/class-pmpro-admin-activity-email.php:344
|
1563 |
msgid "No news found."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
#: adminpages/dashboard.php:393 adminpages/dashboard.php:378
|
1567 |
#: adminpages/dashboard.php:383 adminpages/dashboard.php:386
|
1568 |
+
#: adminpages/dashboard.php:389 adminpages/dashboard.php:393
|
1569 |
#, php-format
|
1570 |
msgid "Posted %s"
|
1571 |
msgstr ""
|
1738 |
#: adminpages/orders.php:375 adminpages/orders.php:386
|
1739 |
#: adminpages/orders.php:394 adminpages/orders.php:401
|
1740 |
#: adminpages/orders.php:402 adminpages/orders.php:406
|
1741 |
+
#: adminpages/orders.php:408 adminpages/orders.php:412
|
1742 |
msgid "This will be generated when you save."
|
1743 |
msgstr ""
|
1744 |
|
1753 |
|
1754 |
#: adminpages/discountcodes.php:505
|
1755 |
#: classes/gateways/class.pmprogateway_braintree.php:479
|
1756 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1001 pages/billing.php:363
|
1757 |
#: pages/checkout.php:389 adminpages/discountcodes.php:367
|
1758 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
1759 |
#: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
|
1793 |
#: classes/gateways/class.pmprogateway_stripe.php:621
|
1794 |
#: classes/gateways/class.pmprogateway_stripe.php:628
|
1795 |
#: classes/gateways/class.pmprogateway_stripe.php:629
|
1796 |
+
#: classes/gateways/class.pmprogateway_stripe.php:630
|
1797 |
+
#: classes/gateways/class.pmprogateway_stripe.php:931 pages/billing.php:249
|
1798 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
|
1799 |
#: pages/billing.php:268 pages/billing.php:310 pages/billing.php:313
|
1800 |
#: pages/billing.php:316 pages/billing.php:317 pages/billing.php:319
|
1801 |
#: pages/billing.php:321 pages/billing.php:322 pages/billing.php:330
|
1802 |
+
#: pages/billing.php:339 pages/billing.php:342 pages/billing.php:363
|
1803 |
+
#: pages/checkout.php:389 pages/checkout.php:463 pages/checkout.php:471
|
1804 |
+
#: pages/checkout.php:508 pages/checkout.php:524 pages/checkout.php:525
|
1805 |
+
#: pages/checkout.php:532 pages/checkout.php:553 pages/checkout.php:562
|
1806 |
+
#: pages/checkout.php:571 pages/checkout.php:575 pages/checkout.php:582
|
1807 |
+
#: pages/checkout.php:585
|
1808 |
msgid "Expiration Date"
|
1809 |
msgstr ""
|
1810 |
|
1913 |
msgstr ""
|
1914 |
|
1915 |
#: adminpages/discountcodes.php:605 adminpages/membershiplevels.php:433
|
1916 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1178
|
1917 |
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:605
|
1918 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
1919 |
#: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
|
1942 |
#: classes/gateways/class.pmprogateway_stripe.php:784
|
1943 |
#: classes/gateways/class.pmprogateway_stripe.php:785
|
1944 |
#: classes/gateways/class.pmprogateway_stripe.php:786
|
1945 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1108
|
1946 |
msgid "per"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
1950 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
1951 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1044
|
1952 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1953 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1954 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
1992 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
1993 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1994 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
1995 |
+
#: classes/gateways/class.pmprogateway_stripe.php:974
|
1996 |
msgid "Day(s)"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
2000 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
2001 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1046
|
2002 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2003 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
2004 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
2042 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
2043 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
2044 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
2045 |
+
#: classes/gateways/class.pmprogateway_stripe.php:976
|
2046 |
msgid "Month(s)"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
2050 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
2051 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1045
|
2052 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2053 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
2054 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
2092 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
2093 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
2094 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
2095 |
+
#: classes/gateways/class.pmprogateway_stripe.php:975
|
2096 |
msgid "Week(s)"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
2100 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
2101 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1047
|
2102 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2103 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
2104 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
2142 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
2143 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
2144 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
2145 |
+
#: classes/gateways/class.pmprogateway_stripe.php:977
|
2146 |
msgid "Year(s)"
|
2147 |
msgstr ""
|
2148 |
|
2430 |
msgid " View Orders"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: adminpages/emailsettings.php:85 adminpages/emailsettings.php:85
|
2434 |
msgid "Send Emails From"
|
2435 |
msgstr ""
|
2436 |
|
2470 |
"use the above settings."
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: adminpages/emailsettings.php:120 adminpages/emailsettings.php:120
|
2474 |
msgid "Customizing Email Content"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: adminpages/emailsettings.php:129 adminpages/emailsettings.php:129
|
2478 |
#, php-format
|
2479 |
msgid ""
|
2480 |
"There are several ways to modify the appearance of your Paid Memberships Pro "
|
2487 |
"Memberships Pro emails</a>."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: adminpages/emailsettings.php:134 adminpages/emailsettings.php:134
|
2491 |
msgid "Email Deliverability"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: adminpages/emailsettings.php:145 adminpages/emailsettings.php:145
|
2495 |
#, php-format
|
2496 |
msgid ""
|
2497 |
"If you are having issues with email delivery from your server, <a href=\"%s"
|
2504 |
"and Paid Memberships Pro</a></em>."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: adminpages/emailsettings.php:161 adminpages/emailsettings.php:161
|
2508 |
msgid "View Your SendWP Account"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: adminpages/emailsettings.php:161 adminpages/emailsettings.php:161
|
2512 |
msgid "Your site is connected to SendWP."
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: adminpages/emailsettings.php:162 adminpages/emailsettings.php:162
|
2516 |
#, php-format
|
2517 |
msgid "Please enable email sending inside %s."
|
2518 |
msgstr ""
|
2520 |
#: adminpages/emailsettings.php:174 adminpages/emailsettings.php:86
|
2521 |
#: adminpages/emailsettings.php:104 adminpages/emailsettings.php:115
|
2522 |
#: adminpages/emailsettings.php:125 adminpages/emailsettings.php:129
|
2523 |
+
#: adminpages/emailsettings.php:130 adminpages/emailsettings.php:174
|
2524 |
msgid "Send the site admin emails"
|
2525 |
msgstr ""
|
2526 |
|
2528 |
#: adminpages/emailsettings.php:114 adminpages/emailsettings.php:125
|
2529 |
#: adminpages/emailsettings.php:135 adminpages/emailsettings.php:139
|
2530 |
#: adminpages/emailsettings.php:140 adminpages/emailsettings.php:141
|
2531 |
+
#: adminpages/emailsettings.php:178
|
2532 |
msgid "when a member checks out."
|
2533 |
msgstr ""
|
2534 |
|
2536 |
#: adminpages/emailsettings.php:123 adminpages/emailsettings.php:134
|
2537 |
#: adminpages/emailsettings.php:144 adminpages/emailsettings.php:148
|
2538 |
#: adminpages/emailsettings.php:149 adminpages/emailsettings.php:150
|
2539 |
+
#: adminpages/emailsettings.php:181
|
2540 |
msgid "when an admin changes a user's membership level through the dashboard."
|
2541 |
msgstr ""
|
2542 |
|
2544 |
#: adminpages/emailsettings.php:132 adminpages/emailsettings.php:143
|
2545 |
#: adminpages/emailsettings.php:153 adminpages/emailsettings.php:157
|
2546 |
#: adminpages/emailsettings.php:158 adminpages/emailsettings.php:159
|
2547 |
+
#: adminpages/emailsettings.php:184
|
2548 |
msgid "when a user cancels his or her account."
|
2549 |
msgstr ""
|
2550 |
|
2552 |
#: adminpages/emailsettings.php:141 adminpages/emailsettings.php:152
|
2553 |
#: adminpages/emailsettings.php:162 adminpages/emailsettings.php:166
|
2554 |
#: adminpages/emailsettings.php:167 adminpages/emailsettings.php:168
|
2555 |
+
#: adminpages/emailsettings.php:187
|
2556 |
msgid "when a user updates his or her billing information."
|
2557 |
msgstr ""
|
2558 |
|
2559 |
#: adminpages/emailsettings.php:192 adminpages/emailsettings.php:129
|
2560 |
#: adminpages/emailsettings.php:147 adminpages/emailsettings.php:158
|
2561 |
#: adminpages/emailsettings.php:168 adminpages/emailsettings.php:172
|
2562 |
+
#: adminpages/emailsettings.php:174 adminpages/emailsettings.php:192
|
2563 |
msgid "Send members emails"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
#: adminpages/emailsettings.php:196 adminpages/emailsettings.php:184
|
2567 |
+
#: adminpages/emailsettings.php:196
|
2568 |
msgid "Default WP notification email."
|
2569 |
msgstr ""
|
2570 |
|
2571 |
#: adminpages/emailsettings.php:197 adminpages/emailsettings.php:185
|
2572 |
+
#: adminpages/emailsettings.php:197
|
2573 |
msgid ""
|
2574 |
"Recommended: Leave unchecked. Members will still get an email confirmation "
|
2575 |
"from PMPro after checkout."
|
2621 |
msgid "Paid Memberships Pro Support License"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: adminpages/license.php:47 adminpages/license.php:47 includes/license.php:91
|
2625 |
msgid ""
|
2626 |
"Enter your support license key.</strong> Your license key can be found in "
|
2627 |
"your membership email receipt or in your <a href=\"https://www."
|
2628 |
+
"paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F"
|
2629 |
+
"%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign"
|
2630 |
"%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership "
|
2631 |
"Account</a>."
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: adminpages/license.php:49 adminpages/license.php:49 includes/license.php:93
|
2635 |
msgid ""
|
2636 |
+
"Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?"
|
2637 |
+
"redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium"
|
2638 |
+
"%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-"
|
2639 |
+
"valid\" target=\"_blank\">Membership Account</a> page to confirm that your "
|
2640 |
+
"account is active and to find your license key."
|
2641 |
msgstr ""
|
2642 |
|
2643 |
#: adminpages/license.php:49 adminpages/license.php:49 includes/license.php:91
|
3041 |
msgid "Save Level"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: adminpages/membershiplevels.php:641 includes/profile.php:538
|
3045 |
#: pages/billing.php:414 pages/cancel.php:83
|
3046 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
|
3047 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
|
3055 |
#: adminpages/orders.php:796 adminpages/orders.php:807
|
3056 |
#: adminpages/orders.php:894 adminpages/orders.php:930
|
3057 |
#: adminpages/orders.php:934 adminpages/orders.php:939
|
3058 |
+
#: adminpages/orders.php:940 adminpages/orders.php:949 includes/profile.php:529
|
3059 |
+
#: includes/profile.php:567 pages/account.php:44 pages/billing.php:295
|
3060 |
+
#: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
|
3061 |
+
#: pages/billing.php:342 pages/billing.php:344 pages/billing.php:348
|
3062 |
+
#: pages/billing.php:363 pages/billing.php:364 pages/billing.php:365
|
3063 |
+
#: pages/billing.php:371 pages/billing.php:372 pages/billing.php:380
|
3064 |
+
#: pages/billing.php:390 pages/billing.php:392 pages/billing.php:397
|
3065 |
+
#: pages/billing.php:401 pages/billing.php:406 pages/billing.php:414
|
3066 |
+
#: pages/cancel.php:71 pages/cancel.php:83 pages/cancel.php:84
|
3067 |
+
#: shortcodes/pmpro_account.php:70 shortcodes/pmpro_account.php:72
|
3068 |
+
#: shortcodes/pmpro_account.php:73
|
3069 |
msgid "Cancel"
|
3070 |
msgstr ""
|
3071 |
|
3104 |
msgstr ""
|
3105 |
|
3106 |
#: adminpages/membershiplevels.php:776 pages/billing.php:88 pages/cancel.php:61
|
3107 |
+
#: pages/confirmation.php:82 pages/invoice.php:72
|
3108 |
#: shortcodes/pmpro_account.php:44 adminpages/membershiplevels.php:510
|
3109 |
#: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
|
3110 |
#: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
|
3115 |
#: adminpages/membershiplevels.php:716 adminpages/membershiplevels.php:718
|
3116 |
#: adminpages/membershiplevels.php:744 adminpages/membershiplevels.php:761
|
3117 |
#: adminpages/membershiplevels.php:766 adminpages/membershiplevels.php:771
|
3118 |
+
#: adminpages/membershiplevels.php:776 pages/account.php:20
|
3119 |
+
#: pages/billing.php:88 pages/cancel.php:53 pages/cancel.php:61
|
3120 |
+
#: pages/cancel.php:62 pages/confirmation.php:80 pages/confirmation.php:81
|
3121 |
+
#: pages/confirmation.php:82 pages/confirmation.php:83
|
3122 |
+
#: pages/confirmation.php:84 pages/confirmation.php:89 pages/invoice.php:62
|
3123 |
+
#: pages/invoice.php:63 pages/invoice.php:64 pages/invoice.php:68
|
3124 |
+
#: pages/invoice.php:70 shortcodes/pmpro_account.php:44
|
3125 |
+
#: shortcodes/pmpro_account.php:45 shortcodes/pmpro_account.php:46
|
3126 |
msgid "Expiration"
|
3127 |
msgstr ""
|
3128 |
|
3219 |
#: adminpages/orders.php:169 adminpages/orders.php:270
|
3220 |
#: adminpages/orders.php:284 adminpages/orders.php:285
|
3221 |
#: adminpages/orders.php:295 adminpages/orders.php:296
|
3222 |
+
#: adminpages/orders.php:297 adminpages/orders.php:298
|
3223 |
+
#: adminpages/orders.php:301 adminpages/orders.php:314
|
3224 |
msgid "Order saved successfully."
|
3225 |
msgstr ""
|
3226 |
|
3228 |
#: adminpages/orders.php:174 adminpages/orders.php:275
|
3229 |
#: adminpages/orders.php:287 adminpages/orders.php:288
|
3230 |
#: adminpages/orders.php:298 adminpages/orders.php:299
|
3231 |
+
#: adminpages/orders.php:300 adminpages/orders.php:301
|
3232 |
+
#: adminpages/orders.php:304 adminpages/orders.php:317
|
3233 |
msgid "Error updating order timestamp."
|
3234 |
msgstr ""
|
3235 |
|
3237 |
#: adminpages/orders.php:180 adminpages/orders.php:281
|
3238 |
#: adminpages/orders.php:291 adminpages/orders.php:292
|
3239 |
#: adminpages/orders.php:302 adminpages/orders.php:303
|
3240 |
+
#: adminpages/orders.php:304 adminpages/orders.php:305
|
3241 |
+
#: adminpages/orders.php:308 adminpages/orders.php:321
|
3242 |
msgid "Error saving order."
|
3243 |
msgstr ""
|
3244 |
|
3248 |
#: adminpages/orders.php:395 adminpages/orders.php:406
|
3249 |
#: adminpages/orders.php:418 adminpages/orders.php:424
|
3250 |
#: adminpages/orders.php:425 adminpages/orders.php:426
|
3251 |
+
#: adminpages/orders.php:429 adminpages/orders.php:431
|
3252 |
+
#: adminpages/orders.php:436
|
3253 |
msgid "User ID"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
#: adminpages/orders.php:578 classes/class.pmproemail.php:865
|
3257 |
#: classes/class.pmproemail.php:915 includes/init.php:198
|
3258 |
#: includes/profile.php:34 adminpages/orders.php:571 adminpages/orders.php:575
|
3259 |
+
#: adminpages/orders.php:576 adminpages/orders.php:578
|
3260 |
+
#: adminpages/orders.php:586 classes/class.pmproemail.php:865
|
3261 |
+
#: classes/class.pmproemail.php:868 classes/class.pmproemail.php:876
|
3262 |
+
#: classes/class.pmproemail.php:877 classes/class.pmproemail.php:905
|
3263 |
+
#: classes/class.pmproemail.php:915 includes/init.php:193 includes/init.php:198
|
3264 |
+
#: includes/init.php:229 includes/init.php:232 includes/init.php:233
|
3265 |
+
#: includes/init.php:235 includes/init.php:237 includes/init.php:245
|
3266 |
+
#: includes/init.php:253 includes/init.php:258 includes/init.php:259
|
3267 |
+
#: includes/init.php:264 includes/init.php:265 includes/init.php:266
|
3268 |
+
#: includes/init.php:280 includes/init.php:284 includes/profile.php:34
|
3269 |
+
#: includes/profile.php:37 includes/profile.php:39 includes/profile.php:42
|
3270 |
+
#: includes/profile.php:43 includes/profile.php:48
|
3271 |
msgid "None"
|
3272 |
msgstr ""
|
3273 |
|
3277 |
#: adminpages/orders.php:501 adminpages/orders.php:512
|
3278 |
#: adminpages/orders.php:542 adminpages/orders.php:582
|
3279 |
#: adminpages/orders.php:586 adminpages/orders.php:587
|
3280 |
+
#: adminpages/orders.php:589 adminpages/orders.php:597 includes/privacy.php:273
|
3281 |
msgid "Sub Total"
|
3282 |
msgstr ""
|
3283 |
|
3288 |
#: adminpages/orders.php:692 adminpages/orders.php:737
|
3289 |
#: adminpages/orders.php:775 adminpages/orders.php:779
|
3290 |
#: adminpages/orders.php:780 adminpages/orders.php:782
|
3291 |
+
#: adminpages/orders.php:783 adminpages/orders.php:792 includes/privacy.php:321
|
3292 |
msgid "Payment Transaction ID"
|
3293 |
msgstr ""
|
3294 |
|
3311 |
#: adminpages/orders.php:1211 adminpages/orders.php:1245
|
3312 |
#: adminpages/orders.php:1251 adminpages/orders.php:1338
|
3313 |
#: adminpages/orders.php:1343 adminpages/orders.php:1344
|
3314 |
+
#: adminpages/orders.php:1347 adminpages/orders.php:1353
|
3315 |
+
#: adminpages/orders.php:1358 adminpages/orders.php:1366
|
3316 |
+
#: adminpages/orders.php:1495
|
3317 |
#, php-format
|
3318 |
msgid ""
|
3319 |
"Deleting orders is permanent and can affect active users. Are you sure you "
|
3730 |
msgstr ""
|
3731 |
|
3732 |
#: adminpages/paymentsettings.php:66 adminpages/paymentsettings.php:49
|
3733 |
+
#: adminpages/paymentsettings.php:64 adminpages/paymentsettings.php:66
|
3734 |
+
#: adminpages/paymentsettings.php:77 adminpages/paymentsettings.php:82
|
3735 |
msgid "Your payment settings have been updated."
|
3736 |
msgstr ""
|
3737 |
|
3738 |
#: adminpages/paymentsettings.php:115 adminpages/paymentsettings.php:112
|
3739 |
+
#: adminpages/paymentsettings.php:113 adminpages/paymentsettings.php:115
|
3740 |
msgid ""
|
3741 |
"Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target="
|
3742 |
"\"_blank\" href=\"https://www.paidmembershipspro.com/documentation/initial-"
|
3752 |
|
3753 |
#: adminpages/paymentsettings.php:122 adminpages/paymentsettings.php:101
|
3754 |
#: adminpages/paymentsettings.php:118 adminpages/paymentsettings.php:119
|
3755 |
+
#: adminpages/paymentsettings.php:120 adminpages/paymentsettings.php:122
|
3756 |
msgid "Choose a Gateway"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
#: adminpages/paymentsettings.php:127 adminpages/paymentsettings.php:93
|
3760 |
#: adminpages/paymentsettings.php:106 adminpages/paymentsettings.php:110
|
3761 |
#: adminpages/paymentsettings.php:123 adminpages/paymentsettings.php:124
|
3762 |
+
#: adminpages/paymentsettings.php:125 adminpages/paymentsettings.php:127
|
3763 |
+
#: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:146
|
3764 |
+
#: adminpages/paymentsettings.php:152 adminpages/paymentsettings.php:154
|
3765 |
msgid "Payment Gateway"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
#: adminpages/paymentsettings.php:142 adminpages/paymentsettings.php:138
|
3769 |
#: adminpages/paymentsettings.php:139 adminpages/paymentsettings.php:140
|
3770 |
+
#: adminpages/paymentsettings.php:142
|
3771 |
msgid ""
|
3772 |
"It is not connected to a live gateway environment and cannot accept payments."
|
3773 |
msgstr ""
|
3774 |
|
3775 |
#: adminpages/paymentsettings.php:142 adminpages/paymentsettings.php:138
|
3776 |
#: adminpages/paymentsettings.php:139 adminpages/paymentsettings.php:140
|
3777 |
+
#: adminpages/paymentsettings.php:142
|
3778 |
msgid ""
|
3779 |
"This gateway is for membership sites with Free levels or for sites that "
|
3780 |
"accept payment offline."
|
3790 |
#: adminpages/orders.php:757 adminpages/orders.php:767
|
3791 |
#: adminpages/paymentsettings.php:124 adminpages/paymentsettings.php:141
|
3792 |
#: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:145
|
3793 |
+
#: adminpages/paymentsettings.php:146 adminpages/paymentsettings.php:148
|
3794 |
+
#: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
|
3795 |
+
#: adminpages/paymentsettings.php:184 includes/privacy.php:317
|
3796 |
msgid "Gateway Environment"
|
3797 |
msgstr ""
|
3798 |
|
3806 |
#: adminpages/orders.php:779 adminpages/paymentsettings.php:128
|
3807 |
#: adminpages/paymentsettings.php:145 adminpages/paymentsettings.php:148
|
3808 |
#: adminpages/paymentsettings.php:149 adminpages/paymentsettings.php:150
|
3809 |
+
#: adminpages/paymentsettings.php:152 adminpages/paymentsettings.php:179
|
3810 |
+
#: adminpages/paymentsettings.php:183 adminpages/paymentsettings.php:188
|
3811 |
msgid "Sandbox/Testing"
|
3812 |
msgstr ""
|
3813 |
|
3821 |
#: adminpages/orders.php:784 adminpages/paymentsettings.php:129
|
3822 |
#: adminpages/paymentsettings.php:146 adminpages/paymentsettings.php:149
|
3823 |
#: adminpages/paymentsettings.php:150 adminpages/paymentsettings.php:151
|
3824 |
+
#: adminpages/paymentsettings.php:153 adminpages/paymentsettings.php:180
|
3825 |
+
#: adminpages/paymentsettings.php:184 adminpages/paymentsettings.php:189
|
3826 |
msgid "Live/Production"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
#: adminpages/paymentsettings.php:187 adminpages/paymentsettings.php:148
|
3830 |
#: adminpages/paymentsettings.php:165 adminpages/paymentsettings.php:182
|
3831 |
#: adminpages/paymentsettings.php:184 adminpages/paymentsettings.php:185
|
3832 |
+
#: adminpages/paymentsettings.php:187
|
3833 |
msgid "Currency and Tax Settings"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
#: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:153
|
3837 |
#: adminpages/paymentsettings.php:170 adminpages/paymentsettings.php:187
|
3838 |
#: adminpages/paymentsettings.php:189 adminpages/paymentsettings.php:190
|
3839 |
+
#: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:327
|
3840 |
+
#: adminpages/paymentsettings.php:337 adminpages/paymentsettings.php:356
|
3841 |
+
#: adminpages/paymentsettings.php:381 adminpages/paymentsettings.php:386
|
3842 |
msgid "Currency"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
#: adminpages/paymentsettings.php:208 adminpages/paymentsettings.php:169
|
3846 |
#: adminpages/paymentsettings.php:186 adminpages/paymentsettings.php:203
|
3847 |
#: adminpages/paymentsettings.php:205 adminpages/paymentsettings.php:206
|
3848 |
+
#: adminpages/paymentsettings.php:208 adminpages/paymentsettings.php:400
|
3849 |
+
#: adminpages/paymentsettings.php:402
|
3850 |
msgid ""
|
3851 |
"Not all currencies will be supported by every gateway. Please check with "
|
3852 |
"your gateway."
|
3855 |
#: adminpages/paymentsettings.php:213 adminpages/paymentsettings.php:174
|
3856 |
#: adminpages/paymentsettings.php:191 adminpages/paymentsettings.php:208
|
3857 |
#: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:211
|
3858 |
+
#: adminpages/paymentsettings.php:213 adminpages/paymentsettings.php:375
|
3859 |
+
#: adminpages/paymentsettings.php:401 adminpages/paymentsettings.php:406
|
3860 |
+
#: adminpages/paymentsettings.php:408
|
3861 |
msgid "Accepted Credit Card Types"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
#: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:188
|
3865 |
#: adminpages/paymentsettings.php:205 adminpages/paymentsettings.php:222
|
3866 |
#: adminpages/paymentsettings.php:224 adminpages/paymentsettings.php:225
|
3867 |
+
#: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:398
|
3868 |
+
#: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
|
3869 |
+
#: adminpages/paymentsettings.php:445
|
3870 |
msgid "Sales Tax"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
#: adminpages/paymentsettings.php:227 pages/billing.php:167
|
3874 |
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:205
|
3875 |
#: adminpages/paymentsettings.php:222 adminpages/paymentsettings.php:224
|
3876 |
+
#: adminpages/paymentsettings.php:225 adminpages/paymentsettings.php:227
|
3877 |
+
#: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
|
3878 |
+
#: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
|
3879 |
+
#: pages/billing.php:78 pages/billing.php:82 pages/billing.php:91
|
3880 |
+
#: pages/billing.php:94 pages/billing.php:96 pages/billing.php:97
|
3881 |
+
#: pages/billing.php:100 pages/billing.php:117 pages/billing.php:120
|
3882 |
+
#: pages/billing.php:121 pages/billing.php:123 pages/billing.php:125
|
3883 |
+
#: pages/billing.php:126 pages/billing.php:134 pages/billing.php:143
|
3884 |
+
#: pages/billing.php:167
|
3885 |
msgid "optional"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:191
|
3889 |
#: adminpages/paymentsettings.php:208 adminpages/paymentsettings.php:225
|
3890 |
#: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:228
|
3891 |
+
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:401
|
3892 |
+
#: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:446
|
3893 |
+
#: adminpages/paymentsettings.php:448
|
3894 |
msgid "Tax State"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:192
|
3898 |
#: adminpages/paymentsettings.php:209 adminpages/paymentsettings.php:226
|
3899 |
#: adminpages/paymentsettings.php:228 adminpages/paymentsettings.php:229
|
3900 |
+
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:402
|
3901 |
+
#: adminpages/paymentsettings.php:442 adminpages/paymentsettings.php:447
|
3902 |
+
#: adminpages/paymentsettings.php:449
|
3903 |
msgid "abbreviation, e.g. \"PA\""
|
3904 |
msgstr ""
|
3905 |
|
3906 |
#: adminpages/paymentsettings.php:232 adminpages/paymentsettings.php:193
|
3907 |
#: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:227
|
3908 |
#: adminpages/paymentsettings.php:229 adminpages/paymentsettings.php:230
|
3909 |
+
#: adminpages/paymentsettings.php:232
|
3910 |
msgid "Tax Rate"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
#: adminpages/paymentsettings.php:233 adminpages/paymentsettings.php:194
|
3914 |
#: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:228
|
3915 |
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:231
|
3916 |
+
#: adminpages/paymentsettings.php:233 adminpages/paymentsettings.php:404
|
3917 |
+
#: adminpages/paymentsettings.php:444 adminpages/paymentsettings.php:449
|
3918 |
+
#: adminpages/paymentsettings.php:451
|
3919 |
msgid "decimal, e.g. \"0.06\""
|
3920 |
msgstr ""
|
3921 |
|
3922 |
#: adminpages/paymentsettings.php:234 adminpages/paymentsettings.php:229
|
3923 |
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:232
|
3924 |
+
#: adminpages/paymentsettings.php:234
|
3925 |
msgid ""
|
3926 |
"US only. If values are given, tax will be applied for any members ordering "
|
3927 |
"from the selected state.<br />For non-US or more complex tax rules, use the "
|
3936 |
#: adminpages/paymentsettings.php:146 adminpages/paymentsettings.php:201
|
3937 |
#: adminpages/paymentsettings.php:218 adminpages/paymentsettings.php:235
|
3938 |
#: adminpages/paymentsettings.php:238 adminpages/paymentsettings.php:239
|
3939 |
+
#: adminpages/paymentsettings.php:241
|
3940 |
msgid "SSL Settings"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
#: adminpages/paymentsettings.php:246 adminpages/paymentsettings.php:206
|
3944 |
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:240
|
3945 |
#: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:244
|
3946 |
+
#: adminpages/paymentsettings.php:246 adminpages/paymentsettings.php:450
|
3947 |
+
#: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:457
|
3948 |
msgid "Force SSL"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
#: adminpages/paymentsettings.php:253 adminpages/paymentsettings.php:213
|
3952 |
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:247
|
3953 |
#: adminpages/paymentsettings.php:250 adminpages/paymentsettings.php:251
|
3954 |
+
#: adminpages/paymentsettings.php:253
|
3955 |
msgid ""
|
3956 |
"Your Site URL starts with https:// and so PMPro will allow your entire site "
|
3957 |
"to be served over HTTPS."
|
3960 |
#: adminpages/paymentsettings.php:261 adminpages/paymentsettings.php:212
|
3961 |
#: adminpages/paymentsettings.php:221 adminpages/paymentsettings.php:238
|
3962 |
#: adminpages/paymentsettings.php:255 adminpages/paymentsettings.php:258
|
3963 |
+
#: adminpages/paymentsettings.php:259 adminpages/paymentsettings.php:261
|
3964 |
+
#: adminpages/paymentsettings.php:456 adminpages/paymentsettings.php:461
|
3965 |
+
#: adminpages/paymentsettings.php:463
|
3966 |
msgid "Yes (with JavaScript redirects)"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
#: adminpages/paymentsettings.php:263 adminpages/paymentsettings.php:214
|
3970 |
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:240
|
3971 |
#: adminpages/paymentsettings.php:257 adminpages/paymentsettings.php:260
|
3972 |
+
#: adminpages/paymentsettings.php:261 adminpages/paymentsettings.php:263
|
3973 |
msgid ""
|
3974 |
"Recommended: Yes. Try the JavaScript redirects setting if you are having "
|
3975 |
"issues with infinite redirect loops."
|
3978 |
#: adminpages/paymentsettings.php:271 adminpages/paymentsettings.php:219
|
3979 |
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:248
|
3980 |
#: adminpages/paymentsettings.php:265 adminpages/paymentsettings.php:268
|
3981 |
+
#: adminpages/paymentsettings.php:269 adminpages/paymentsettings.php:271
|
3982 |
+
#: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:463
|
3983 |
+
#: adminpages/paymentsettings.php:468 adminpages/paymentsettings.php:470
|
3984 |
msgid "SSL Seal Code"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
#: adminpages/paymentsettings.php:275 adminpages/paymentsettings.php:272
|
3988 |
+
#: adminpages/paymentsettings.php:273 adminpages/paymentsettings.php:275
|
3989 |
msgid ""
|
3990 |
"Your <strong><a target=\"_blank\" href=\"https://www.paidmembershipspro.com/"
|
3991 |
"documentation/initial-plugin-setup/ssl/?utm_source=plugin&utm_medium=pmpro-"
|
3998 |
#: adminpages/paymentsettings.php:280 adminpages/paymentsettings.php:228
|
3999 |
#: adminpages/paymentsettings.php:240 adminpages/paymentsettings.php:257
|
4000 |
#: adminpages/paymentsettings.php:274 adminpages/paymentsettings.php:277
|
4001 |
+
#: adminpages/paymentsettings.php:278 adminpages/paymentsettings.php:280
|
4002 |
msgid "Extra HTTPS URL Filter"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
#: adminpages/paymentsettings.php:283 adminpages/paymentsettings.php:231
|
4006 |
#: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:260
|
4007 |
#: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:280
|
4008 |
+
#: adminpages/paymentsettings.php:281 adminpages/paymentsettings.php:283
|
4009 |
msgid ""
|
4010 |
"Pass all generated HTML through a URL filter to add HTTPS to URLs used on "
|
4011 |
"secure pages. Check this if you are using SSL and have warnings on your "
|
4108 |
#: classes/class-pmpro-members-list-table.php:592
|
4109 |
#: classes/class-pmpro-members-list-table.php:600
|
4110 |
#: classes/class-pmpro-members-list-table.php:616
|
4111 |
+
#: classes/class-pmpro-members-list-table.php:623
|
4112 |
#: classes/class-pmpro-members-list-table.php:660
|
4113 |
msgid "Show"
|
4114 |
msgstr ""
|
4146 |
#: classes/class-pmpro-members-list-table.php:594
|
4147 |
#: classes/class-pmpro-members-list-table.php:606
|
4148 |
#: classes/class-pmpro-members-list-table.php:618
|
4149 |
+
#: classes/class-pmpro-members-list-table.php:625
|
4150 |
#: classes/class-pmpro-members-list-table.php:662
|
4151 |
#: classes/class.pmproemail.php:145 classes/class.pmproemail.php:147
|
4152 |
#: classes/class.pmproemail.php:154 classes/class.pmproemail.php:182
|
4432 |
|
4433 |
#: adminpages/templates/orders-email.php:56
|
4434 |
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:93
|
4435 |
+
#: pages/invoice.php:83 adminpages/templates/orders-email.php:56
|
4436 |
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:90
|
4437 |
#: pages/confirmation.php:91 pages/confirmation.php:93 pages/invoice.php:72
|
4438 |
#: pages/invoice.php:73 pages/invoice.php:74 pages/invoice.php:75
|
4442 |
|
4443 |
#: adminpages/templates/orders-email.php:60
|
4444 |
#: adminpages/templates/orders-print.php:89 includes/privacy.php:277
|
4445 |
+
#: pages/confirmation.php:94 pages/invoice.php:84 adminpages/orders.php:304
|
4446 |
#: adminpages/orders.php:354 adminpages/orders.php:426
|
4447 |
#: adminpages/orders.php:455 adminpages/orders.php:481
|
4448 |
#: adminpages/orders.php:512 adminpages/orders.php:523
|
4606 |
"you can <a %s>update the \"Activity Email Frequency\" setting here</a>."
|
4607 |
msgstr ""
|
4608 |
|
4609 |
+
#: classes/class-pmpro-admin-activity-email.php:408
|
4610 |
#: classes/class-pmpro-admin-activity-email.php:408
|
4611 |
#, php-format
|
4612 |
msgid "[%1$s] PMPro Activity for %2$s: %3$s"
|
4630 |
#: classes/class-pmpro-members-list-table.php:604
|
4631 |
#: classes/class-pmpro-members-list-table.php:628
|
4632 |
#: classes/class-pmpro-members-list-table.php:629
|
4633 |
+
#: classes/class-pmpro-members-list-table.php:635
|
4634 |
#: classes/class-pmpro-members-list-table.php:672
|
4635 |
msgid "Cancelled Members"
|
4636 |
msgstr ""
|
4645 |
#: classes/class-pmpro-members-list-table.php:605
|
4646 |
#: classes/class-pmpro-members-list-table.php:629
|
4647 |
#: classes/class-pmpro-members-list-table.php:634
|
4648 |
+
#: classes/class-pmpro-members-list-table.php:636
|
4649 |
#: classes/class-pmpro-members-list-table.php:673
|
4650 |
msgid "Expired Members"
|
4651 |
msgstr ""
|
4660 |
#: classes/class-pmpro-members-list-table.php:571
|
4661 |
#: classes/class-pmpro-members-list-table.php:606
|
4662 |
#: classes/class-pmpro-members-list-table.php:630
|
4663 |
+
#: classes/class-pmpro-members-list-table.php:637
|
4664 |
#: classes/class-pmpro-members-list-table.php:639
|
4665 |
#: classes/class-pmpro-members-list-table.php:674
|
4666 |
msgid "Old Members"
|
4781 |
#: classes/class.pmproemail.php:422 classes/class.pmproemail.php:740
|
4782 |
#: classes/class.pmproemail.php:742
|
4783 |
#: classes/gateways/class.pmprogateway_braintree.php:509
|
4784 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1014 pages/checkout.php:83
|
4785 |
#: pages/checkout.php:89 pages/checkout.php:426 pages/confirmation.php:58
|
4786 |
+
#: pages/invoice.php:40 adminpages/orders.php:560 adminpages/orders.php:564
|
4787 |
#: adminpages/orders.php:565 adminpages/orders.php:575
|
4788 |
#: adminpages/orders.php:1307 adminpages/orders.php:1313
|
4789 |
#: adminpages/orders.php:1318 adminpages/orders.php:1322
|
4855 |
#: classes/gateways/class.pmprogateway_stripe.php:652
|
4856 |
#: classes/gateways/class.pmprogateway_stripe.php:659
|
4857 |
#: classes/gateways/class.pmprogateway_stripe.php:660
|
4858 |
+
#: classes/gateways/class.pmprogateway_stripe.php:661
|
4859 |
+
#: classes/gateways/class.pmprogateway_stripe.php:944 pages/checkout.php:66
|
4860 |
#: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:70
|
4861 |
#: pages/checkout.php:75 pages/checkout.php:76 pages/checkout.php:77
|
4862 |
#: pages/checkout.php:78 pages/checkout.php:81 pages/checkout.php:83
|
5321 |
#: classes/gateways/class.pmprogateway_authorizenet.php:910
|
5322 |
#: classes/gateways/class.pmprogateway_authorizenet.php:911
|
5323 |
#: classes/gateways/class.pmprogateway_authorizenet.php:912
|
5324 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:914
|
5325 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:915
|
5326 |
#: classes/gateways/class.pmprogateway_authorizenet.php:929
|
5327 |
#: classes/gateways/class.pmprogateway_authorizenet.php:930
|
5328 |
msgid "Could not connect to Authorize.net"
|
5345 |
#: classes/gateways/class.pmprogateway_stripe.php:81
|
5346 |
#: classes/gateways/class.pmprogateway_stripe.php:83
|
5347 |
#: classes/gateways/class.pmprogateway_stripe.php:86
|
5348 |
+
#: classes/gateways/class.pmprogateway_stripe.php:88
|
5349 |
#, php-format
|
5350 |
msgid ""
|
5351 |
"The %s gateway depends on the %s PHP extension. Please enable it, or ask "
|
5526 |
msgstr ""
|
5527 |
|
5528 |
#: classes/gateways/class.pmprogateway_braintree.php:454
|
5529 |
+
#: classes/gateways/class.pmprogateway_stripe.php:972 pages/checkout.php:362
|
5530 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
5531 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
5532 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
5563 |
#: classes/gateways/class.pmprogateway_stripe.php:569
|
5564 |
#: classes/gateways/class.pmprogateway_stripe.php:576
|
5565 |
#: classes/gateways/class.pmprogateway_stripe.php:577
|
5566 |
+
#: classes/gateways/class.pmprogateway_stripe.php:578
|
5567 |
+
#: classes/gateways/class.pmprogateway_stripe.php:902 pages/checkout.php:362
|
5568 |
#: pages/checkout.php:411 pages/checkout.php:419 pages/checkout.php:476
|
5569 |
#: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
|
5570 |
#: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
|
5573 |
msgstr ""
|
5574 |
|
5575 |
#: classes/gateways/class.pmprogateway_braintree.php:455
|
5576 |
+
#: classes/gateways/class.pmprogateway_stripe.php:973 pages/checkout.php:363
|
5577 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
5578 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
5579 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
5610 |
#: classes/gateways/class.pmprogateway_stripe.php:570
|
5611 |
#: classes/gateways/class.pmprogateway_stripe.php:577
|
5612 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
5613 |
+
#: classes/gateways/class.pmprogateway_stripe.php:579
|
5614 |
+
#: classes/gateways/class.pmprogateway_stripe.php:903 pages/checkout.php:363
|
5615 |
#: pages/checkout.php:412 pages/checkout.php:420 pages/checkout.php:476
|
5616 |
#: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
|
5617 |
#: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
|
5621 |
msgstr ""
|
5622 |
|
5623 |
#: classes/gateways/class.pmprogateway_braintree.php:466
|
5624 |
+
#: classes/gateways/class.pmprogateway_stripe.php:984 includes/privacy.php:293
|
5625 |
#: pages/billing.php:321 pages/checkout.php:374 adminpages/orders.php:339
|
5626 |
#: adminpages/orders.php:389 adminpages/orders.php:461
|
5627 |
#: adminpages/orders.php:490 adminpages/orders.php:532
|
5665 |
#: classes/gateways/class.pmprogateway_stripe.php:581
|
5666 |
#: classes/gateways/class.pmprogateway_stripe.php:588
|
5667 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
5668 |
+
#: classes/gateways/class.pmprogateway_stripe.php:590
|
5669 |
+
#: classes/gateways/class.pmprogateway_stripe.php:914 includes/privacy.php:293
|
5670 |
#: pages/billing.php:234 pages/billing.php:238 pages/billing.php:247
|
5671 |
#: pages/billing.php:250 pages/billing.php:253 pages/billing.php:262
|
5672 |
#: pages/billing.php:268 pages/billing.php:271 pages/billing.php:274
|
5673 |
#: pages/billing.php:275 pages/billing.php:279 pages/billing.php:280
|
5674 |
#: pages/billing.php:288 pages/billing.php:294 pages/billing.php:297
|
5675 |
+
#: pages/billing.php:321 pages/checkout.php:374 pages/checkout.php:423
|
5676 |
+
#: pages/checkout.php:431 pages/checkout.php:493 pages/checkout.php:507
|
5677 |
+
#: pages/checkout.php:510 pages/checkout.php:516 pages/checkout.php:517
|
5678 |
+
#: pages/checkout.php:525 pages/checkout.php:527 pages/checkout.php:534
|
5679 |
+
#: pages/checkout.php:537
|
5680 |
msgid "Card Type"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
#: classes/gateways/class.pmprogateway_braintree.php:475
|
5684 |
+
#: classes/gateways/class.pmprogateway_stripe.php:997 pages/billing.php:359
|
5685 |
#: pages/checkout.php:385 classes/gateways/class.pmprogateway_braintree.php:303
|
5686 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
5687 |
#: classes/gateways/class.pmprogateway_braintree.php:318
|
5717 |
#: classes/gateways/class.pmprogateway_stripe.php:617
|
5718 |
#: classes/gateways/class.pmprogateway_stripe.php:624
|
5719 |
#: classes/gateways/class.pmprogateway_stripe.php:625
|
5720 |
+
#: classes/gateways/class.pmprogateway_stripe.php:626
|
5721 |
+
#: classes/gateways/class.pmprogateway_stripe.php:927 pages/billing.php:244
|
5722 |
#: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
|
5723 |
#: pages/billing.php:263 pages/billing.php:305 pages/billing.php:309
|
5724 |
#: pages/billing.php:311 pages/billing.php:312 pages/billing.php:313
|
5725 |
#: pages/billing.php:314 pages/billing.php:317 pages/billing.php:318
|
5726 |
#: pages/billing.php:326 pages/billing.php:335 pages/billing.php:337
|
5727 |
+
#: pages/billing.php:359 pages/checkout.php:385 pages/checkout.php:459
|
5728 |
+
#: pages/checkout.php:467 pages/checkout.php:503 pages/checkout.php:519
|
5729 |
+
#: pages/checkout.php:520 pages/checkout.php:527 pages/checkout.php:548
|
5730 |
+
#: pages/checkout.php:557 pages/checkout.php:566 pages/checkout.php:570
|
5731 |
+
#: pages/checkout.php:577 pages/checkout.php:580
|
5732 |
msgid "Card Number"
|
5733 |
msgstr ""
|
5734 |
|
5763 |
#: pages/billing.php:301 pages/billing.php:343 pages/billing.php:348
|
5764 |
#: pages/billing.php:351 pages/billing.php:352 pages/billing.php:354
|
5765 |
#: pages/billing.php:356 pages/billing.php:357 pages/billing.php:365
|
5766 |
+
#: pages/billing.php:374 pages/billing.php:380 pages/billing.php:398
|
5767 |
+
#: pages/checkout.php:540 pages/checkout.php:556 pages/checkout.php:557
|
5768 |
+
#: pages/checkout.php:564 pages/checkout.php:585 pages/checkout.php:594
|
5769 |
+
#: pages/checkout.php:603 pages/checkout.php:605 pages/checkout.php:607
|
5770 |
+
#: pages/checkout.php:608 pages/checkout.php:612 pages/checkout.php:615
|
5771 |
msgid "CVV"
|
5772 |
msgstr ""
|
5773 |
|
5808 |
#: pages/billing.php:302 pages/billing.php:344 pages/billing.php:349
|
5809 |
#: pages/billing.php:352 pages/billing.php:353 pages/billing.php:355
|
5810 |
#: pages/billing.php:357 pages/billing.php:358 pages/billing.php:366
|
5811 |
+
#: pages/billing.php:375 pages/billing.php:381 pages/billing.php:399
|
5812 |
+
#: pages/checkout.php:421 pages/checkout.php:493 pages/checkout.php:501
|
5813 |
+
#: pages/checkout.php:541 pages/checkout.php:557 pages/checkout.php:558
|
5814 |
+
#: pages/checkout.php:565 pages/checkout.php:586 pages/checkout.php:595
|
5815 |
+
#: pages/checkout.php:604 pages/checkout.php:606 pages/checkout.php:608
|
5816 |
+
#: pages/checkout.php:609 pages/checkout.php:613 pages/checkout.php:616
|
5817 |
msgid "what's this?"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
#: classes/gateways/class.pmprogateway_braintree.php:511
|
5821 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1019 pages/checkout.php:91
|
5822 |
#: pages/checkout.php:428 classes/gateways/class.pmprogateway_braintree.php:351
|
5823 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
5824 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
5855 |
#: classes/gateways/class.pmprogateway_stripe.php:654
|
5856 |
#: classes/gateways/class.pmprogateway_stripe.php:661
|
5857 |
#: classes/gateways/class.pmprogateway_stripe.php:662
|
5858 |
+
#: classes/gateways/class.pmprogateway_stripe.php:663
|
5859 |
+
#: classes/gateways/class.pmprogateway_stripe.php:949 pages/checkout.php:78
|
5860 |
#: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:83
|
5861 |
#: pages/checkout.php:87 pages/checkout.php:88 pages/checkout.php:91
|
5862 |
#: pages/checkout.php:95 pages/checkout.php:98 pages/checkout.php:428
|
6936 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:208
|
6937 |
#: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
|
6938 |
#: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
|
6939 |
+
#: classes/gateways/class.pmprogateway_paypal.php:199
|
6940 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:163
|
6941 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:173
|
6942 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:196
|
6975 |
#: classes/gateways/class.pmprogateway_paypal.php:287
|
6976 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:481
|
6977 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
6978 |
+
#: pages/checkout.php:509 classes/gateways/class.pmprogateway_paypal.php:184
|
6979 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
6980 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
6981 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
7004 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:481
|
7005 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
7006 |
#: classes/gateways/class.pmprogateway_twocheckout.php:205
|
7007 |
+
#: pages/checkout.php:509 classes/gateways/class.pmprogateway_paypal.php:184
|
7008 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
7009 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
7010 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
7046 |
#: classes/gateways/class.pmprogateway_paypal.php:693
|
7047 |
#: classes/gateways/class.pmprogateway_paypal.php:694
|
7048 |
#: classes/gateways/class.pmprogateway_paypal.php:703
|
7049 |
+
#: classes/gateways/class.pmprogateway_paypal.php:708
|
7050 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
7051 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:303
|
7052 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:305
|
7062 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:784
|
7063 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:785
|
7064 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:786
|
7065 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:790
|
7066 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:216
|
7067 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:220
|
7068 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:230
|
7164 |
#: classes/gateways/class.pmprogateway_stripe.php:203
|
7165 |
#: classes/gateways/class.pmprogateway_stripe.php:229
|
7166 |
#: classes/gateways/class.pmprogateway_stripe.php:231
|
7167 |
+
#: classes/gateways/class.pmprogateway_stripe.php:237
|
7168 |
#: paid-memberships-pro.php:117 paid-memberships-pro.php:118
|
7169 |
#: paid-memberships-pro.php:125 paid-memberships-pro.php:126
|
7170 |
#: paid-memberships-pro.php:127 paid-memberships-pro.php:128
|
7179 |
#: classes/gateways/class.pmprogateway_stripe.php:331
|
7180 |
#: classes/gateways/class.pmprogateway_stripe.php:299
|
7181 |
#: classes/gateways/class.pmprogateway_stripe.php:307
|
7182 |
+
#: classes/gateways/class.pmprogateway_stripe.php:331
|
7183 |
#: classes/gateways/class.pmprogateway_stripe.php:337
|
7184 |
#: classes/gateways/class.pmprogateway_stripe.php:339
|
7185 |
#: classes/gateways/class.pmprogateway_stripe.php:340
|
7202 |
#: classes/gateways/class.pmprogateway_stripe.php:283
|
7203 |
#: classes/gateways/class.pmprogateway_stripe.php:284
|
7204 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
7205 |
+
#: classes/gateways/class.pmprogateway_stripe.php:338
|
7206 |
msgid "Stripe Settings"
|
7207 |
msgstr ""
|
7208 |
|
7225 |
#: classes/gateways/class.pmprogateway_stripe.php:288
|
7226 |
#: classes/gateways/class.pmprogateway_stripe.php:289
|
7227 |
#: classes/gateways/class.pmprogateway_stripe.php:291
|
7228 |
+
#: classes/gateways/class.pmprogateway_stripe.php:343
|
7229 |
msgid "Publishable Key"
|
7230 |
msgstr ""
|
7231 |
|
7236 |
#: classes/gateways/class.pmprogateway_stripe.php:297
|
7237 |
#: classes/gateways/class.pmprogateway_stripe.php:298
|
7238 |
#: classes/gateways/class.pmprogateway_stripe.php:299
|
7239 |
+
#: classes/gateways/class.pmprogateway_stripe.php:351
|
7240 |
msgid "Your Publishable Key appears incorrect."
|
7241 |
msgstr ""
|
7242 |
|
7259 |
#: classes/gateways/class.pmprogateway_stripe.php:305
|
7260 |
#: classes/gateways/class.pmprogateway_stripe.php:306
|
7261 |
#: classes/gateways/class.pmprogateway_stripe.php:307
|
7262 |
+
#: classes/gateways/class.pmprogateway_stripe.php:359
|
7263 |
msgid "Secret Key"
|
7264 |
msgstr ""
|
7265 |
|
7266 |
+
#: classes/gateways/class.pmprogateway_stripe.php:367
|
7267 |
#: classes/gateways/class.pmprogateway_stripe.php:367
|
7268 |
msgid "Webhook"
|
7269 |
msgstr ""
|
7270 |
|
7271 |
+
#: classes/gateways/class.pmprogateway_stripe.php:371
|
7272 |
+
#: classes/gateways/class.pmprogateway_stripe.php:376
|
7273 |
#: classes/gateways/class.pmprogateway_stripe.php:371
|
7274 |
#: classes/gateways/class.pmprogateway_stripe.php:376
|
7275 |
msgid "Create Webhook"
|
7276 |
msgstr ""
|
7277 |
|
7278 |
+
#: classes/gateways/class.pmprogateway_stripe.php:378
|
7279 |
+
#: classes/gateways/class.pmprogateway_stripe.php:473
|
7280 |
+
#: classes/gateways/class.pmprogateway_stripe.php:490
|
7281 |
#: classes/gateways/class.pmprogateway_stripe.php:378
|
7282 |
#: classes/gateways/class.pmprogateway_stripe.php:473
|
7283 |
#: classes/gateways/class.pmprogateway_stripe.php:490
|
7307 |
#: classes/gateways/class.pmprogateway_stripe.php:313
|
7308 |
#: classes/gateways/class.pmprogateway_stripe.php:314
|
7309 |
#: classes/gateways/class.pmprogateway_stripe.php:315
|
7310 |
+
#: classes/gateways/class.pmprogateway_stripe.php:387
|
7311 |
msgid "Show Billing Address Fields"
|
7312 |
msgstr ""
|
7313 |
|
7331 |
#: classes/gateways/class.pmprogateway_stripe.php:323
|
7332 |
#: classes/gateways/class.pmprogateway_stripe.php:324
|
7333 |
#: classes/gateways/class.pmprogateway_stripe.php:325
|
7334 |
+
#: classes/gateways/class.pmprogateway_stripe.php:397
|
7335 |
msgid ""
|
7336 |
"Stripe doesn't require billing address fields. Choose 'No' to hide them on "
|
7337 |
"the checkout page.<br /><strong>If No, make sure you disable address "
|
7342 |
#: classes/gateways/class.pmprogateway_stripe.php:351
|
7343 |
#: classes/gateways/class.pmprogateway_stripe.php:352
|
7344 |
#: classes/gateways/class.pmprogateway_stripe.php:354
|
7345 |
+
#: classes/gateways/class.pmprogateway_stripe.php:412
|
7346 |
#, php-format
|
7347 |
msgid ""
|
7348 |
"Optional: Offer PayPal Express as an option at checkout using the <a target="
|
7350 |
"Option at Checkout Add On\">Add PayPal Express Add On</a>."
|
7351 |
msgstr ""
|
7352 |
|
7353 |
+
#: classes/gateways/class.pmprogateway_stripe.php:432
|
7354 |
#: classes/gateways/class.pmprogateway_stripe.php:432
|
7355 |
msgid "Webhook creation failed. You might already have a webhook set up."
|
7356 |
msgstr ""
|
7357 |
|
7358 |
+
#: classes/gateways/class.pmprogateway_stripe.php:447
|
7359 |
#: classes/gateways/class.pmprogateway_stripe.php:447
|
7360 |
msgid "Your webhook is enabled."
|
7361 |
msgstr ""
|
7362 |
|
7363 |
+
#: classes/gateways/class.pmprogateway_stripe.php:497
|
7364 |
#: classes/gateways/class.pmprogateway_stripe.php:497
|
7365 |
msgid "There was an error deleting the webhook."
|
7366 |
msgstr ""
|
7371 |
#: classes/gateways/class.pmprogateway_stripe.php:379
|
7372 |
#: classes/gateways/class.pmprogateway_stripe.php:380
|
7373 |
#: classes/gateways/class.pmprogateway_stripe.php:381
|
7374 |
+
#: classes/gateways/class.pmprogateway_stripe.php:530
|
7375 |
msgid "Verification steps confirmed. Your payment is processing."
|
7376 |
msgstr ""
|
7377 |
|
7378 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1008
|
7379 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
7380 |
#: classes/gateways/class.pmprogateway_stripe.php:577
|
7381 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
7382 |
#: classes/gateways/class.pmprogateway_stripe.php:580
|
7383 |
+
#: classes/gateways/class.pmprogateway_stripe.php:938
|
7384 |
msgid "CVC"
|
7385 |
msgstr ""
|
7386 |
|
7387 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1086
|
7388 |
#: classes/gateways/class.pmprogateway_stripe.php:650
|
7389 |
#: classes/gateways/class.pmprogateway_stripe.php:655
|
7390 |
#: classes/gateways/class.pmprogateway_stripe.php:656
|
7396 |
#: classes/gateways/class.pmprogateway_stripe.php:725
|
7397 |
#: classes/gateways/class.pmprogateway_stripe.php:726
|
7398 |
#: classes/gateways/class.pmprogateway_stripe.php:727
|
7399 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1016
|
7400 |
#, php-format
|
7401 |
msgid ""
|
7402 |
"%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may "
|
7403 |
"have been deleted."
|
7404 |
msgstr ""
|
7405 |
|
7406 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1091
|
7407 |
#: classes/gateways/class.pmprogateway_stripe.php:567
|
7408 |
#: classes/gateways/class.pmprogateway_stripe.php:568
|
7409 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
7426 |
#: classes/gateways/class.pmprogateway_stripe.php:732
|
7427 |
#: classes/gateways/class.pmprogateway_stripe.php:733
|
7428 |
#: classes/gateways/class.pmprogateway_stripe.php:734
|
7429 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1021
|
7430 |
msgid "Subscription Updates"
|
7431 |
msgstr ""
|
7432 |
|
7433 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1095
|
7434 |
#: classes/gateways/class.pmprogateway_stripe.php:571
|
7435 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
7436 |
#: classes/gateways/class.pmprogateway_stripe.php:582
|
7453 |
#: classes/gateways/class.pmprogateway_stripe.php:736
|
7454 |
#: classes/gateways/class.pmprogateway_stripe.php:737
|
7455 |
#: classes/gateways/class.pmprogateway_stripe.php:738
|
7456 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1025
|
7457 |
msgid ""
|
7458 |
"Subscription updates, allow you to change the member's subscription values "
|
7459 |
"at predefined times. Be sure to click Update Profile after making changes."
|
7460 |
msgstr ""
|
7461 |
|
7462 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1097
|
7463 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
7464 |
#: classes/gateways/class.pmprogateway_stripe.php:574
|
7465 |
#: classes/gateways/class.pmprogateway_stripe.php:584
|
7482 |
#: classes/gateways/class.pmprogateway_stripe.php:738
|
7483 |
#: classes/gateways/class.pmprogateway_stripe.php:739
|
7484 |
#: classes/gateways/class.pmprogateway_stripe.php:740
|
7485 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1027
|
7486 |
msgid ""
|
7487 |
"Subscription updates, allow you to change the member's subscription values "
|
7488 |
"at predefined times. Be sure to click Update User after making changes."
|
7489 |
msgstr ""
|
7490 |
|
7491 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1103 pages/billing.php:413
|
7492 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
7493 |
#: classes/gateways/class.pmprogateway_stripe.php:579
|
7494 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
7510 |
#: classes/gateways/class.pmprogateway_stripe.php:736
|
7511 |
#: classes/gateways/class.pmprogateway_stripe.php:743
|
7512 |
#: classes/gateways/class.pmprogateway_stripe.php:744
|
7513 |
+
#: classes/gateways/class.pmprogateway_stripe.php:745
|
7514 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1033 pages/billing.php:294
|
7515 |
#: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
|
7516 |
#: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
|
7517 |
#: pages/billing.php:362 pages/billing.php:363 pages/billing.php:364
|
7518 |
#: pages/billing.php:370 pages/billing.php:371 pages/billing.php:379
|
7519 |
#: pages/billing.php:389 pages/billing.php:391 pages/billing.php:396
|
7520 |
+
#: pages/billing.php:400 pages/billing.php:405 pages/billing.php:413
|
7521 |
msgid "Update"
|
7522 |
msgstr ""
|
7523 |
|
7524 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1683
|
7525 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1687
|
7526 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1700
|
7527 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1704
|
7528 |
#: classes/gateways/class.pmprogateway_stripe.php:1236
|
7529 |
#: classes/gateways/class.pmprogateway_stripe.php:1243
|
7530 |
#: classes/gateways/class.pmprogateway_stripe.php:1247
|
7545 |
#: classes/gateways/class.pmprogateway_stripe.php:1297
|
7546 |
#: classes/gateways/class.pmprogateway_stripe.php:1302
|
7547 |
#: classes/gateways/class.pmprogateway_stripe.php:1310
|
7548 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1613
|
7549 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1617
|
7550 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1630
|
7551 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1634
|
7552 |
#, php-format
|
7553 |
msgid "Error: %s"
|
7554 |
msgstr ""
|
7555 |
|
7556 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1798
|
7557 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1803
|
7558 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1808
|
7559 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
7560 |
#: classes/gateways/class.pmprogateway_stripe.php:192
|
7561 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
7590 |
#: classes/gateways/class.pmprogateway_stripe.php:1384
|
7591 |
#: classes/gateways/class.pmprogateway_stripe.php:1392
|
7592 |
#: classes/gateways/class.pmprogateway_stripe.php:1410
|
7593 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1728
|
7594 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1733
|
7595 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1738
|
7596 |
msgid "Error creating customer record with Stripe:"
|
7597 |
msgstr ""
|
7598 |
|
7599 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1867
|
7600 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1872
|
7601 |
#: classes/gateways/class.pmprogateway_stripe.php:1275
|
7602 |
#: classes/gateways/class.pmprogateway_stripe.php:1303
|
7603 |
#: classes/gateways/class.pmprogateway_stripe.php:1313
|
7621 |
#: classes/gateways/class.pmprogateway_stripe.php:1444
|
7622 |
#: classes/gateways/class.pmprogateway_stripe.php:1451
|
7623 |
#: classes/gateways/class.pmprogateway_stripe.php:1469
|
7624 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1797
|
7625 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1802
|
7626 |
msgid "Error getting subscription with Stripe:"
|
7627 |
msgstr ""
|
7628 |
|
7629 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2038
|
7630 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2043
|
7631 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
7632 |
#: classes/gateways/class.pmprogateway_stripe.php:279
|
7633 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
7672 |
#: classes/gateways/class.pmprogateway_stripe.php:1610
|
7673 |
#: classes/gateways/class.pmprogateway_stripe.php:1615
|
7674 |
#: classes/gateways/class.pmprogateway_stripe.php:1625
|
7675 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1968
|
7676 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1973
|
7677 |
msgid "Error creating plan with Stripe:"
|
7678 |
msgstr ""
|
7679 |
|
7680 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2074
|
7681 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2088
|
7682 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
7683 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
7684 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
7718 |
#: classes/gateways/class.pmprogateway_stripe.php:1646
|
7719 |
#: classes/gateways/class.pmprogateway_stripe.php:1656
|
7720 |
#: classes/gateways/class.pmprogateway_stripe.php:1660
|
7721 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2004
|
7722 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2018
|
7723 |
msgid "Error subscribing customer to plan with Stripe:"
|
7724 |
msgstr ""
|
7725 |
|
7726 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2179
|
7727 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
7728 |
#: classes/gateways/class.pmprogateway_stripe.php:770
|
7729 |
#: classes/gateways/class.pmprogateway_stripe.php:780
|
7749 |
#: classes/gateways/class.pmprogateway_stripe.php:1734
|
7750 |
#: classes/gateways/class.pmprogateway_stripe.php:1736
|
7751 |
#: classes/gateways/class.pmprogateway_stripe.php:1751
|
7752 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2109
|
7753 |
msgid "Could not cancel the old subscription. Updates have not been processed."
|
7754 |
msgstr ""
|
7755 |
|
7756 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2331
|
7757 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
7758 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
7759 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
7788 |
#: classes/gateways/class.pmprogateway_stripe.php:1885
|
7789 |
#: classes/gateways/class.pmprogateway_stripe.php:1887
|
7790 |
#: classes/gateways/class.pmprogateway_stripe.php:1902
|
7791 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2261
|
7792 |
msgid "Could not cancel old subscription."
|
7793 |
msgstr ""
|
7794 |
|
7795 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2347
|
7796 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
7797 |
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
7798 |
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
7823 |
#: classes/gateways/class.pmprogateway_stripe.php:1901
|
7824 |
#: classes/gateways/class.pmprogateway_stripe.php:1903
|
7825 |
#: classes/gateways/class.pmprogateway_stripe.php:1918
|
7826 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2277
|
7827 |
msgid "Could not find the customer."
|
7828 |
msgstr ""
|
7829 |
|
7830 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2515
|
7831 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2521
|
7832 |
#: classes/gateways/class.pmprogateway_stripe.php:1836
|
7833 |
#: classes/gateways/class.pmprogateway_stripe.php:1837
|
7834 |
#: classes/gateways/class.pmprogateway_stripe.php:1847
|
7850 |
#: classes/gateways/class.pmprogateway_stripe.php:2076
|
7851 |
#: classes/gateways/class.pmprogateway_stripe.php:2085
|
7852 |
#: classes/gateways/class.pmprogateway_stripe.php:2091
|
7853 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2445
|
7854 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2451
|
7855 |
msgid "Error: "
|
7856 |
msgstr ""
|
7857 |
|
7858 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2535
|
7859 |
#: classes/gateways/class.pmprogateway_stripe.php:1849
|
7860 |
#: classes/gateways/class.pmprogateway_stripe.php:1850
|
7861 |
#: classes/gateways/class.pmprogateway_stripe.php:1860
|
7874 |
#: classes/gateways/class.pmprogateway_stripe.php:2088
|
7875 |
#: classes/gateways/class.pmprogateway_stripe.php:2090
|
7876 |
#: classes/gateways/class.pmprogateway_stripe.php:2105
|
7877 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2465
|
7878 |
#, php-format
|
7879 |
msgid "Error: Unkown error while refunding charge #%s"
|
7880 |
msgstr ""
|
7881 |
|
7882 |
+
#: classes/gateways/class.pmprogateway_stripe.php:3003
|
7883 |
#: classes/gateways/class.pmprogateway_stripe.php:2438
|
7884 |
#: classes/gateways/class.pmprogateway_stripe.php:2479
|
7885 |
#: classes/gateways/class.pmprogateway_stripe.php:2485
|
7886 |
#: classes/gateways/class.pmprogateway_stripe.php:2547
|
7887 |
#: classes/gateways/class.pmprogateway_stripe.php:2549
|
7888 |
#: classes/gateways/class.pmprogateway_stripe.php:2564
|
7889 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2924
|
7890 |
msgid ""
|
7891 |
"Customer authentication is required to complete this transaction. Please "
|
7892 |
"complete the verification steps issued by your payment provider."
|
7893 |
msgstr ""
|
7894 |
|
7895 |
+
#: classes/gateways/class.pmprogateway_stripe.php:3020
|
7896 |
#: classes/gateways/class.pmprogateway_stripe.php:2455
|
7897 |
#: classes/gateways/class.pmprogateway_stripe.php:2496
|
7898 |
#: classes/gateways/class.pmprogateway_stripe.php:2502
|
7899 |
#: classes/gateways/class.pmprogateway_stripe.php:2564
|
7900 |
#: classes/gateways/class.pmprogateway_stripe.php:2566
|
7901 |
#: classes/gateways/class.pmprogateway_stripe.php:2581
|
7902 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2941
|
7903 |
msgid ""
|
7904 |
"Customer authentication is required to finish setting up your subscription. "
|
7905 |
"Please complete the verification steps issued by your payment provider."
|
7993 |
msgid "Check Out with 2Checkout"
|
7994 |
msgstr ""
|
7995 |
|
7996 |
+
#: includes/addons.php:241 includes/addons.php:222 includes/addons.php:225
|
7997 |
#: includes/addons.php:239
|
7998 |
msgid ""
|
7999 |
"Important: This plugin requires a valid PMPro Plus license key to update."
|
8000 |
msgstr ""
|
8001 |
|
8002 |
+
#: includes/addons.php:294 includes/addons.php:274 includes/addons.php:278
|
8003 |
#: includes/addons.php:292
|
8004 |
msgid ""
|
8005 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
8008 |
"updated:"
|
8009 |
msgstr ""
|
8010 |
|
8011 |
+
#: includes/addons.php:312 includes/addons.php:292 includes/addons.php:296
|
8012 |
#: includes/addons.php:310
|
8013 |
msgid "Update Plugin"
|
8014 |
msgstr ""
|
8015 |
|
8016 |
+
#: includes/addons.php:314 includes/addons.php:294 includes/addons.php:298
|
8017 |
#: includes/addons.php:312
|
8018 |
msgid ""
|
8019 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
8021 |
"Key</a> to update PMPro Plus add ons."
|
8022 |
msgstr ""
|
8023 |
|
8024 |
+
#: includes/addons.php:317 includes/addons.php:297 includes/addons.php:301
|
8025 |
#: includes/addons.php:315
|
8026 |
msgid "Return to the PMPro Add Ons page"
|
8027 |
msgstr ""
|
8028 |
|
8029 |
+
#: includes/addons.php:336 includes/addons.php:316 includes/addons.php:320
|
8030 |
#: includes/addons.php:334
|
8031 |
msgid ""
|
8032 |
"You must enter a valid PMPro Plus License Key under Settings > PMPro License "
|
9205 |
msgid "US Armed Forces"
|
9206 |
msgstr ""
|
9207 |
|
9208 |
+
#: includes/currencies.php:7 includes/currencies.php:113
|
9209 |
+
#: includes/currencies.php:140 includes/currencies.php:7
|
9210 |
#: includes/currencies.php:17 includes/currencies.php:37
|
9211 |
#: includes/currencies.php:44 includes/currencies.php:64
|
9212 |
#: includes/currencies.php:68 includes/currencies.php:75
|
9219 |
msgid "US Dollars ($)"
|
9220 |
msgstr ""
|
9221 |
|
9222 |
+
#: includes/currencies.php:9 includes/currencies.php:116
|
9223 |
#: includes/currencies.php:8 includes/currencies.php:9
|
9224 |
#: includes/currencies.php:19 includes/currencies.php:40
|
9225 |
#: includes/currencies.php:47 includes/currencies.php:67
|
9231 |
msgid "Euros (€)"
|
9232 |
msgstr ""
|
9233 |
|
9234 |
+
#: includes/currencies.php:14 includes/currencies.php:115
|
9235 |
#: includes/currencies.php:9 includes/currencies.php:14
|
9236 |
#: includes/currencies.php:24 includes/currencies.php:39
|
9237 |
#: includes/currencies.php:46 includes/currencies.php:66
|
9260 |
msgid "Brazilian Real (R$)"
|
9261 |
msgstr ""
|
9262 |
|
9263 |
+
#: includes/currencies.php:25 includes/currencies.php:114
|
9264 |
#: includes/currencies.php:12 includes/currencies.php:24
|
9265 |
#: includes/currencies.php:25 includes/currencies.php:34
|
9266 |
#: includes/currencies.php:35 includes/currencies.php:38
|
9409 |
msgid "Polish Zloty"
|
9410 |
msgstr ""
|
9411 |
|
9412 |
+
#: includes/currencies.php:68
|
9413 |
+
msgid "Romanian Leu"
|
9414 |
+
msgstr ""
|
9415 |
+
|
9416 |
+
#: includes/currencies.php:76 includes/currencies.php:63
|
9417 |
#: includes/currencies.php:65 includes/currencies.php:68
|
9418 |
#: includes/currencies.php:73
|
9419 |
msgid "Russian Ruble (₽)"
|
9420 |
msgstr ""
|
9421 |
|
9422 |
+
#: includes/currencies.php:84 includes/currencies.php:25
|
9423 |
#: includes/currencies.php:28 includes/currencies.php:45
|
9424 |
#: includes/currencies.php:52 includes/currencies.php:62
|
9425 |
#: includes/currencies.php:64 includes/currencies.php:65
|
9429 |
msgid "Singapore Dollar ($)"
|
9430 |
msgstr ""
|
9431 |
|
9432 |
+
#: includes/currencies.php:89 includes/currencies.php:50
|
9433 |
#: includes/currencies.php:57 includes/currencies.php:67
|
9434 |
#: includes/currencies.php:69 includes/currencies.php:70
|
9435 |
#: includes/currencies.php:73 includes/currencies.php:75
|
9438 |
msgid "South African Rand (R)"
|
9439 |
msgstr ""
|
9440 |
|
9441 |
+
#: includes/currencies.php:94 includes/currencies.php:30
|
9442 |
#: includes/currencies.php:50 includes/currencies.php:54
|
9443 |
#: includes/currencies.php:61 includes/currencies.php:71
|
9444 |
#: includes/currencies.php:73 includes/currencies.php:75
|
9448 |
msgid "South Korean Won"
|
9449 |
msgstr ""
|
9450 |
|
9451 |
+
#: includes/currencies.php:97 includes/currencies.php:26
|
9452 |
#: includes/currencies.php:31 includes/currencies.php:51
|
9453 |
#: includes/currencies.php:55 includes/currencies.php:62
|
9454 |
#: includes/currencies.php:72 includes/currencies.php:74
|
9458 |
msgid "Swedish Krona"
|
9459 |
msgstr ""
|
9460 |
|
9461 |
+
#: includes/currencies.php:98 includes/currencies.php:27
|
9462 |
#: includes/currencies.php:32 includes/currencies.php:52
|
9463 |
#: includes/currencies.php:56 includes/currencies.php:63
|
9464 |
#: includes/currencies.php:73 includes/currencies.php:75
|
9468 |
msgid "Swiss Franc"
|
9469 |
msgstr ""
|
9470 |
|
9471 |
+
#: includes/currencies.php:99 includes/currencies.php:28
|
9472 |
#: includes/currencies.php:33 includes/currencies.php:53
|
9473 |
#: includes/currencies.php:57 includes/currencies.php:64
|
9474 |
#: includes/currencies.php:74 includes/currencies.php:76
|
9478 |
msgid "Taiwan New Dollars"
|
9479 |
msgstr ""
|
9480 |
|
9481 |
+
#: includes/currencies.php:100 includes/currencies.php:29
|
9482 |
#: includes/currencies.php:34 includes/currencies.php:54
|
9483 |
#: includes/currencies.php:58 includes/currencies.php:65
|
9484 |
#: includes/currencies.php:75 includes/currencies.php:77
|
9488 |
msgid "Thai Baht"
|
9489 |
msgstr ""
|
9490 |
|
9491 |
+
#: includes/currencies.php:101 includes/currencies.php:35
|
9492 |
#: includes/currencies.php:55 includes/currencies.php:59
|
9493 |
#: includes/currencies.php:66 includes/currencies.php:76
|
9494 |
#: includes/currencies.php:78 includes/currencies.php:82
|
9498 |
msgid "Turkish Lira"
|
9499 |
msgstr ""
|
9500 |
|
9501 |
+
#: includes/currencies.php:103 includes/currencies.php:36
|
9502 |
#: includes/currencies.php:56 includes/currencies.php:60
|
9503 |
#: includes/currencies.php:67 includes/currencies.php:77
|
9504 |
#: includes/currencies.php:79 includes/currencies.php:84
|
9845 |
#: includes/functions.php:1077 includes/functions.php:1096
|
9846 |
#: includes/functions.php:1123 includes/functions.php:1127
|
9847 |
#: includes/functions.php:1129 includes/functions.php:1135
|
9848 |
+
#: includes/functions.php:1138 includes/functions.php:1139
|
9849 |
+
#: includes/functions.php:1140
|
9850 |
#, php-format
|
9851 |
msgid "Error interacting with database: %s"
|
9852 |
msgstr ""
|
9875 |
#: includes/functions.php:1179 includes/functions.php:1193
|
9876 |
#: includes/functions.php:1198 includes/functions.php:1202
|
9877 |
#: includes/functions.php:1204 includes/functions.php:1212
|
9878 |
+
#: includes/functions.php:1213 includes/functions.php:1217
|
9879 |
+
#: includes/functions.php:1218 includes/functions.php:1237
|
9880 |
+
#: includes/functions.php:1241 includes/functions.php:1243
|
9881 |
+
#: includes/functions.php:1251 includes/functions.php:1252
|
9882 |
+
#: includes/functions.php:1255 includes/functions.php:1256
|
9883 |
msgid "Membership level not found."
|
9884 |
msgstr ""
|
9885 |
|
9894 |
#: includes/functions.php:1547 includes/functions.php:1586
|
9895 |
#: includes/functions.php:1605 includes/functions.php:1609
|
9896 |
#: includes/functions.php:1611 includes/functions.php:1620
|
9897 |
+
#: includes/functions.php:1625 includes/functions.php:1629
|
9898 |
+
#: includes/functions.php:1630
|
9899 |
msgid "No code was given to check."
|
9900 |
msgstr ""
|
9901 |
|
9914 |
#: includes/functions.php:1595 includes/functions.php:1614
|
9915 |
#: includes/functions.php:1618 includes/functions.php:1620
|
9916 |
#: includes/functions.php:1629 includes/functions.php:1634
|
9917 |
+
#: includes/functions.php:1638 includes/functions.php:1639
|
9918 |
msgid "The discount code could not be found."
|
9919 |
msgstr ""
|
9920 |
|
9933 |
#: includes/functions.php:1610 includes/functions.php:1629
|
9934 |
#: includes/functions.php:1633 includes/functions.php:1635
|
9935 |
#: includes/functions.php:1644 includes/functions.php:1649
|
9936 |
+
#: includes/functions.php:1653 includes/functions.php:1654
|
9937 |
#, php-format
|
9938 |
msgid "This discount code goes into effect on %s."
|
9939 |
msgstr ""
|
9953 |
#: includes/functions.php:1617 includes/functions.php:1636
|
9954 |
#: includes/functions.php:1640 includes/functions.php:1642
|
9955 |
#: includes/functions.php:1651 includes/functions.php:1656
|
9956 |
+
#: includes/functions.php:1660 includes/functions.php:1661
|
9957 |
#, php-format
|
9958 |
msgid "This discount code expired on %s."
|
9959 |
msgstr ""
|
9973 |
#: includes/functions.php:1626 includes/functions.php:1646
|
9974 |
#: includes/functions.php:1650 includes/functions.php:1652
|
9975 |
#: includes/functions.php:1661 includes/functions.php:1665
|
9976 |
+
#: includes/functions.php:1669 includes/functions.php:1670
|
9977 |
msgid "This discount code is no longer valid."
|
9978 |
msgstr ""
|
9979 |
|
9991 |
#: includes/functions.php:1606 includes/functions.php:1645
|
9992 |
#: includes/functions.php:1666 includes/functions.php:1670
|
9993 |
#: includes/functions.php:1672 includes/functions.php:1681
|
9994 |
+
#: includes/functions.php:1684 includes/functions.php:1688
|
9995 |
+
#: includes/functions.php:1689
|
9996 |
msgid "This discount code does not apply to this membership level."
|
9997 |
msgstr ""
|
9998 |
|
10011 |
#: includes/functions.php:1683 includes/functions.php:1703
|
10012 |
#: includes/functions.php:1707 includes/functions.php:1709
|
10013 |
#: includes/functions.php:1718 includes/functions.php:1722
|
10014 |
+
#: includes/functions.php:1726 includes/functions.php:1727
|
10015 |
msgid "This discount code is okay."
|
10016 |
msgstr ""
|
10017 |
|
10030 |
#: includes/functions.php:1711 includes/functions.php:1730
|
10031 |
#: includes/functions.php:1734 includes/functions.php:1736
|
10032 |
#: includes/functions.php:1745 includes/functions.php:1750
|
10033 |
+
#: includes/functions.php:1754 includes/functions.php:1755
|
10034 |
msgid "and"
|
10035 |
msgstr ""
|
10036 |
|
10052 |
#: includes/functions.php:2034 includes/functions.php:2061
|
10053 |
#: includes/functions.php:2100 includes/functions.php:2102
|
10054 |
#: includes/functions.php:2155 includes/functions.php:2199
|
10055 |
+
#: includes/functions.php:2210
|
10056 |
msgid "Sign Up for !!name!! Now"
|
10057 |
msgstr ""
|
10058 |
|
10060 |
#: includes/functions.php:2054 includes/functions.php:2085
|
10061 |
#: includes/functions.php:2124 includes/functions.php:2126
|
10062 |
#: includes/functions.php:2179 includes/functions.php:2223
|
10063 |
+
#: includes/functions.php:2234
|
10064 |
msgid "Sign Up Now"
|
10065 |
msgstr ""
|
10066 |
|
10076 |
#: includes/init.php:220 includes/init.php:222 includes/init.php:230
|
10077 |
#: includes/init.php:238 includes/init.php:242 includes/init.php:243
|
10078 |
#: includes/init.php:244 includes/init.php:258 includes/init.php:262
|
10079 |
+
#: includes/profile.php:22 includes/profile.php:25 includes/profile.php:27
|
10080 |
+
#: includes/profile.php:30 includes/profile.php:31 includes/profile.php:36
|
10081 |
+
#: pages/checkout.php:33 pages/checkout.php:34 pages/checkout.php:35
|
10082 |
+
#: pages/checkout.php:39 pages/checkout.php:42 pages/checkout.php:45
|
10083 |
+
#: pages/checkout.php:47 pages/confirmation.php:46 pages/confirmation.php:47
|
10084 |
#: pages/confirmation.php:52 pages/confirmation.php:53
|
10085 |
#: pages/confirmation.php:62 pages/confirmation.php:64
|
10086 |
#: pages/confirmation.php:70 pages/confirmation.php:91
|
10093 |
msgid "Membership Level"
|
10094 |
msgstr ""
|
10095 |
|
10096 |
+
#: includes/lib/SendWP/sendwp.php:90 includes/lib/SendWP/sendwp.php:90
|
10097 |
msgid "Something went wrong. SendWP was not installed correctly."
|
10098 |
msgstr ""
|
10099 |
|
10166 |
msgstr ""
|
10167 |
|
10168 |
#: includes/login.php:251 includes/login.php:275 includes/login.php:211
|
10169 |
+
#: includes/login.php:235 includes/login.php:251 includes/login.php:275
|
10170 |
msgid "Welcome"
|
10171 |
msgstr ""
|
10172 |
|
10173 |
#: includes/login.php:253 includes/login.php:277 includes/login.php:213
|
10174 |
+
#: includes/login.php:237 includes/login.php:253 includes/login.php:277
|
10175 |
msgid "Lost Password"
|
10176 |
msgstr ""
|
10177 |
|
10178 |
#: includes/login.php:255 includes/login.php:279 includes/login.php:215
|
10179 |
+
#: includes/login.php:239 includes/login.php:255 includes/login.php:279
|
10180 |
msgid "Reset Password"
|
10181 |
msgstr ""
|
10182 |
|
10183 |
#: includes/login.php:303 includes/login.php:820 includes/login.php:263
|
10184 |
+
#: includes/login.php:303 includes/login.php:751 includes/login.php:820
|
10185 |
msgid "There was a problem with your username or password."
|
10186 |
msgstr ""
|
10187 |
|
10188 |
+
#: includes/login.php:307 includes/login.php:267 includes/login.php:307
|
10189 |
msgid "Unknown username. Check again or try your email address."
|
10190 |
msgstr ""
|
10191 |
|
10192 |
+
#: includes/login.php:311 includes/login.php:271 includes/login.php:311
|
10193 |
msgid "Empty username. Please enter your username and try again."
|
10194 |
msgstr ""
|
10195 |
|
10196 |
+
#: includes/login.php:315 includes/login.php:275 includes/login.php:315
|
10197 |
msgid "Empty password. Please enter your password and try again."
|
10198 |
msgstr ""
|
10199 |
|
10200 |
+
#: includes/login.php:319 includes/login.php:279 includes/login.php:319
|
10201 |
msgid "The password you entered for the user is incorrect. Please try again."
|
10202 |
msgstr ""
|
10203 |
|
10204 |
+
#: includes/login.php:323 includes/login.php:283 includes/login.php:323
|
10205 |
msgid "Check your email for the confirmation link."
|
10206 |
msgstr ""
|
10207 |
|
10208 |
+
#: includes/login.php:332 includes/login.php:292 includes/login.php:332
|
10209 |
msgid "You are now logged out."
|
10210 |
msgstr ""
|
10211 |
|
10212 |
+
#: includes/login.php:336 includes/login.php:296 includes/login.php:336
|
10213 |
msgid "There was a problem logging you out."
|
10214 |
msgstr ""
|
10215 |
|
10216 |
+
#: includes/login.php:347 includes/login.php:307 includes/login.php:347
|
10217 |
msgid "Check your email for a link to reset your password."
|
10218 |
msgstr ""
|
10219 |
|
10220 |
+
#: includes/login.php:350 includes/login.php:310 includes/login.php:350
|
10221 |
msgid "There was an unexpected error regarding your email. Please try again"
|
10222 |
msgstr ""
|
10223 |
|
10224 |
+
#: includes/login.php:360 includes/login.php:320 includes/login.php:360
|
10225 |
msgid "Your reset password key is invalid."
|
10226 |
msgstr ""
|
10227 |
|
10228 |
+
#: includes/login.php:364 includes/login.php:324 includes/login.php:364
|
10229 |
msgid ""
|
10230 |
"Your reset password key is expired, please request a new key from the "
|
10231 |
"password reset page."
|
10232 |
msgstr ""
|
10233 |
|
10234 |
+
#: includes/login.php:376 includes/login.php:336 includes/login.php:376
|
10235 |
msgid "Your password has successfully been updated."
|
10236 |
msgstr ""
|
10237 |
|
10238 |
+
#: includes/login.php:380 includes/login.php:340 includes/login.php:380
|
10239 |
msgid "There was a problem updating your password"
|
10240 |
msgstr ""
|
10241 |
|
10242 |
+
#: includes/login.php:394 includes/login.php:349 includes/login.php:394
|
10243 |
msgid "There is no account with that username or email address."
|
10244 |
msgstr ""
|
10245 |
|
10246 |
+
#: includes/login.php:398 includes/login.php:353 includes/login.php:398
|
10247 |
msgid "Please enter a valid username."
|
10248 |
msgstr ""
|
10249 |
|
10250 |
+
#: includes/login.php:402 includes/login.php:357 includes/login.php:402
|
10251 |
msgid "You've entered an invalid email address."
|
10252 |
msgstr ""
|
10253 |
|
10254 |
+
#: includes/login.php:406 includes/profile.php:595 includes/login.php:361
|
10255 |
+
#: includes/login.php:406 includes/profile.php:586 includes/profile.php:624
|
10256 |
msgid "New passwords do not match."
|
10257 |
msgstr ""
|
10258 |
|
10259 |
+
#: includes/login.php:410 includes/profile.php:591 includes/login.php:365
|
10260 |
+
#: includes/login.php:410 includes/profile.php:582 includes/profile.php:620
|
10261 |
msgid "Please complete all fields."
|
10262 |
msgstr ""
|
10263 |
|
10264 |
+
#: includes/login.php:414 includes/login.php:414
|
10265 |
msgid ""
|
10266 |
"The email could not be sent. This site may not be correctly configured to "
|
10267 |
"send emails."
|
10268 |
msgstr ""
|
10269 |
|
10270 |
+
#: includes/login.php:636 includes/profile.php:646 includes/scripts.php:86
|
10271 |
+
#: includes/login.php:587 includes/login.php:636 includes/profile.php:637
|
10272 |
+
#: includes/profile.php:675 includes/scripts.php:72 includes/scripts.php:86
|
10273 |
msgid "Strength Indicator"
|
10274 |
msgstr ""
|
10275 |
|
10276 |
+
#: includes/login.php:959 includes/login.php:886 includes/login.php:959
|
10277 |
msgid "Missing request ID."
|
10278 |
msgstr ""
|
10279 |
|
10280 |
+
#: includes/login.php:963 includes/login.php:890 includes/login.php:963
|
10281 |
msgid "Missing confirm key."
|
10282 |
msgstr ""
|
10283 |
|
10320 |
"Only members of these levels will be able to view posts in this category."
|
10321 |
msgstr ""
|
10322 |
|
10323 |
+
#: includes/pointers.php:31 includes/pointers.php:28
|
10324 |
msgid "PMPro v2.0 Update"
|
10325 |
msgstr ""
|
10326 |
|
10327 |
+
#: includes/pointers.php:32 includes/pointers.php:29
|
10328 |
#, php-format
|
10329 |
msgid ""
|
10330 |
"The Memberships menu has moved. Check out the new dashboard. The Membership "
|
10332 |
"\">Settings</a>."
|
10333 |
msgstr ""
|
10334 |
|
10335 |
+
#: includes/pointers.php:47 includes/pointers.php:44 includes/pointers.php:45
|
10336 |
msgid "Close"
|
10337 |
msgstr ""
|
10338 |
|
10600 |
msgid "That post has since been updated."
|
10601 |
msgstr ""
|
10602 |
|
10603 |
+
#: includes/profile.php:31 includes/profile.php:31 includes/profile.php:34
|
10604 |
+
#: includes/profile.php:36 includes/profile.php:39 includes/profile.php:40
|
10605 |
+
#: includes/profile.php:45
|
10606 |
msgid "Current Level"
|
10607 |
msgstr ""
|
10608 |
|
10609 |
+
#: includes/profile.php:58 pages/invoice.php:31
|
10610 |
+
#: shortcodes/pmpro_account.php:231 includes/profile.php:58
|
10611 |
#: includes/profile.php:67 includes/profile.php:72
|
10612 |
#: shortcodes/pmpro_account.php:148 shortcodes/pmpro_account.php:224
|
10613 |
+
#: shortcodes/pmpro_account.php:231
|
10614 |
msgid "Paid"
|
10615 |
msgstr ""
|
10616 |
|
10617 |
#: includes/profile.php:60 includes/profile.php:190 includes/profile.php:237
|
10618 |
#: includes/profile.php:54 includes/profile.php:60 includes/profile.php:65
|
10619 |
#: includes/profile.php:68 includes/profile.php:69 includes/profile.php:74
|
10620 |
+
#: includes/profile.php:190 includes/profile.php:195 includes/profile.php:221
|
10621 |
+
#: includes/profile.php:226 includes/profile.php:237 includes/profile.php:242
|
10622 |
+
#: includes/profile.php:268 includes/profile.php:273
|
10623 |
msgid "Not paying."
|
10624 |
msgstr ""
|
10625 |
|
10631 |
"checkbox is selected below."
|
10632 |
msgstr ""
|
10633 |
|
10634 |
+
#: includes/profile.php:120 includes/profile.php:120 includes/profile.php:151
|
10635 |
+
#: includes/profile.php:156
|
10636 |
msgid "Send the user an email about this change."
|
10637 |
msgstr ""
|
10638 |
|
10639 |
+
#: includes/profile.php:126 includes/profile.php:126 includes/profile.php:157
|
10640 |
+
#: includes/profile.php:162
|
10641 |
msgid "Cancel this user's subscription at the gateway."
|
10642 |
msgstr ""
|
10643 |
|
10644 |
+
#: includes/profile.php:140 includes/profile.php:140 includes/profile.php:171
|
10645 |
+
#: includes/profile.php:176
|
10646 |
msgid "TOS Consent History"
|
10647 |
msgstr ""
|
10648 |
|
10649 |
+
#: includes/profile.php:440 includes/profile.php:440 includes/profile.php:473
|
10650 |
msgid "Please enter a display name."
|
10651 |
msgstr ""
|
10652 |
|
10653 |
+
#: includes/profile.php:450 includes/profile.php:450 includes/profile.php:483
|
10654 |
msgid "Please enter an email address."
|
10655 |
msgstr ""
|
10656 |
|
10657 |
+
#: includes/profile.php:452 includes/profile.php:452 includes/profile.php:485
|
10658 |
msgid "The email address isn’t correct."
|
10659 |
msgstr ""
|
10660 |
|
10661 |
+
#: includes/profile.php:456 includes/profile.php:456 includes/profile.php:489
|
10662 |
msgid "This email is already registered, please choose another one."
|
10663 |
msgstr ""
|
10664 |
|
10665 |
+
#: includes/profile.php:474 includes/profile.php:474 includes/profile.php:507
|
10666 |
msgid "Your profile has been updated."
|
10667 |
msgstr ""
|
10668 |
|
10669 |
+
#: includes/profile.php:499 pages/billing.php:152 pages/checkout.php:230
|
10670 |
+
#: includes/profile.php:490 includes/profile.php:523 pages/billing.php:65
|
10671 |
+
#: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
|
10672 |
+
#: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
|
10673 |
+
#: pages/billing.php:104 pages/billing.php:107 pages/billing.php:108
|
10674 |
+
#: pages/billing.php:110 pages/billing.php:112 pages/billing.php:113
|
10675 |
+
#: pages/billing.php:121 pages/billing.php:130 pages/billing.php:152
|
10676 |
+
#: pages/checkout.php:230 pages/checkout.php:279 pages/checkout.php:287
|
10677 |
+
#: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
|
10678 |
+
#: pages/checkout.php:318 pages/checkout.php:321 pages/checkout.php:324
|
10679 |
+
#: pages/checkout.php:326 pages/checkout.php:328 pages/checkout.php:333
|
10680 |
+
#: pages/checkout.php:336
|
10681 |
msgid "First Name"
|
10682 |
msgstr ""
|
10683 |
|
10684 |
+
#: includes/profile.php:500 pages/billing.php:156 pages/checkout.php:234
|
10685 |
+
#: includes/profile.php:491 includes/profile.php:528 pages/billing.php:69
|
10686 |
+
#: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
|
10687 |
+
#: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
|
10688 |
+
#: pages/billing.php:108 pages/billing.php:111 pages/billing.php:112
|
10689 |
+
#: pages/billing.php:114 pages/billing.php:116 pages/billing.php:117
|
10690 |
+
#: pages/billing.php:125 pages/billing.php:134 pages/billing.php:156
|
10691 |
+
#: pages/checkout.php:234 pages/checkout.php:283 pages/checkout.php:291
|
10692 |
+
#: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
|
10693 |
+
#: pages/checkout.php:322 pages/checkout.php:325 pages/checkout.php:328
|
10694 |
+
#: pages/checkout.php:330 pages/checkout.php:332 pages/checkout.php:337
|
10695 |
+
#: pages/checkout.php:340
|
10696 |
msgid "Last Name"
|
10697 |
msgstr ""
|
10698 |
|
10699 |
+
#: includes/profile.php:501 includes/profile.php:492 includes/profile.php:533
|
10700 |
msgid "Display name publicly as"
|
10701 |
msgstr ""
|
10702 |
|
10703 |
+
#: includes/profile.php:537 includes/profile.php:528 includes/profile.php:566
|
10704 |
msgid "Update Profile"
|
10705 |
msgstr ""
|
10706 |
|
10707 |
+
#: includes/profile.php:593 includes/profile.php:584 includes/profile.php:622
|
10708 |
msgid "Please enter your current password."
|
10709 |
msgstr ""
|
10710 |
|
10711 |
+
#: includes/profile.php:597 includes/profile.php:588 includes/profile.php:626
|
10712 |
msgid "Your current password is incorrect."
|
10713 |
msgstr ""
|
10714 |
|
10715 |
+
#: includes/profile.php:608 includes/profile.php:599 includes/profile.php:637
|
10716 |
msgid "Your password has been updated."
|
10717 |
msgstr ""
|
10718 |
|
10719 |
+
#: includes/profile.php:624 includes/profile.php:615 includes/profile.php:653
|
10720 |
+
#: pages/account.php:56 pages/account.php:60 pages/account.php:81
|
10721 |
+
#: shortcodes/pmpro_account.php:111 shortcodes/pmpro_account.php:113
|
10722 |
+
#: shortcodes/pmpro_account.php:114 shortcodes/pmpro_account.php:116
|
10723 |
msgid "Change Password"
|
10724 |
msgstr ""
|
10725 |
|
10726 |
+
#: includes/profile.php:638 includes/profile.php:629 includes/profile.php:667
|
10727 |
msgid "Current Password"
|
10728 |
msgstr ""
|
10729 |
|
10730 |
+
#: includes/profile.php:640 includes/profile.php:645 includes/profile.php:652
|
10731 |
+
#: includes/profile.php:535 includes/profile.php:546 includes/profile.php:631
|
10732 |
+
#: includes/profile.php:636 includes/profile.php:643 includes/profile.php:669
|
10733 |
#: includes/profile.php:674 includes/profile.php:681
|
10734 |
msgid "Required Field"
|
10735 |
msgstr ""
|
10736 |
|
10737 |
+
#: includes/profile.php:643 includes/profile.php:634 includes/profile.php:672
|
10738 |
msgid "New Password"
|
10739 |
msgstr ""
|
10740 |
|
10741 |
+
#: includes/profile.php:650 includes/profile.php:641 includes/profile.php:679
|
10742 |
msgid "Confirm New Password"
|
10743 |
msgstr ""
|
10744 |
|
10795 |
#: pages/billing.php:34 pages/billing.php:14 pages/billing.php:23
|
10796 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
10797 |
#: pages/billing.php:28 pages/billing.php:31 pages/billing.php:32
|
10798 |
+
#: pages/billing.php:33 pages/billing.php:34 pages/billing.php:389
|
10799 |
#, php-format
|
10800 |
msgid "Logged in as <strong>%s</strong>."
|
10801 |
msgstr ""
|
10803 |
#: pages/billing.php:34 pages/billing.php:14 pages/billing.php:23
|
10804 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
10805 |
#: pages/billing.php:28 pages/billing.php:31 pages/billing.php:32
|
10806 |
+
#: pages/billing.php:33 pages/billing.php:34 pages/billing.php:389
|
10807 |
msgid "logout"
|
10808 |
msgstr ""
|
10809 |
|
10811 |
#: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
|
10812 |
#: pages/billing.php:32 pages/billing.php:43 pages/billing.php:46
|
10813 |
#: pages/billing.php:47 pages/billing.php:51 pages/billing.php:52
|
10814 |
+
#: pages/billing.php:59 pages/billing.php:60
|
10815 |
msgid "Membership Fee"
|
10816 |
msgstr ""
|
10817 |
|
10819 |
#: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
|
10820 |
#: pages/billing.php:36 pages/billing.php:47 pages/billing.php:50
|
10821 |
#: pages/billing.php:51 pages/billing.php:55 pages/billing.php:56
|
10822 |
+
#: pages/billing.php:63 pages/billing.php:64 pages/levels.php:70
|
10823 |
#, php-format
|
10824 |
msgid "%s every %d %s."
|
10825 |
msgstr ""
|
10828 |
#: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
|
10829 |
#: pages/billing.php:38 pages/billing.php:49 pages/billing.php:52
|
10830 |
#: pages/billing.php:53 pages/billing.php:57 pages/billing.php:58
|
10831 |
+
#: pages/billing.php:65 pages/billing.php:66 pages/levels.php:66
|
10832 |
#, php-format
|
10833 |
msgid "%s per %s."
|
10834 |
msgstr ""
|
10838 |
#: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
|
10839 |
#: pages/billing.php:59 pages/billing.php:62 pages/billing.php:63
|
10840 |
#: pages/billing.php:67 pages/billing.php:68 pages/billing.php:76
|
10841 |
+
#: pages/billing.php:77
|
10842 |
msgid "Duration"
|
10843 |
msgstr ""
|
10844 |
|
10845 |
+
#: pages/billing.php:84 pages/confirmation.php:79 pages/invoice.php:69
|
10846 |
+
#: pages/account.php:105 pages/account.php:109 pages/billing.php:84
|
10847 |
+
#: pages/confirmation.php:61 pages/confirmation.php:63
|
10848 |
+
#: pages/confirmation.php:69 pages/confirmation.php:78
|
10849 |
+
#: pages/confirmation.php:79 pages/confirmation.php:82 pages/invoice.php:48
|
10850 |
+
#: pages/invoice.php:50 pages/invoice.php:60 pages/invoice.php:61
|
10851 |
+
#: pages/invoice.php:62
|
10852 |
msgid "Payment Method"
|
10853 |
msgstr ""
|
10854 |
|
10855 |
+
#: pages/billing.php:86 pages/confirmation.php:81 pages/invoice.php:71
|
10856 |
+
#: pages/billing.php:86 pages/confirmation.php:79 pages/confirmation.php:80
|
10857 |
#: pages/confirmation.php:81 pages/confirmation.php:82
|
10858 |
#: pages/confirmation.php:83 pages/confirmation.php:88 pages/invoice.php:61
|
10859 |
#: pages/invoice.php:62 pages/invoice.php:63 pages/invoice.php:67
|
10862 |
msgstr ""
|
10863 |
|
10864 |
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:133
|
10865 |
+
#: pages/invoice.php:143 pages/billing.php:97 pages/billing.php:103
|
10866 |
+
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:111
|
10867 |
+
#: pages/confirmation.php:113 pages/confirmation.php:121
|
10868 |
+
#: pages/confirmation.php:124 pages/confirmation.php:131
|
10869 |
+
#: pages/confirmation.php:132 pages/confirmation.php:133
|
10870 |
+
#: pages/confirmation.php:134 pages/invoice.php:121 pages/invoice.php:133
|
10871 |
+
#: pages/invoice.php:134 pages/invoice.php:135 pages/invoice.php:136
|
10872 |
+
#: pages/invoice.php:139 pages/invoice.php:141
|
10873 |
msgid "View Your Membership Account →"
|
10874 |
msgstr ""
|
10875 |
|
10877 |
#: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
|
10878 |
#: pages/billing.php:57 pages/billing.php:77 pages/billing.php:80
|
10879 |
#: pages/billing.php:81 pages/billing.php:85 pages/billing.php:86
|
10880 |
+
#: pages/billing.php:94 pages/billing.php:100 pages/billing.php:116
|
10881 |
msgid ""
|
10882 |
"Your payment subscription is managed by PayPal. Please <a href=\"http://www."
|
10883 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
10884 |
msgstr ""
|
10885 |
|
10886 |
+
#: pages/billing.php:124 pages/billing.php:124
|
10887 |
msgid "Your billing information cannot be updated at this time."
|
10888 |
msgstr ""
|
10889 |
|
10890 |
#: pages/billing.php:148 pages/checkout.php:226 pages/confirmation.php:66
|
10891 |
+
#: pages/invoice.php:56 adminpages/memberslist.php:117
|
10892 |
#: adminpages/memberslist.php:150 adminpages/memberslist.php:160
|
10893 |
#: adminpages/memberslist.php:170 adminpages/memberslist.php:174
|
10894 |
#: pages/account.php:90 pages/account.php:94 pages/billing.php:58
|
10896 |
#: pages/billing.php:76 pages/billing.php:77 pages/billing.php:80
|
10897 |
#: pages/billing.php:100 pages/billing.php:103 pages/billing.php:104
|
10898 |
#: pages/billing.php:108 pages/billing.php:109 pages/billing.php:117
|
10899 |
+
#: pages/billing.php:126 pages/billing.php:148 pages/checkout.php:226
|
10900 |
+
#: pages/checkout.php:275 pages/checkout.php:283 pages/checkout.php:298
|
10901 |
+
#: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
|
10902 |
+
#: pages/checkout.php:314 pages/checkout.php:317 pages/checkout.php:319
|
10903 |
+
#: pages/checkout.php:321 pages/checkout.php:326 pages/checkout.php:329
|
10904 |
+
#: pages/confirmation.php:59 pages/confirmation.php:61
|
10905 |
+
#: pages/confirmation.php:65 pages/confirmation.php:66
|
10906 |
+
#: pages/confirmation.php:67 pages/confirmation.php:69 pages/invoice.php:46
|
10907 |
+
#: pages/invoice.php:47 pages/invoice.php:48 pages/invoice.php:49
|
10908 |
msgid "Billing Address"
|
10909 |
msgstr ""
|
10910 |
|
10913 |
#: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
|
10914 |
#: pages/billing.php:112 pages/billing.php:115 pages/billing.php:116
|
10915 |
#: pages/billing.php:118 pages/billing.php:120 pages/billing.php:121
|
10916 |
+
#: pages/billing.php:129 pages/billing.php:138 pages/billing.php:162
|
10917 |
+
#: pages/checkout.php:238 pages/checkout.php:287 pages/checkout.php:295
|
10918 |
+
#: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
|
10919 |
+
#: pages/checkout.php:326 pages/checkout.php:329 pages/checkout.php:332
|
10920 |
+
#: pages/checkout.php:334 pages/checkout.php:336 pages/checkout.php:341
|
10921 |
+
#: pages/checkout.php:344
|
10922 |
msgid "Address 1"
|
10923 |
msgstr ""
|
10924 |
|
10927 |
#: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
|
10928 |
#: pages/billing.php:116 pages/billing.php:119 pages/billing.php:120
|
10929 |
#: pages/billing.php:122 pages/billing.php:124 pages/billing.php:125
|
10930 |
+
#: pages/billing.php:133 pages/billing.php:142 pages/billing.php:166
|
10931 |
+
#: pages/checkout.php:242 pages/checkout.php:291 pages/checkout.php:299
|
10932 |
+
#: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
|
10933 |
+
#: pages/checkout.php:330 pages/checkout.php:333 pages/checkout.php:336
|
10934 |
+
#: pages/checkout.php:338 pages/checkout.php:340 pages/checkout.php:345
|
10935 |
+
#: pages/checkout.php:348
|
10936 |
msgid "Address 2"
|
10937 |
msgstr ""
|
10938 |
|
10941 |
#: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
|
10942 |
#: pages/billing.php:126 pages/billing.php:129 pages/billing.php:130
|
10943 |
#: pages/billing.php:132 pages/billing.php:134 pages/billing.php:135
|
10944 |
+
#: pages/billing.php:143 pages/billing.php:152 pages/billing.php:176
|
10945 |
+
#: pages/checkout.php:249 pages/checkout.php:298 pages/checkout.php:306
|
10946 |
+
#: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:331
|
10947 |
+
#: pages/checkout.php:340 pages/checkout.php:343 pages/checkout.php:346
|
10948 |
+
#: pages/checkout.php:348 pages/checkout.php:350 pages/checkout.php:355
|
10949 |
+
#: pages/checkout.php:358
|
10950 |
msgid "City"
|
10951 |
msgstr ""
|
10952 |
|
10955 |
#: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
|
10956 |
#: pages/billing.php:130 pages/billing.php:133 pages/billing.php:134
|
10957 |
#: pages/billing.php:136 pages/billing.php:138 pages/billing.php:139
|
10958 |
+
#: pages/billing.php:147 pages/billing.php:156 pages/billing.php:180
|
10959 |
+
#: pages/checkout.php:253 pages/checkout.php:302 pages/checkout.php:310
|
10960 |
+
#: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:335
|
10961 |
+
#: pages/checkout.php:344 pages/checkout.php:347 pages/checkout.php:350
|
10962 |
+
#: pages/checkout.php:352 pages/checkout.php:354 pages/checkout.php:359
|
10963 |
+
#: pages/checkout.php:362
|
10964 |
msgid "State"
|
10965 |
msgstr ""
|
10966 |
|
10969 |
#: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
|
10970 |
#: pages/billing.php:134 pages/billing.php:137 pages/billing.php:138
|
10971 |
#: pages/billing.php:140 pages/billing.php:142 pages/billing.php:143
|
10972 |
+
#: pages/billing.php:151 pages/billing.php:160 pages/billing.php:184
|
10973 |
+
#: pages/checkout.php:257 pages/checkout.php:306 pages/checkout.php:314
|
10974 |
+
#: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:339
|
10975 |
+
#: pages/checkout.php:348 pages/checkout.php:351 pages/checkout.php:354
|
10976 |
+
#: pages/checkout.php:356 pages/checkout.php:358 pages/checkout.php:363
|
10977 |
+
#: pages/checkout.php:366
|
10978 |
msgid "Postal Code"
|
10979 |
msgstr ""
|
10980 |
|
10983 |
#: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
|
10984 |
#: pages/billing.php:143 pages/billing.php:146 pages/billing.php:147
|
10985 |
#: pages/billing.php:149 pages/billing.php:151 pages/billing.php:152
|
10986 |
+
#: pages/billing.php:160 pages/billing.php:169 pages/billing.php:193
|
10987 |
+
#: pages/checkout.php:262 pages/checkout.php:311 pages/checkout.php:319
|
10988 |
+
#: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:348
|
10989 |
+
#: pages/checkout.php:357 pages/checkout.php:360 pages/checkout.php:363
|
10990 |
+
#: pages/checkout.php:365 pages/checkout.php:367 pages/checkout.php:372
|
10991 |
+
#: pages/checkout.php:375
|
10992 |
msgid "City, State Zip"
|
10993 |
msgstr ""
|
10994 |
|
10997 |
#: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
|
10998 |
#: pages/billing.php:196 pages/billing.php:199 pages/billing.php:200
|
10999 |
#: pages/billing.php:202 pages/billing.php:204 pages/billing.php:205
|
11000 |
+
#: pages/billing.php:213 pages/billing.php:222 pages/billing.php:246
|
11001 |
+
#: pages/checkout.php:299 pages/checkout.php:348 pages/checkout.php:356
|
11002 |
+
#: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:401
|
11003 |
+
#: pages/checkout.php:410 pages/checkout.php:413 pages/checkout.php:416
|
11004 |
+
#: pages/checkout.php:418 pages/checkout.php:420 pages/checkout.php:425
|
11005 |
+
#: pages/checkout.php:428
|
11006 |
msgid "Country"
|
11007 |
msgstr ""
|
11008 |
|
11011 |
#: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
|
11012 |
#: pages/billing.php:221 pages/billing.php:224 pages/billing.php:225
|
11013 |
#: pages/billing.php:227 pages/billing.php:229 pages/billing.php:230
|
11014 |
+
#: pages/billing.php:238 pages/billing.php:247 pages/billing.php:271
|
11015 |
+
#: pages/checkout.php:315 pages/checkout.php:364 pages/checkout.php:372
|
11016 |
+
#: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:426
|
11017 |
+
#: pages/checkout.php:435 pages/checkout.php:438 pages/checkout.php:441
|
11018 |
+
#: pages/checkout.php:443 pages/checkout.php:445 pages/checkout.php:450
|
11019 |
+
#: pages/checkout.php:453
|
11020 |
msgid "Phone"
|
11021 |
msgstr ""
|
11022 |
|
11026 |
#: pages/billing.php:215 pages/billing.php:232 pages/billing.php:235
|
11027 |
#: pages/billing.php:236 pages/billing.php:238 pages/billing.php:240
|
11028 |
#: pages/billing.php:241 pages/billing.php:249 pages/billing.php:258
|
11029 |
+
#: pages/billing.php:282 pages/checkout.php:148 pages/checkout.php:197
|
11030 |
+
#: pages/checkout.php:204 pages/checkout.php:205 pages/checkout.php:207
|
11031 |
+
#: pages/checkout.php:209 pages/checkout.php:216 pages/checkout.php:218
|
11032 |
+
#: pages/checkout.php:220 pages/checkout.php:227 pages/checkout.php:230
|
11033 |
+
#: pages/checkout.php:330 pages/checkout.php:379 pages/checkout.php:387
|
11034 |
+
#: pages/checkout.php:436 pages/checkout.php:438 pages/checkout.php:440
|
11035 |
+
#: pages/checkout.php:449 pages/checkout.php:453 pages/checkout.php:455
|
11036 |
+
#: pages/checkout.php:457 pages/checkout.php:460 pages/checkout.php:464
|
11037 |
+
#: pages/checkout.php:467
|
11038 |
msgid "Email Address"
|
11039 |
msgstr ""
|
11040 |
|
11043 |
#: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
|
11044 |
#: pages/billing.php:236 pages/billing.php:239 pages/billing.php:240
|
11045 |
#: pages/billing.php:242 pages/billing.php:244 pages/billing.php:245
|
11046 |
+
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:286
|
11047 |
+
#: pages/checkout.php:337 pages/checkout.php:386 pages/checkout.php:394
|
11048 |
+
#: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:449
|
11049 |
+
#: pages/checkout.php:458 pages/checkout.php:462 pages/checkout.php:464
|
11050 |
+
#: pages/checkout.php:466 pages/checkout.php:469 pages/checkout.php:473
|
11051 |
+
#: pages/checkout.php:476
|
11052 |
msgid "Confirm Email"
|
11053 |
msgstr ""
|
11054 |
|
11057 |
#: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
|
11058 |
#: pages/billing.php:259 pages/billing.php:262 pages/billing.php:263
|
11059 |
#: pages/billing.php:267 pages/billing.php:268 pages/billing.php:270
|
11060 |
+
#: pages/billing.php:276 pages/billing.php:285 pages/billing.php:309
|
11061 |
msgid "Credit Card Information"
|
11062 |
msgstr ""
|
11063 |
|
11066 |
#: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
|
11067 |
#: pages/billing.php:260 pages/billing.php:263 pages/billing.php:264
|
11068 |
#: pages/billing.php:268 pages/billing.php:269 pages/billing.php:271
|
11069 |
+
#: pages/billing.php:277 pages/billing.php:286 pages/billing.php:310
|
11070 |
#, php-format
|
11071 |
msgid "We accept %s"
|
11072 |
msgstr ""
|
11073 |
|
11074 |
#: pages/billing.php:446 shortcodes/pmpro_account.php:68 pages/billing.php:410
|
11075 |
#: pages/billing.php:412 pages/billing.php:418 pages/billing.php:422
|
11076 |
+
#: pages/billing.php:446 shortcodes/pmpro_account.php:68
|
11077 |
#, php-format
|
11078 |
msgid "Your membership is not active. <a href='%s'>Renew now.</a>"
|
11079 |
msgstr ""
|
11080 |
|
11081 |
#: pages/billing.php:449 shortcodes/pmpro_account.php:71 pages/billing.php:407
|
11082 |
#: pages/billing.php:409 pages/billing.php:415 pages/billing.php:425
|
11083 |
+
#: pages/billing.php:449 shortcodes/pmpro_account.php:71
|
11084 |
#, php-format
|
11085 |
msgid "You do not have an active membership. <a href='%s'>Register here.</a>"
|
11086 |
msgstr ""
|
11087 |
|
11088 |
#: pages/billing.php:452 shortcodes/pmpro_account.php:74 pages/billing.php:404
|
11089 |
#: pages/billing.php:406 pages/billing.php:412 pages/billing.php:428
|
11090 |
+
#: pages/billing.php:452 shortcodes/pmpro_account.php:74
|
11091 |
#, php-format
|
11092 |
msgid ""
|
11093 |
"You do not have an active membership. <a href='%s'>Choose a membership level."
|
11100 |
#: pages/billing.php:380 pages/billing.php:381 pages/billing.php:385
|
11101 |
#: pages/billing.php:387 pages/billing.php:408 pages/billing.php:413
|
11102 |
#: pages/billing.php:415 pages/billing.php:417 pages/billing.php:421
|
11103 |
+
#: pages/billing.php:422 pages/billing.php:431 pages/billing.php:455
|
11104 |
msgid ""
|
11105 |
"This subscription is not recurring. So you don't need to update your billing "
|
11106 |
"information."
|
11164 |
msgid "You have selected the <strong>%s</strong> membership level."
|
11165 |
msgstr ""
|
11166 |
|
11167 |
+
#: pages/checkout.php:69 pages/checkout.php:69
|
11168 |
msgid "<p class=\""
|
11169 |
msgstr ""
|
11170 |
|
11269 |
msgid "Security Code (CVC)"
|
11270 |
msgstr ""
|
11271 |
|
11272 |
+
#: pages/checkout.php:472 pages/checkout.php:277 pages/checkout.php:284
|
11273 |
#: pages/checkout.php:459 pages/checkout.php:567 pages/checkout.php:575
|
11274 |
#: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
|
11275 |
#: pages/checkout.php:681 pages/checkout.php:686 pages/checkout.php:690
|
11279 |
msgid "I agree to the %s"
|
11280 |
msgstr ""
|
11281 |
|
11282 |
+
#: pages/checkout.php:497 pages/checkout.php:484 pages/checkout.php:586
|
11283 |
#: pages/checkout.php:594 pages/checkout.php:667 pages/checkout.php:674
|
11284 |
#: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
|
11285 |
#: pages/checkout.php:701 pages/checkout.php:706 pages/checkout.php:710
|
11288 |
msgid "Complete Payment"
|
11289 |
msgstr ""
|
11290 |
|
11291 |
+
#: pages/checkout.php:519 pages/checkout.php:506 pages/checkout.php:608
|
11292 |
#: pages/checkout.php:616 pages/checkout.php:687 pages/checkout.php:694
|
11293 |
#: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
|
11294 |
#: pages/checkout.php:723 pages/checkout.php:728 pages/checkout.php:732
|
11346 |
msgid "Account"
|
11347 |
msgstr ""
|
11348 |
|
11349 |
+
#: pages/confirmation.php:55 pages/account.php:29 pages/account.php:33
|
11350 |
+
#: pages/confirmation.php:48 pages/confirmation.php:49
|
11351 |
#: pages/confirmation.php:54 pages/confirmation.php:55 pages/invoice.php:29
|
11352 |
#: pages/invoice.php:30 pages/invoice.php:31
|
11353 |
msgid "Membership Expires"
|
11354 |
msgstr ""
|
11355 |
|
11356 |
+
#: pages/confirmation.php:90 pages/invoice.php:80 pages/invoice.php:113
|
11357 |
#: pages/confirmation.php:61 pages/confirmation.php:63
|
11358 |
#: pages/confirmation.php:65 pages/confirmation.php:71
|
11359 |
#: pages/confirmation.php:87 pages/confirmation.php:88
|
11365 |
msgid "Total Billed"
|
11366 |
msgstr ""
|
11367 |
|
11368 |
+
#: pages/confirmation.php:96 pages/invoice.php:86 pages/confirmation.php:93
|
11369 |
#: pages/confirmation.php:94 pages/confirmation.php:96 pages/invoice.php:75
|
11370 |
#: pages/invoice.php:76 pages/invoice.php:77 pages/invoice.php:78
|
11371 |
#: pages/invoice.php:80 pages/invoice.php:82
|
11387 |
#: pages/confirmation.php:113 pages/confirmation.php:116
|
11388 |
#: pages/confirmation.php:123 pages/confirmation.php:124
|
11389 |
#: pages/confirmation.php:126 shortcodes/pmpro_account.php:151
|
11390 |
+
#: shortcodes/pmpro_account.php:227 shortcodes/pmpro_account.php:234
|
11391 |
msgid "Pending"
|
11392 |
msgstr ""
|
11393 |
|
11401 |
"site owner."
|
11402 |
msgstr ""
|
11403 |
|
11404 |
+
#: pages/invoice.php:111 pages/invoice.php:88 pages/invoice.php:100
|
|
|
|
|
|
|
|
|
11405 |
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:103
|
11406 |
#: pages/invoice.php:106 pages/invoice.php:108
|
11407 |
msgid "Invoice #"
|
11408 |
msgstr ""
|
11409 |
|
11410 |
+
#: pages/invoice.php:137 pages/invoice.php:114 pages/invoice.php:126
|
11411 |
#: pages/invoice.php:127 pages/invoice.php:128 pages/invoice.php:129
|
11412 |
#: pages/invoice.php:132 pages/invoice.php:134
|
11413 |
msgid "No invoices found."
|
11414 |
msgstr ""
|
11415 |
|
11416 |
+
#: pages/invoice.php:145 pages/invoice.php:125 pages/invoice.php:137
|
11417 |
#: pages/invoice.php:138 pages/invoice.php:139 pages/invoice.php:140
|
11418 |
#: pages/invoice.php:143 pages/invoice.php:145
|
11419 |
msgid "← View All Invoices"
|
11520 |
#: preheaders/billing.php:162 preheaders/checkout.php:336
|
11521 |
#: preheaders/billing.php:145 preheaders/billing.php:147
|
11522 |
#: preheaders/billing.php:151 preheaders/billing.php:153
|
11523 |
+
#: preheaders/billing.php:158 preheaders/billing.php:162
|
11524 |
+
#: preheaders/billing.php:258 preheaders/billing.php:265
|
11525 |
+
#: preheaders/billing.php:266 preheaders/billing.php:270
|
11526 |
+
#: preheaders/billing.php:273 preheaders/billing.php:279
|
11527 |
+
#: preheaders/checkout.php:322 preheaders/checkout.php:332
|
11528 |
+
#: preheaders/checkout.php:336 preheaders/checkout.php:364
|
11529 |
+
#: preheaders/checkout.php:458 preheaders/checkout.php:464
|
11530 |
+
#: preheaders/checkout.php:465 preheaders/checkout.php:470
|
11531 |
+
#: preheaders/checkout.php:481 preheaders/checkout.php:482
|
11532 |
msgid "Please complete all required fields."
|
11533 |
msgstr ""
|
11534 |
|
11535 |
#: preheaders/billing.php:165 preheaders/checkout.php:344
|
11536 |
#: preheaders/billing.php:148 preheaders/billing.php:150
|
11537 |
#: preheaders/billing.php:154 preheaders/billing.php:156
|
11538 |
+
#: preheaders/billing.php:161 preheaders/billing.php:165
|
11539 |
+
#: preheaders/billing.php:263 preheaders/billing.php:268
|
11540 |
+
#: preheaders/billing.php:269 preheaders/billing.php:273
|
11541 |
+
#: preheaders/billing.php:276 preheaders/billing.php:284
|
11542 |
+
#: preheaders/checkout.php:330 preheaders/checkout.php:340
|
11543 |
+
#: preheaders/checkout.php:344 preheaders/checkout.php:372
|
11544 |
+
#: preheaders/checkout.php:466 preheaders/checkout.php:473
|
11545 |
+
#: preheaders/checkout.php:474 preheaders/checkout.php:478
|
11546 |
+
#: preheaders/checkout.php:491 preheaders/checkout.php:492
|
11547 |
msgid "Your email addresses do not match. Please try again."
|
11548 |
msgstr ""
|
11549 |
|
11550 |
#: preheaders/billing.php:168 preheaders/checkout.php:349
|
11551 |
#: preheaders/billing.php:151 preheaders/billing.php:153
|
11552 |
#: preheaders/billing.php:157 preheaders/billing.php:159
|
11553 |
+
#: preheaders/billing.php:164 preheaders/billing.php:168
|
11554 |
+
#: preheaders/billing.php:268 preheaders/billing.php:271
|
11555 |
+
#: preheaders/billing.php:272 preheaders/billing.php:276
|
11556 |
+
#: preheaders/billing.php:279 preheaders/billing.php:289
|
11557 |
+
#: preheaders/checkout.php:335 preheaders/checkout.php:345
|
11558 |
+
#: preheaders/checkout.php:349 preheaders/checkout.php:377
|
11559 |
+
#: preheaders/checkout.php:471 preheaders/checkout.php:478
|
11560 |
+
#: preheaders/checkout.php:480 preheaders/checkout.php:483
|
11561 |
+
#: preheaders/checkout.php:497 preheaders/checkout.php:498
|
11562 |
msgid "The email address entered is in an invalid format. Please try again."
|
11563 |
msgstr ""
|
11564 |
|
11565 |
#: preheaders/billing.php:172 preheaders/billing.php:155
|
11566 |
#: preheaders/billing.php:157 preheaders/billing.php:161
|
11567 |
#: preheaders/billing.php:163 preheaders/billing.php:168
|
11568 |
+
#: preheaders/billing.php:172 preheaders/billing.php:274
|
11569 |
+
#: preheaders/billing.php:275 preheaders/billing.php:276
|
11570 |
+
#: preheaders/billing.php:280 preheaders/billing.php:283
|
11571 |
+
#: preheaders/billing.php:295
|
11572 |
msgid "All good!"
|
11573 |
msgstr ""
|
11574 |
|
11575 |
#: preheaders/billing.php:239 preheaders/billing.php:222
|
11576 |
#: preheaders/billing.php:224 preheaders/billing.php:228
|
11577 |
#: preheaders/billing.php:230 preheaders/billing.php:235
|
11578 |
+
#: preheaders/billing.php:239 preheaders/billing.php:340
|
11579 |
+
#: preheaders/billing.php:345 preheaders/billing.php:346
|
11580 |
+
#: preheaders/billing.php:350 preheaders/billing.php:353
|
11581 |
+
#: preheaders/billing.php:370
|
11582 |
#, php-format
|
11583 |
msgid "Information updated. <a href=\"%s\">« back to my account</a>"
|
11584 |
msgstr ""
|
11586 |
#: preheaders/billing.php:245 preheaders/billing.php:228
|
11587 |
#: preheaders/billing.php:230 preheaders/billing.php:234
|
11588 |
#: preheaders/billing.php:236 preheaders/billing.php:241
|
11589 |
+
#: preheaders/billing.php:245 preheaders/billing.php:347
|
11590 |
+
#: preheaders/billing.php:351 preheaders/billing.php:352
|
11591 |
+
#: preheaders/billing.php:356 preheaders/billing.php:359
|
11592 |
+
#: preheaders/billing.php:378 preheaders/billing.php:380
|
11593 |
msgid "Error updating billing information."
|
11594 |
msgstr ""
|
11595 |
|
11860 |
#: shortcodes/pmpro_account.php:145 pages/account.php:64
|
11861 |
#: shortcodes/pmpro_account.php:90 shortcodes/pmpro_account.php:92
|
11862 |
#: shortcodes/pmpro_account.php:93 shortcodes/pmpro_account.php:95
|
11863 |
+
#: shortcodes/pmpro_account.php:144 shortcodes/pmpro_account.php:145
|
11864 |
msgid "View all Membership Options"
|
11865 |
msgstr ""
|
11866 |
|
11868 |
#: pages/account.php:71 shortcodes/pmpro_account.php:99
|
11869 |
#: shortcodes/pmpro_account.php:101 shortcodes/pmpro_account.php:102
|
11870 |
#: shortcodes/pmpro_account.php:104 shortcodes/pmpro_account.php:153
|
11871 |
+
#: shortcodes/pmpro_account.php:154
|
11872 |
msgid "My Account"
|
11873 |
msgstr ""
|
11874 |
|
11876 |
#: pages/account.php:129 shortcodes/pmpro_account.php:118
|
11877 |
#: shortcodes/pmpro_account.php:120 shortcodes/pmpro_account.php:121
|
11878 |
#: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:199
|
11879 |
+
#: shortcodes/pmpro_account.php:206
|
11880 |
msgid "Past Invoices"
|
11881 |
msgstr ""
|
11882 |
|
11883 |
#: shortcodes/pmpro_account.php:212 pages/account.php:93
|
11884 |
#: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:126
|
11885 |
#: shortcodes/pmpro_account.php:127 shortcodes/pmpro_account.php:129
|
11886 |
+
#: shortcodes/pmpro_account.php:205 shortcodes/pmpro_account.php:212
|
11887 |
msgid "Amount"
|
11888 |
msgstr ""
|
11889 |
|
11890 |
#: shortcodes/pmpro_account.php:236 shortcodes/pmpro_account.php:153
|
11891 |
+
#: shortcodes/pmpro_account.php:229 shortcodes/pmpro_account.php:236
|
11892 |
msgid "Refunded"
|
11893 |
msgstr ""
|
11894 |
|
11896 |
#: pages/account.php:144 shortcodes/pmpro_account.php:152
|
11897 |
#: shortcodes/pmpro_account.php:154 shortcodes/pmpro_account.php:155
|
11898 |
#: shortcodes/pmpro_account.php:157 shortcodes/pmpro_account.php:168
|
11899 |
+
#: shortcodes/pmpro_account.php:244 shortcodes/pmpro_account.php:251
|
11900 |
msgid "View All Invoices"
|
11901 |
msgstr ""
|
11902 |
|
11904 |
#: pages/account.php:150 shortcodes/pmpro_account.php:159
|
11905 |
#: shortcodes/pmpro_account.php:161 shortcodes/pmpro_account.php:162
|
11906 |
#: shortcodes/pmpro_account.php:164 shortcodes/pmpro_account.php:175
|
11907 |
+
#: shortcodes/pmpro_account.php:251 shortcodes/pmpro_account.php:258
|
11908 |
msgid "Member Links"
|
11909 |
msgstr ""
|
11910 |
|
12202 |
"still get an email confirmation from PMPro after checkout.)"
|
12203 |
msgstr ""
|
12204 |
|
12205 |
+
#: adminpages/license.php:47
|
12206 |
msgid ""
|
12207 |
"Enter your support license key.</strong> Your license key can be found in "
|
12208 |
"your membership email receipt or in your <a href=\"https://www."
|
12209 |
+
"paidmembershipspro.com/membership-account/?redirect_to=%2Fmembership-account"
|
12210 |
+
"%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign"
|
12211 |
"%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership "
|
12212 |
"Account</a>."
|
12213 |
msgstr ""
|
12214 |
|
12215 |
+
#: adminpages/license.php:49
|
12216 |
msgid ""
|
12217 |
+
"Visit the PMPro <a href=\"https://www.paidmembershipspro.com/membership-"
|
12218 |
+
"account/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin"
|
12219 |
+
"%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account"
|
12220 |
+
"%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> "
|
12221 |
+
"page to confirm that your account is active and to find your license key."
|
12222 |
msgstr ""
|
12223 |
|
12224 |
#: adminpages/membershiplevels.php:364
|
13420 |
"been sent to %s."
|
13421 |
msgstr ""
|
13422 |
|
13423 |
+
#: pages/invoice.php:27
|
13424 |
+
msgid "Success"
|
13425 |
+
msgstr ""
|
13426 |
+
|
13427 |
#: pages/invoice.php:29
|
13428 |
msgid "success"
|
13429 |
msgstr ""
|
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: 2020-
|
10 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11 |
"Last-Translator: \n"
|
12 |
"Language-Team: Stranger Studios <info@paidmembershipspro.com>\n"
|
@@ -222,10 +222,10 @@ msgstr ""
|
|
222 |
#: adminpages/orders.php:1439 adminpages/orders.php:1440
|
223 |
#: adminpages/orders.php:1445 adminpages/orders.php:1455
|
224 |
#: adminpages/orders.php:1462 adminpages/orders.php:1472
|
225 |
-
#: includes/profile.php:186 includes/profile.php:191
|
226 |
#: shortcodes/pmpro_account.php:145 shortcodes/pmpro_account.php:146
|
227 |
#: shortcodes/pmpro_account.php:148 shortcodes/pmpro_account.php:158
|
228 |
-
#: shortcodes/pmpro_account.php:234
|
229 |
msgid "N/A"
|
230 |
msgstr ""
|
231 |
|
@@ -361,6 +361,7 @@ msgstr ""
|
|
361 |
#: classes/gateways/class.pmprogateway_stripe.php:66
|
362 |
#: classes/gateways/class.pmprogateway_stripe.php:68
|
363 |
#: classes/gateways/class.pmprogateway_stripe.php:71
|
|
|
364 |
#, php-format
|
365 |
msgid ""
|
366 |
"The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to "
|
@@ -587,7 +588,7 @@ msgstr ""
|
|
587 |
msgid "Payment Gateway & SSL Settings"
|
588 |
msgstr ""
|
589 |
|
590 |
-
#: adminpages/admin_header.php:251 includes/profile.php:
|
591 |
#: shortcodes/pmpro_account.php:161 adminpages/admin_header.php:131
|
592 |
#: adminpages/admin_header.php:152 adminpages/admin_header.php:162
|
593 |
#: adminpages/admin_header.php:171 adminpages/admin_header.php:183
|
@@ -600,10 +601,11 @@ msgstr ""
|
|
600 |
#: adminpages/orders.php:376 adminpages/orders.php:1345
|
601 |
#: adminpages/orders.php:1350 adminpages/orders.php:1351
|
602 |
#: adminpages/orders.php:1360 adminpages/orders.php:1365
|
603 |
-
#: includes/profile.php:
|
604 |
-
#: pages/account.php:77 shortcodes/pmpro_account.php:106
|
605 |
#: shortcodes/pmpro_account.php:108 shortcodes/pmpro_account.php:109
|
606 |
#: shortcodes/pmpro_account.php:111 shortcodes/pmpro_account.php:160
|
|
|
607 |
msgid "Email"
|
608 |
msgstr ""
|
609 |
|
@@ -663,18 +665,20 @@ msgstr ""
|
|
663 |
#: adminpages/advancedsettings.php:42 adminpages/advancedsettings.php:43
|
664 |
#: adminpages/advancedsettings.php:46 adminpages/advancedsettings.php:60
|
665 |
#: adminpages/advancedsettings.php:61 adminpages/advancedsettings.php:62
|
666 |
-
#: adminpages/advancedsettings.php:67
|
667 |
msgid "Your advanced settings have been updated."
|
668 |
msgstr ""
|
669 |
|
670 |
#: adminpages/advancedsettings.php:106 includes/updates/upgrade_1.php:7
|
671 |
-
#: adminpages/advancedsettings.php:104
|
|
|
672 |
#, php-format
|
673 |
msgid ""
|
674 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Join Now</a>"
|
675 |
msgstr ""
|
676 |
|
677 |
#: adminpages/advancedsettings.php:111 adminpages/advancedsettings.php:109
|
|
|
678 |
#, php-format
|
679 |
msgid ""
|
680 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
|
@@ -685,24 +689,29 @@ msgstr ""
|
|
685 |
#: adminpages/advancedsettings.php:76 adminpages/advancedsettings.php:78
|
686 |
#: adminpages/advancedsettings.php:81 adminpages/advancedsettings.php:95
|
687 |
#: adminpages/advancedsettings.php:97 adminpages/advancedsettings.php:99
|
688 |
-
#: adminpages/advancedsettings.php:114
|
|
|
689 |
msgid ""
|
690 |
"This content is for members only. Visit the site and log in/register to read."
|
691 |
msgstr ""
|
692 |
|
693 |
#: adminpages/advancedsettings.php:140 adminpages/advancedsettings.php:138
|
|
|
694 |
msgid "WordPress Dashboard"
|
695 |
msgstr ""
|
696 |
|
697 |
#: adminpages/advancedsettings.php:143 adminpages/advancedsettings.php:141
|
|
|
698 |
msgid "Block all users with the Subscriber role from accessing the Dashboard."
|
699 |
msgstr ""
|
700 |
|
701 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:146
|
|
|
702 |
msgid "WordPress Toolbar"
|
703 |
msgstr ""
|
704 |
|
705 |
#: adminpages/advancedsettings.php:151 adminpages/advancedsettings.php:149
|
|
|
706 |
msgid "Hide the Toolbar from all users with the Subscriber role."
|
707 |
msgstr ""
|
708 |
|
@@ -710,7 +719,7 @@ msgstr ""
|
|
710 |
#: adminpages/advancedsettings.php:92 adminpages/advancedsettings.php:94
|
711 |
#: adminpages/advancedsettings.php:97 adminpages/advancedsettings.php:113
|
712 |
#: adminpages/advancedsettings.php:115 adminpages/advancedsettings.php:118
|
713 |
-
#: adminpages/advancedsettings.php:162
|
714 |
msgid "Message for Logged-in Non-members"
|
715 |
msgstr ""
|
716 |
|
@@ -718,7 +727,7 @@ msgstr ""
|
|
718 |
#: adminpages/advancedsettings.php:96 adminpages/advancedsettings.php:98
|
719 |
#: adminpages/advancedsettings.php:101 adminpages/advancedsettings.php:117
|
720 |
#: adminpages/advancedsettings.php:119 adminpages/advancedsettings.php:122
|
721 |
-
#: adminpages/advancedsettings.php:166
|
722 |
msgid ""
|
723 |
"This message replaces the post content for non-members. Available variables"
|
724 |
msgstr ""
|
@@ -727,12 +736,13 @@ msgstr ""
|
|
727 |
#: adminpages/advancedsettings.php:101 adminpages/advancedsettings.php:103
|
728 |
#: adminpages/advancedsettings.php:106 adminpages/advancedsettings.php:122
|
729 |
#: adminpages/advancedsettings.php:124 adminpages/advancedsettings.php:127
|
730 |
-
#: adminpages/advancedsettings.php:171
|
731 |
msgid "Message for Logged-out Users"
|
732 |
msgstr ""
|
733 |
|
734 |
#: adminpages/advancedsettings.php:177 adminpages/advancedsettings.php:186
|
735 |
-
#: adminpages/advancedsettings.php:175 adminpages/advancedsettings.php:
|
|
|
736 |
msgid "Available variables"
|
737 |
msgstr ""
|
738 |
|
@@ -740,7 +750,7 @@ msgstr ""
|
|
740 |
#: adminpages/advancedsettings.php:105 adminpages/advancedsettings.php:107
|
741 |
#: adminpages/advancedsettings.php:110 adminpages/advancedsettings.php:126
|
742 |
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:131
|
743 |
-
#: adminpages/advancedsettings.php:175
|
744 |
msgid "This message replaces the post content for logged-out visitors."
|
745 |
msgstr ""
|
746 |
|
@@ -748,7 +758,7 @@ msgstr ""
|
|
748 |
#: adminpages/advancedsettings.php:110 adminpages/advancedsettings.php:112
|
749 |
#: adminpages/advancedsettings.php:115 adminpages/advancedsettings.php:131
|
750 |
#: adminpages/advancedsettings.php:133 adminpages/advancedsettings.php:136
|
751 |
-
#: adminpages/advancedsettings.php:180
|
752 |
msgid "Message for RSS Feed"
|
753 |
msgstr ""
|
754 |
|
@@ -756,7 +766,7 @@ msgstr ""
|
|
756 |
#: adminpages/advancedsettings.php:114 adminpages/advancedsettings.php:116
|
757 |
#: adminpages/advancedsettings.php:119 adminpages/advancedsettings.php:135
|
758 |
#: adminpages/advancedsettings.php:137 adminpages/advancedsettings.php:140
|
759 |
-
#: adminpages/advancedsettings.php:184
|
760 |
msgid "This message replaces the post content in RSS feeds."
|
761 |
msgstr ""
|
762 |
|
@@ -764,6 +774,7 @@ msgstr ""
|
|
764 |
#: adminpages/advancedsettings.php:125 adminpages/advancedsettings.php:141
|
765 |
#: adminpages/advancedsettings.php:143 adminpages/advancedsettings.php:148
|
766 |
#: adminpages/advancedsettings.php:151 adminpages/advancedsettings.php:197
|
|
|
767 |
msgid "Filter searches and archives?"
|
768 |
msgstr ""
|
769 |
|
@@ -771,6 +782,7 @@ msgstr ""
|
|
771 |
#: adminpages/advancedsettings.php:129 adminpages/advancedsettings.php:145
|
772 |
#: adminpages/advancedsettings.php:147 adminpages/advancedsettings.php:152
|
773 |
#: adminpages/advancedsettings.php:155 adminpages/advancedsettings.php:201
|
|
|
774 |
msgid ""
|
775 |
"No - Non-members will see restricted posts/pages in searches and archives."
|
776 |
msgstr ""
|
@@ -779,6 +791,7 @@ msgstr ""
|
|
779 |
#: adminpages/advancedsettings.php:130 adminpages/advancedsettings.php:146
|
780 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:153
|
781 |
#: adminpages/advancedsettings.php:156 adminpages/advancedsettings.php:202
|
|
|
782 |
msgid ""
|
783 |
"Yes - Only members will see restricted posts/pages in searches and archives."
|
784 |
msgstr ""
|
@@ -788,6 +801,7 @@ msgstr ""
|
|
788 |
#: adminpages/advancedsettings.php:136 adminpages/advancedsettings.php:152
|
789 |
#: adminpages/advancedsettings.php:154 adminpages/advancedsettings.php:159
|
790 |
#: adminpages/advancedsettings.php:162 adminpages/advancedsettings.php:208
|
|
|
791 |
msgid "Show Excerpts to Non-Members?"
|
792 |
msgstr ""
|
793 |
|
@@ -796,6 +810,7 @@ msgstr ""
|
|
796 |
#: adminpages/advancedsettings.php:140 adminpages/advancedsettings.php:156
|
797 |
#: adminpages/advancedsettings.php:158 adminpages/advancedsettings.php:163
|
798 |
#: adminpages/advancedsettings.php:166 adminpages/advancedsettings.php:212
|
|
|
799 |
msgid "No - Hide excerpts."
|
800 |
msgstr ""
|
801 |
|
@@ -804,22 +819,25 @@ msgstr ""
|
|
804 |
#: adminpages/advancedsettings.php:141 adminpages/advancedsettings.php:157
|
805 |
#: adminpages/advancedsettings.php:159 adminpages/advancedsettings.php:164
|
806 |
#: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:213
|
|
|
807 |
msgid "Yes - Show excerpts."
|
808 |
msgstr ""
|
809 |
|
810 |
#: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:218
|
811 |
#: adminpages/advancedsettings.php:225 adminpages/advancedsettings.php:227
|
812 |
-
#: adminpages/advancedsettings.php:
|
813 |
-
#: adminpages/advancedsettings.php:
|
814 |
-
#: adminpages/advancedsettings.php:
|
|
|
815 |
msgid "Require Terms of Service on signups?"
|
816 |
msgstr ""
|
817 |
|
818 |
#: adminpages/advancedsettings.php:236 adminpages/advancedsettings.php:225
|
819 |
#: adminpages/advancedsettings.php:232 adminpages/advancedsettings.php:234
|
820 |
-
#: adminpages/advancedsettings.php:
|
821 |
-
#: adminpages/advancedsettings.php:
|
822 |
-
#: adminpages/advancedsettings.php:
|
|
|
823 |
msgid ""
|
824 |
"If yes, create a WordPress page containing your TOS agreement and assign it "
|
825 |
"using the dropdown above."
|
@@ -830,6 +848,7 @@ msgstr ""
|
|
830 |
#: adminpages/advancedsettings.php:202 adminpages/advancedsettings.php:215
|
831 |
#: adminpages/advancedsettings.php:218 adminpages/advancedsettings.php:234
|
832 |
#: adminpages/advancedsettings.php:236 adminpages/advancedsettings.php:239
|
|
|
833 |
msgid "Use reCAPTCHA?"
|
834 |
msgstr ""
|
835 |
|
@@ -850,8 +869,10 @@ msgstr ""
|
|
850 |
#: adminpages/advancedsettings.php:225 adminpages/advancedsettings.php:226
|
851 |
#: adminpages/advancedsettings.php:228 adminpages/advancedsettings.php:238
|
852 |
#: adminpages/advancedsettings.php:240 adminpages/advancedsettings.php:243
|
853 |
-
#: adminpages/advancedsettings.php:
|
854 |
-
#: adminpages/advancedsettings.php:
|
|
|
|
|
855 |
#: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
|
856 |
#: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
|
857 |
#: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
|
@@ -865,10 +886,11 @@ msgstr ""
|
|
865 |
#: adminpages/membershiplevels.php:818 adminpages/paymentsettings.php:210
|
866 |
#: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:236
|
867 |
#: adminpages/paymentsettings.php:253 adminpages/paymentsettings.php:256
|
868 |
-
#: adminpages/paymentsettings.php:257 adminpages/paymentsettings.php:
|
869 |
-
#: adminpages/paymentsettings.php:
|
870 |
-
#: adminpages/paymentsettings.php:
|
871 |
-
#: adminpages/paymentsettings.php:
|
|
|
872 |
#: classes/gateways/class.pmprogateway_stripe.php:173
|
873 |
#: classes/gateways/class.pmprogateway_stripe.php:174
|
874 |
#: classes/gateways/class.pmprogateway_stripe.php:184
|
@@ -887,11 +909,12 @@ msgstr ""
|
|
887 |
#: classes/gateways/class.pmprogateway_stripe.php:319
|
888 |
#: classes/gateways/class.pmprogateway_stripe.php:320
|
889 |
#: classes/gateways/class.pmprogateway_stripe.php:321
|
|
|
890 |
#: includes/compatibility/beaver-builder.php:43
|
891 |
-
#: includes/compatibility/beaver-builder.php:137 includes/profile.php:
|
892 |
-
#: includes/profile.php:
|
893 |
-
#: includes/profile.php:
|
894 |
-
#: includes/profile.php:125
|
895 |
msgid "No"
|
896 |
msgstr ""
|
897 |
|
@@ -900,6 +923,7 @@ msgstr ""
|
|
900 |
#: adminpages/advancedsettings.php:207 adminpages/advancedsettings.php:220
|
901 |
#: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:239
|
902 |
#: adminpages/advancedsettings.php:241 adminpages/advancedsettings.php:244
|
|
|
903 |
msgid "Yes - Free memberships only."
|
904 |
msgstr ""
|
905 |
|
@@ -908,6 +932,7 @@ msgstr ""
|
|
908 |
#: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:221
|
909 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:240
|
910 |
#: adminpages/advancedsettings.php:242 adminpages/advancedsettings.php:245
|
|
|
911 |
msgid "Yes - All memberships."
|
912 |
msgstr ""
|
913 |
|
@@ -916,6 +941,7 @@ msgstr ""
|
|
916 |
#: adminpages/advancedsettings.php:210 adminpages/advancedsettings.php:223
|
917 |
#: adminpages/advancedsettings.php:226 adminpages/advancedsettings.php:242
|
918 |
#: adminpages/advancedsettings.php:244 adminpages/advancedsettings.php:247
|
|
|
919 |
msgid "A free reCAPTCHA key is required."
|
920 |
msgstr ""
|
921 |
|
@@ -924,74 +950,78 @@ msgstr ""
|
|
924 |
#: adminpages/advancedsettings.php:210 adminpages/advancedsettings.php:223
|
925 |
#: adminpages/advancedsettings.php:226 adminpages/advancedsettings.php:242
|
926 |
#: adminpages/advancedsettings.php:244 adminpages/advancedsettings.php:247
|
|
|
927 |
msgid "Click here to signup for reCAPTCHA"
|
928 |
msgstr ""
|
929 |
|
930 |
#: adminpages/advancedsettings.php:257 adminpages/advancedsettings.php:192
|
931 |
#: adminpages/advancedsettings.php:195 adminpages/advancedsettings.php:250
|
932 |
-
#: adminpages/advancedsettings.php:255
|
933 |
msgid "reCAPTCHA Version"
|
934 |
msgstr ""
|
935 |
|
936 |
#: adminpages/advancedsettings.php:260 adminpages/advancedsettings.php:195
|
937 |
#: adminpages/advancedsettings.php:198 adminpages/advancedsettings.php:252
|
938 |
-
#: adminpages/advancedsettings.php:258
|
939 |
msgid " v2 - Checkbox"
|
940 |
msgstr ""
|
941 |
|
942 |
#: adminpages/advancedsettings.php:261 adminpages/advancedsettings.php:196
|
943 |
#: adminpages/advancedsettings.php:199 adminpages/advancedsettings.php:253
|
944 |
-
#: adminpages/advancedsettings.php:259
|
945 |
msgid "v3 - Invisible"
|
946 |
msgstr ""
|
947 |
|
948 |
#: adminpages/advancedsettings.php:263 adminpages/advancedsettings.php:198
|
949 |
#: adminpages/advancedsettings.php:201 adminpages/advancedsettings.php:255
|
950 |
-
#: adminpages/advancedsettings.php:261
|
951 |
msgid "Changing your version will require new API keys."
|
952 |
msgstr ""
|
953 |
|
954 |
#: adminpages/advancedsettings.php:267 adminpages/advancedsettings.php:202
|
955 |
#: adminpages/advancedsettings.php:205 adminpages/advancedsettings.php:248
|
956 |
#: adminpages/advancedsettings.php:257 adminpages/advancedsettings.php:265
|
|
|
957 |
msgid "reCAPTCHA Site Key"
|
958 |
msgstr ""
|
959 |
|
960 |
#: adminpages/advancedsettings.php:273 adminpages/advancedsettings.php:208
|
961 |
#: adminpages/advancedsettings.php:211 adminpages/advancedsettings.php:251
|
962 |
#: adminpages/advancedsettings.php:260 adminpages/advancedsettings.php:271
|
|
|
963 |
msgid "reCAPTCHA Secret Key"
|
964 |
msgstr ""
|
965 |
|
966 |
#: adminpages/advancedsettings.php:286 adminpages/advancedsettings.php:246
|
967 |
-
#: adminpages/advancedsettings.php:284
|
968 |
msgid "Notifications"
|
969 |
msgstr ""
|
970 |
|
971 |
#: adminpages/advancedsettings.php:290 adminpages/advancedsettings.php:250
|
972 |
-
#: adminpages/advancedsettings.php:288
|
973 |
msgid "Show all notifications."
|
974 |
msgstr ""
|
975 |
|
976 |
#: adminpages/advancedsettings.php:293 adminpages/advancedsettings.php:253
|
977 |
-
#: adminpages/advancedsettings.php:291
|
978 |
msgid "Show only security notifications."
|
979 |
msgstr ""
|
980 |
|
981 |
#: adminpages/advancedsettings.php:297 adminpages/advancedsettings.php:257
|
982 |
-
#: adminpages/advancedsettings.php:295
|
983 |
msgid ""
|
984 |
"Notifications are occasionally shown on the Paid Memberships Pro settings "
|
985 |
"pages."
|
986 |
msgstr ""
|
987 |
|
988 |
#: adminpages/advancedsettings.php:302 adminpages/advancedsettings.php:300
|
|
|
989 |
msgid "Activity Email Frequency"
|
990 |
msgstr ""
|
991 |
|
992 |
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:351
|
993 |
#: adminpages/reports/sales.php:290 adminpages/advancedsettings.php:305
|
994 |
-
#: adminpages/reports/memberships.php:258
|
995 |
#: adminpages/reports/memberships.php:265
|
996 |
#: adminpages/reports/memberships.php:278
|
997 |
#: adminpages/reports/memberships.php:294
|
@@ -1005,12 +1035,13 @@ msgid "Daily"
|
|
1005 |
msgstr ""
|
1006 |
|
1007 |
#: adminpages/advancedsettings.php:310 adminpages/advancedsettings.php:308
|
|
|
1008 |
msgid "Weekly"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:352
|
1012 |
#: adminpages/reports/sales.php:291 adminpages/advancedsettings.php:311
|
1013 |
-
#: adminpages/reports/memberships.php:259
|
1014 |
#: adminpages/reports/memberships.php:266
|
1015 |
#: adminpages/reports/memberships.php:279
|
1016 |
#: adminpages/reports/memberships.php:295
|
@@ -1024,12 +1055,14 @@ msgid "Monthly"
|
|
1024 |
msgstr ""
|
1025 |
|
1026 |
#: adminpages/advancedsettings.php:316 includes/privacy.php:175
|
1027 |
-
#: adminpages/advancedsettings.php:314 adminpages/
|
1028 |
-
#: adminpages/memberslist.php:
|
|
|
1029 |
msgid "Never"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: adminpages/advancedsettings.php:320 adminpages/advancedsettings.php:318
|
|
|
1033 |
msgid ""
|
1034 |
"Send periodic sales and revenue updates from this site to the administration "
|
1035 |
"email address."
|
@@ -1039,6 +1072,7 @@ msgstr ""
|
|
1039 |
#: adminpages/advancedsettings.php:147 adminpages/advancedsettings.php:163
|
1040 |
#: adminpages/advancedsettings.php:165 adminpages/advancedsettings.php:221
|
1041 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:331
|
|
|
1042 |
msgid "Hide Ads From Members?"
|
1043 |
msgstr ""
|
1044 |
|
@@ -1047,6 +1081,7 @@ msgstr ""
|
|
1047 |
#: adminpages/advancedsettings.php:152 adminpages/advancedsettings.php:168
|
1048 |
#: adminpages/advancedsettings.php:170 adminpages/advancedsettings.php:226
|
1049 |
#: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:336
|
|
|
1050 |
msgid "Hide Ads From All Members"
|
1051 |
msgstr ""
|
1052 |
|
@@ -1055,6 +1090,7 @@ msgstr ""
|
|
1055 |
#: adminpages/advancedsettings.php:153 adminpages/advancedsettings.php:169
|
1056 |
#: adminpages/advancedsettings.php:171 adminpages/advancedsettings.php:227
|
1057 |
#: adminpages/advancedsettings.php:230 adminpages/advancedsettings.php:337
|
|
|
1058 |
msgid "Hide Ads From Certain Members"
|
1059 |
msgstr ""
|
1060 |
|
@@ -1063,6 +1099,7 @@ msgstr ""
|
|
1063 |
#: adminpages/advancedsettings.php:161 adminpages/advancedsettings.php:177
|
1064 |
#: adminpages/advancedsettings.php:179 adminpages/advancedsettings.php:235
|
1065 |
#: adminpages/advancedsettings.php:238 adminpages/advancedsettings.php:345
|
|
|
1066 |
msgid "To hide ads in your template code, use code like the following"
|
1067 |
msgstr ""
|
1068 |
|
@@ -1071,6 +1108,7 @@ msgstr ""
|
|
1071 |
#: adminpages/advancedsettings.php:172 adminpages/advancedsettings.php:188
|
1072 |
#: adminpages/advancedsettings.php:190 adminpages/advancedsettings.php:244
|
1073 |
#: adminpages/advancedsettings.php:262 adminpages/advancedsettings.php:354
|
|
|
1074 |
msgid "Choose Levels to Hide Ads From"
|
1075 |
msgstr ""
|
1076 |
|
@@ -1079,6 +1117,7 @@ msgstr ""
|
|
1079 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1080 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
1081 |
#: adminpages/advancedsettings.php:296 adminpages/advancedsettings.php:388
|
|
|
1082 |
msgid "Redirect all traffic from registration page to /susbcription/?"
|
1083 |
msgstr ""
|
1084 |
|
@@ -1087,6 +1126,7 @@ msgstr ""
|
|
1087 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1088 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
1089 |
#: adminpages/advancedsettings.php:296 adminpages/advancedsettings.php:388
|
|
|
1090 |
msgid "multisite only"
|
1091 |
msgstr ""
|
1092 |
|
@@ -1099,20 +1139,21 @@ msgstr ""
|
|
1099 |
#: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:211
|
1100 |
#: adminpages/advancedsettings.php:227 adminpages/advancedsettings.php:229
|
1101 |
#: adminpages/advancedsettings.php:283 adminpages/advancedsettings.php:301
|
1102 |
-
#: adminpages/advancedsettings.php:393 adminpages/
|
1103 |
-
#: adminpages/membershiplevels.php:
|
1104 |
-
#: adminpages/membershiplevels.php:
|
1105 |
-
#: adminpages/membershiplevels.php:
|
1106 |
-
#: adminpages/membershiplevels.php:
|
1107 |
-
#: adminpages/membershiplevels.php:
|
1108 |
-
#: adminpages/membershiplevels.php:
|
1109 |
-
#: adminpages/membershiplevels.php:
|
1110 |
-
#: adminpages/membershiplevels.php:
|
1111 |
-
#: adminpages/membershiplevels.php:
|
1112 |
-
#: adminpages/membershiplevels.php:
|
1113 |
-
#: adminpages/
|
1114 |
-
#: adminpages/paymentsettings.php:
|
1115 |
-
#: adminpages/paymentsettings.php:
|
|
|
1116 |
#: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
|
1117 |
#: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:435
|
1118 |
#: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:455
|
@@ -1135,19 +1176,20 @@ msgstr ""
|
|
1135 |
#: classes/gateways/class.pmprogateway_stripe.php:321
|
1136 |
#: classes/gateways/class.pmprogateway_stripe.php:322
|
1137 |
#: classes/gateways/class.pmprogateway_stripe.php:323
|
|
|
1138 |
#: includes/compatibility/beaver-builder.php:42
|
1139 |
-
#: includes/compatibility/beaver-builder.php:136 includes/profile.php:
|
1140 |
-
#: includes/profile.php:
|
1141 |
-
#: includes/profile.php:
|
1142 |
-
#: includes/profile.php:126
|
1143 |
msgid "Yes"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
-
#: adminpages/advancedsettings.php:467
|
1147 |
msgid "Uninstall PMPro on deletion?"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: adminpages/advancedsettings.php:472
|
1151 |
msgid "Yes - Delete all PMPro Data."
|
1152 |
msgstr ""
|
1153 |
|
@@ -1157,15 +1199,16 @@ msgstr ""
|
|
1157 |
#: adminpages/advancedsettings.php:368 adminpages/advancedsettings.php:375
|
1158 |
#: adminpages/advancedsettings.php:384 adminpages/advancedsettings.php:407
|
1159 |
#: adminpages/advancedsettings.php:427 adminpages/advancedsettings.php:507
|
1160 |
-
#: adminpages/
|
1161 |
-
#: adminpages/pagesettings.php:
|
1162 |
-
#: adminpages/pagesettings.php:
|
1163 |
-
#: adminpages/pagesettings.php:
|
1164 |
-
#: adminpages/pagesettings.php:
|
1165 |
-
#: adminpages/pagesettings.php:
|
1166 |
-
#: adminpages/
|
1167 |
-
#: adminpages/paymentsettings.php:
|
1168 |
-
#: adminpages/paymentsettings.php:
|
|
|
1169 |
#: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:526
|
1170 |
#: adminpages/paymentsettings.php:532 adminpages/paymentsettings.php:534
|
1171 |
msgid "Save Settings"
|
@@ -1258,29 +1301,30 @@ msgstr ""
|
|
1258 |
#: adminpages/dashboard.php:219 adminpages/reports/login.php:179
|
1259 |
#: classes/class.memberorder.php:870 pages/checkout.php:118
|
1260 |
#: shortcodes/pmpro_account.php:160 adminpages/dashboard.php:215
|
1261 |
-
#: adminpages/dashboard.php:
|
1262 |
-
#: adminpages/memberslist.php:
|
1263 |
-
#: adminpages/memberslist.php:
|
1264 |
-
#: adminpages/
|
1265 |
-
#: adminpages/orders.php:
|
1266 |
-
#:
|
1267 |
-
#:
|
1268 |
-
#: pages/
|
1269 |
-
#: pages/checkout.php:
|
1270 |
-
#: pages/checkout.php:
|
1271 |
-
#: pages/checkout.php:191 pages/checkout.php:194
|
1272 |
#: shortcodes/pmpro_account.php:105 shortcodes/pmpro_account.php:107
|
1273 |
#: shortcodes/pmpro_account.php:108 shortcodes/pmpro_account.php:110
|
1274 |
-
#: shortcodes/pmpro_account.php:159
|
1275 |
msgid "Username"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
#: adminpages/dashboard.php:220 adminpages/dashboard.php:288
|
1279 |
#: adminpages/reports/login.php:181 includes/privacy.php:241
|
1280 |
-
#: pages/billing.php:58 pages/cancel.php:60 pages/invoice.php:
|
1281 |
#: pages/levels.php:35 shortcodes/pmpro_account.php:42
|
1282 |
#: shortcodes/pmpro_account.php:211 adminpages/dashboard.php:216
|
1283 |
-
#: adminpages/dashboard.php:
|
|
|
1284 |
#: adminpages/memberslist.php:175 adminpages/orders.php:1300
|
1285 |
#: adminpages/orders.php:1306 adminpages/orders.php:1315
|
1286 |
#: adminpages/reports/login.php:181 includes/privacy.php:241
|
@@ -1288,42 +1332,44 @@ msgstr ""
|
|
1288 |
#: pages/billing.php:16 pages/billing.php:25 pages/billing.php:27
|
1289 |
#: pages/billing.php:28 pages/billing.php:30 pages/billing.php:41
|
1290 |
#: pages/billing.php:44 pages/billing.php:45 pages/billing.php:49
|
1291 |
-
#: pages/billing.php:50 pages/billing.php:57 pages/
|
1292 |
-
#: pages/cancel.php:
|
1293 |
-
#: pages/invoice.php:
|
1294 |
-
#: pages/invoice.php:
|
1295 |
-
#: pages/levels.php:35 shortcodes/pmpro_account.php:42
|
1296 |
#: shortcodes/pmpro_account.php:43 shortcodes/pmpro_account.php:44
|
1297 |
#: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:125
|
1298 |
#: shortcodes/pmpro_account.php:126 shortcodes/pmpro_account.php:128
|
1299 |
-
#: shortcodes/pmpro_account.php:204
|
1300 |
msgid "Level"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
#: adminpages/dashboard.php:221 adminpages/reports/login.php:182
|
1304 |
-
#: adminpages/dashboard.php:217 adminpages/dashboard.php:
|
1305 |
-
#: adminpages/
|
1306 |
-
#: adminpages/memberslist.php:
|
1307 |
-
#: adminpages/memberslist.php:
|
1308 |
-
#: adminpages/reports/login.php:
|
1309 |
-
#: adminpages/reports/login.php:
|
|
|
1310 |
msgid "Joined"
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: adminpages/dashboard.php:222 adminpages/discountcodes.php:750
|
1314 |
#: adminpages/reports/login.php:183 includes/profile.php:86
|
1315 |
-
#: adminpages/dashboard.php:218 adminpages/dashboard.php:
|
1316 |
-
#: adminpages/
|
1317 |
-
#: adminpages/discountcodes.php:
|
1318 |
-
#: adminpages/discountcodes.php:
|
1319 |
-
#: adminpages/discountcodes.php:
|
1320 |
-
#: adminpages/discountcodes.php:
|
1321 |
-
#: adminpages/discountcodes.php:
|
1322 |
-
#: adminpages/memberslist.php:
|
1323 |
-
#: adminpages/memberslist.php:
|
1324 |
-
#: adminpages/memberslist.php:
|
1325 |
-
#: adminpages/reports/login.php:
|
1326 |
-
#: adminpages/reports/login.php:
|
|
|
1327 |
#: includes/profile.php:98 includes/profile.php:102 includes/profile.php:107
|
1328 |
#: includes/profile.php:114 includes/profile.php:117 includes/profile.php:118
|
1329 |
#: includes/profile.php:120 includes/profile.php:122
|
@@ -1332,13 +1378,14 @@ msgstr ""
|
|
1332 |
|
1333 |
#: adminpages/dashboard.php:228 adminpages/reports/login.php:261
|
1334 |
#: classes/class-pmpro-members-list-table.php:226 adminpages/dashboard.php:224
|
1335 |
-
#: adminpages/dashboard.php:
|
1336 |
-
#: adminpages/memberslist.php:
|
1337 |
-
#: adminpages/memberslist.php:
|
1338 |
-
#: adminpages/memberslist.php:
|
1339 |
-
#: adminpages/memberslist.php:
|
1340 |
-
#: adminpages/reports/login.php:
|
1341 |
-
#: adminpages/reports/login.php:
|
|
|
1342 |
#: classes/class-pmpro-members-list-table.php:226
|
1343 |
#: classes/class-pmpro-members-list-table.php:252
|
1344 |
#: classes/class-pmpro-members-list-table.php:257
|
@@ -1347,23 +1394,24 @@ msgstr ""
|
|
1347 |
|
1348 |
#: adminpages/dashboard.php:286 adminpages/discountcodes.php:449
|
1349 |
#: adminpages/discountcodes.php:748 adminpages/orders.php:415
|
1350 |
-
#: adminpages/dashboard.php:282 adminpages/dashboard.php:
|
1351 |
-
#: adminpages/
|
1352 |
-
#: adminpages/discountcodes.php:
|
1353 |
-
#: adminpages/discountcodes.php:
|
1354 |
-
#: adminpages/discountcodes.php:
|
1355 |
-
#: adminpages/discountcodes.php:
|
1356 |
-
#: adminpages/discountcodes.php:
|
1357 |
-
#: adminpages/discountcodes.php:
|
1358 |
-
#: adminpages/discountcodes.php:
|
1359 |
-
#: adminpages/discountcodes.php:
|
1360 |
-
#: adminpages/discountcodes.php:
|
1361 |
-
#: adminpages/
|
1362 |
-
#: adminpages/orders.php:
|
1363 |
-
#: adminpages/orders.php:
|
1364 |
-
#: adminpages/orders.php:
|
1365 |
-
#: adminpages/orders.php:
|
1366 |
-
#: adminpages/orders.php:
|
|
|
1367 |
#: adminpages/orders.php:598 adminpages/orders.php:901
|
1368 |
#: adminpages/orders.php:911 adminpages/orders.php:938
|
1369 |
#: adminpages/orders.php:967 adminpages/orders.php:1104
|
@@ -1376,17 +1424,17 @@ msgstr ""
|
|
1376 |
|
1377 |
#: adminpages/dashboard.php:287
|
1378 |
#: classes/gateways/class.pmprogateway_payflowpro.php:117
|
1379 |
-
#: adminpages/dashboard.php:283 adminpages/dashboard.php:
|
1380 |
-
#: adminpages/
|
1381 |
-
#: adminpages/orders.php:
|
1382 |
-
#: adminpages/orders.php:
|
1383 |
-
#: adminpages/orders.php:
|
1384 |
-
#: adminpages/orders.php:
|
1385 |
-
#: adminpages/orders.php:
|
1386 |
-
#: adminpages/paymentsettings.php:
|
1387 |
-
#: adminpages/
|
1388 |
-
#: adminpages/reports/login.php:
|
1389 |
-
#: adminpages/reports/login.php:179
|
1390 |
#: classes/gateways/class.pmprogateway_payflowpro.php:116
|
1391 |
#: classes/gateways/class.pmprogateway_payflowpro.php:117
|
1392 |
msgid "User"
|
@@ -1394,21 +1442,22 @@ msgstr ""
|
|
1394 |
|
1395 |
#: adminpages/dashboard.php:289 adminpages/templates/orders-email.php:64
|
1396 |
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
1397 |
-
#: pages/confirmation.php:98 pages/invoice.php:
|
1398 |
-
#: adminpages/dashboard.php:
|
1399 |
-
#: adminpages/orders.php:
|
1400 |
-
#: adminpages/orders.php:
|
1401 |
-
#: adminpages/orders.php:
|
1402 |
-
#: adminpages/orders.php:
|
1403 |
-
#: adminpages/orders.php:
|
1404 |
-
#: adminpages/orders.php:
|
1405 |
-
#: adminpages/orders.php:
|
1406 |
-
#: adminpages/orders.php:
|
1407 |
-
#: adminpages/orders.php:
|
1408 |
-
#: adminpages/orders.php:
|
1409 |
-
#: adminpages/orders.php:
|
1410 |
-
#: adminpages/orders.php:
|
1411 |
-
#: adminpages/orders.php:
|
|
|
1412 |
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
1413 |
#: pages/confirmation.php:95 pages/confirmation.php:96
|
1414 |
#: pages/confirmation.php:98 pages/invoice.php:77 pages/invoice.php:78
|
@@ -1418,69 +1467,71 @@ msgid "Total"
|
|
1418 |
msgstr ""
|
1419 |
|
1420 |
#: adminpages/dashboard.php:290 includes/privacy.php:202
|
1421 |
-
#: includes/privacy.php:309 pages/invoice.php:
|
1422 |
#: shortcodes/pmpro_account.php:213 adminpages/dashboard.php:286
|
1423 |
-
#: adminpages/dashboard.php:
|
1424 |
-
#: adminpages/orders.php:
|
1425 |
-
#: adminpages/orders.php:
|
1426 |
-
#: adminpages/orders.php:
|
1427 |
-
#: adminpages/orders.php:
|
1428 |
-
#: adminpages/orders.php:
|
1429 |
-
#: adminpages/orders.php:
|
1430 |
-
#: adminpages/orders.php:
|
1431 |
-
#: adminpages/orders.php:
|
1432 |
-
#: adminpages/orders.php:
|
1433 |
-
#: adminpages/orders.php:
|
1434 |
-
#: adminpages/orders.php:
|
1435 |
-
#: adminpages/orders.php:
|
1436 |
-
#: adminpages/orders.php:
|
1437 |
-
#:
|
1438 |
-
#: pages/invoice.php:29 shortcodes/pmpro_account.php:130
|
1439 |
-
#: shortcodes/pmpro_account.php:206
|
1440 |
msgid "Status"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: adminpages/dashboard.php:291 pages/invoice.php:
|
1444 |
#: shortcodes/pmpro_account.php:210 adminpages/dashboard.php:287
|
1445 |
-
#: adminpages/dashboard.php:
|
1446 |
-
#: adminpages/orders.php:
|
1447 |
-
#: adminpages/orders.php:
|
1448 |
-
#: adminpages/orders.php:
|
1449 |
-
#: adminpages/orders.php:
|
1450 |
-
#: adminpages/orders.php:
|
1451 |
-
#: adminpages/orders.php:
|
1452 |
-
#: adminpages/orders.php:
|
1453 |
-
#: adminpages/orders.php:
|
1454 |
-
#: adminpages/orders.php:
|
1455 |
-
#: adminpages/orders.php:
|
1456 |
-
#: adminpages/orders.php:
|
1457 |
-
#: adminpages/orders.php:
|
1458 |
-
#: adminpages/orders.php:
|
1459 |
-
#: adminpages/orders.php:
|
1460 |
-
#: pages/invoice.php:
|
1461 |
-
#: pages/invoice.php:
|
1462 |
-
#:
|
1463 |
-
#: shortcodes/pmpro_account.php:
|
1464 |
-
#: shortcodes/pmpro_account.php:203
|
|
|
1465 |
msgid "Date"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
#: adminpages/dashboard.php:298 adminpages/dashboard.php:294
|
1469 |
-
#: adminpages/dashboard.php:
|
1470 |
-
#: adminpages/orders.php:
|
1471 |
-
#: adminpages/orders.php:
|
1472 |
-
#: adminpages/orders.php:
|
1473 |
-
#: adminpages/orders.php:
|
1474 |
-
#: adminpages/orders.php:
|
1475 |
-
#: adminpages/orders.php:
|
1476 |
-
#: adminpages/orders.php:
|
1477 |
-
#: adminpages/orders.php:1512
|
1478 |
msgid "No orders found."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
#: adminpages/dashboard.php:315 adminpages/dashboard.php:330
|
1482 |
-
#: adminpages/dashboard.php:311 adminpages/dashboard.php:
|
1483 |
-
#: adminpages/dashboard.php:
|
|
|
1484 |
#: adminpages/orders.php:933 adminpages/orders.php:943
|
1485 |
#: adminpages/orders.php:972 adminpages/orders.php:1001
|
1486 |
#: adminpages/orders.php:1141 adminpages/orders.php:1172
|
@@ -1493,8 +1544,9 @@ msgid "deleted"
|
|
1493 |
msgstr ""
|
1494 |
|
1495 |
#: adminpages/dashboard.php:317 adminpages/dashboard.php:332
|
1496 |
-
#: adminpages/dashboard.php:313 adminpages/dashboard.php:
|
1497 |
-
#: adminpages/dashboard.php:
|
|
|
1498 |
#: adminpages/orders.php:1347 adminpages/orders.php:1371
|
1499 |
#: adminpages/orders.php:1376 adminpages/orders.php:1377
|
1500 |
#: adminpages/orders.php:1386 adminpages/orders.php:1397
|
@@ -1506,13 +1558,14 @@ msgstr ""
|
|
1506 |
#: classes/class-pmpro-admin-activity-email.php:344
|
1507 |
#: adminpages/dashboard.php:372 adminpages/dashboard.php:377
|
1508 |
#: adminpages/dashboard.php:380 adminpages/dashboard.php:383
|
|
|
1509 |
#: classes/class-pmpro-admin-activity-email.php:344
|
1510 |
msgid "No news found."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
#: adminpages/dashboard.php:393 adminpages/dashboard.php:378
|
1514 |
#: adminpages/dashboard.php:383 adminpages/dashboard.php:386
|
1515 |
-
#: adminpages/dashboard.php:389
|
1516 |
#, php-format
|
1517 |
msgid "Posted %s"
|
1518 |
msgstr ""
|
@@ -1685,7 +1738,7 @@ msgstr ""
|
|
1685 |
#: adminpages/orders.php:375 adminpages/orders.php:386
|
1686 |
#: adminpages/orders.php:394 adminpages/orders.php:401
|
1687 |
#: adminpages/orders.php:402 adminpages/orders.php:406
|
1688 |
-
#: adminpages/orders.php:412
|
1689 |
msgid "This will be generated when you save."
|
1690 |
msgstr ""
|
1691 |
|
@@ -1700,7 +1753,7 @@ msgstr ""
|
|
1700 |
|
1701 |
#: adminpages/discountcodes.php:505
|
1702 |
#: classes/gateways/class.pmprogateway_braintree.php:479
|
1703 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1704 |
#: pages/checkout.php:389 adminpages/discountcodes.php:367
|
1705 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
1706 |
#: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
|
@@ -1740,16 +1793,18 @@ msgstr ""
|
|
1740 |
#: classes/gateways/class.pmprogateway_stripe.php:621
|
1741 |
#: classes/gateways/class.pmprogateway_stripe.php:628
|
1742 |
#: classes/gateways/class.pmprogateway_stripe.php:629
|
1743 |
-
#: classes/gateways/class.pmprogateway_stripe.php:630
|
|
|
1744 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
|
1745 |
#: pages/billing.php:268 pages/billing.php:310 pages/billing.php:313
|
1746 |
#: pages/billing.php:316 pages/billing.php:317 pages/billing.php:319
|
1747 |
#: pages/billing.php:321 pages/billing.php:322 pages/billing.php:330
|
1748 |
-
#: pages/billing.php:339 pages/billing.php:342 pages/
|
1749 |
-
#: pages/checkout.php:
|
1750 |
-
#: pages/checkout.php:
|
1751 |
-
#: pages/checkout.php:
|
1752 |
-
#: pages/checkout.php:
|
|
|
1753 |
msgid "Expiration Date"
|
1754 |
msgstr ""
|
1755 |
|
@@ -1858,7 +1913,7 @@ msgid "Billing Amount"
|
|
1858 |
msgstr ""
|
1859 |
|
1860 |
#: adminpages/discountcodes.php:605 adminpages/membershiplevels.php:433
|
1861 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1862 |
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:605
|
1863 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
1864 |
#: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
|
@@ -1887,12 +1942,13 @@ msgstr ""
|
|
1887 |
#: classes/gateways/class.pmprogateway_stripe.php:784
|
1888 |
#: classes/gateways/class.pmprogateway_stripe.php:785
|
1889 |
#: classes/gateways/class.pmprogateway_stripe.php:786
|
|
|
1890 |
msgid "per"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
1894 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
1895 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1896 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1897 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1898 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -1936,12 +1992,13 @@ msgstr ""
|
|
1936 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
1937 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1938 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
|
|
1939 |
msgid "Day(s)"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
1943 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
1944 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1945 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1946 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1947 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -1985,12 +2042,13 @@ msgstr ""
|
|
1985 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
1986 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1987 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
|
|
1988 |
msgid "Month(s)"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
1992 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
1993 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1994 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1995 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1996 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -2034,12 +2092,13 @@ msgstr ""
|
|
2034 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
2035 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
2036 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
|
|
2037 |
msgid "Week(s)"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
2041 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
2042 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
2043 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2044 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
2045 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -2083,6 +2142,7 @@ msgstr ""
|
|
2083 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
2084 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
2085 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
|
|
2086 |
msgid "Year(s)"
|
2087 |
msgstr ""
|
2088 |
|
@@ -2370,7 +2430,7 @@ msgstr ""
|
|
2370 |
msgid " View Orders"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
-
#: adminpages/emailsettings.php:85
|
2374 |
msgid "Send Emails From"
|
2375 |
msgstr ""
|
2376 |
|
@@ -2410,11 +2470,11 @@ msgid ""
|
|
2410 |
"use the above settings."
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: adminpages/emailsettings.php:120
|
2414 |
msgid "Customizing Email Content"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: adminpages/emailsettings.php:129
|
2418 |
#, php-format
|
2419 |
msgid ""
|
2420 |
"There are several ways to modify the appearance of your Paid Memberships Pro "
|
@@ -2427,11 +2487,11 @@ msgid ""
|
|
2427 |
"Memberships Pro emails</a>."
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: adminpages/emailsettings.php:134
|
2431 |
msgid "Email Deliverability"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: adminpages/emailsettings.php:145
|
2435 |
#, php-format
|
2436 |
msgid ""
|
2437 |
"If you are having issues with email delivery from your server, <a href=\"%s"
|
@@ -2444,15 +2504,15 @@ msgid ""
|
|
2444 |
"and Paid Memberships Pro</a></em>."
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: adminpages/emailsettings.php:161
|
2448 |
msgid "View Your SendWP Account"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: adminpages/emailsettings.php:161
|
2452 |
msgid "Your site is connected to SendWP."
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: adminpages/emailsettings.php:162
|
2456 |
#, php-format
|
2457 |
msgid "Please enable email sending inside %s."
|
2458 |
msgstr ""
|
@@ -2460,7 +2520,7 @@ msgstr ""
|
|
2460 |
#: adminpages/emailsettings.php:174 adminpages/emailsettings.php:86
|
2461 |
#: adminpages/emailsettings.php:104 adminpages/emailsettings.php:115
|
2462 |
#: adminpages/emailsettings.php:125 adminpages/emailsettings.php:129
|
2463 |
-
#: adminpages/emailsettings.php:130
|
2464 |
msgid "Send the site admin emails"
|
2465 |
msgstr ""
|
2466 |
|
@@ -2468,6 +2528,7 @@ msgstr ""
|
|
2468 |
#: adminpages/emailsettings.php:114 adminpages/emailsettings.php:125
|
2469 |
#: adminpages/emailsettings.php:135 adminpages/emailsettings.php:139
|
2470 |
#: adminpages/emailsettings.php:140 adminpages/emailsettings.php:141
|
|
|
2471 |
msgid "when a member checks out."
|
2472 |
msgstr ""
|
2473 |
|
@@ -2475,6 +2536,7 @@ msgstr ""
|
|
2475 |
#: adminpages/emailsettings.php:123 adminpages/emailsettings.php:134
|
2476 |
#: adminpages/emailsettings.php:144 adminpages/emailsettings.php:148
|
2477 |
#: adminpages/emailsettings.php:149 adminpages/emailsettings.php:150
|
|
|
2478 |
msgid "when an admin changes a user's membership level through the dashboard."
|
2479 |
msgstr ""
|
2480 |
|
@@ -2482,6 +2544,7 @@ msgstr ""
|
|
2482 |
#: adminpages/emailsettings.php:132 adminpages/emailsettings.php:143
|
2483 |
#: adminpages/emailsettings.php:153 adminpages/emailsettings.php:157
|
2484 |
#: adminpages/emailsettings.php:158 adminpages/emailsettings.php:159
|
|
|
2485 |
msgid "when a user cancels his or her account."
|
2486 |
msgstr ""
|
2487 |
|
@@ -2489,21 +2552,24 @@ msgstr ""
|
|
2489 |
#: adminpages/emailsettings.php:141 adminpages/emailsettings.php:152
|
2490 |
#: adminpages/emailsettings.php:162 adminpages/emailsettings.php:166
|
2491 |
#: adminpages/emailsettings.php:167 adminpages/emailsettings.php:168
|
|
|
2492 |
msgid "when a user updates his or her billing information."
|
2493 |
msgstr ""
|
2494 |
|
2495 |
#: adminpages/emailsettings.php:192 adminpages/emailsettings.php:129
|
2496 |
#: adminpages/emailsettings.php:147 adminpages/emailsettings.php:158
|
2497 |
#: adminpages/emailsettings.php:168 adminpages/emailsettings.php:172
|
2498 |
-
#: adminpages/emailsettings.php:174
|
2499 |
msgid "Send members emails"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
#: adminpages/emailsettings.php:196 adminpages/emailsettings.php:184
|
|
|
2503 |
msgid "Default WP notification email."
|
2504 |
msgstr ""
|
2505 |
|
2506 |
#: adminpages/emailsettings.php:197 adminpages/emailsettings.php:185
|
|
|
2507 |
msgid ""
|
2508 |
"Recommended: Leave unchecked. Members will still get an email confirmation "
|
2509 |
"from PMPro after checkout."
|
@@ -2555,23 +2621,23 @@ msgstr ""
|
|
2555 |
msgid "Paid Memberships Pro Support License"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: adminpages/license.php:47 adminpages/license.php:47
|
2559 |
msgid ""
|
2560 |
"Enter your support license key.</strong> Your license key can be found in "
|
2561 |
"your membership email receipt or in your <a href=\"https://www."
|
2562 |
-
"paidmembershipspro.com/
|
2563 |
-
"%
|
2564 |
"%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership "
|
2565 |
"Account</a>."
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: adminpages/license.php:49 adminpages/license.php:49
|
2569 |
msgid ""
|
2570 |
-
"Visit the PMPro <a href=\"https://www.paidmembershipspro.com/
|
2571 |
-
"
|
2572 |
-
"%
|
2573 |
-
"
|
2574 |
-
"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
#: adminpages/license.php:49 adminpages/license.php:49 includes/license.php:91
|
@@ -2975,7 +3041,7 @@ msgstr ""
|
|
2975 |
msgid "Save Level"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: adminpages/membershiplevels.php:641 includes/profile.php:
|
2979 |
#: pages/billing.php:414 pages/cancel.php:83
|
2980 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
|
2981 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
|
@@ -2989,16 +3055,17 @@ msgstr ""
|
|
2989 |
#: adminpages/orders.php:796 adminpages/orders.php:807
|
2990 |
#: adminpages/orders.php:894 adminpages/orders.php:930
|
2991 |
#: adminpages/orders.php:934 adminpages/orders.php:939
|
2992 |
-
#: adminpages/orders.php:940 adminpages/orders.php:949 includes/profile.php:
|
2993 |
-
#:
|
2994 |
-
#: pages/billing.php:
|
2995 |
-
#: pages/billing.php:
|
2996 |
-
#: pages/billing.php:
|
2997 |
-
#: pages/billing.php:
|
2998 |
-
#: pages/billing.php:
|
2999 |
-
#: pages/billing.php:
|
3000 |
-
#: pages/cancel.php:
|
3001 |
-
#: shortcodes/pmpro_account.php:
|
|
|
3002 |
msgid "Cancel"
|
3003 |
msgstr ""
|
3004 |
|
@@ -3037,7 +3104,7 @@ msgid "Drag and drop membership levels to reorder them on the Levels page."
|
|
3037 |
msgstr ""
|
3038 |
|
3039 |
#: adminpages/membershiplevels.php:776 pages/billing.php:88 pages/cancel.php:61
|
3040 |
-
#: pages/confirmation.php:82 pages/invoice.php:
|
3041 |
#: shortcodes/pmpro_account.php:44 adminpages/membershiplevels.php:510
|
3042 |
#: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
|
3043 |
#: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
|
@@ -3048,14 +3115,14 @@ msgstr ""
|
|
3048 |
#: adminpages/membershiplevels.php:716 adminpages/membershiplevels.php:718
|
3049 |
#: adminpages/membershiplevels.php:744 adminpages/membershiplevels.php:761
|
3050 |
#: adminpages/membershiplevels.php:766 adminpages/membershiplevels.php:771
|
3051 |
-
#: adminpages/membershiplevels.php:776 pages/account.php:20
|
3052 |
-
#: pages/
|
3053 |
-
#: pages/confirmation.php:
|
3054 |
-
#: pages/confirmation.php:
|
3055 |
-
#: pages/confirmation.php:
|
3056 |
-
#: pages/invoice.php:
|
3057 |
-
#:
|
3058 |
-
#: shortcodes/pmpro_account.php:46
|
3059 |
msgid "Expiration"
|
3060 |
msgstr ""
|
3061 |
|
@@ -3152,8 +3219,8 @@ msgstr ""
|
|
3152 |
#: adminpages/orders.php:169 adminpages/orders.php:270
|
3153 |
#: adminpages/orders.php:284 adminpages/orders.php:285
|
3154 |
#: adminpages/orders.php:295 adminpages/orders.php:296
|
3155 |
-
#: adminpages/orders.php:297 adminpages/orders.php:
|
3156 |
-
#: adminpages/orders.php:314
|
3157 |
msgid "Order saved successfully."
|
3158 |
msgstr ""
|
3159 |
|
@@ -3161,8 +3228,8 @@ msgstr ""
|
|
3161 |
#: adminpages/orders.php:174 adminpages/orders.php:275
|
3162 |
#: adminpages/orders.php:287 adminpages/orders.php:288
|
3163 |
#: adminpages/orders.php:298 adminpages/orders.php:299
|
3164 |
-
#: adminpages/orders.php:300 adminpages/orders.php:
|
3165 |
-
#: adminpages/orders.php:317
|
3166 |
msgid "Error updating order timestamp."
|
3167 |
msgstr ""
|
3168 |
|
@@ -3170,8 +3237,8 @@ msgstr ""
|
|
3170 |
#: adminpages/orders.php:180 adminpages/orders.php:281
|
3171 |
#: adminpages/orders.php:291 adminpages/orders.php:292
|
3172 |
#: adminpages/orders.php:302 adminpages/orders.php:303
|
3173 |
-
#: adminpages/orders.php:304 adminpages/orders.php:
|
3174 |
-
#: adminpages/orders.php:321
|
3175 |
msgid "Error saving order."
|
3176 |
msgstr ""
|
3177 |
|
@@ -3181,24 +3248,26 @@ msgstr ""
|
|
3181 |
#: adminpages/orders.php:395 adminpages/orders.php:406
|
3182 |
#: adminpages/orders.php:418 adminpages/orders.php:424
|
3183 |
#: adminpages/orders.php:425 adminpages/orders.php:426
|
3184 |
-
#: adminpages/orders.php:429 adminpages/orders.php:
|
|
|
3185 |
msgid "User ID"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
#: adminpages/orders.php:578 classes/class.pmproemail.php:865
|
3189 |
#: classes/class.pmproemail.php:915 includes/init.php:198
|
3190 |
#: includes/profile.php:34 adminpages/orders.php:571 adminpages/orders.php:575
|
3191 |
-
#: adminpages/orders.php:576 adminpages/orders.php:
|
3192 |
-
#:
|
3193 |
-
#: classes/class.pmproemail.php:
|
3194 |
-
#: classes/class.pmproemail.php:
|
3195 |
-
#:
|
3196 |
-
#: includes/init.php:
|
3197 |
-
#: includes/init.php:
|
3198 |
-
#: includes/init.php:
|
3199 |
-
#: includes/init.php:
|
3200 |
-
#: includes/init.php:
|
3201 |
-
#: includes/profile.php:
|
|
|
3202 |
msgid "None"
|
3203 |
msgstr ""
|
3204 |
|
@@ -3208,7 +3277,7 @@ msgstr ""
|
|
3208 |
#: adminpages/orders.php:501 adminpages/orders.php:512
|
3209 |
#: adminpages/orders.php:542 adminpages/orders.php:582
|
3210 |
#: adminpages/orders.php:586 adminpages/orders.php:587
|
3211 |
-
#: adminpages/orders.php:597 includes/privacy.php:273
|
3212 |
msgid "Sub Total"
|
3213 |
msgstr ""
|
3214 |
|
@@ -3219,7 +3288,7 @@ msgstr ""
|
|
3219 |
#: adminpages/orders.php:692 adminpages/orders.php:737
|
3220 |
#: adminpages/orders.php:775 adminpages/orders.php:779
|
3221 |
#: adminpages/orders.php:780 adminpages/orders.php:782
|
3222 |
-
#: adminpages/orders.php:792 includes/privacy.php:321
|
3223 |
msgid "Payment Transaction ID"
|
3224 |
msgstr ""
|
3225 |
|
@@ -3242,8 +3311,9 @@ msgstr ""
|
|
3242 |
#: adminpages/orders.php:1211 adminpages/orders.php:1245
|
3243 |
#: adminpages/orders.php:1251 adminpages/orders.php:1338
|
3244 |
#: adminpages/orders.php:1343 adminpages/orders.php:1344
|
3245 |
-
#: adminpages/orders.php:
|
3246 |
-
#: adminpages/orders.php:
|
|
|
3247 |
#, php-format
|
3248 |
msgid ""
|
3249 |
"Deleting orders is permanent and can affect active users. Are you sure you "
|
@@ -3660,13 +3730,13 @@ msgid "Additional Page Settings"
|
|
3660 |
msgstr ""
|
3661 |
|
3662 |
#: adminpages/paymentsettings.php:66 adminpages/paymentsettings.php:49
|
3663 |
-
#: adminpages/paymentsettings.php:64 adminpages/paymentsettings.php:
|
3664 |
-
#: adminpages/paymentsettings.php:82
|
3665 |
msgid "Your payment settings have been updated."
|
3666 |
msgstr ""
|
3667 |
|
3668 |
#: adminpages/paymentsettings.php:115 adminpages/paymentsettings.php:112
|
3669 |
-
#: adminpages/paymentsettings.php:113
|
3670 |
msgid ""
|
3671 |
"Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target="
|
3672 |
"\"_blank\" href=\"https://www.paidmembershipspro.com/documentation/initial-"
|
@@ -3682,27 +3752,29 @@ msgstr ""
|
|
3682 |
|
3683 |
#: adminpages/paymentsettings.php:122 adminpages/paymentsettings.php:101
|
3684 |
#: adminpages/paymentsettings.php:118 adminpages/paymentsettings.php:119
|
3685 |
-
#: adminpages/paymentsettings.php:120
|
3686 |
msgid "Choose a Gateway"
|
3687 |
msgstr ""
|
3688 |
|
3689 |
#: adminpages/paymentsettings.php:127 adminpages/paymentsettings.php:93
|
3690 |
#: adminpages/paymentsettings.php:106 adminpages/paymentsettings.php:110
|
3691 |
#: adminpages/paymentsettings.php:123 adminpages/paymentsettings.php:124
|
3692 |
-
#: adminpages/paymentsettings.php:125 adminpages/paymentsettings.php:
|
3693 |
-
#: adminpages/paymentsettings.php:
|
3694 |
-
#: adminpages/paymentsettings.php:154
|
3695 |
msgid "Payment Gateway"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
#: adminpages/paymentsettings.php:142 adminpages/paymentsettings.php:138
|
3699 |
#: adminpages/paymentsettings.php:139 adminpages/paymentsettings.php:140
|
|
|
3700 |
msgid ""
|
3701 |
"It is not connected to a live gateway environment and cannot accept payments."
|
3702 |
msgstr ""
|
3703 |
|
3704 |
#: adminpages/paymentsettings.php:142 adminpages/paymentsettings.php:138
|
3705 |
#: adminpages/paymentsettings.php:139 adminpages/paymentsettings.php:140
|
|
|
3706 |
msgid ""
|
3707 |
"This gateway is for membership sites with Free levels or for sites that "
|
3708 |
"accept payment offline."
|
@@ -3718,9 +3790,9 @@ msgstr ""
|
|
3718 |
#: adminpages/orders.php:757 adminpages/orders.php:767
|
3719 |
#: adminpages/paymentsettings.php:124 adminpages/paymentsettings.php:141
|
3720 |
#: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:145
|
3721 |
-
#: adminpages/paymentsettings.php:146 adminpages/paymentsettings.php:
|
3722 |
-
#: adminpages/paymentsettings.php:
|
3723 |
-
#: includes/privacy.php:317
|
3724 |
msgid "Gateway Environment"
|
3725 |
msgstr ""
|
3726 |
|
@@ -3734,8 +3806,8 @@ msgstr ""
|
|
3734 |
#: adminpages/orders.php:779 adminpages/paymentsettings.php:128
|
3735 |
#: adminpages/paymentsettings.php:145 adminpages/paymentsettings.php:148
|
3736 |
#: adminpages/paymentsettings.php:149 adminpages/paymentsettings.php:150
|
3737 |
-
#: adminpages/paymentsettings.php:
|
3738 |
-
#: adminpages/paymentsettings.php:188
|
3739 |
msgid "Sandbox/Testing"
|
3740 |
msgstr ""
|
3741 |
|
@@ -3749,30 +3821,32 @@ msgstr ""
|
|
3749 |
#: adminpages/orders.php:784 adminpages/paymentsettings.php:129
|
3750 |
#: adminpages/paymentsettings.php:146 adminpages/paymentsettings.php:149
|
3751 |
#: adminpages/paymentsettings.php:150 adminpages/paymentsettings.php:151
|
3752 |
-
#: adminpages/paymentsettings.php:
|
3753 |
-
#: adminpages/paymentsettings.php:189
|
3754 |
msgid "Live/Production"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
#: adminpages/paymentsettings.php:187 adminpages/paymentsettings.php:148
|
3758 |
#: adminpages/paymentsettings.php:165 adminpages/paymentsettings.php:182
|
3759 |
#: adminpages/paymentsettings.php:184 adminpages/paymentsettings.php:185
|
|
|
3760 |
msgid "Currency and Tax Settings"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
#: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:153
|
3764 |
#: adminpages/paymentsettings.php:170 adminpages/paymentsettings.php:187
|
3765 |
#: adminpages/paymentsettings.php:189 adminpages/paymentsettings.php:190
|
3766 |
-
#: adminpages/paymentsettings.php:
|
3767 |
-
#: adminpages/paymentsettings.php:
|
3768 |
-
#: adminpages/paymentsettings.php:386
|
3769 |
msgid "Currency"
|
3770 |
msgstr ""
|
3771 |
|
3772 |
#: adminpages/paymentsettings.php:208 adminpages/paymentsettings.php:169
|
3773 |
#: adminpages/paymentsettings.php:186 adminpages/paymentsettings.php:203
|
3774 |
#: adminpages/paymentsettings.php:205 adminpages/paymentsettings.php:206
|
3775 |
-
#: adminpages/paymentsettings.php:
|
|
|
3776 |
msgid ""
|
3777 |
"Not all currencies will be supported by every gateway. Please check with "
|
3778 |
"your gateway."
|
@@ -3781,65 +3855,73 @@ msgstr ""
|
|
3781 |
#: adminpages/paymentsettings.php:213 adminpages/paymentsettings.php:174
|
3782 |
#: adminpages/paymentsettings.php:191 adminpages/paymentsettings.php:208
|
3783 |
#: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:211
|
3784 |
-
#: adminpages/paymentsettings.php:
|
3785 |
-
#: adminpages/paymentsettings.php:
|
|
|
3786 |
msgid "Accepted Credit Card Types"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
#: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:188
|
3790 |
#: adminpages/paymentsettings.php:205 adminpages/paymentsettings.php:222
|
3791 |
#: adminpages/paymentsettings.php:224 adminpages/paymentsettings.php:225
|
3792 |
-
#: adminpages/paymentsettings.php:
|
3793 |
-
#: adminpages/paymentsettings.php:
|
|
|
3794 |
msgid "Sales Tax"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
#: adminpages/paymentsettings.php:227 pages/billing.php:167
|
3798 |
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:205
|
3799 |
#: adminpages/paymentsettings.php:222 adminpages/paymentsettings.php:224
|
3800 |
-
#: adminpages/paymentsettings.php:225 adminpages/paymentsettings.php:
|
3801 |
-
#: adminpages/paymentsettings.php:
|
3802 |
-
#: adminpages/paymentsettings.php:
|
3803 |
-
#: pages/billing.php:
|
3804 |
-
#: pages/billing.php:
|
3805 |
-
#: pages/billing.php:
|
3806 |
-
#: pages/billing.php:
|
3807 |
-
#: pages/billing.php:143
|
|
|
3808 |
msgid "optional"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:191
|
3812 |
#: adminpages/paymentsettings.php:208 adminpages/paymentsettings.php:225
|
3813 |
#: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:228
|
3814 |
-
#: adminpages/paymentsettings.php:
|
3815 |
-
#: adminpages/paymentsettings.php:
|
|
|
3816 |
msgid "Tax State"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:192
|
3820 |
#: adminpages/paymentsettings.php:209 adminpages/paymentsettings.php:226
|
3821 |
#: adminpages/paymentsettings.php:228 adminpages/paymentsettings.php:229
|
3822 |
-
#: adminpages/paymentsettings.php:
|
3823 |
-
#: adminpages/paymentsettings.php:
|
|
|
3824 |
msgid "abbreviation, e.g. \"PA\""
|
3825 |
msgstr ""
|
3826 |
|
3827 |
#: adminpages/paymentsettings.php:232 adminpages/paymentsettings.php:193
|
3828 |
#: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:227
|
3829 |
#: adminpages/paymentsettings.php:229 adminpages/paymentsettings.php:230
|
|
|
3830 |
msgid "Tax Rate"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
#: adminpages/paymentsettings.php:233 adminpages/paymentsettings.php:194
|
3834 |
#: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:228
|
3835 |
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:231
|
3836 |
-
#: adminpages/paymentsettings.php:
|
3837 |
-
#: adminpages/paymentsettings.php:
|
|
|
3838 |
msgid "decimal, e.g. \"0.06\""
|
3839 |
msgstr ""
|
3840 |
|
3841 |
#: adminpages/paymentsettings.php:234 adminpages/paymentsettings.php:229
|
3842 |
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:232
|
|
|
3843 |
msgid ""
|
3844 |
"US only. If values are given, tax will be applied for any members ordering "
|
3845 |
"from the selected state.<br />For non-US or more complex tax rules, use the "
|
@@ -3854,20 +3936,22 @@ msgstr ""
|
|
3854 |
#: adminpages/paymentsettings.php:146 adminpages/paymentsettings.php:201
|
3855 |
#: adminpages/paymentsettings.php:218 adminpages/paymentsettings.php:235
|
3856 |
#: adminpages/paymentsettings.php:238 adminpages/paymentsettings.php:239
|
|
|
3857 |
msgid "SSL Settings"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
#: adminpages/paymentsettings.php:246 adminpages/paymentsettings.php:206
|
3861 |
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:240
|
3862 |
#: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:244
|
3863 |
-
#: adminpages/paymentsettings.php:
|
3864 |
-
#: adminpages/paymentsettings.php:457
|
3865 |
msgid "Force SSL"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
#: adminpages/paymentsettings.php:253 adminpages/paymentsettings.php:213
|
3869 |
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:247
|
3870 |
#: adminpages/paymentsettings.php:250 adminpages/paymentsettings.php:251
|
|
|
3871 |
msgid ""
|
3872 |
"Your Site URL starts with https:// and so PMPro will allow your entire site "
|
3873 |
"to be served over HTTPS."
|
@@ -3876,15 +3960,16 @@ msgstr ""
|
|
3876 |
#: adminpages/paymentsettings.php:261 adminpages/paymentsettings.php:212
|
3877 |
#: adminpages/paymentsettings.php:221 adminpages/paymentsettings.php:238
|
3878 |
#: adminpages/paymentsettings.php:255 adminpages/paymentsettings.php:258
|
3879 |
-
#: adminpages/paymentsettings.php:259 adminpages/paymentsettings.php:
|
3880 |
-
#: adminpages/paymentsettings.php:
|
|
|
3881 |
msgid "Yes (with JavaScript redirects)"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
#: adminpages/paymentsettings.php:263 adminpages/paymentsettings.php:214
|
3885 |
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:240
|
3886 |
#: adminpages/paymentsettings.php:257 adminpages/paymentsettings.php:260
|
3887 |
-
#: adminpages/paymentsettings.php:261
|
3888 |
msgid ""
|
3889 |
"Recommended: Yes. Try the JavaScript redirects setting if you are having "
|
3890 |
"issues with infinite redirect loops."
|
@@ -3893,14 +3978,14 @@ msgstr ""
|
|
3893 |
#: adminpages/paymentsettings.php:271 adminpages/paymentsettings.php:219
|
3894 |
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:248
|
3895 |
#: adminpages/paymentsettings.php:265 adminpages/paymentsettings.php:268
|
3896 |
-
#: adminpages/paymentsettings.php:269 adminpages/paymentsettings.php:
|
3897 |
-
#: adminpages/paymentsettings.php:
|
3898 |
-
#: adminpages/paymentsettings.php:470
|
3899 |
msgid "SSL Seal Code"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
#: adminpages/paymentsettings.php:275 adminpages/paymentsettings.php:272
|
3903 |
-
#: adminpages/paymentsettings.php:273
|
3904 |
msgid ""
|
3905 |
"Your <strong><a target=\"_blank\" href=\"https://www.paidmembershipspro.com/"
|
3906 |
"documentation/initial-plugin-setup/ssl/?utm_source=plugin&utm_medium=pmpro-"
|
@@ -3913,14 +3998,14 @@ msgstr ""
|
|
3913 |
#: adminpages/paymentsettings.php:280 adminpages/paymentsettings.php:228
|
3914 |
#: adminpages/paymentsettings.php:240 adminpages/paymentsettings.php:257
|
3915 |
#: adminpages/paymentsettings.php:274 adminpages/paymentsettings.php:277
|
3916 |
-
#: adminpages/paymentsettings.php:278
|
3917 |
msgid "Extra HTTPS URL Filter"
|
3918 |
msgstr ""
|
3919 |
|
3920 |
#: adminpages/paymentsettings.php:283 adminpages/paymentsettings.php:231
|
3921 |
#: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:260
|
3922 |
#: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:280
|
3923 |
-
#: adminpages/paymentsettings.php:281
|
3924 |
msgid ""
|
3925 |
"Pass all generated HTML through a URL filter to add HTTPS to URLs used on "
|
3926 |
"secure pages. Check this if you are using SSL and have warnings on your "
|
@@ -4023,6 +4108,7 @@ msgstr ""
|
|
4023 |
#: classes/class-pmpro-members-list-table.php:592
|
4024 |
#: classes/class-pmpro-members-list-table.php:600
|
4025 |
#: classes/class-pmpro-members-list-table.php:616
|
|
|
4026 |
#: classes/class-pmpro-members-list-table.php:660
|
4027 |
msgid "Show"
|
4028 |
msgstr ""
|
@@ -4060,6 +4146,7 @@ msgstr ""
|
|
4060 |
#: classes/class-pmpro-members-list-table.php:594
|
4061 |
#: classes/class-pmpro-members-list-table.php:606
|
4062 |
#: classes/class-pmpro-members-list-table.php:618
|
|
|
4063 |
#: classes/class-pmpro-members-list-table.php:662
|
4064 |
#: classes/class.pmproemail.php:145 classes/class.pmproemail.php:147
|
4065 |
#: classes/class.pmproemail.php:154 classes/class.pmproemail.php:182
|
@@ -4345,7 +4432,7 @@ msgstr ""
|
|
4345 |
|
4346 |
#: adminpages/templates/orders-email.php:56
|
4347 |
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:93
|
4348 |
-
#: pages/invoice.php:
|
4349 |
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:90
|
4350 |
#: pages/confirmation.php:91 pages/confirmation.php:93 pages/invoice.php:72
|
4351 |
#: pages/invoice.php:73 pages/invoice.php:74 pages/invoice.php:75
|
@@ -4355,7 +4442,7 @@ msgstr ""
|
|
4355 |
|
4356 |
#: adminpages/templates/orders-email.php:60
|
4357 |
#: adminpages/templates/orders-print.php:89 includes/privacy.php:277
|
4358 |
-
#: pages/confirmation.php:94 pages/invoice.php:
|
4359 |
#: adminpages/orders.php:354 adminpages/orders.php:426
|
4360 |
#: adminpages/orders.php:455 adminpages/orders.php:481
|
4361 |
#: adminpages/orders.php:512 adminpages/orders.php:523
|
@@ -4519,6 +4606,7 @@ msgid ""
|
|
4519 |
"you can <a %s>update the \"Activity Email Frequency\" setting here</a>."
|
4520 |
msgstr ""
|
4521 |
|
|
|
4522 |
#: classes/class-pmpro-admin-activity-email.php:408
|
4523 |
#, php-format
|
4524 |
msgid "[%1$s] PMPro Activity for %2$s: %3$s"
|
@@ -4542,6 +4630,7 @@ msgstr ""
|
|
4542 |
#: classes/class-pmpro-members-list-table.php:604
|
4543 |
#: classes/class-pmpro-members-list-table.php:628
|
4544 |
#: classes/class-pmpro-members-list-table.php:629
|
|
|
4545 |
#: classes/class-pmpro-members-list-table.php:672
|
4546 |
msgid "Cancelled Members"
|
4547 |
msgstr ""
|
@@ -4556,6 +4645,7 @@ msgstr ""
|
|
4556 |
#: classes/class-pmpro-members-list-table.php:605
|
4557 |
#: classes/class-pmpro-members-list-table.php:629
|
4558 |
#: classes/class-pmpro-members-list-table.php:634
|
|
|
4559 |
#: classes/class-pmpro-members-list-table.php:673
|
4560 |
msgid "Expired Members"
|
4561 |
msgstr ""
|
@@ -4570,6 +4660,7 @@ msgstr ""
|
|
4570 |
#: classes/class-pmpro-members-list-table.php:571
|
4571 |
#: classes/class-pmpro-members-list-table.php:606
|
4572 |
#: classes/class-pmpro-members-list-table.php:630
|
|
|
4573 |
#: classes/class-pmpro-members-list-table.php:639
|
4574 |
#: classes/class-pmpro-members-list-table.php:674
|
4575 |
msgid "Old Members"
|
@@ -4690,9 +4781,9 @@ msgstr ""
|
|
4690 |
#: classes/class.pmproemail.php:422 classes/class.pmproemail.php:740
|
4691 |
#: classes/class.pmproemail.php:742
|
4692 |
#: classes/gateways/class.pmprogateway_braintree.php:509
|
4693 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4694 |
#: pages/checkout.php:89 pages/checkout.php:426 pages/confirmation.php:58
|
4695 |
-
#: pages/invoice.php:
|
4696 |
#: adminpages/orders.php:565 adminpages/orders.php:575
|
4697 |
#: adminpages/orders.php:1307 adminpages/orders.php:1313
|
4698 |
#: adminpages/orders.php:1318 adminpages/orders.php:1322
|
@@ -4764,7 +4855,8 @@ msgstr ""
|
|
4764 |
#: classes/gateways/class.pmprogateway_stripe.php:652
|
4765 |
#: classes/gateways/class.pmprogateway_stripe.php:659
|
4766 |
#: classes/gateways/class.pmprogateway_stripe.php:660
|
4767 |
-
#: classes/gateways/class.pmprogateway_stripe.php:661
|
|
|
4768 |
#: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:70
|
4769 |
#: pages/checkout.php:75 pages/checkout.php:76 pages/checkout.php:77
|
4770 |
#: pages/checkout.php:78 pages/checkout.php:81 pages/checkout.php:83
|
@@ -5229,6 +5321,8 @@ msgstr ""
|
|
5229 |
#: classes/gateways/class.pmprogateway_authorizenet.php:910
|
5230 |
#: classes/gateways/class.pmprogateway_authorizenet.php:911
|
5231 |
#: classes/gateways/class.pmprogateway_authorizenet.php:912
|
|
|
|
|
5232 |
#: classes/gateways/class.pmprogateway_authorizenet.php:929
|
5233 |
#: classes/gateways/class.pmprogateway_authorizenet.php:930
|
5234 |
msgid "Could not connect to Authorize.net"
|
@@ -5251,6 +5345,7 @@ msgstr ""
|
|
5251 |
#: classes/gateways/class.pmprogateway_stripe.php:81
|
5252 |
#: classes/gateways/class.pmprogateway_stripe.php:83
|
5253 |
#: classes/gateways/class.pmprogateway_stripe.php:86
|
|
|
5254 |
#, php-format
|
5255 |
msgid ""
|
5256 |
"The %s gateway depends on the %s PHP extension. Please enable it, or ask "
|
@@ -5431,7 +5526,7 @@ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
|
5431 |
msgstr ""
|
5432 |
|
5433 |
#: classes/gateways/class.pmprogateway_braintree.php:454
|
5434 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5435 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
5436 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
5437 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -5468,7 +5563,8 @@ msgstr ""
|
|
5468 |
#: classes/gateways/class.pmprogateway_stripe.php:569
|
5469 |
#: classes/gateways/class.pmprogateway_stripe.php:576
|
5470 |
#: classes/gateways/class.pmprogateway_stripe.php:577
|
5471 |
-
#: classes/gateways/class.pmprogateway_stripe.php:578
|
|
|
5472 |
#: pages/checkout.php:411 pages/checkout.php:419 pages/checkout.php:476
|
5473 |
#: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
|
5474 |
#: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
|
@@ -5477,7 +5573,7 @@ msgid "Payment Information"
|
|
5477 |
msgstr ""
|
5478 |
|
5479 |
#: classes/gateways/class.pmprogateway_braintree.php:455
|
5480 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5481 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
5482 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
5483 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -5514,7 +5610,8 @@ msgstr ""
|
|
5514 |
#: classes/gateways/class.pmprogateway_stripe.php:570
|
5515 |
#: classes/gateways/class.pmprogateway_stripe.php:577
|
5516 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
5517 |
-
#: classes/gateways/class.pmprogateway_stripe.php:579
|
|
|
5518 |
#: pages/checkout.php:412 pages/checkout.php:420 pages/checkout.php:476
|
5519 |
#: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
|
5520 |
#: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
|
@@ -5524,7 +5621,7 @@ msgid "We Accept %s"
|
|
5524 |
msgstr ""
|
5525 |
|
5526 |
#: classes/gateways/class.pmprogateway_braintree.php:466
|
5527 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5528 |
#: pages/billing.php:321 pages/checkout.php:374 adminpages/orders.php:339
|
5529 |
#: adminpages/orders.php:389 adminpages/orders.php:461
|
5530 |
#: adminpages/orders.php:490 adminpages/orders.php:532
|
@@ -5568,21 +5665,23 @@ msgstr ""
|
|
5568 |
#: classes/gateways/class.pmprogateway_stripe.php:581
|
5569 |
#: classes/gateways/class.pmprogateway_stripe.php:588
|
5570 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
5571 |
-
#: classes/gateways/class.pmprogateway_stripe.php:590
|
|
|
5572 |
#: pages/billing.php:234 pages/billing.php:238 pages/billing.php:247
|
5573 |
#: pages/billing.php:250 pages/billing.php:253 pages/billing.php:262
|
5574 |
#: pages/billing.php:268 pages/billing.php:271 pages/billing.php:274
|
5575 |
#: pages/billing.php:275 pages/billing.php:279 pages/billing.php:280
|
5576 |
#: pages/billing.php:288 pages/billing.php:294 pages/billing.php:297
|
5577 |
-
#: pages/
|
5578 |
-
#: pages/checkout.php:
|
5579 |
-
#: pages/checkout.php:
|
5580 |
-
#: pages/checkout.php:
|
|
|
5581 |
msgid "Card Type"
|
5582 |
msgstr ""
|
5583 |
|
5584 |
#: classes/gateways/class.pmprogateway_braintree.php:475
|
5585 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5586 |
#: pages/checkout.php:385 classes/gateways/class.pmprogateway_braintree.php:303
|
5587 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
5588 |
#: classes/gateways/class.pmprogateway_braintree.php:318
|
@@ -5618,17 +5717,18 @@ msgstr ""
|
|
5618 |
#: classes/gateways/class.pmprogateway_stripe.php:617
|
5619 |
#: classes/gateways/class.pmprogateway_stripe.php:624
|
5620 |
#: classes/gateways/class.pmprogateway_stripe.php:625
|
5621 |
-
#: classes/gateways/class.pmprogateway_stripe.php:626
|
|
|
5622 |
#: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
|
5623 |
#: pages/billing.php:263 pages/billing.php:305 pages/billing.php:309
|
5624 |
#: pages/billing.php:311 pages/billing.php:312 pages/billing.php:313
|
5625 |
#: pages/billing.php:314 pages/billing.php:317 pages/billing.php:318
|
5626 |
#: pages/billing.php:326 pages/billing.php:335 pages/billing.php:337
|
5627 |
-
#: pages/
|
5628 |
-
#: pages/checkout.php:
|
5629 |
-
#: pages/checkout.php:
|
5630 |
-
#: pages/checkout.php:
|
5631 |
-
#: pages/checkout.php:580
|
5632 |
msgid "Card Number"
|
5633 |
msgstr ""
|
5634 |
|
@@ -5663,11 +5763,11 @@ msgstr ""
|
|
5663 |
#: pages/billing.php:301 pages/billing.php:343 pages/billing.php:348
|
5664 |
#: pages/billing.php:351 pages/billing.php:352 pages/billing.php:354
|
5665 |
#: pages/billing.php:356 pages/billing.php:357 pages/billing.php:365
|
5666 |
-
#: pages/billing.php:374 pages/billing.php:380 pages/
|
5667 |
-
#: pages/checkout.php:
|
5668 |
-
#: pages/checkout.php:
|
5669 |
-
#: pages/checkout.php:
|
5670 |
-
#: pages/checkout.php:612 pages/checkout.php:615
|
5671 |
msgid "CVV"
|
5672 |
msgstr ""
|
5673 |
|
@@ -5708,17 +5808,17 @@ msgstr ""
|
|
5708 |
#: pages/billing.php:302 pages/billing.php:344 pages/billing.php:349
|
5709 |
#: pages/billing.php:352 pages/billing.php:353 pages/billing.php:355
|
5710 |
#: pages/billing.php:357 pages/billing.php:358 pages/billing.php:366
|
5711 |
-
#: pages/billing.php:375 pages/billing.php:381 pages/
|
5712 |
-
#: pages/checkout.php:
|
5713 |
-
#: pages/checkout.php:
|
5714 |
-
#: pages/checkout.php:
|
5715 |
-
#: pages/checkout.php:
|
5716 |
-
#: pages/checkout.php:613 pages/checkout.php:616
|
5717 |
msgid "what's this?"
|
5718 |
msgstr ""
|
5719 |
|
5720 |
#: classes/gateways/class.pmprogateway_braintree.php:511
|
5721 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5722 |
#: pages/checkout.php:428 classes/gateways/class.pmprogateway_braintree.php:351
|
5723 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
5724 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
@@ -5755,7 +5855,8 @@ msgstr ""
|
|
5755 |
#: classes/gateways/class.pmprogateway_stripe.php:654
|
5756 |
#: classes/gateways/class.pmprogateway_stripe.php:661
|
5757 |
#: classes/gateways/class.pmprogateway_stripe.php:662
|
5758 |
-
#: classes/gateways/class.pmprogateway_stripe.php:663
|
|
|
5759 |
#: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:83
|
5760 |
#: pages/checkout.php:87 pages/checkout.php:88 pages/checkout.php:91
|
5761 |
#: pages/checkout.php:95 pages/checkout.php:98 pages/checkout.php:428
|
@@ -6835,6 +6936,7 @@ msgstr ""
|
|
6835 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:208
|
6836 |
#: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
|
6837 |
#: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
|
|
|
6838 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:163
|
6839 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:173
|
6840 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:196
|
@@ -6873,7 +6975,7 @@ msgstr ""
|
|
6873 |
#: classes/gateways/class.pmprogateway_paypal.php:287
|
6874 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:481
|
6875 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
6876 |
-
#: pages/checkout.php:
|
6877 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
6878 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
6879 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
@@ -6902,7 +7004,7 @@ msgstr ""
|
|
6902 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:481
|
6903 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
6904 |
#: classes/gateways/class.pmprogateway_twocheckout.php:205
|
6905 |
-
#: pages/checkout.php:
|
6906 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
6907 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
6908 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
@@ -6944,6 +7046,7 @@ msgstr ""
|
|
6944 |
#: classes/gateways/class.pmprogateway_paypal.php:693
|
6945 |
#: classes/gateways/class.pmprogateway_paypal.php:694
|
6946 |
#: classes/gateways/class.pmprogateway_paypal.php:703
|
|
|
6947 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
6948 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:303
|
6949 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:305
|
@@ -6959,6 +7062,7 @@ msgstr ""
|
|
6959 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:784
|
6960 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:785
|
6961 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:786
|
|
|
6962 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:216
|
6963 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:220
|
6964 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:230
|
@@ -7060,6 +7164,7 @@ msgstr ""
|
|
7060 |
#: classes/gateways/class.pmprogateway_stripe.php:203
|
7061 |
#: classes/gateways/class.pmprogateway_stripe.php:229
|
7062 |
#: classes/gateways/class.pmprogateway_stripe.php:231
|
|
|
7063 |
#: paid-memberships-pro.php:117 paid-memberships-pro.php:118
|
7064 |
#: paid-memberships-pro.php:125 paid-memberships-pro.php:126
|
7065 |
#: paid-memberships-pro.php:127 paid-memberships-pro.php:128
|
@@ -7074,6 +7179,7 @@ msgstr ""
|
|
7074 |
#: classes/gateways/class.pmprogateway_stripe.php:331
|
7075 |
#: classes/gateways/class.pmprogateway_stripe.php:299
|
7076 |
#: classes/gateways/class.pmprogateway_stripe.php:307
|
|
|
7077 |
#: classes/gateways/class.pmprogateway_stripe.php:337
|
7078 |
#: classes/gateways/class.pmprogateway_stripe.php:339
|
7079 |
#: classes/gateways/class.pmprogateway_stripe.php:340
|
@@ -7096,6 +7202,7 @@ msgstr ""
|
|
7096 |
#: classes/gateways/class.pmprogateway_stripe.php:283
|
7097 |
#: classes/gateways/class.pmprogateway_stripe.php:284
|
7098 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
|
|
7099 |
msgid "Stripe Settings"
|
7100 |
msgstr ""
|
7101 |
|
@@ -7118,6 +7225,7 @@ msgstr ""
|
|
7118 |
#: classes/gateways/class.pmprogateway_stripe.php:288
|
7119 |
#: classes/gateways/class.pmprogateway_stripe.php:289
|
7120 |
#: classes/gateways/class.pmprogateway_stripe.php:291
|
|
|
7121 |
msgid "Publishable Key"
|
7122 |
msgstr ""
|
7123 |
|
@@ -7128,6 +7236,7 @@ msgstr ""
|
|
7128 |
#: classes/gateways/class.pmprogateway_stripe.php:297
|
7129 |
#: classes/gateways/class.pmprogateway_stripe.php:298
|
7130 |
#: classes/gateways/class.pmprogateway_stripe.php:299
|
|
|
7131 |
msgid "Your Publishable Key appears incorrect."
|
7132 |
msgstr ""
|
7133 |
|
@@ -7150,18 +7259,25 @@ msgstr ""
|
|
7150 |
#: classes/gateways/class.pmprogateway_stripe.php:305
|
7151 |
#: classes/gateways/class.pmprogateway_stripe.php:306
|
7152 |
#: classes/gateways/class.pmprogateway_stripe.php:307
|
|
|
7153 |
msgid "Secret Key"
|
7154 |
msgstr ""
|
7155 |
|
|
|
7156 |
#: classes/gateways/class.pmprogateway_stripe.php:367
|
7157 |
msgid "Webhook"
|
7158 |
msgstr ""
|
7159 |
|
|
|
|
|
7160 |
#: classes/gateways/class.pmprogateway_stripe.php:371
|
7161 |
#: classes/gateways/class.pmprogateway_stripe.php:376
|
7162 |
msgid "Create Webhook"
|
7163 |
msgstr ""
|
7164 |
|
|
|
|
|
|
|
7165 |
#: classes/gateways/class.pmprogateway_stripe.php:378
|
7166 |
#: classes/gateways/class.pmprogateway_stripe.php:473
|
7167 |
#: classes/gateways/class.pmprogateway_stripe.php:490
|
@@ -7191,6 +7307,7 @@ msgstr ""
|
|
7191 |
#: classes/gateways/class.pmprogateway_stripe.php:313
|
7192 |
#: classes/gateways/class.pmprogateway_stripe.php:314
|
7193 |
#: classes/gateways/class.pmprogateway_stripe.php:315
|
|
|
7194 |
msgid "Show Billing Address Fields"
|
7195 |
msgstr ""
|
7196 |
|
@@ -7214,6 +7331,7 @@ msgstr ""
|
|
7214 |
#: classes/gateways/class.pmprogateway_stripe.php:323
|
7215 |
#: classes/gateways/class.pmprogateway_stripe.php:324
|
7216 |
#: classes/gateways/class.pmprogateway_stripe.php:325
|
|
|
7217 |
msgid ""
|
7218 |
"Stripe doesn't require billing address fields. Choose 'No' to hide them on "
|
7219 |
"the checkout page.<br /><strong>If No, make sure you disable address "
|
@@ -7224,6 +7342,7 @@ msgstr ""
|
|
7224 |
#: classes/gateways/class.pmprogateway_stripe.php:351
|
7225 |
#: classes/gateways/class.pmprogateway_stripe.php:352
|
7226 |
#: classes/gateways/class.pmprogateway_stripe.php:354
|
|
|
7227 |
#, php-format
|
7228 |
msgid ""
|
7229 |
"Optional: Offer PayPal Express as an option at checkout using the <a target="
|
@@ -7231,14 +7350,17 @@ msgid ""
|
|
7231 |
"Option at Checkout Add On\">Add PayPal Express Add On</a>."
|
7232 |
msgstr ""
|
7233 |
|
|
|
7234 |
#: classes/gateways/class.pmprogateway_stripe.php:432
|
7235 |
msgid "Webhook creation failed. You might already have a webhook set up."
|
7236 |
msgstr ""
|
7237 |
|
|
|
7238 |
#: classes/gateways/class.pmprogateway_stripe.php:447
|
7239 |
msgid "Your webhook is enabled."
|
7240 |
msgstr ""
|
7241 |
|
|
|
7242 |
#: classes/gateways/class.pmprogateway_stripe.php:497
|
7243 |
msgid "There was an error deleting the webhook."
|
7244 |
msgstr ""
|
@@ -7249,18 +7371,20 @@ msgstr ""
|
|
7249 |
#: classes/gateways/class.pmprogateway_stripe.php:379
|
7250 |
#: classes/gateways/class.pmprogateway_stripe.php:380
|
7251 |
#: classes/gateways/class.pmprogateway_stripe.php:381
|
|
|
7252 |
msgid "Verification steps confirmed. Your payment is processing."
|
7253 |
msgstr ""
|
7254 |
|
7255 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7256 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
7257 |
#: classes/gateways/class.pmprogateway_stripe.php:577
|
7258 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
7259 |
#: classes/gateways/class.pmprogateway_stripe.php:580
|
|
|
7260 |
msgid "CVC"
|
7261 |
msgstr ""
|
7262 |
|
7263 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7264 |
#: classes/gateways/class.pmprogateway_stripe.php:650
|
7265 |
#: classes/gateways/class.pmprogateway_stripe.php:655
|
7266 |
#: classes/gateways/class.pmprogateway_stripe.php:656
|
@@ -7272,13 +7396,14 @@ msgstr ""
|
|
7272 |
#: classes/gateways/class.pmprogateway_stripe.php:725
|
7273 |
#: classes/gateways/class.pmprogateway_stripe.php:726
|
7274 |
#: classes/gateways/class.pmprogateway_stripe.php:727
|
|
|
7275 |
#, php-format
|
7276 |
msgid ""
|
7277 |
"%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may "
|
7278 |
"have been deleted."
|
7279 |
msgstr ""
|
7280 |
|
7281 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7282 |
#: classes/gateways/class.pmprogateway_stripe.php:567
|
7283 |
#: classes/gateways/class.pmprogateway_stripe.php:568
|
7284 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
@@ -7301,10 +7426,11 @@ msgstr ""
|
|
7301 |
#: classes/gateways/class.pmprogateway_stripe.php:732
|
7302 |
#: classes/gateways/class.pmprogateway_stripe.php:733
|
7303 |
#: classes/gateways/class.pmprogateway_stripe.php:734
|
|
|
7304 |
msgid "Subscription Updates"
|
7305 |
msgstr ""
|
7306 |
|
7307 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7308 |
#: classes/gateways/class.pmprogateway_stripe.php:571
|
7309 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
7310 |
#: classes/gateways/class.pmprogateway_stripe.php:582
|
@@ -7327,12 +7453,13 @@ msgstr ""
|
|
7327 |
#: classes/gateways/class.pmprogateway_stripe.php:736
|
7328 |
#: classes/gateways/class.pmprogateway_stripe.php:737
|
7329 |
#: classes/gateways/class.pmprogateway_stripe.php:738
|
|
|
7330 |
msgid ""
|
7331 |
"Subscription updates, allow you to change the member's subscription values "
|
7332 |
"at predefined times. Be sure to click Update Profile after making changes."
|
7333 |
msgstr ""
|
7334 |
|
7335 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7336 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
7337 |
#: classes/gateways/class.pmprogateway_stripe.php:574
|
7338 |
#: classes/gateways/class.pmprogateway_stripe.php:584
|
@@ -7355,12 +7482,13 @@ msgstr ""
|
|
7355 |
#: classes/gateways/class.pmprogateway_stripe.php:738
|
7356 |
#: classes/gateways/class.pmprogateway_stripe.php:739
|
7357 |
#: classes/gateways/class.pmprogateway_stripe.php:740
|
|
|
7358 |
msgid ""
|
7359 |
"Subscription updates, allow you to change the member's subscription values "
|
7360 |
"at predefined times. Be sure to click Update User after making changes."
|
7361 |
msgstr ""
|
7362 |
|
7363 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7364 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
7365 |
#: classes/gateways/class.pmprogateway_stripe.php:579
|
7366 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
@@ -7382,20 +7510,21 @@ msgstr ""
|
|
7382 |
#: classes/gateways/class.pmprogateway_stripe.php:736
|
7383 |
#: classes/gateways/class.pmprogateway_stripe.php:743
|
7384 |
#: classes/gateways/class.pmprogateway_stripe.php:744
|
7385 |
-
#: classes/gateways/class.pmprogateway_stripe.php:745
|
|
|
7386 |
#: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
|
7387 |
#: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
|
7388 |
#: pages/billing.php:362 pages/billing.php:363 pages/billing.php:364
|
7389 |
#: pages/billing.php:370 pages/billing.php:371 pages/billing.php:379
|
7390 |
#: pages/billing.php:389 pages/billing.php:391 pages/billing.php:396
|
7391 |
-
#: pages/billing.php:400 pages/billing.php:405
|
7392 |
msgid "Update"
|
7393 |
msgstr ""
|
7394 |
|
7395 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7396 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7397 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7398 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7399 |
#: classes/gateways/class.pmprogateway_stripe.php:1236
|
7400 |
#: classes/gateways/class.pmprogateway_stripe.php:1243
|
7401 |
#: classes/gateways/class.pmprogateway_stripe.php:1247
|
@@ -7416,13 +7545,17 @@ msgstr ""
|
|
7416 |
#: classes/gateways/class.pmprogateway_stripe.php:1297
|
7417 |
#: classes/gateways/class.pmprogateway_stripe.php:1302
|
7418 |
#: classes/gateways/class.pmprogateway_stripe.php:1310
|
|
|
|
|
|
|
|
|
7419 |
#, php-format
|
7420 |
msgid "Error: %s"
|
7421 |
msgstr ""
|
7422 |
|
7423 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7424 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7425 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7426 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
7427 |
#: classes/gateways/class.pmprogateway_stripe.php:192
|
7428 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
@@ -7457,11 +7590,14 @@ msgstr ""
|
|
7457 |
#: classes/gateways/class.pmprogateway_stripe.php:1384
|
7458 |
#: classes/gateways/class.pmprogateway_stripe.php:1392
|
7459 |
#: classes/gateways/class.pmprogateway_stripe.php:1410
|
|
|
|
|
|
|
7460 |
msgid "Error creating customer record with Stripe:"
|
7461 |
msgstr ""
|
7462 |
|
7463 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7464 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7465 |
#: classes/gateways/class.pmprogateway_stripe.php:1275
|
7466 |
#: classes/gateways/class.pmprogateway_stripe.php:1303
|
7467 |
#: classes/gateways/class.pmprogateway_stripe.php:1313
|
@@ -7485,11 +7621,13 @@ msgstr ""
|
|
7485 |
#: classes/gateways/class.pmprogateway_stripe.php:1444
|
7486 |
#: classes/gateways/class.pmprogateway_stripe.php:1451
|
7487 |
#: classes/gateways/class.pmprogateway_stripe.php:1469
|
|
|
|
|
7488 |
msgid "Error getting subscription with Stripe:"
|
7489 |
msgstr ""
|
7490 |
|
7491 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7492 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7493 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
7494 |
#: classes/gateways/class.pmprogateway_stripe.php:279
|
7495 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
@@ -7534,11 +7672,13 @@ msgstr ""
|
|
7534 |
#: classes/gateways/class.pmprogateway_stripe.php:1610
|
7535 |
#: classes/gateways/class.pmprogateway_stripe.php:1615
|
7536 |
#: classes/gateways/class.pmprogateway_stripe.php:1625
|
|
|
|
|
7537 |
msgid "Error creating plan with Stripe:"
|
7538 |
msgstr ""
|
7539 |
|
7540 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7541 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7542 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
7543 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
7544 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
@@ -7578,10 +7718,12 @@ msgstr ""
|
|
7578 |
#: classes/gateways/class.pmprogateway_stripe.php:1646
|
7579 |
#: classes/gateways/class.pmprogateway_stripe.php:1656
|
7580 |
#: classes/gateways/class.pmprogateway_stripe.php:1660
|
|
|
|
|
7581 |
msgid "Error subscribing customer to plan with Stripe:"
|
7582 |
msgstr ""
|
7583 |
|
7584 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7585 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
7586 |
#: classes/gateways/class.pmprogateway_stripe.php:770
|
7587 |
#: classes/gateways/class.pmprogateway_stripe.php:780
|
@@ -7607,10 +7749,11 @@ msgstr ""
|
|
7607 |
#: classes/gateways/class.pmprogateway_stripe.php:1734
|
7608 |
#: classes/gateways/class.pmprogateway_stripe.php:1736
|
7609 |
#: classes/gateways/class.pmprogateway_stripe.php:1751
|
|
|
7610 |
msgid "Could not cancel the old subscription. Updates have not been processed."
|
7611 |
msgstr ""
|
7612 |
|
7613 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7614 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
7615 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
7616 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
@@ -7645,10 +7788,11 @@ msgstr ""
|
|
7645 |
#: classes/gateways/class.pmprogateway_stripe.php:1885
|
7646 |
#: classes/gateways/class.pmprogateway_stripe.php:1887
|
7647 |
#: classes/gateways/class.pmprogateway_stripe.php:1902
|
|
|
7648 |
msgid "Could not cancel old subscription."
|
7649 |
msgstr ""
|
7650 |
|
7651 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7652 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
7653 |
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
7654 |
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
@@ -7679,11 +7823,12 @@ msgstr ""
|
|
7679 |
#: classes/gateways/class.pmprogateway_stripe.php:1901
|
7680 |
#: classes/gateways/class.pmprogateway_stripe.php:1903
|
7681 |
#: classes/gateways/class.pmprogateway_stripe.php:1918
|
|
|
7682 |
msgid "Could not find the customer."
|
7683 |
msgstr ""
|
7684 |
|
7685 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7686 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7687 |
#: classes/gateways/class.pmprogateway_stripe.php:1836
|
7688 |
#: classes/gateways/class.pmprogateway_stripe.php:1837
|
7689 |
#: classes/gateways/class.pmprogateway_stripe.php:1847
|
@@ -7705,10 +7850,12 @@ msgstr ""
|
|
7705 |
#: classes/gateways/class.pmprogateway_stripe.php:2076
|
7706 |
#: classes/gateways/class.pmprogateway_stripe.php:2085
|
7707 |
#: classes/gateways/class.pmprogateway_stripe.php:2091
|
|
|
|
|
7708 |
msgid "Error: "
|
7709 |
msgstr ""
|
7710 |
|
7711 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7712 |
#: classes/gateways/class.pmprogateway_stripe.php:1849
|
7713 |
#: classes/gateways/class.pmprogateway_stripe.php:1850
|
7714 |
#: classes/gateways/class.pmprogateway_stripe.php:1860
|
@@ -7727,29 +7874,32 @@ msgstr ""
|
|
7727 |
#: classes/gateways/class.pmprogateway_stripe.php:2088
|
7728 |
#: classes/gateways/class.pmprogateway_stripe.php:2090
|
7729 |
#: classes/gateways/class.pmprogateway_stripe.php:2105
|
|
|
7730 |
#, php-format
|
7731 |
msgid "Error: Unkown error while refunding charge #%s"
|
7732 |
msgstr ""
|
7733 |
|
7734 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7735 |
#: classes/gateways/class.pmprogateway_stripe.php:2438
|
7736 |
#: classes/gateways/class.pmprogateway_stripe.php:2479
|
7737 |
#: classes/gateways/class.pmprogateway_stripe.php:2485
|
7738 |
#: classes/gateways/class.pmprogateway_stripe.php:2547
|
7739 |
#: classes/gateways/class.pmprogateway_stripe.php:2549
|
7740 |
#: classes/gateways/class.pmprogateway_stripe.php:2564
|
|
|
7741 |
msgid ""
|
7742 |
"Customer authentication is required to complete this transaction. Please "
|
7743 |
"complete the verification steps issued by your payment provider."
|
7744 |
msgstr ""
|
7745 |
|
7746 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
7747 |
#: classes/gateways/class.pmprogateway_stripe.php:2455
|
7748 |
#: classes/gateways/class.pmprogateway_stripe.php:2496
|
7749 |
#: classes/gateways/class.pmprogateway_stripe.php:2502
|
7750 |
#: classes/gateways/class.pmprogateway_stripe.php:2564
|
7751 |
#: classes/gateways/class.pmprogateway_stripe.php:2566
|
7752 |
#: classes/gateways/class.pmprogateway_stripe.php:2581
|
|
|
7753 |
msgid ""
|
7754 |
"Customer authentication is required to finish setting up your subscription. "
|
7755 |
"Please complete the verification steps issued by your payment provider."
|
@@ -7843,13 +7993,13 @@ msgstr ""
|
|
7843 |
msgid "Check Out with 2Checkout"
|
7844 |
msgstr ""
|
7845 |
|
7846 |
-
#: includes/addons.php:
|
7847 |
#: includes/addons.php:239
|
7848 |
msgid ""
|
7849 |
"Important: This plugin requires a valid PMPro Plus license key to update."
|
7850 |
msgstr ""
|
7851 |
|
7852 |
-
#: includes/addons.php:
|
7853 |
#: includes/addons.php:292
|
7854 |
msgid ""
|
7855 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
@@ -7858,12 +8008,12 @@ msgid ""
|
|
7858 |
"updated:"
|
7859 |
msgstr ""
|
7860 |
|
7861 |
-
#: includes/addons.php:
|
7862 |
#: includes/addons.php:310
|
7863 |
msgid "Update Plugin"
|
7864 |
msgstr ""
|
7865 |
|
7866 |
-
#: includes/addons.php:
|
7867 |
#: includes/addons.php:312
|
7868 |
msgid ""
|
7869 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
@@ -7871,12 +8021,12 @@ msgid ""
|
|
7871 |
"Key</a> to update PMPro Plus add ons."
|
7872 |
msgstr ""
|
7873 |
|
7874 |
-
#: includes/addons.php:
|
7875 |
#: includes/addons.php:315
|
7876 |
msgid "Return to the PMPro Add Ons page"
|
7877 |
msgstr ""
|
7878 |
|
7879 |
-
#: includes/addons.php:
|
7880 |
#: includes/addons.php:334
|
7881 |
msgid ""
|
7882 |
"You must enter a valid PMPro Plus License Key under Settings > PMPro License "
|
@@ -9055,8 +9205,8 @@ msgstr ""
|
|
9055 |
msgid "US Armed Forces"
|
9056 |
msgstr ""
|
9057 |
|
9058 |
-
#: includes/currencies.php:7 includes/currencies.php:
|
9059 |
-
#: includes/currencies.php:
|
9060 |
#: includes/currencies.php:17 includes/currencies.php:37
|
9061 |
#: includes/currencies.php:44 includes/currencies.php:64
|
9062 |
#: includes/currencies.php:68 includes/currencies.php:75
|
@@ -9069,7 +9219,7 @@ msgstr ""
|
|
9069 |
msgid "US Dollars ($)"
|
9070 |
msgstr ""
|
9071 |
|
9072 |
-
#: includes/currencies.php:9 includes/currencies.php:
|
9073 |
#: includes/currencies.php:8 includes/currencies.php:9
|
9074 |
#: includes/currencies.php:19 includes/currencies.php:40
|
9075 |
#: includes/currencies.php:47 includes/currencies.php:67
|
@@ -9081,7 +9231,7 @@ msgstr ""
|
|
9081 |
msgid "Euros (€)"
|
9082 |
msgstr ""
|
9083 |
|
9084 |
-
#: includes/currencies.php:14 includes/currencies.php:
|
9085 |
#: includes/currencies.php:9 includes/currencies.php:14
|
9086 |
#: includes/currencies.php:24 includes/currencies.php:39
|
9087 |
#: includes/currencies.php:46 includes/currencies.php:66
|
@@ -9110,7 +9260,7 @@ msgstr ""
|
|
9110 |
msgid "Brazilian Real (R$)"
|
9111 |
msgstr ""
|
9112 |
|
9113 |
-
#: includes/currencies.php:25 includes/currencies.php:
|
9114 |
#: includes/currencies.php:12 includes/currencies.php:24
|
9115 |
#: includes/currencies.php:25 includes/currencies.php:34
|
9116 |
#: includes/currencies.php:35 includes/currencies.php:38
|
@@ -9259,13 +9409,17 @@ msgstr ""
|
|
9259 |
msgid "Polish Zloty"
|
9260 |
msgstr ""
|
9261 |
|
9262 |
-
#: includes/currencies.php:68
|
|
|
|
|
|
|
|
|
9263 |
#: includes/currencies.php:65 includes/currencies.php:68
|
9264 |
#: includes/currencies.php:73
|
9265 |
msgid "Russian Ruble (₽)"
|
9266 |
msgstr ""
|
9267 |
|
9268 |
-
#: includes/currencies.php:
|
9269 |
#: includes/currencies.php:28 includes/currencies.php:45
|
9270 |
#: includes/currencies.php:52 includes/currencies.php:62
|
9271 |
#: includes/currencies.php:64 includes/currencies.php:65
|
@@ -9275,7 +9429,7 @@ msgstr ""
|
|
9275 |
msgid "Singapore Dollar ($)"
|
9276 |
msgstr ""
|
9277 |
|
9278 |
-
#: includes/currencies.php:
|
9279 |
#: includes/currencies.php:57 includes/currencies.php:67
|
9280 |
#: includes/currencies.php:69 includes/currencies.php:70
|
9281 |
#: includes/currencies.php:73 includes/currencies.php:75
|
@@ -9284,7 +9438,7 @@ msgstr ""
|
|
9284 |
msgid "South African Rand (R)"
|
9285 |
msgstr ""
|
9286 |
|
9287 |
-
#: includes/currencies.php:
|
9288 |
#: includes/currencies.php:50 includes/currencies.php:54
|
9289 |
#: includes/currencies.php:61 includes/currencies.php:71
|
9290 |
#: includes/currencies.php:73 includes/currencies.php:75
|
@@ -9294,7 +9448,7 @@ msgstr ""
|
|
9294 |
msgid "South Korean Won"
|
9295 |
msgstr ""
|
9296 |
|
9297 |
-
#: includes/currencies.php:
|
9298 |
#: includes/currencies.php:31 includes/currencies.php:51
|
9299 |
#: includes/currencies.php:55 includes/currencies.php:62
|
9300 |
#: includes/currencies.php:72 includes/currencies.php:74
|
@@ -9304,7 +9458,7 @@ msgstr ""
|
|
9304 |
msgid "Swedish Krona"
|
9305 |
msgstr ""
|
9306 |
|
9307 |
-
#: includes/currencies.php:
|
9308 |
#: includes/currencies.php:32 includes/currencies.php:52
|
9309 |
#: includes/currencies.php:56 includes/currencies.php:63
|
9310 |
#: includes/currencies.php:73 includes/currencies.php:75
|
@@ -9314,7 +9468,7 @@ msgstr ""
|
|
9314 |
msgid "Swiss Franc"
|
9315 |
msgstr ""
|
9316 |
|
9317 |
-
#: includes/currencies.php:
|
9318 |
#: includes/currencies.php:33 includes/currencies.php:53
|
9319 |
#: includes/currencies.php:57 includes/currencies.php:64
|
9320 |
#: includes/currencies.php:74 includes/currencies.php:76
|
@@ -9324,7 +9478,7 @@ msgstr ""
|
|
9324 |
msgid "Taiwan New Dollars"
|
9325 |
msgstr ""
|
9326 |
|
9327 |
-
#: includes/currencies.php:
|
9328 |
#: includes/currencies.php:34 includes/currencies.php:54
|
9329 |
#: includes/currencies.php:58 includes/currencies.php:65
|
9330 |
#: includes/currencies.php:75 includes/currencies.php:77
|
@@ -9334,7 +9488,7 @@ msgstr ""
|
|
9334 |
msgid "Thai Baht"
|
9335 |
msgstr ""
|
9336 |
|
9337 |
-
#: includes/currencies.php:
|
9338 |
#: includes/currencies.php:55 includes/currencies.php:59
|
9339 |
#: includes/currencies.php:66 includes/currencies.php:76
|
9340 |
#: includes/currencies.php:78 includes/currencies.php:82
|
@@ -9344,7 +9498,7 @@ msgstr ""
|
|
9344 |
msgid "Turkish Lira"
|
9345 |
msgstr ""
|
9346 |
|
9347 |
-
#: includes/currencies.php:
|
9348 |
#: includes/currencies.php:56 includes/currencies.php:60
|
9349 |
#: includes/currencies.php:67 includes/currencies.php:77
|
9350 |
#: includes/currencies.php:79 includes/currencies.php:84
|
@@ -9691,7 +9845,8 @@ msgstr ""
|
|
9691 |
#: includes/functions.php:1077 includes/functions.php:1096
|
9692 |
#: includes/functions.php:1123 includes/functions.php:1127
|
9693 |
#: includes/functions.php:1129 includes/functions.php:1135
|
9694 |
-
#: includes/functions.php:1138 includes/functions.php:
|
|
|
9695 |
#, php-format
|
9696 |
msgid "Error interacting with database: %s"
|
9697 |
msgstr ""
|
@@ -9720,10 +9875,11 @@ msgstr ""
|
|
9720 |
#: includes/functions.php:1179 includes/functions.php:1193
|
9721 |
#: includes/functions.php:1198 includes/functions.php:1202
|
9722 |
#: includes/functions.php:1204 includes/functions.php:1212
|
9723 |
-
#: includes/functions.php:1213 includes/functions.php:
|
9724 |
-
#: includes/functions.php:
|
9725 |
-
#: includes/functions.php:
|
9726 |
-
#: includes/functions.php:
|
|
|
9727 |
msgid "Membership level not found."
|
9728 |
msgstr ""
|
9729 |
|
@@ -9738,7 +9894,8 @@ msgstr ""
|
|
9738 |
#: includes/functions.php:1547 includes/functions.php:1586
|
9739 |
#: includes/functions.php:1605 includes/functions.php:1609
|
9740 |
#: includes/functions.php:1611 includes/functions.php:1620
|
9741 |
-
#: includes/functions.php:1625 includes/functions.php:
|
|
|
9742 |
msgid "No code was given to check."
|
9743 |
msgstr ""
|
9744 |
|
@@ -9757,7 +9914,7 @@ msgstr ""
|
|
9757 |
#: includes/functions.php:1595 includes/functions.php:1614
|
9758 |
#: includes/functions.php:1618 includes/functions.php:1620
|
9759 |
#: includes/functions.php:1629 includes/functions.php:1634
|
9760 |
-
#: includes/functions.php:1639
|
9761 |
msgid "The discount code could not be found."
|
9762 |
msgstr ""
|
9763 |
|
@@ -9776,7 +9933,7 @@ msgstr ""
|
|
9776 |
#: includes/functions.php:1610 includes/functions.php:1629
|
9777 |
#: includes/functions.php:1633 includes/functions.php:1635
|
9778 |
#: includes/functions.php:1644 includes/functions.php:1649
|
9779 |
-
#: includes/functions.php:1654
|
9780 |
#, php-format
|
9781 |
msgid "This discount code goes into effect on %s."
|
9782 |
msgstr ""
|
@@ -9796,7 +9953,7 @@ msgstr ""
|
|
9796 |
#: includes/functions.php:1617 includes/functions.php:1636
|
9797 |
#: includes/functions.php:1640 includes/functions.php:1642
|
9798 |
#: includes/functions.php:1651 includes/functions.php:1656
|
9799 |
-
#: includes/functions.php:1661
|
9800 |
#, php-format
|
9801 |
msgid "This discount code expired on %s."
|
9802 |
msgstr ""
|
@@ -9816,7 +9973,7 @@ msgstr ""
|
|
9816 |
#: includes/functions.php:1626 includes/functions.php:1646
|
9817 |
#: includes/functions.php:1650 includes/functions.php:1652
|
9818 |
#: includes/functions.php:1661 includes/functions.php:1665
|
9819 |
-
#: includes/functions.php:1670
|
9820 |
msgid "This discount code is no longer valid."
|
9821 |
msgstr ""
|
9822 |
|
@@ -9834,7 +9991,8 @@ msgstr ""
|
|
9834 |
#: includes/functions.php:1606 includes/functions.php:1645
|
9835 |
#: includes/functions.php:1666 includes/functions.php:1670
|
9836 |
#: includes/functions.php:1672 includes/functions.php:1681
|
9837 |
-
#: includes/functions.php:1684 includes/functions.php:
|
|
|
9838 |
msgid "This discount code does not apply to this membership level."
|
9839 |
msgstr ""
|
9840 |
|
@@ -9853,7 +10011,7 @@ msgstr ""
|
|
9853 |
#: includes/functions.php:1683 includes/functions.php:1703
|
9854 |
#: includes/functions.php:1707 includes/functions.php:1709
|
9855 |
#: includes/functions.php:1718 includes/functions.php:1722
|
9856 |
-
#: includes/functions.php:1727
|
9857 |
msgid "This discount code is okay."
|
9858 |
msgstr ""
|
9859 |
|
@@ -9872,7 +10030,7 @@ msgstr ""
|
|
9872 |
#: includes/functions.php:1711 includes/functions.php:1730
|
9873 |
#: includes/functions.php:1734 includes/functions.php:1736
|
9874 |
#: includes/functions.php:1745 includes/functions.php:1750
|
9875 |
-
#: includes/functions.php:1755
|
9876 |
msgid "and"
|
9877 |
msgstr ""
|
9878 |
|
@@ -9894,6 +10052,7 @@ msgstr ""
|
|
9894 |
#: includes/functions.php:2034 includes/functions.php:2061
|
9895 |
#: includes/functions.php:2100 includes/functions.php:2102
|
9896 |
#: includes/functions.php:2155 includes/functions.php:2199
|
|
|
9897 |
msgid "Sign Up for !!name!! Now"
|
9898 |
msgstr ""
|
9899 |
|
@@ -9901,6 +10060,7 @@ msgstr ""
|
|
9901 |
#: includes/functions.php:2054 includes/functions.php:2085
|
9902 |
#: includes/functions.php:2124 includes/functions.php:2126
|
9903 |
#: includes/functions.php:2179 includes/functions.php:2223
|
|
|
9904 |
msgid "Sign Up Now"
|
9905 |
msgstr ""
|
9906 |
|
@@ -9916,11 +10076,11 @@ msgstr ""
|
|
9916 |
#: includes/init.php:220 includes/init.php:222 includes/init.php:230
|
9917 |
#: includes/init.php:238 includes/init.php:242 includes/init.php:243
|
9918 |
#: includes/init.php:244 includes/init.php:258 includes/init.php:262
|
9919 |
-
#: includes/profile.php:
|
9920 |
-
#: includes/profile.php:
|
9921 |
-
#: pages/checkout.php:
|
9922 |
-
#: pages/checkout.php:
|
9923 |
-
#: pages/confirmation.php:46 pages/confirmation.php:47
|
9924 |
#: pages/confirmation.php:52 pages/confirmation.php:53
|
9925 |
#: pages/confirmation.php:62 pages/confirmation.php:64
|
9926 |
#: pages/confirmation.php:70 pages/confirmation.php:91
|
@@ -9933,7 +10093,7 @@ msgstr ""
|
|
9933 |
msgid "Membership Level"
|
9934 |
msgstr ""
|
9935 |
|
9936 |
-
#: includes/lib/SendWP/sendwp.php:90
|
9937 |
msgid "Something went wrong. SendWP was not installed correctly."
|
9938 |
msgstr ""
|
9939 |
|
@@ -10006,117 +10166,118 @@ msgid "Years"
|
|
10006 |
msgstr ""
|
10007 |
|
10008 |
#: includes/login.php:251 includes/login.php:275 includes/login.php:211
|
10009 |
-
#: includes/login.php:235
|
10010 |
msgid "Welcome"
|
10011 |
msgstr ""
|
10012 |
|
10013 |
#: includes/login.php:253 includes/login.php:277 includes/login.php:213
|
10014 |
-
#: includes/login.php:237
|
10015 |
msgid "Lost Password"
|
10016 |
msgstr ""
|
10017 |
|
10018 |
#: includes/login.php:255 includes/login.php:279 includes/login.php:215
|
10019 |
-
#: includes/login.php:239
|
10020 |
msgid "Reset Password"
|
10021 |
msgstr ""
|
10022 |
|
10023 |
#: includes/login.php:303 includes/login.php:820 includes/login.php:263
|
10024 |
-
#: includes/login.php:751
|
10025 |
msgid "There was a problem with your username or password."
|
10026 |
msgstr ""
|
10027 |
|
10028 |
-
#: includes/login.php:307 includes/login.php:267
|
10029 |
msgid "Unknown username. Check again or try your email address."
|
10030 |
msgstr ""
|
10031 |
|
10032 |
-
#: includes/login.php:311 includes/login.php:271
|
10033 |
msgid "Empty username. Please enter your username and try again."
|
10034 |
msgstr ""
|
10035 |
|
10036 |
-
#: includes/login.php:315 includes/login.php:275
|
10037 |
msgid "Empty password. Please enter your password and try again."
|
10038 |
msgstr ""
|
10039 |
|
10040 |
-
#: includes/login.php:319 includes/login.php:279
|
10041 |
msgid "The password you entered for the user is incorrect. Please try again."
|
10042 |
msgstr ""
|
10043 |
|
10044 |
-
#: includes/login.php:323 includes/login.php:283
|
10045 |
msgid "Check your email for the confirmation link."
|
10046 |
msgstr ""
|
10047 |
|
10048 |
-
#: includes/login.php:332 includes/login.php:292
|
10049 |
msgid "You are now logged out."
|
10050 |
msgstr ""
|
10051 |
|
10052 |
-
#: includes/login.php:336 includes/login.php:296
|
10053 |
msgid "There was a problem logging you out."
|
10054 |
msgstr ""
|
10055 |
|
10056 |
-
#: includes/login.php:347 includes/login.php:307
|
10057 |
msgid "Check your email for a link to reset your password."
|
10058 |
msgstr ""
|
10059 |
|
10060 |
-
#: includes/login.php:350 includes/login.php:310
|
10061 |
msgid "There was an unexpected error regarding your email. Please try again"
|
10062 |
msgstr ""
|
10063 |
|
10064 |
-
#: includes/login.php:360 includes/login.php:320
|
10065 |
msgid "Your reset password key is invalid."
|
10066 |
msgstr ""
|
10067 |
|
10068 |
-
#: includes/login.php:364 includes/login.php:324
|
10069 |
msgid ""
|
10070 |
"Your reset password key is expired, please request a new key from the "
|
10071 |
"password reset page."
|
10072 |
msgstr ""
|
10073 |
|
10074 |
-
#: includes/login.php:376 includes/login.php:336
|
10075 |
msgid "Your password has successfully been updated."
|
10076 |
msgstr ""
|
10077 |
|
10078 |
-
#: includes/login.php:380 includes/login.php:340
|
10079 |
msgid "There was a problem updating your password"
|
10080 |
msgstr ""
|
10081 |
|
10082 |
-
#: includes/login.php:394 includes/login.php:349
|
10083 |
msgid "There is no account with that username or email address."
|
10084 |
msgstr ""
|
10085 |
|
10086 |
-
#: includes/login.php:398 includes/login.php:353
|
10087 |
msgid "Please enter a valid username."
|
10088 |
msgstr ""
|
10089 |
|
10090 |
-
#: includes/login.php:402 includes/login.php:357
|
10091 |
msgid "You've entered an invalid email address."
|
10092 |
msgstr ""
|
10093 |
|
10094 |
-
#: includes/login.php:406 includes/profile.php:
|
10095 |
-
#: includes/profile.php:624
|
10096 |
msgid "New passwords do not match."
|
10097 |
msgstr ""
|
10098 |
|
10099 |
-
#: includes/login.php:410 includes/profile.php:
|
10100 |
-
#: includes/profile.php:620
|
10101 |
msgid "Please complete all fields."
|
10102 |
msgstr ""
|
10103 |
|
10104 |
-
#: includes/login.php:414
|
10105 |
msgid ""
|
10106 |
"The email could not be sent. This site may not be correctly configured to "
|
10107 |
"send emails."
|
10108 |
msgstr ""
|
10109 |
|
10110 |
-
#: includes/login.php:636 includes/profile.php:
|
10111 |
-
#: includes/login.php:587 includes/
|
|
|
10112 |
msgid "Strength Indicator"
|
10113 |
msgstr ""
|
10114 |
|
10115 |
-
#: includes/login.php:959 includes/login.php:886
|
10116 |
msgid "Missing request ID."
|
10117 |
msgstr ""
|
10118 |
|
10119 |
-
#: includes/login.php:963 includes/login.php:890
|
10120 |
msgid "Missing confirm key."
|
10121 |
msgstr ""
|
10122 |
|
@@ -10159,11 +10320,11 @@ msgid ""
|
|
10159 |
"Only members of these levels will be able to view posts in this category."
|
10160 |
msgstr ""
|
10161 |
|
10162 |
-
#: includes/pointers.php:
|
10163 |
msgid "PMPro v2.0 Update"
|
10164 |
msgstr ""
|
10165 |
|
10166 |
-
#: includes/pointers.php:
|
10167 |
#, php-format
|
10168 |
msgid ""
|
10169 |
"The Memberships menu has moved. Check out the new dashboard. The Membership "
|
@@ -10171,7 +10332,7 @@ msgid ""
|
|
10171 |
"\">Settings</a>."
|
10172 |
msgstr ""
|
10173 |
|
10174 |
-
#: includes/pointers.php:
|
10175 |
msgid "Close"
|
10176 |
msgstr ""
|
10177 |
|
@@ -10439,22 +10600,26 @@ msgstr ""
|
|
10439 |
msgid "That post has since been updated."
|
10440 |
msgstr ""
|
10441 |
|
10442 |
-
#: includes/profile.php:31 includes/profile.php:
|
10443 |
-
#: includes/profile.php:
|
|
|
10444 |
msgid "Current Level"
|
10445 |
msgstr ""
|
10446 |
|
10447 |
-
#: includes/profile.php:58
|
|
|
10448 |
#: includes/profile.php:67 includes/profile.php:72
|
10449 |
#: shortcodes/pmpro_account.php:148 shortcodes/pmpro_account.php:224
|
|
|
10450 |
msgid "Paid"
|
10451 |
msgstr ""
|
10452 |
|
10453 |
#: includes/profile.php:60 includes/profile.php:190 includes/profile.php:237
|
10454 |
#: includes/profile.php:54 includes/profile.php:60 includes/profile.php:65
|
10455 |
#: includes/profile.php:68 includes/profile.php:69 includes/profile.php:74
|
10456 |
-
#: includes/profile.php:
|
10457 |
-
#: includes/profile.php:
|
|
|
10458 |
msgid "Not paying."
|
10459 |
msgstr ""
|
10460 |
|
@@ -10466,108 +10631,114 @@ msgid ""
|
|
10466 |
"checkbox is selected below."
|
10467 |
msgstr ""
|
10468 |
|
10469 |
-
#: includes/profile.php:120 includes/profile.php:
|
|
|
10470 |
msgid "Send the user an email about this change."
|
10471 |
msgstr ""
|
10472 |
|
10473 |
-
#: includes/profile.php:126 includes/profile.php:
|
|
|
10474 |
msgid "Cancel this user's subscription at the gateway."
|
10475 |
msgstr ""
|
10476 |
|
10477 |
-
#: includes/profile.php:140 includes/profile.php:
|
|
|
10478 |
msgid "TOS Consent History"
|
10479 |
msgstr ""
|
10480 |
|
10481 |
-
#: includes/profile.php:440 includes/profile.php:473
|
10482 |
msgid "Please enter a display name."
|
10483 |
msgstr ""
|
10484 |
|
10485 |
-
#: includes/profile.php:450 includes/profile.php:483
|
10486 |
msgid "Please enter an email address."
|
10487 |
msgstr ""
|
10488 |
|
10489 |
-
#: includes/profile.php:452 includes/profile.php:485
|
10490 |
msgid "The email address isn’t correct."
|
10491 |
msgstr ""
|
10492 |
|
10493 |
-
#: includes/profile.php:456 includes/profile.php:489
|
10494 |
msgid "This email is already registered, please choose another one."
|
10495 |
msgstr ""
|
10496 |
|
10497 |
-
#: includes/profile.php:474 includes/profile.php:507
|
10498 |
msgid "Your profile has been updated."
|
10499 |
msgstr ""
|
10500 |
|
10501 |
-
#: includes/profile.php:
|
10502 |
-
#: includes/profile.php:
|
10503 |
-
#: pages/billing.php:
|
10504 |
-
#: pages/billing.php:
|
10505 |
-
#: pages/billing.php:
|
10506 |
-
#: pages/billing.php:
|
10507 |
-
#: pages/billing.php:
|
10508 |
-
#: pages/checkout.php:
|
10509 |
-
#: pages/checkout.php:
|
10510 |
-
#: pages/checkout.php:
|
10511 |
-
#: pages/checkout.php:
|
|
|
10512 |
msgid "First Name"
|
10513 |
msgstr ""
|
10514 |
|
10515 |
-
#: includes/profile.php:
|
10516 |
-
#: includes/profile.php:
|
10517 |
-
#: pages/billing.php:
|
10518 |
-
#: pages/billing.php:
|
10519 |
-
#: pages/billing.php:
|
10520 |
-
#: pages/billing.php:
|
10521 |
-
#: pages/billing.php:
|
10522 |
-
#: pages/checkout.php:
|
10523 |
-
#: pages/checkout.php:
|
10524 |
-
#: pages/checkout.php:
|
10525 |
-
#: pages/checkout.php:
|
|
|
10526 |
msgid "Last Name"
|
10527 |
msgstr ""
|
10528 |
|
10529 |
-
#: includes/profile.php:492 includes/profile.php:533
|
10530 |
msgid "Display name publicly as"
|
10531 |
msgstr ""
|
10532 |
|
10533 |
-
#: includes/profile.php:528 includes/profile.php:566
|
10534 |
msgid "Update Profile"
|
10535 |
msgstr ""
|
10536 |
|
10537 |
-
#: includes/profile.php:584 includes/profile.php:622
|
10538 |
msgid "Please enter your current password."
|
10539 |
msgstr ""
|
10540 |
|
10541 |
-
#: includes/profile.php:588 includes/profile.php:626
|
10542 |
msgid "Your current password is incorrect."
|
10543 |
msgstr ""
|
10544 |
|
10545 |
-
#: includes/profile.php:599 includes/profile.php:637
|
10546 |
msgid "Your password has been updated."
|
10547 |
msgstr ""
|
10548 |
|
10549 |
-
#: includes/profile.php:
|
10550 |
-
#: pages/account.php:
|
10551 |
-
#: shortcodes/pmpro_account.php:
|
10552 |
-
#: shortcodes/pmpro_account.php:116
|
10553 |
msgid "Change Password"
|
10554 |
msgstr ""
|
10555 |
|
10556 |
-
#: includes/profile.php:629 includes/profile.php:667
|
10557 |
msgid "Current Password"
|
10558 |
msgstr ""
|
10559 |
|
10560 |
-
#: includes/profile.php:
|
10561 |
-
#: includes/profile.php:535 includes/profile.php:546 includes/profile.php:
|
|
|
10562 |
#: includes/profile.php:674 includes/profile.php:681
|
10563 |
msgid "Required Field"
|
10564 |
msgstr ""
|
10565 |
|
10566 |
-
#: includes/profile.php:634 includes/profile.php:672
|
10567 |
msgid "New Password"
|
10568 |
msgstr ""
|
10569 |
|
10570 |
-
#: includes/profile.php:641 includes/profile.php:679
|
10571 |
msgid "Confirm New Password"
|
10572 |
msgstr ""
|
10573 |
|
@@ -10624,7 +10795,7 @@ msgstr ""
|
|
10624 |
#: pages/billing.php:34 pages/billing.php:14 pages/billing.php:23
|
10625 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
10626 |
#: pages/billing.php:28 pages/billing.php:31 pages/billing.php:32
|
10627 |
-
#: pages/billing.php:33 pages/billing.php:389
|
10628 |
#, php-format
|
10629 |
msgid "Logged in as <strong>%s</strong>."
|
10630 |
msgstr ""
|
@@ -10632,7 +10803,7 @@ msgstr ""
|
|
10632 |
#: pages/billing.php:34 pages/billing.php:14 pages/billing.php:23
|
10633 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
10634 |
#: pages/billing.php:28 pages/billing.php:31 pages/billing.php:32
|
10635 |
-
#: pages/billing.php:33 pages/billing.php:389
|
10636 |
msgid "logout"
|
10637 |
msgstr ""
|
10638 |
|
@@ -10640,7 +10811,7 @@ msgstr ""
|
|
10640 |
#: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
|
10641 |
#: pages/billing.php:32 pages/billing.php:43 pages/billing.php:46
|
10642 |
#: pages/billing.php:47 pages/billing.php:51 pages/billing.php:52
|
10643 |
-
#: pages/billing.php:59
|
10644 |
msgid "Membership Fee"
|
10645 |
msgstr ""
|
10646 |
|
@@ -10648,7 +10819,7 @@ msgstr ""
|
|
10648 |
#: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
|
10649 |
#: pages/billing.php:36 pages/billing.php:47 pages/billing.php:50
|
10650 |
#: pages/billing.php:51 pages/billing.php:55 pages/billing.php:56
|
10651 |
-
#: pages/billing.php:63 pages/levels.php:70
|
10652 |
#, php-format
|
10653 |
msgid "%s every %d %s."
|
10654 |
msgstr ""
|
@@ -10657,7 +10828,7 @@ msgstr ""
|
|
10657 |
#: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
|
10658 |
#: pages/billing.php:38 pages/billing.php:49 pages/billing.php:52
|
10659 |
#: pages/billing.php:53 pages/billing.php:57 pages/billing.php:58
|
10660 |
-
#: pages/billing.php:65 pages/levels.php:66
|
10661 |
#, php-format
|
10662 |
msgid "%s per %s."
|
10663 |
msgstr ""
|
@@ -10667,20 +10838,22 @@ msgstr ""
|
|
10667 |
#: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
|
10668 |
#: pages/billing.php:59 pages/billing.php:62 pages/billing.php:63
|
10669 |
#: pages/billing.php:67 pages/billing.php:68 pages/billing.php:76
|
|
|
10670 |
msgid "Duration"
|
10671 |
msgstr ""
|
10672 |
|
10673 |
-
#: pages/billing.php:84 pages/confirmation.php:79 pages/invoice.php:
|
10674 |
-
#: pages/account.php:105 pages/account.php:109 pages/
|
10675 |
-
#: pages/confirmation.php:
|
10676 |
-
#: pages/confirmation.php:
|
10677 |
-
#: pages/confirmation.php:
|
10678 |
-
#: pages/invoice.php:
|
|
|
10679 |
msgid "Payment Method"
|
10680 |
msgstr ""
|
10681 |
|
10682 |
-
#: pages/billing.php:86 pages/confirmation.php:81 pages/invoice.php:
|
10683 |
-
#: pages/confirmation.php:79 pages/confirmation.php:80
|
10684 |
#: pages/confirmation.php:81 pages/confirmation.php:82
|
10685 |
#: pages/confirmation.php:83 pages/confirmation.php:88 pages/invoice.php:61
|
10686 |
#: pages/invoice.php:62 pages/invoice.php:63 pages/invoice.php:67
|
@@ -10689,13 +10862,14 @@ msgid "ending in"
|
|
10689 |
msgstr ""
|
10690 |
|
10691 |
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:133
|
10692 |
-
#: pages/invoice.php:
|
10693 |
-
#: pages/
|
10694 |
-
#: pages/confirmation.php:
|
10695 |
-
#: pages/confirmation.php:
|
10696 |
-
#: pages/confirmation.php:
|
10697 |
-
#: pages/
|
10698 |
-
#: pages/invoice.php:
|
|
|
10699 |
msgid "View Your Membership Account →"
|
10700 |
msgstr ""
|
10701 |
|
@@ -10703,18 +10877,18 @@ msgstr ""
|
|
10703 |
#: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
|
10704 |
#: pages/billing.php:57 pages/billing.php:77 pages/billing.php:80
|
10705 |
#: pages/billing.php:81 pages/billing.php:85 pages/billing.php:86
|
10706 |
-
#: pages/billing.php:94 pages/billing.php:100
|
10707 |
msgid ""
|
10708 |
"Your payment subscription is managed by PayPal. Please <a href=\"http://www."
|
10709 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
10710 |
msgstr ""
|
10711 |
|
10712 |
-
#: pages/billing.php:124
|
10713 |
msgid "Your billing information cannot be updated at this time."
|
10714 |
msgstr ""
|
10715 |
|
10716 |
#: pages/billing.php:148 pages/checkout.php:226 pages/confirmation.php:66
|
10717 |
-
#: pages/invoice.php:
|
10718 |
#: adminpages/memberslist.php:150 adminpages/memberslist.php:160
|
10719 |
#: adminpages/memberslist.php:170 adminpages/memberslist.php:174
|
10720 |
#: pages/account.php:90 pages/account.php:94 pages/billing.php:58
|
@@ -10722,15 +10896,15 @@ msgstr ""
|
|
10722 |
#: pages/billing.php:76 pages/billing.php:77 pages/billing.php:80
|
10723 |
#: pages/billing.php:100 pages/billing.php:103 pages/billing.php:104
|
10724 |
#: pages/billing.php:108 pages/billing.php:109 pages/billing.php:117
|
10725 |
-
#: pages/billing.php:126 pages/
|
10726 |
-
#: pages/checkout.php:
|
10727 |
-
#: pages/checkout.php:
|
10728 |
-
#: pages/checkout.php:
|
10729 |
-
#: pages/checkout.php:
|
10730 |
-
#: pages/confirmation.php:
|
10731 |
-
#: pages/confirmation.php:
|
10732 |
-
#: pages/confirmation.php:
|
10733 |
-
#: pages/invoice.php:48 pages/invoice.php:49
|
10734 |
msgid "Billing Address"
|
10735 |
msgstr ""
|
10736 |
|
@@ -10739,11 +10913,12 @@ msgstr ""
|
|
10739 |
#: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
|
10740 |
#: pages/billing.php:112 pages/billing.php:115 pages/billing.php:116
|
10741 |
#: pages/billing.php:118 pages/billing.php:120 pages/billing.php:121
|
10742 |
-
#: pages/billing.php:129 pages/billing.php:138 pages/
|
10743 |
-
#: pages/checkout.php:
|
10744 |
-
#: pages/checkout.php:
|
10745 |
-
#: pages/checkout.php:
|
10746 |
-
#: pages/checkout.php:
|
|
|
10747 |
msgid "Address 1"
|
10748 |
msgstr ""
|
10749 |
|
@@ -10752,11 +10927,12 @@ msgstr ""
|
|
10752 |
#: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
|
10753 |
#: pages/billing.php:116 pages/billing.php:119 pages/billing.php:120
|
10754 |
#: pages/billing.php:122 pages/billing.php:124 pages/billing.php:125
|
10755 |
-
#: pages/billing.php:133 pages/billing.php:142 pages/
|
10756 |
-
#: pages/checkout.php:
|
10757 |
-
#: pages/checkout.php:
|
10758 |
-
#: pages/checkout.php:
|
10759 |
-
#: pages/checkout.php:
|
|
|
10760 |
msgid "Address 2"
|
10761 |
msgstr ""
|
10762 |
|
@@ -10765,11 +10941,12 @@ msgstr ""
|
|
10765 |
#: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
|
10766 |
#: pages/billing.php:126 pages/billing.php:129 pages/billing.php:130
|
10767 |
#: pages/billing.php:132 pages/billing.php:134 pages/billing.php:135
|
10768 |
-
#: pages/billing.php:143 pages/billing.php:152 pages/
|
10769 |
-
#: pages/checkout.php:
|
10770 |
-
#: pages/checkout.php:
|
10771 |
-
#: pages/checkout.php:
|
10772 |
-
#: pages/checkout.php:
|
|
|
10773 |
msgid "City"
|
10774 |
msgstr ""
|
10775 |
|
@@ -10778,11 +10955,12 @@ msgstr ""
|
|
10778 |
#: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
|
10779 |
#: pages/billing.php:130 pages/billing.php:133 pages/billing.php:134
|
10780 |
#: pages/billing.php:136 pages/billing.php:138 pages/billing.php:139
|
10781 |
-
#: pages/billing.php:147 pages/billing.php:156 pages/
|
10782 |
-
#: pages/checkout.php:
|
10783 |
-
#: pages/checkout.php:
|
10784 |
-
#: pages/checkout.php:
|
10785 |
-
#: pages/checkout.php:
|
|
|
10786 |
msgid "State"
|
10787 |
msgstr ""
|
10788 |
|
@@ -10791,11 +10969,12 @@ msgstr ""
|
|
10791 |
#: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
|
10792 |
#: pages/billing.php:134 pages/billing.php:137 pages/billing.php:138
|
10793 |
#: pages/billing.php:140 pages/billing.php:142 pages/billing.php:143
|
10794 |
-
#: pages/billing.php:151 pages/billing.php:160 pages/
|
10795 |
-
#: pages/checkout.php:
|
10796 |
-
#: pages/checkout.php:
|
10797 |
-
#: pages/checkout.php:
|
10798 |
-
#: pages/checkout.php:
|
|
|
10799 |
msgid "Postal Code"
|
10800 |
msgstr ""
|
10801 |
|
@@ -10804,11 +10983,12 @@ msgstr ""
|
|
10804 |
#: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
|
10805 |
#: pages/billing.php:143 pages/billing.php:146 pages/billing.php:147
|
10806 |
#: pages/billing.php:149 pages/billing.php:151 pages/billing.php:152
|
10807 |
-
#: pages/billing.php:160 pages/billing.php:169 pages/
|
10808 |
-
#: pages/checkout.php:
|
10809 |
-
#: pages/checkout.php:
|
10810 |
-
#: pages/checkout.php:
|
10811 |
-
#: pages/checkout.php:
|
|
|
10812 |
msgid "City, State Zip"
|
10813 |
msgstr ""
|
10814 |
|
@@ -10817,11 +10997,12 @@ msgstr ""
|
|
10817 |
#: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
|
10818 |
#: pages/billing.php:196 pages/billing.php:199 pages/billing.php:200
|
10819 |
#: pages/billing.php:202 pages/billing.php:204 pages/billing.php:205
|
10820 |
-
#: pages/billing.php:213 pages/billing.php:222 pages/
|
10821 |
-
#: pages/checkout.php:
|
10822 |
-
#: pages/checkout.php:
|
10823 |
-
#: pages/checkout.php:
|
10824 |
-
#: pages/checkout.php:
|
|
|
10825 |
msgid "Country"
|
10826 |
msgstr ""
|
10827 |
|
@@ -10830,11 +11011,12 @@ msgstr ""
|
|
10830 |
#: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
|
10831 |
#: pages/billing.php:221 pages/billing.php:224 pages/billing.php:225
|
10832 |
#: pages/billing.php:227 pages/billing.php:229 pages/billing.php:230
|
10833 |
-
#: pages/billing.php:238 pages/billing.php:247 pages/
|
10834 |
-
#: pages/checkout.php:
|
10835 |
-
#: pages/checkout.php:
|
10836 |
-
#: pages/checkout.php:
|
10837 |
-
#: pages/checkout.php:
|
|
|
10838 |
msgid "Phone"
|
10839 |
msgstr ""
|
10840 |
|
@@ -10844,14 +11026,15 @@ msgstr ""
|
|
10844 |
#: pages/billing.php:215 pages/billing.php:232 pages/billing.php:235
|
10845 |
#: pages/billing.php:236 pages/billing.php:238 pages/billing.php:240
|
10846 |
#: pages/billing.php:241 pages/billing.php:249 pages/billing.php:258
|
10847 |
-
#: pages/
|
10848 |
-
#: pages/checkout.php:
|
10849 |
-
#: pages/checkout.php:
|
10850 |
-
#: pages/checkout.php:
|
10851 |
-
#: pages/checkout.php:
|
10852 |
-
#: pages/checkout.php:
|
10853 |
-
#: pages/checkout.php:
|
10854 |
-
#: pages/checkout.php:
|
|
|
10855 |
msgid "Email Address"
|
10856 |
msgstr ""
|
10857 |
|
@@ -10860,11 +11043,12 @@ msgstr ""
|
|
10860 |
#: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
|
10861 |
#: pages/billing.php:236 pages/billing.php:239 pages/billing.php:240
|
10862 |
#: pages/billing.php:242 pages/billing.php:244 pages/billing.php:245
|
10863 |
-
#: pages/billing.php:253 pages/billing.php:262 pages/
|
10864 |
-
#: pages/checkout.php:
|
10865 |
-
#: pages/checkout.php:
|
10866 |
-
#: pages/checkout.php:
|
10867 |
-
#: pages/checkout.php:
|
|
|
10868 |
msgid "Confirm Email"
|
10869 |
msgstr ""
|
10870 |
|
@@ -10873,7 +11057,7 @@ msgstr ""
|
|
10873 |
#: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
|
10874 |
#: pages/billing.php:259 pages/billing.php:262 pages/billing.php:263
|
10875 |
#: pages/billing.php:267 pages/billing.php:268 pages/billing.php:270
|
10876 |
-
#: pages/billing.php:276 pages/billing.php:285
|
10877 |
msgid "Credit Card Information"
|
10878 |
msgstr ""
|
10879 |
|
@@ -10882,28 +11066,28 @@ msgstr ""
|
|
10882 |
#: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
|
10883 |
#: pages/billing.php:260 pages/billing.php:263 pages/billing.php:264
|
10884 |
#: pages/billing.php:268 pages/billing.php:269 pages/billing.php:271
|
10885 |
-
#: pages/billing.php:277 pages/billing.php:286
|
10886 |
#, php-format
|
10887 |
msgid "We accept %s"
|
10888 |
msgstr ""
|
10889 |
|
10890 |
#: pages/billing.php:446 shortcodes/pmpro_account.php:68 pages/billing.php:410
|
10891 |
#: pages/billing.php:412 pages/billing.php:418 pages/billing.php:422
|
10892 |
-
#: shortcodes/pmpro_account.php:68
|
10893 |
#, php-format
|
10894 |
msgid "Your membership is not active. <a href='%s'>Renew now.</a>"
|
10895 |
msgstr ""
|
10896 |
|
10897 |
#: pages/billing.php:449 shortcodes/pmpro_account.php:71 pages/billing.php:407
|
10898 |
#: pages/billing.php:409 pages/billing.php:415 pages/billing.php:425
|
10899 |
-
#: shortcodes/pmpro_account.php:71
|
10900 |
#, php-format
|
10901 |
msgid "You do not have an active membership. <a href='%s'>Register here.</a>"
|
10902 |
msgstr ""
|
10903 |
|
10904 |
#: pages/billing.php:452 shortcodes/pmpro_account.php:74 pages/billing.php:404
|
10905 |
#: pages/billing.php:406 pages/billing.php:412 pages/billing.php:428
|
10906 |
-
#: shortcodes/pmpro_account.php:74
|
10907 |
#, php-format
|
10908 |
msgid ""
|
10909 |
"You do not have an active membership. <a href='%s'>Choose a membership level."
|
@@ -10916,7 +11100,7 @@ msgstr ""
|
|
10916 |
#: pages/billing.php:380 pages/billing.php:381 pages/billing.php:385
|
10917 |
#: pages/billing.php:387 pages/billing.php:408 pages/billing.php:413
|
10918 |
#: pages/billing.php:415 pages/billing.php:417 pages/billing.php:421
|
10919 |
-
#: pages/billing.php:422 pages/billing.php:431
|
10920 |
msgid ""
|
10921 |
"This subscription is not recurring. So you don't need to update your billing "
|
10922 |
"information."
|
@@ -10980,7 +11164,7 @@ msgstr ""
|
|
10980 |
msgid "You have selected the <strong>%s</strong> membership level."
|
10981 |
msgstr ""
|
10982 |
|
10983 |
-
#: pages/checkout.php:69
|
10984 |
msgid "<p class=\""
|
10985 |
msgstr ""
|
10986 |
|
@@ -11085,7 +11269,7 @@ msgstr ""
|
|
11085 |
msgid "Security Code (CVC)"
|
11086 |
msgstr ""
|
11087 |
|
11088 |
-
#: pages/checkout.php:
|
11089 |
#: pages/checkout.php:459 pages/checkout.php:567 pages/checkout.php:575
|
11090 |
#: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
|
11091 |
#: pages/checkout.php:681 pages/checkout.php:686 pages/checkout.php:690
|
@@ -11095,7 +11279,7 @@ msgstr ""
|
|
11095 |
msgid "I agree to the %s"
|
11096 |
msgstr ""
|
11097 |
|
11098 |
-
#: pages/checkout.php:
|
11099 |
#: pages/checkout.php:594 pages/checkout.php:667 pages/checkout.php:674
|
11100 |
#: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
|
11101 |
#: pages/checkout.php:701 pages/checkout.php:706 pages/checkout.php:710
|
@@ -11104,7 +11288,7 @@ msgstr ""
|
|
11104 |
msgid "Complete Payment"
|
11105 |
msgstr ""
|
11106 |
|
11107 |
-
#: pages/checkout.php:
|
11108 |
#: pages/checkout.php:616 pages/checkout.php:687 pages/checkout.php:694
|
11109 |
#: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
|
11110 |
#: pages/checkout.php:723 pages/checkout.php:728 pages/checkout.php:732
|
@@ -11162,14 +11346,14 @@ msgstr ""
|
|
11162 |
msgid "Account"
|
11163 |
msgstr ""
|
11164 |
|
11165 |
-
#: pages/confirmation.php:55 pages/
|
11166 |
-
#: pages/
|
11167 |
#: pages/confirmation.php:54 pages/confirmation.php:55 pages/invoice.php:29
|
11168 |
#: pages/invoice.php:30 pages/invoice.php:31
|
11169 |
msgid "Membership Expires"
|
11170 |
msgstr ""
|
11171 |
|
11172 |
-
#: pages/confirmation.php:90 pages/invoice.php:
|
11173 |
#: pages/confirmation.php:61 pages/confirmation.php:63
|
11174 |
#: pages/confirmation.php:65 pages/confirmation.php:71
|
11175 |
#: pages/confirmation.php:87 pages/confirmation.php:88
|
@@ -11181,7 +11365,7 @@ msgstr ""
|
|
11181 |
msgid "Total Billed"
|
11182 |
msgstr ""
|
11183 |
|
11184 |
-
#: pages/confirmation.php:96 pages/invoice.php:
|
11185 |
#: pages/confirmation.php:94 pages/confirmation.php:96 pages/invoice.php:75
|
11186 |
#: pages/invoice.php:76 pages/invoice.php:77 pages/invoice.php:78
|
11187 |
#: pages/invoice.php:80 pages/invoice.php:82
|
@@ -11203,7 +11387,7 @@ msgstr ""
|
|
11203 |
#: pages/confirmation.php:113 pages/confirmation.php:116
|
11204 |
#: pages/confirmation.php:123 pages/confirmation.php:124
|
11205 |
#: pages/confirmation.php:126 shortcodes/pmpro_account.php:151
|
11206 |
-
#: shortcodes/pmpro_account.php:227
|
11207 |
msgid "Pending"
|
11208 |
msgstr ""
|
11209 |
|
@@ -11217,23 +11401,19 @@ msgid ""
|
|
11217 |
"site owner."
|
11218 |
msgstr ""
|
11219 |
|
11220 |
-
#: pages/invoice.php:
|
11221 |
-
msgid "Success"
|
11222 |
-
msgstr ""
|
11223 |
-
|
11224 |
-
#: pages/invoice.php:103 pages/invoice.php:88 pages/invoice.php:100
|
11225 |
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:103
|
11226 |
#: pages/invoice.php:106 pages/invoice.php:108
|
11227 |
msgid "Invoice #"
|
11228 |
msgstr ""
|
11229 |
|
11230 |
-
#: pages/invoice.php:
|
11231 |
#: pages/invoice.php:127 pages/invoice.php:128 pages/invoice.php:129
|
11232 |
#: pages/invoice.php:132 pages/invoice.php:134
|
11233 |
msgid "No invoices found."
|
11234 |
msgstr ""
|
11235 |
|
11236 |
-
#: pages/invoice.php:
|
11237 |
#: pages/invoice.php:138 pages/invoice.php:139 pages/invoice.php:140
|
11238 |
#: pages/invoice.php:143 pages/invoice.php:145
|
11239 |
msgid "← View All Invoices"
|
@@ -11340,63 +11520,65 @@ msgstr ""
|
|
11340 |
#: preheaders/billing.php:162 preheaders/checkout.php:336
|
11341 |
#: preheaders/billing.php:145 preheaders/billing.php:147
|
11342 |
#: preheaders/billing.php:151 preheaders/billing.php:153
|
11343 |
-
#: preheaders/billing.php:158 preheaders/billing.php:
|
11344 |
-
#: preheaders/billing.php:
|
11345 |
-
#: preheaders/billing.php:
|
11346 |
-
#: preheaders/billing.php:
|
11347 |
-
#: preheaders/checkout.php:
|
11348 |
-
#: preheaders/checkout.php:
|
11349 |
-
#: preheaders/checkout.php:
|
11350 |
-
#: preheaders/checkout.php:
|
11351 |
-
#: preheaders/checkout.php:482
|
11352 |
msgid "Please complete all required fields."
|
11353 |
msgstr ""
|
11354 |
|
11355 |
#: preheaders/billing.php:165 preheaders/checkout.php:344
|
11356 |
#: preheaders/billing.php:148 preheaders/billing.php:150
|
11357 |
#: preheaders/billing.php:154 preheaders/billing.php:156
|
11358 |
-
#: preheaders/billing.php:161 preheaders/billing.php:
|
11359 |
-
#: preheaders/billing.php:
|
11360 |
-
#: preheaders/billing.php:
|
11361 |
-
#: preheaders/billing.php:
|
11362 |
-
#: preheaders/checkout.php:
|
11363 |
-
#: preheaders/checkout.php:
|
11364 |
-
#: preheaders/checkout.php:
|
11365 |
-
#: preheaders/checkout.php:
|
11366 |
-
#: preheaders/checkout.php:492
|
11367 |
msgid "Your email addresses do not match. Please try again."
|
11368 |
msgstr ""
|
11369 |
|
11370 |
#: preheaders/billing.php:168 preheaders/checkout.php:349
|
11371 |
#: preheaders/billing.php:151 preheaders/billing.php:153
|
11372 |
#: preheaders/billing.php:157 preheaders/billing.php:159
|
11373 |
-
#: preheaders/billing.php:164 preheaders/billing.php:
|
11374 |
-
#: preheaders/billing.php:
|
11375 |
-
#: preheaders/billing.php:
|
11376 |
-
#: preheaders/billing.php:
|
11377 |
-
#: preheaders/checkout.php:
|
11378 |
-
#: preheaders/checkout.php:
|
11379 |
-
#: preheaders/checkout.php:
|
11380 |
-
#: preheaders/checkout.php:
|
11381 |
-
#: preheaders/checkout.php:498
|
11382 |
msgid "The email address entered is in an invalid format. Please try again."
|
11383 |
msgstr ""
|
11384 |
|
11385 |
#: preheaders/billing.php:172 preheaders/billing.php:155
|
11386 |
#: preheaders/billing.php:157 preheaders/billing.php:161
|
11387 |
#: preheaders/billing.php:163 preheaders/billing.php:168
|
11388 |
-
#: preheaders/billing.php:
|
11389 |
-
#: preheaders/billing.php:
|
11390 |
-
#: preheaders/billing.php:
|
|
|
11391 |
msgid "All good!"
|
11392 |
msgstr ""
|
11393 |
|
11394 |
#: preheaders/billing.php:239 preheaders/billing.php:222
|
11395 |
#: preheaders/billing.php:224 preheaders/billing.php:228
|
11396 |
#: preheaders/billing.php:230 preheaders/billing.php:235
|
11397 |
-
#: preheaders/billing.php:
|
11398 |
-
#: preheaders/billing.php:
|
11399 |
-
#: preheaders/billing.php:
|
|
|
11400 |
#, php-format
|
11401 |
msgid "Information updated. <a href=\"%s\">« back to my account</a>"
|
11402 |
msgstr ""
|
@@ -11404,10 +11586,10 @@ msgstr ""
|
|
11404 |
#: preheaders/billing.php:245 preheaders/billing.php:228
|
11405 |
#: preheaders/billing.php:230 preheaders/billing.php:234
|
11406 |
#: preheaders/billing.php:236 preheaders/billing.php:241
|
11407 |
-
#: preheaders/billing.php:
|
11408 |
-
#: preheaders/billing.php:
|
11409 |
-
#: preheaders/billing.php:
|
11410 |
-
#: preheaders/billing.php:380
|
11411 |
msgid "Error updating billing information."
|
11412 |
msgstr ""
|
11413 |
|
@@ -11678,7 +11860,7 @@ msgstr ""
|
|
11678 |
#: shortcodes/pmpro_account.php:145 pages/account.php:64
|
11679 |
#: shortcodes/pmpro_account.php:90 shortcodes/pmpro_account.php:92
|
11680 |
#: shortcodes/pmpro_account.php:93 shortcodes/pmpro_account.php:95
|
11681 |
-
#: shortcodes/pmpro_account.php:144
|
11682 |
msgid "View all Membership Options"
|
11683 |
msgstr ""
|
11684 |
|
@@ -11686,6 +11868,7 @@ msgstr ""
|
|
11686 |
#: pages/account.php:71 shortcodes/pmpro_account.php:99
|
11687 |
#: shortcodes/pmpro_account.php:101 shortcodes/pmpro_account.php:102
|
11688 |
#: shortcodes/pmpro_account.php:104 shortcodes/pmpro_account.php:153
|
|
|
11689 |
msgid "My Account"
|
11690 |
msgstr ""
|
11691 |
|
@@ -11693,18 +11876,19 @@ msgstr ""
|
|
11693 |
#: pages/account.php:129 shortcodes/pmpro_account.php:118
|
11694 |
#: shortcodes/pmpro_account.php:120 shortcodes/pmpro_account.php:121
|
11695 |
#: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:199
|
|
|
11696 |
msgid "Past Invoices"
|
11697 |
msgstr ""
|
11698 |
|
11699 |
#: shortcodes/pmpro_account.php:212 pages/account.php:93
|
11700 |
#: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:126
|
11701 |
#: shortcodes/pmpro_account.php:127 shortcodes/pmpro_account.php:129
|
11702 |
-
#: shortcodes/pmpro_account.php:205
|
11703 |
msgid "Amount"
|
11704 |
msgstr ""
|
11705 |
|
11706 |
#: shortcodes/pmpro_account.php:236 shortcodes/pmpro_account.php:153
|
11707 |
-
#: shortcodes/pmpro_account.php:229
|
11708 |
msgid "Refunded"
|
11709 |
msgstr ""
|
11710 |
|
@@ -11712,7 +11896,7 @@ msgstr ""
|
|
11712 |
#: pages/account.php:144 shortcodes/pmpro_account.php:152
|
11713 |
#: shortcodes/pmpro_account.php:154 shortcodes/pmpro_account.php:155
|
11714 |
#: shortcodes/pmpro_account.php:157 shortcodes/pmpro_account.php:168
|
11715 |
-
#: shortcodes/pmpro_account.php:244
|
11716 |
msgid "View All Invoices"
|
11717 |
msgstr ""
|
11718 |
|
@@ -11720,7 +11904,7 @@ msgstr ""
|
|
11720 |
#: pages/account.php:150 shortcodes/pmpro_account.php:159
|
11721 |
#: shortcodes/pmpro_account.php:161 shortcodes/pmpro_account.php:162
|
11722 |
#: shortcodes/pmpro_account.php:164 shortcodes/pmpro_account.php:175
|
11723 |
-
#: shortcodes/pmpro_account.php:251
|
11724 |
msgid "Member Links"
|
11725 |
msgstr ""
|
11726 |
|
@@ -12018,23 +12202,23 @@ msgid ""
|
|
12018 |
"still get an email confirmation from PMPro after checkout.)"
|
12019 |
msgstr ""
|
12020 |
|
12021 |
-
#: adminpages/license.php:47
|
12022 |
msgid ""
|
12023 |
"Enter your support license key.</strong> Your license key can be found in "
|
12024 |
"your membership email receipt or in your <a href=\"https://www."
|
12025 |
-
"paidmembershipspro.com/
|
12026 |
-
"%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign"
|
12027 |
"%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership "
|
12028 |
"Account</a>."
|
12029 |
msgstr ""
|
12030 |
|
12031 |
-
#: adminpages/license.php:49
|
12032 |
msgid ""
|
12033 |
-
"Visit the PMPro <a href=\"https://www.paidmembershipspro.com/
|
12034 |
-
"redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin
|
12035 |
-
"%3Dpmpro-license%26utm_campaign%3Dmembership-account
|
12036 |
-
"valid\" target=\"_blank\">Membership Account</a>
|
12037 |
-
"account is active and to find your license key."
|
12038 |
msgstr ""
|
12039 |
|
12040 |
#: adminpages/membershiplevels.php:364
|
@@ -13236,6 +13420,10 @@ msgid ""
|
|
13236 |
"been sent to %s."
|
13237 |
msgstr ""
|
13238 |
|
|
|
|
|
|
|
|
|
13239 |
#: pages/invoice.php:29
|
13240 |
msgid "success"
|
13241 |
msgstr ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: paid-memberships-pro\n"
|
8 |
"Report-Msgid-Bugs-To: info@paidmembershipspro.com\n"
|
9 |
+
"POT-Creation-Date: 2020-08-11 05:46+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"
|
222 |
#: adminpages/orders.php:1439 adminpages/orders.php:1440
|
223 |
#: adminpages/orders.php:1445 adminpages/orders.php:1455
|
224 |
#: adminpages/orders.php:1462 adminpages/orders.php:1472
|
225 |
+
#: includes/profile.php:155 includes/profile.php:186 includes/profile.php:191
|
226 |
#: shortcodes/pmpro_account.php:145 shortcodes/pmpro_account.php:146
|
227 |
#: shortcodes/pmpro_account.php:148 shortcodes/pmpro_account.php:158
|
228 |
+
#: shortcodes/pmpro_account.php:234 shortcodes/pmpro_account.php:241
|
229 |
msgid "N/A"
|
230 |
msgstr ""
|
231 |
|
361 |
#: classes/gateways/class.pmprogateway_stripe.php:66
|
362 |
#: classes/gateways/class.pmprogateway_stripe.php:68
|
363 |
#: classes/gateways/class.pmprogateway_stripe.php:71
|
364 |
+
#: classes/gateways/class.pmprogateway_stripe.php:73
|
365 |
#, php-format
|
366 |
msgid ""
|
367 |
"The Stripe Gateway requires PHP 5.3.29 or greater. We recommend upgrading to "
|
588 |
msgid "Payment Gateway & SSL Settings"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: adminpages/admin_header.php:251 includes/profile.php:502
|
592 |
#: shortcodes/pmpro_account.php:161 adminpages/admin_header.php:131
|
593 |
#: adminpages/admin_header.php:152 adminpages/admin_header.php:162
|
594 |
#: adminpages/admin_header.php:171 adminpages/admin_header.php:183
|
601 |
#: adminpages/orders.php:376 adminpages/orders.php:1345
|
602 |
#: adminpages/orders.php:1350 adminpages/orders.php:1351
|
603 |
#: adminpages/orders.php:1360 adminpages/orders.php:1365
|
604 |
+
#: includes/profile.php:493 includes/profile.php:539 pages/account.php:52
|
605 |
+
#: pages/account.php:56 pages/account.php:77 shortcodes/pmpro_account.php:106
|
606 |
#: shortcodes/pmpro_account.php:108 shortcodes/pmpro_account.php:109
|
607 |
#: shortcodes/pmpro_account.php:111 shortcodes/pmpro_account.php:160
|
608 |
+
#: shortcodes/pmpro_account.php:161
|
609 |
msgid "Email"
|
610 |
msgstr ""
|
611 |
|
665 |
#: adminpages/advancedsettings.php:42 adminpages/advancedsettings.php:43
|
666 |
#: adminpages/advancedsettings.php:46 adminpages/advancedsettings.php:60
|
667 |
#: adminpages/advancedsettings.php:61 adminpages/advancedsettings.php:62
|
668 |
+
#: adminpages/advancedsettings.php:67 adminpages/advancedsettings.php:68
|
669 |
msgid "Your advanced settings have been updated."
|
670 |
msgstr ""
|
671 |
|
672 |
#: adminpages/advancedsettings.php:106 includes/updates/upgrade_1.php:7
|
673 |
+
#: adminpages/advancedsettings.php:104 adminpages/advancedsettings.php:106
|
674 |
+
#: includes/updates/upgrade_1.php:7
|
675 |
#, php-format
|
676 |
msgid ""
|
677 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Join Now</a>"
|
678 |
msgstr ""
|
679 |
|
680 |
#: adminpages/advancedsettings.php:111 adminpages/advancedsettings.php:109
|
681 |
+
#: adminpages/advancedsettings.php:111
|
682 |
#, php-format
|
683 |
msgid ""
|
684 |
"This content is for !!levels!! members only.<br /><a href=\"%s\">Log In</a> "
|
689 |
#: adminpages/advancedsettings.php:76 adminpages/advancedsettings.php:78
|
690 |
#: adminpages/advancedsettings.php:81 adminpages/advancedsettings.php:95
|
691 |
#: adminpages/advancedsettings.php:97 adminpages/advancedsettings.php:99
|
692 |
+
#: adminpages/advancedsettings.php:114 adminpages/advancedsettings.php:116
|
693 |
+
#: includes/updates/upgrade_1.php:13
|
694 |
msgid ""
|
695 |
"This content is for members only. Visit the site and log in/register to read."
|
696 |
msgstr ""
|
697 |
|
698 |
#: adminpages/advancedsettings.php:140 adminpages/advancedsettings.php:138
|
699 |
+
#: adminpages/advancedsettings.php:140
|
700 |
msgid "WordPress Dashboard"
|
701 |
msgstr ""
|
702 |
|
703 |
#: adminpages/advancedsettings.php:143 adminpages/advancedsettings.php:141
|
704 |
+
#: adminpages/advancedsettings.php:143
|
705 |
msgid "Block all users with the Subscriber role from accessing the Dashboard."
|
706 |
msgstr ""
|
707 |
|
708 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:146
|
709 |
+
#: adminpages/advancedsettings.php:148
|
710 |
msgid "WordPress Toolbar"
|
711 |
msgstr ""
|
712 |
|
713 |
#: adminpages/advancedsettings.php:151 adminpages/advancedsettings.php:149
|
714 |
+
#: adminpages/advancedsettings.php:151
|
715 |
msgid "Hide the Toolbar from all users with the Subscriber role."
|
716 |
msgstr ""
|
717 |
|
719 |
#: adminpages/advancedsettings.php:92 adminpages/advancedsettings.php:94
|
720 |
#: adminpages/advancedsettings.php:97 adminpages/advancedsettings.php:113
|
721 |
#: adminpages/advancedsettings.php:115 adminpages/advancedsettings.php:118
|
722 |
+
#: adminpages/advancedsettings.php:162 adminpages/advancedsettings.php:164
|
723 |
msgid "Message for Logged-in Non-members"
|
724 |
msgstr ""
|
725 |
|
727 |
#: adminpages/advancedsettings.php:96 adminpages/advancedsettings.php:98
|
728 |
#: adminpages/advancedsettings.php:101 adminpages/advancedsettings.php:117
|
729 |
#: adminpages/advancedsettings.php:119 adminpages/advancedsettings.php:122
|
730 |
+
#: adminpages/advancedsettings.php:166 adminpages/advancedsettings.php:168
|
731 |
msgid ""
|
732 |
"This message replaces the post content for non-members. Available variables"
|
733 |
msgstr ""
|
736 |
#: adminpages/advancedsettings.php:101 adminpages/advancedsettings.php:103
|
737 |
#: adminpages/advancedsettings.php:106 adminpages/advancedsettings.php:122
|
738 |
#: adminpages/advancedsettings.php:124 adminpages/advancedsettings.php:127
|
739 |
+
#: adminpages/advancedsettings.php:171 adminpages/advancedsettings.php:173
|
740 |
msgid "Message for Logged-out Users"
|
741 |
msgstr ""
|
742 |
|
743 |
#: adminpages/advancedsettings.php:177 adminpages/advancedsettings.php:186
|
744 |
+
#: adminpages/advancedsettings.php:175 adminpages/advancedsettings.php:177
|
745 |
+
#: adminpages/advancedsettings.php:184 adminpages/advancedsettings.php:186
|
746 |
msgid "Available variables"
|
747 |
msgstr ""
|
748 |
|
750 |
#: adminpages/advancedsettings.php:105 adminpages/advancedsettings.php:107
|
751 |
#: adminpages/advancedsettings.php:110 adminpages/advancedsettings.php:126
|
752 |
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:131
|
753 |
+
#: adminpages/advancedsettings.php:175 adminpages/advancedsettings.php:177
|
754 |
msgid "This message replaces the post content for logged-out visitors."
|
755 |
msgstr ""
|
756 |
|
758 |
#: adminpages/advancedsettings.php:110 adminpages/advancedsettings.php:112
|
759 |
#: adminpages/advancedsettings.php:115 adminpages/advancedsettings.php:131
|
760 |
#: adminpages/advancedsettings.php:133 adminpages/advancedsettings.php:136
|
761 |
+
#: adminpages/advancedsettings.php:180 adminpages/advancedsettings.php:182
|
762 |
msgid "Message for RSS Feed"
|
763 |
msgstr ""
|
764 |
|
766 |
#: adminpages/advancedsettings.php:114 adminpages/advancedsettings.php:116
|
767 |
#: adminpages/advancedsettings.php:119 adminpages/advancedsettings.php:135
|
768 |
#: adminpages/advancedsettings.php:137 adminpages/advancedsettings.php:140
|
769 |
+
#: adminpages/advancedsettings.php:184 adminpages/advancedsettings.php:186
|
770 |
msgid "This message replaces the post content in RSS feeds."
|
771 |
msgstr ""
|
772 |
|
774 |
#: adminpages/advancedsettings.php:125 adminpages/advancedsettings.php:141
|
775 |
#: adminpages/advancedsettings.php:143 adminpages/advancedsettings.php:148
|
776 |
#: adminpages/advancedsettings.php:151 adminpages/advancedsettings.php:197
|
777 |
+
#: adminpages/advancedsettings.php:199
|
778 |
msgid "Filter searches and archives?"
|
779 |
msgstr ""
|
780 |
|
782 |
#: adminpages/advancedsettings.php:129 adminpages/advancedsettings.php:145
|
783 |
#: adminpages/advancedsettings.php:147 adminpages/advancedsettings.php:152
|
784 |
#: adminpages/advancedsettings.php:155 adminpages/advancedsettings.php:201
|
785 |
+
#: adminpages/advancedsettings.php:203
|
786 |
msgid ""
|
787 |
"No - Non-members will see restricted posts/pages in searches and archives."
|
788 |
msgstr ""
|
791 |
#: adminpages/advancedsettings.php:130 adminpages/advancedsettings.php:146
|
792 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:153
|
793 |
#: adminpages/advancedsettings.php:156 adminpages/advancedsettings.php:202
|
794 |
+
#: adminpages/advancedsettings.php:204
|
795 |
msgid ""
|
796 |
"Yes - Only members will see restricted posts/pages in searches and archives."
|
797 |
msgstr ""
|
801 |
#: adminpages/advancedsettings.php:136 adminpages/advancedsettings.php:152
|
802 |
#: adminpages/advancedsettings.php:154 adminpages/advancedsettings.php:159
|
803 |
#: adminpages/advancedsettings.php:162 adminpages/advancedsettings.php:208
|
804 |
+
#: adminpages/advancedsettings.php:210
|
805 |
msgid "Show Excerpts to Non-Members?"
|
806 |
msgstr ""
|
807 |
|
810 |
#: adminpages/advancedsettings.php:140 adminpages/advancedsettings.php:156
|
811 |
#: adminpages/advancedsettings.php:158 adminpages/advancedsettings.php:163
|
812 |
#: adminpages/advancedsettings.php:166 adminpages/advancedsettings.php:212
|
813 |
+
#: adminpages/advancedsettings.php:214
|
814 |
msgid "No - Hide excerpts."
|
815 |
msgstr ""
|
816 |
|
819 |
#: adminpages/advancedsettings.php:141 adminpages/advancedsettings.php:157
|
820 |
#: adminpages/advancedsettings.php:159 adminpages/advancedsettings.php:164
|
821 |
#: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:213
|
822 |
+
#: adminpages/advancedsettings.php:215
|
823 |
msgid "Yes - Show excerpts."
|
824 |
msgstr ""
|
825 |
|
826 |
#: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:218
|
827 |
#: adminpages/advancedsettings.php:225 adminpages/advancedsettings.php:227
|
828 |
+
#: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:238
|
829 |
+
#: adminpages/advancedsettings.php:241 adminpages/advancedsettings.php:257
|
830 |
+
#: adminpages/advancedsettings.php:266 adminpages/advancedsettings.php:290
|
831 |
+
#: adminpages/advancedsettings.php:308
|
832 |
msgid "Require Terms of Service on signups?"
|
833 |
msgstr ""
|
834 |
|
835 |
#: adminpages/advancedsettings.php:236 adminpages/advancedsettings.php:225
|
836 |
#: adminpages/advancedsettings.php:232 adminpages/advancedsettings.php:234
|
837 |
+
#: adminpages/advancedsettings.php:236 adminpages/advancedsettings.php:245
|
838 |
+
#: adminpages/advancedsettings.php:248 adminpages/advancedsettings.php:264
|
839 |
+
#: adminpages/advancedsettings.php:273 adminpages/advancedsettings.php:297
|
840 |
+
#: adminpages/advancedsettings.php:315
|
841 |
msgid ""
|
842 |
"If yes, create a WordPress page containing your TOS agreement and assign it "
|
843 |
"using the dropdown above."
|
848 |
#: adminpages/advancedsettings.php:202 adminpages/advancedsettings.php:215
|
849 |
#: adminpages/advancedsettings.php:218 adminpages/advancedsettings.php:234
|
850 |
#: adminpages/advancedsettings.php:236 adminpages/advancedsettings.php:239
|
851 |
+
#: adminpages/advancedsettings.php:241
|
852 |
msgid "Use reCAPTCHA?"
|
853 |
msgstr ""
|
854 |
|
869 |
#: adminpages/advancedsettings.php:225 adminpages/advancedsettings.php:226
|
870 |
#: adminpages/advancedsettings.php:228 adminpages/advancedsettings.php:238
|
871 |
#: adminpages/advancedsettings.php:240 adminpages/advancedsettings.php:243
|
872 |
+
#: adminpages/advancedsettings.php:245 adminpages/advancedsettings.php:282
|
873 |
+
#: adminpages/advancedsettings.php:300 adminpages/advancedsettings.php:335
|
874 |
+
#: adminpages/advancedsettings.php:337 adminpages/advancedsettings.php:392
|
875 |
+
#: adminpages/advancedsettings.php:393 adminpages/advancedsettings.php:471
|
876 |
#: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
|
877 |
#: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
|
878 |
#: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
|
886 |
#: adminpages/membershiplevels.php:818 adminpages/paymentsettings.php:210
|
887 |
#: adminpages/paymentsettings.php:219 adminpages/paymentsettings.php:236
|
888 |
#: adminpages/paymentsettings.php:253 adminpages/paymentsettings.php:256
|
889 |
+
#: adminpages/paymentsettings.php:257 adminpages/paymentsettings.php:259
|
890 |
+
#: adminpages/paymentsettings.php:414 adminpages/paymentsettings.php:429
|
891 |
+
#: adminpages/paymentsettings.php:434 adminpages/paymentsettings.php:436
|
892 |
+
#: adminpages/paymentsettings.php:454 adminpages/paymentsettings.php:459
|
893 |
+
#: adminpages/paymentsettings.php:461
|
894 |
#: classes/gateways/class.pmprogateway_stripe.php:173
|
895 |
#: classes/gateways/class.pmprogateway_stripe.php:174
|
896 |
#: classes/gateways/class.pmprogateway_stripe.php:184
|
909 |
#: classes/gateways/class.pmprogateway_stripe.php:319
|
910 |
#: classes/gateways/class.pmprogateway_stripe.php:320
|
911 |
#: classes/gateways/class.pmprogateway_stripe.php:321
|
912 |
+
#: classes/gateways/class.pmprogateway_stripe.php:393
|
913 |
#: includes/compatibility/beaver-builder.php:43
|
914 |
+
#: includes/compatibility/beaver-builder.php:137 includes/profile.php:89
|
915 |
+
#: includes/profile.php:101 includes/profile.php:105 includes/profile.php:110
|
916 |
+
#: includes/profile.php:117 includes/profile.php:120 includes/profile.php:121
|
917 |
+
#: includes/profile.php:123 includes/profile.php:125
|
918 |
msgid "No"
|
919 |
msgstr ""
|
920 |
|
923 |
#: adminpages/advancedsettings.php:207 adminpages/advancedsettings.php:220
|
924 |
#: adminpages/advancedsettings.php:223 adminpages/advancedsettings.php:239
|
925 |
#: adminpages/advancedsettings.php:241 adminpages/advancedsettings.php:244
|
926 |
+
#: adminpages/advancedsettings.php:246
|
927 |
msgid "Yes - Free memberships only."
|
928 |
msgstr ""
|
929 |
|
932 |
#: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:221
|
933 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:240
|
934 |
#: adminpages/advancedsettings.php:242 adminpages/advancedsettings.php:245
|
935 |
+
#: adminpages/advancedsettings.php:247
|
936 |
msgid "Yes - All memberships."
|
937 |
msgstr ""
|
938 |
|
941 |
#: adminpages/advancedsettings.php:210 adminpages/advancedsettings.php:223
|
942 |
#: adminpages/advancedsettings.php:226 adminpages/advancedsettings.php:242
|
943 |
#: adminpages/advancedsettings.php:244 adminpages/advancedsettings.php:247
|
944 |
+
#: adminpages/advancedsettings.php:249
|
945 |
msgid "A free reCAPTCHA key is required."
|
946 |
msgstr ""
|
947 |
|
950 |
#: adminpages/advancedsettings.php:210 adminpages/advancedsettings.php:223
|
951 |
#: adminpages/advancedsettings.php:226 adminpages/advancedsettings.php:242
|
952 |
#: adminpages/advancedsettings.php:244 adminpages/advancedsettings.php:247
|
953 |
+
#: adminpages/advancedsettings.php:249
|
954 |
msgid "Click here to signup for reCAPTCHA"
|
955 |
msgstr ""
|
956 |
|
957 |
#: adminpages/advancedsettings.php:257 adminpages/advancedsettings.php:192
|
958 |
#: adminpages/advancedsettings.php:195 adminpages/advancedsettings.php:250
|
959 |
+
#: adminpages/advancedsettings.php:255 adminpages/advancedsettings.php:257
|
960 |
msgid "reCAPTCHA Version"
|
961 |
msgstr ""
|
962 |
|
963 |
#: adminpages/advancedsettings.php:260 adminpages/advancedsettings.php:195
|
964 |
#: adminpages/advancedsettings.php:198 adminpages/advancedsettings.php:252
|
965 |
+
#: adminpages/advancedsettings.php:258 adminpages/advancedsettings.php:260
|
966 |
msgid " v2 - Checkbox"
|
967 |
msgstr ""
|
968 |
|
969 |
#: adminpages/advancedsettings.php:261 adminpages/advancedsettings.php:196
|
970 |
#: adminpages/advancedsettings.php:199 adminpages/advancedsettings.php:253
|
971 |
+
#: adminpages/advancedsettings.php:259 adminpages/advancedsettings.php:261
|
972 |
msgid "v3 - Invisible"
|
973 |
msgstr ""
|
974 |
|
975 |
#: adminpages/advancedsettings.php:263 adminpages/advancedsettings.php:198
|
976 |
#: adminpages/advancedsettings.php:201 adminpages/advancedsettings.php:255
|
977 |
+
#: adminpages/advancedsettings.php:261 adminpages/advancedsettings.php:263
|
978 |
msgid "Changing your version will require new API keys."
|
979 |
msgstr ""
|
980 |
|
981 |
#: adminpages/advancedsettings.php:267 adminpages/advancedsettings.php:202
|
982 |
#: adminpages/advancedsettings.php:205 adminpages/advancedsettings.php:248
|
983 |
#: adminpages/advancedsettings.php:257 adminpages/advancedsettings.php:265
|
984 |
+
#: adminpages/advancedsettings.php:267
|
985 |
msgid "reCAPTCHA Site Key"
|
986 |
msgstr ""
|
987 |
|
988 |
#: adminpages/advancedsettings.php:273 adminpages/advancedsettings.php:208
|
989 |
#: adminpages/advancedsettings.php:211 adminpages/advancedsettings.php:251
|
990 |
#: adminpages/advancedsettings.php:260 adminpages/advancedsettings.php:271
|
991 |
+
#: adminpages/advancedsettings.php:273
|
992 |
msgid "reCAPTCHA Secret Key"
|
993 |
msgstr ""
|
994 |
|
995 |
#: adminpages/advancedsettings.php:286 adminpages/advancedsettings.php:246
|
996 |
+
#: adminpages/advancedsettings.php:284 adminpages/advancedsettings.php:286
|
997 |
msgid "Notifications"
|
998 |
msgstr ""
|
999 |
|
1000 |
#: adminpages/advancedsettings.php:290 adminpages/advancedsettings.php:250
|
1001 |
+
#: adminpages/advancedsettings.php:288 adminpages/advancedsettings.php:290
|
1002 |
msgid "Show all notifications."
|
1003 |
msgstr ""
|
1004 |
|
1005 |
#: adminpages/advancedsettings.php:293 adminpages/advancedsettings.php:253
|
1006 |
+
#: adminpages/advancedsettings.php:291 adminpages/advancedsettings.php:293
|
1007 |
msgid "Show only security notifications."
|
1008 |
msgstr ""
|
1009 |
|
1010 |
#: adminpages/advancedsettings.php:297 adminpages/advancedsettings.php:257
|
1011 |
+
#: adminpages/advancedsettings.php:295 adminpages/advancedsettings.php:297
|
1012 |
msgid ""
|
1013 |
"Notifications are occasionally shown on the Paid Memberships Pro settings "
|
1014 |
"pages."
|
1015 |
msgstr ""
|
1016 |
|
1017 |
#: adminpages/advancedsettings.php:302 adminpages/advancedsettings.php:300
|
1018 |
+
#: adminpages/advancedsettings.php:302
|
1019 |
msgid "Activity Email Frequency"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:351
|
1023 |
#: adminpages/reports/sales.php:290 adminpages/advancedsettings.php:305
|
1024 |
+
#: adminpages/advancedsettings.php:307 adminpages/reports/memberships.php:258
|
1025 |
#: adminpages/reports/memberships.php:265
|
1026 |
#: adminpages/reports/memberships.php:278
|
1027 |
#: adminpages/reports/memberships.php:294
|
1035 |
msgstr ""
|
1036 |
|
1037 |
#: adminpages/advancedsettings.php:310 adminpages/advancedsettings.php:308
|
1038 |
+
#: adminpages/advancedsettings.php:310
|
1039 |
msgid "Weekly"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:352
|
1043 |
#: adminpages/reports/sales.php:291 adminpages/advancedsettings.php:311
|
1044 |
+
#: adminpages/advancedsettings.php:313 adminpages/reports/memberships.php:259
|
1045 |
#: adminpages/reports/memberships.php:266
|
1046 |
#: adminpages/reports/memberships.php:279
|
1047 |
#: adminpages/reports/memberships.php:295
|
1055 |
msgstr ""
|
1056 |
|
1057 |
#: adminpages/advancedsettings.php:316 includes/privacy.php:175
|
1058 |
+
#: adminpages/advancedsettings.php:314 adminpages/advancedsettings.php:316
|
1059 |
+
#: adminpages/memberslist.php:184 adminpages/memberslist.php:212
|
1060 |
+
#: includes/privacy.php:175
|
1061 |
msgid "Never"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
#: adminpages/advancedsettings.php:320 adminpages/advancedsettings.php:318
|
1065 |
+
#: adminpages/advancedsettings.php:320
|
1066 |
msgid ""
|
1067 |
"Send periodic sales and revenue updates from this site to the administration "
|
1068 |
"email address."
|
1072 |
#: adminpages/advancedsettings.php:147 adminpages/advancedsettings.php:163
|
1073 |
#: adminpages/advancedsettings.php:165 adminpages/advancedsettings.php:221
|
1074 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:331
|
1075 |
+
#: adminpages/advancedsettings.php:333
|
1076 |
msgid "Hide Ads From Members?"
|
1077 |
msgstr ""
|
1078 |
|
1081 |
#: adminpages/advancedsettings.php:152 adminpages/advancedsettings.php:168
|
1082 |
#: adminpages/advancedsettings.php:170 adminpages/advancedsettings.php:226
|
1083 |
#: adminpages/advancedsettings.php:229 adminpages/advancedsettings.php:336
|
1084 |
+
#: adminpages/advancedsettings.php:338
|
1085 |
msgid "Hide Ads From All Members"
|
1086 |
msgstr ""
|
1087 |
|
1090 |
#: adminpages/advancedsettings.php:153 adminpages/advancedsettings.php:169
|
1091 |
#: adminpages/advancedsettings.php:171 adminpages/advancedsettings.php:227
|
1092 |
#: adminpages/advancedsettings.php:230 adminpages/advancedsettings.php:337
|
1093 |
+
#: adminpages/advancedsettings.php:339
|
1094 |
msgid "Hide Ads From Certain Members"
|
1095 |
msgstr ""
|
1096 |
|
1099 |
#: adminpages/advancedsettings.php:161 adminpages/advancedsettings.php:177
|
1100 |
#: adminpages/advancedsettings.php:179 adminpages/advancedsettings.php:235
|
1101 |
#: adminpages/advancedsettings.php:238 adminpages/advancedsettings.php:345
|
1102 |
+
#: adminpages/advancedsettings.php:346
|
1103 |
msgid "To hide ads in your template code, use code like the following"
|
1104 |
msgstr ""
|
1105 |
|
1108 |
#: adminpages/advancedsettings.php:172 adminpages/advancedsettings.php:188
|
1109 |
#: adminpages/advancedsettings.php:190 adminpages/advancedsettings.php:244
|
1110 |
#: adminpages/advancedsettings.php:262 adminpages/advancedsettings.php:354
|
1111 |
+
#: adminpages/advancedsettings.php:355
|
1112 |
msgid "Choose Levels to Hide Ads From"
|
1113 |
msgstr ""
|
1114 |
|
1117 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1118 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
1119 |
#: adminpages/advancedsettings.php:296 adminpages/advancedsettings.php:388
|
1120 |
+
#: adminpages/advancedsettings.php:389
|
1121 |
msgid "Redirect all traffic from registration page to /susbcription/?"
|
1122 |
msgstr ""
|
1123 |
|
1126 |
#: adminpages/advancedsettings.php:206 adminpages/advancedsettings.php:222
|
1127 |
#: adminpages/advancedsettings.php:224 adminpages/advancedsettings.php:278
|
1128 |
#: adminpages/advancedsettings.php:296 adminpages/advancedsettings.php:388
|
1129 |
+
#: adminpages/advancedsettings.php:389
|
1130 |
msgid "multisite only"
|
1131 |
msgstr ""
|
1132 |
|
1139 |
#: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:211
|
1140 |
#: adminpages/advancedsettings.php:227 adminpages/advancedsettings.php:229
|
1141 |
#: adminpages/advancedsettings.php:283 adminpages/advancedsettings.php:301
|
1142 |
+
#: adminpages/advancedsettings.php:393 adminpages/advancedsettings.php:394
|
1143 |
+
#: adminpages/membershiplevels.php:563 adminpages/membershiplevels.php:569
|
1144 |
+
#: adminpages/membershiplevels.php:571 adminpages/membershiplevels.php:578
|
1145 |
+
#: adminpages/membershiplevels.php:598 adminpages/membershiplevels.php:658
|
1146 |
+
#: adminpages/membershiplevels.php:660 adminpages/membershiplevels.php:662
|
1147 |
+
#: adminpages/membershiplevels.php:667 adminpages/membershiplevels.php:668
|
1148 |
+
#: adminpages/membershiplevels.php:672 adminpages/membershiplevels.php:684
|
1149 |
+
#: adminpages/membershiplevels.php:694 adminpages/membershiplevels.php:744
|
1150 |
+
#: adminpages/membershiplevels.php:746 adminpages/membershiplevels.php:779
|
1151 |
+
#: adminpages/membershiplevels.php:796 adminpages/membershiplevels.php:801
|
1152 |
+
#: adminpages/membershiplevels.php:806 adminpages/membershiplevels.php:811
|
1153 |
+
#: adminpages/membershiplevels.php:818 adminpages/paymentsettings.php:211
|
1154 |
+
#: adminpages/paymentsettings.php:220 adminpages/paymentsettings.php:237
|
1155 |
+
#: adminpages/paymentsettings.php:254 adminpages/paymentsettings.php:257
|
1156 |
+
#: adminpages/paymentsettings.php:258 adminpages/paymentsettings.php:260
|
1157 |
#: adminpages/paymentsettings.php:415 adminpages/paymentsettings.php:424
|
1158 |
#: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:435
|
1159 |
#: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:455
|
1176 |
#: classes/gateways/class.pmprogateway_stripe.php:321
|
1177 |
#: classes/gateways/class.pmprogateway_stripe.php:322
|
1178 |
#: classes/gateways/class.pmprogateway_stripe.php:323
|
1179 |
+
#: classes/gateways/class.pmprogateway_stripe.php:395
|
1180 |
#: includes/compatibility/beaver-builder.php:42
|
1181 |
+
#: includes/compatibility/beaver-builder.php:136 includes/profile.php:90
|
1182 |
+
#: includes/profile.php:102 includes/profile.php:106 includes/profile.php:111
|
1183 |
+
#: includes/profile.php:118 includes/profile.php:121 includes/profile.php:122
|
1184 |
+
#: includes/profile.php:124 includes/profile.php:126
|
1185 |
msgid "Yes"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: adminpages/advancedsettings.php:467 adminpages/advancedsettings.php:467
|
1189 |
msgid "Uninstall PMPro on deletion?"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: adminpages/advancedsettings.php:472 adminpages/advancedsettings.php:472
|
1193 |
msgid "Yes - Delete all PMPro Data."
|
1194 |
msgstr ""
|
1195 |
|
1199 |
#: adminpages/advancedsettings.php:368 adminpages/advancedsettings.php:375
|
1200 |
#: adminpages/advancedsettings.php:384 adminpages/advancedsettings.php:407
|
1201 |
#: adminpages/advancedsettings.php:427 adminpages/advancedsettings.php:507
|
1202 |
+
#: adminpages/advancedsettings.php:520 adminpages/pagesettings.php:209
|
1203 |
+
#: adminpages/pagesettings.php:223 adminpages/pagesettings.php:251
|
1204 |
+
#: adminpages/pagesettings.php:254 adminpages/pagesettings.php:294
|
1205 |
+
#: adminpages/pagesettings.php:295 adminpages/pagesettings.php:310
|
1206 |
+
#: adminpages/pagesettings.php:315 adminpages/pagesettings.php:329
|
1207 |
+
#: adminpages/pagesettings.php:331 adminpages/pagesettings.php:338
|
1208 |
+
#: adminpages/pagesettings.php:439 adminpages/paymentsettings.php:238
|
1209 |
+
#: adminpages/paymentsettings.php:250 adminpages/paymentsettings.php:267
|
1210 |
+
#: adminpages/paymentsettings.php:284 adminpages/paymentsettings.php:287
|
1211 |
+
#: adminpages/paymentsettings.php:288 adminpages/paymentsettings.php:290
|
1212 |
#: adminpages/paymentsettings.php:485 adminpages/paymentsettings.php:526
|
1213 |
#: adminpages/paymentsettings.php:532 adminpages/paymentsettings.php:534
|
1214 |
msgid "Save Settings"
|
1301 |
#: adminpages/dashboard.php:219 adminpages/reports/login.php:179
|
1302 |
#: classes/class.memberorder.php:870 pages/checkout.php:118
|
1303 |
#: shortcodes/pmpro_account.php:160 adminpages/dashboard.php:215
|
1304 |
+
#: adminpages/dashboard.php:219 adminpages/dashboard.php:223
|
1305 |
+
#: adminpages/memberslist.php:112 adminpages/memberslist.php:145
|
1306 |
+
#: adminpages/memberslist.php:155 adminpages/memberslist.php:165
|
1307 |
+
#: adminpages/memberslist.php:169 adminpages/orders.php:1298
|
1308 |
+
#: adminpages/orders.php:1304 adminpages/orders.php:1313
|
1309 |
+
#: adminpages/reports/login.php:179 classes/class.memberorder.php:858
|
1310 |
+
#: classes/class.memberorder.php:870 pages/account.php:51 pages/account.php:55
|
1311 |
+
#: pages/account.php:76 pages/checkout.php:118 pages/checkout.php:167
|
1312 |
+
#: pages/checkout.php:168 pages/checkout.php:171 pages/checkout.php:173
|
1313 |
+
#: pages/checkout.php:175 pages/checkout.php:180 pages/checkout.php:182
|
1314 |
+
#: pages/checkout.php:184 pages/checkout.php:191 pages/checkout.php:194
|
1315 |
#: shortcodes/pmpro_account.php:105 shortcodes/pmpro_account.php:107
|
1316 |
#: shortcodes/pmpro_account.php:108 shortcodes/pmpro_account.php:110
|
1317 |
+
#: shortcodes/pmpro_account.php:159 shortcodes/pmpro_account.php:160
|
1318 |
msgid "Username"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
#: adminpages/dashboard.php:220 adminpages/dashboard.php:288
|
1322 |
#: adminpages/reports/login.php:181 includes/privacy.php:241
|
1323 |
+
#: pages/billing.php:58 pages/cancel.php:60 pages/invoice.php:112
|
1324 |
#: pages/levels.php:35 shortcodes/pmpro_account.php:42
|
1325 |
#: shortcodes/pmpro_account.php:211 adminpages/dashboard.php:216
|
1326 |
+
#: adminpages/dashboard.php:220 adminpages/dashboard.php:284
|
1327 |
+
#: adminpages/dashboard.php:288 adminpages/dashboard.php:292
|
1328 |
#: adminpages/memberslist.php:175 adminpages/orders.php:1300
|
1329 |
#: adminpages/orders.php:1306 adminpages/orders.php:1315
|
1330 |
#: adminpages/reports/login.php:181 includes/privacy.php:241
|
1332 |
#: pages/billing.php:16 pages/billing.php:25 pages/billing.php:27
|
1333 |
#: pages/billing.php:28 pages/billing.php:30 pages/billing.php:41
|
1334 |
#: pages/billing.php:44 pages/billing.php:45 pages/billing.php:49
|
1335 |
+
#: pages/billing.php:50 pages/billing.php:57 pages/billing.php:58
|
1336 |
+
#: pages/cancel.php:52 pages/cancel.php:60 pages/cancel.php:61
|
1337 |
+
#: pages/invoice.php:89 pages/invoice.php:101 pages/invoice.php:102
|
1338 |
+
#: pages/invoice.php:103 pages/invoice.php:104 pages/invoice.php:109
|
1339 |
+
#: pages/levels.php:13 pages/levels.php:35 shortcodes/pmpro_account.php:42
|
1340 |
#: shortcodes/pmpro_account.php:43 shortcodes/pmpro_account.php:44
|
1341 |
#: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:125
|
1342 |
#: shortcodes/pmpro_account.php:126 shortcodes/pmpro_account.php:128
|
1343 |
+
#: shortcodes/pmpro_account.php:204 shortcodes/pmpro_account.php:211
|
1344 |
msgid "Level"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
#: adminpages/dashboard.php:221 adminpages/reports/login.php:182
|
1348 |
+
#: adminpages/dashboard.php:217 adminpages/dashboard.php:221
|
1349 |
+
#: adminpages/dashboard.php:225 adminpages/memberslist.php:120
|
1350 |
+
#: adminpages/memberslist.php:153 adminpages/memberslist.php:163
|
1351 |
+
#: adminpages/memberslist.php:173 adminpages/memberslist.php:177
|
1352 |
+
#: adminpages/reports/login.php:144 adminpages/reports/login.php:146
|
1353 |
+
#: adminpages/reports/login.php:162 adminpages/reports/login.php:166
|
1354 |
+
#: adminpages/reports/login.php:182
|
1355 |
msgid "Joined"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
#: adminpages/dashboard.php:222 adminpages/discountcodes.php:750
|
1359 |
#: adminpages/reports/login.php:183 includes/profile.php:86
|
1360 |
+
#: adminpages/dashboard.php:218 adminpages/dashboard.php:222
|
1361 |
+
#: adminpages/dashboard.php:226 adminpages/discountcodes.php:550
|
1362 |
+
#: adminpages/discountcodes.php:560 adminpages/discountcodes.php:588
|
1363 |
+
#: adminpages/discountcodes.php:589 adminpages/discountcodes.php:590
|
1364 |
+
#: adminpages/discountcodes.php:595 adminpages/discountcodes.php:668
|
1365 |
+
#: adminpages/discountcodes.php:722 adminpages/discountcodes.php:748
|
1366 |
+
#: adminpages/discountcodes.php:749 adminpages/discountcodes.php:750
|
1367 |
+
#: adminpages/memberslist.php:121 adminpages/memberslist.php:159
|
1368 |
+
#: adminpages/memberslist.php:169 adminpages/memberslist.php:179
|
1369 |
+
#: adminpages/memberslist.php:183 adminpages/memberslist.php:187
|
1370 |
+
#: adminpages/reports/login.php:145 adminpages/reports/login.php:147
|
1371 |
+
#: adminpages/reports/login.php:163 adminpages/reports/login.php:167
|
1372 |
+
#: adminpages/reports/login.php:183 includes/profile.php:86
|
1373 |
#: includes/profile.php:98 includes/profile.php:102 includes/profile.php:107
|
1374 |
#: includes/profile.php:114 includes/profile.php:117 includes/profile.php:118
|
1375 |
#: includes/profile.php:120 includes/profile.php:122
|
1378 |
|
1379 |
#: adminpages/dashboard.php:228 adminpages/reports/login.php:261
|
1380 |
#: classes/class-pmpro-members-list-table.php:226 adminpages/dashboard.php:224
|
1381 |
+
#: adminpages/dashboard.php:228 adminpages/dashboard.php:232
|
1382 |
+
#: adminpages/memberslist.php:195 adminpages/memberslist.php:223
|
1383 |
+
#: adminpages/memberslist.php:251 adminpages/memberslist.php:261
|
1384 |
+
#: adminpages/memberslist.php:262 adminpages/memberslist.php:266
|
1385 |
+
#: adminpages/memberslist.php:268 adminpages/memberslist.php:272
|
1386 |
+
#: adminpages/reports/login.php:210 adminpages/reports/login.php:212
|
1387 |
+
#: adminpages/reports/login.php:228 adminpages/reports/login.php:232
|
1388 |
+
#: adminpages/reports/login.php:261
|
1389 |
#: classes/class-pmpro-members-list-table.php:226
|
1390 |
#: classes/class-pmpro-members-list-table.php:252
|
1391 |
#: classes/class-pmpro-members-list-table.php:257
|
1394 |
|
1395 |
#: adminpages/dashboard.php:286 adminpages/discountcodes.php:449
|
1396 |
#: adminpages/discountcodes.php:748 adminpages/orders.php:415
|
1397 |
+
#: adminpages/dashboard.php:282 adminpages/dashboard.php:286
|
1398 |
+
#: adminpages/dashboard.php:290 adminpages/discountcodes.php:311
|
1399 |
+
#: adminpages/discountcodes.php:314 adminpages/discountcodes.php:315
|
1400 |
+
#: adminpages/discountcodes.php:316 adminpages/discountcodes.php:321
|
1401 |
+
#: adminpages/discountcodes.php:386 adminpages/discountcodes.php:427
|
1402 |
+
#: adminpages/discountcodes.php:447 adminpages/discountcodes.php:449
|
1403 |
+
#: adminpages/discountcodes.php:548 adminpages/discountcodes.php:558
|
1404 |
+
#: adminpages/discountcodes.php:586 adminpages/discountcodes.php:587
|
1405 |
+
#: adminpages/discountcodes.php:588 adminpages/discountcodes.php:593
|
1406 |
+
#: adminpages/discountcodes.php:666 adminpages/discountcodes.php:720
|
1407 |
+
#: adminpages/discountcodes.php:746 adminpages/discountcodes.php:747
|
1408 |
+
#: adminpages/discountcodes.php:748 adminpages/orders.php:215
|
1409 |
+
#: adminpages/orders.php:265 adminpages/orders.php:337
|
1410 |
+
#: adminpages/orders.php:349 adminpages/orders.php:366
|
1411 |
+
#: adminpages/orders.php:380 adminpages/orders.php:391
|
1412 |
+
#: adminpages/orders.php:401 adminpages/orders.php:408
|
1413 |
+
#: adminpages/orders.php:409 adminpages/orders.php:413
|
1414 |
+
#: adminpages/orders.php:415 adminpages/orders.php:419
|
1415 |
#: adminpages/orders.php:598 adminpages/orders.php:901
|
1416 |
#: adminpages/orders.php:911 adminpages/orders.php:938
|
1417 |
#: adminpages/orders.php:967 adminpages/orders.php:1104
|
1424 |
|
1425 |
#: adminpages/dashboard.php:287
|
1426 |
#: classes/gateways/class.pmprogateway_payflowpro.php:117
|
1427 |
+
#: adminpages/dashboard.php:283 adminpages/dashboard.php:287
|
1428 |
+
#: adminpages/dashboard.php:291 adminpages/orders.php:599
|
1429 |
+
#: adminpages/orders.php:902 adminpages/orders.php:912
|
1430 |
+
#: adminpages/orders.php:939 adminpages/orders.php:968
|
1431 |
+
#: adminpages/orders.php:1105 adminpages/orders.php:1136
|
1432 |
+
#: adminpages/orders.php:1142 adminpages/orders.php:1233
|
1433 |
+
#: adminpages/orders.php:1309 adminpages/orders.php:1354
|
1434 |
+
#: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:215
|
1435 |
+
#: adminpages/paymentsettings.php:220 adminpages/reports/login.php:141
|
1436 |
+
#: adminpages/reports/login.php:143 adminpages/reports/login.php:159
|
1437 |
+
#: adminpages/reports/login.php:163 adminpages/reports/login.php:179
|
1438 |
#: classes/gateways/class.pmprogateway_payflowpro.php:116
|
1439 |
#: classes/gateways/class.pmprogateway_payflowpro.php:117
|
1440 |
msgid "User"
|
1442 |
|
1443 |
#: adminpages/dashboard.php:289 adminpages/templates/orders-email.php:64
|
1444 |
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
1445 |
+
#: pages/confirmation.php:98 pages/invoice.php:88 adminpages/dashboard.php:285
|
1446 |
+
#: adminpages/dashboard.php:289 adminpages/dashboard.php:293
|
1447 |
+
#: adminpages/orders.php:320 adminpages/orders.php:370
|
1448 |
+
#: adminpages/orders.php:442 adminpages/orders.php:471
|
1449 |
+
#: adminpages/orders.php:504 adminpages/orders.php:535
|
1450 |
+
#: adminpages/orders.php:546 adminpages/orders.php:582
|
1451 |
+
#: adminpages/orders.php:602 adminpages/orders.php:622
|
1452 |
+
#: adminpages/orders.php:626 adminpages/orders.php:627
|
1453 |
+
#: adminpages/orders.php:637 adminpages/orders.php:905
|
1454 |
+
#: adminpages/orders.php:915 adminpages/orders.php:942
|
1455 |
+
#: adminpages/orders.php:971 adminpages/orders.php:1108
|
1456 |
+
#: adminpages/orders.php:1139 adminpages/orders.php:1145
|
1457 |
+
#: adminpages/orders.php:1236 adminpages/orders.php:1301
|
1458 |
+
#: adminpages/orders.php:1307 adminpages/orders.php:1312
|
1459 |
+
#: adminpages/orders.php:1316 adminpages/orders.php:1357
|
1460 |
+
#: adminpages/templates/orders-email.php:64
|
1461 |
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
1462 |
#: pages/confirmation.php:95 pages/confirmation.php:96
|
1463 |
#: pages/confirmation.php:98 pages/invoice.php:77 pages/invoice.php:78
|
1467 |
msgstr ""
|
1468 |
|
1469 |
#: adminpages/dashboard.php:290 includes/privacy.php:202
|
1470 |
+
#: includes/privacy.php:309 pages/invoice.php:28
|
1471 |
#: shortcodes/pmpro_account.php:213 adminpages/dashboard.php:286
|
1472 |
+
#: adminpages/dashboard.php:290 adminpages/dashboard.php:294
|
1473 |
+
#: adminpages/orders.php:373 adminpages/orders.php:423
|
1474 |
+
#: adminpages/orders.php:495 adminpages/orders.php:524
|
1475 |
+
#: adminpages/orders.php:579 adminpages/orders.php:606
|
1476 |
+
#: adminpages/orders.php:610 adminpages/orders.php:621
|
1477 |
+
#: adminpages/orders.php:667 adminpages/orders.php:705
|
1478 |
+
#: adminpages/orders.php:709 adminpages/orders.php:710
|
1479 |
+
#: adminpages/orders.php:712 adminpages/orders.php:722
|
1480 |
+
#: adminpages/orders.php:909 adminpages/orders.php:919
|
1481 |
+
#: adminpages/orders.php:946 adminpages/orders.php:975
|
1482 |
+
#: adminpages/orders.php:1112 adminpages/orders.php:1143
|
1483 |
+
#: adminpages/orders.php:1149 adminpages/orders.php:1240
|
1484 |
+
#: adminpages/orders.php:1305 adminpages/orders.php:1311
|
1485 |
+
#: adminpages/orders.php:1316 adminpages/orders.php:1320
|
1486 |
+
#: adminpages/orders.php:1361 includes/privacy.php:202 includes/privacy.php:309
|
1487 |
+
#: pages/invoice.php:27 pages/invoice.php:29 shortcodes/pmpro_account.php:130
|
1488 |
+
#: shortcodes/pmpro_account.php:206 shortcodes/pmpro_account.php:213
|
1489 |
msgid "Status"
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: adminpages/dashboard.php:291 pages/invoice.php:110
|
1493 |
#: shortcodes/pmpro_account.php:210 adminpages/dashboard.php:287
|
1494 |
+
#: adminpages/dashboard.php:291 adminpages/dashboard.php:295
|
1495 |
+
#: adminpages/orders.php:442 adminpages/orders.php:492
|
1496 |
+
#: adminpages/orders.php:493 adminpages/orders.php:565
|
1497 |
+
#: adminpages/orders.php:594 adminpages/orders.php:607
|
1498 |
+
#: adminpages/orders.php:679 adminpages/orders.php:710
|
1499 |
+
#: adminpages/orders.php:721 adminpages/orders.php:770
|
1500 |
+
#: adminpages/orders.php:806 adminpages/orders.php:810
|
1501 |
+
#: adminpages/orders.php:811 adminpages/orders.php:815
|
1502 |
+
#: adminpages/orders.php:825 adminpages/orders.php:910
|
1503 |
+
#: adminpages/orders.php:920 adminpages/orders.php:947
|
1504 |
+
#: adminpages/orders.php:976 adminpages/orders.php:1113
|
1505 |
+
#: adminpages/orders.php:1144 adminpages/orders.php:1150
|
1506 |
+
#: adminpages/orders.php:1241 adminpages/orders.php:1306
|
1507 |
+
#: adminpages/orders.php:1312 adminpages/orders.php:1317
|
1508 |
+
#: adminpages/orders.php:1321 adminpages/orders.php:1362 pages/account.php:91
|
1509 |
+
#: pages/invoice.php:87 pages/invoice.php:99 pages/invoice.php:100
|
1510 |
+
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:105
|
1511 |
+
#: pages/invoice.php:107 shortcodes/pmpro_account.php:122
|
1512 |
+
#: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:125
|
1513 |
+
#: shortcodes/pmpro_account.php:127 shortcodes/pmpro_account.php:203
|
1514 |
+
#: shortcodes/pmpro_account.php:210
|
1515 |
msgid "Date"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
#: adminpages/dashboard.php:298 adminpages/dashboard.php:294
|
1519 |
+
#: adminpages/dashboard.php:298 adminpages/dashboard.php:302
|
1520 |
+
#: adminpages/orders.php:674 adminpages/orders.php:977
|
1521 |
+
#: adminpages/orders.php:995 adminpages/orders.php:1005
|
1522 |
+
#: adminpages/orders.php:1008 adminpages/orders.php:1043
|
1523 |
+
#: adminpages/orders.php:1072 adminpages/orders.php:1228
|
1524 |
+
#: adminpages/orders.php:1262 adminpages/orders.php:1268
|
1525 |
+
#: adminpages/orders.php:1383 adminpages/orders.php:1457
|
1526 |
+
#: adminpages/orders.php:1462 adminpages/orders.php:1463
|
1527 |
+
#: adminpages/orders.php:1478 adminpages/orders.php:1512
|
1528 |
msgid "No orders found."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
#: adminpages/dashboard.php:315 adminpages/dashboard.php:330
|
1532 |
+
#: adminpages/dashboard.php:311 adminpages/dashboard.php:315
|
1533 |
+
#: adminpages/dashboard.php:319 adminpages/dashboard.php:326
|
1534 |
+
#: adminpages/dashboard.php:330 adminpages/orders.php:630
|
1535 |
#: adminpages/orders.php:933 adminpages/orders.php:943
|
1536 |
#: adminpages/orders.php:972 adminpages/orders.php:1001
|
1537 |
#: adminpages/orders.php:1141 adminpages/orders.php:1172
|
1544 |
msgstr ""
|
1545 |
|
1546 |
#: adminpages/dashboard.php:317 adminpages/dashboard.php:332
|
1547 |
+
#: adminpages/dashboard.php:313 adminpages/dashboard.php:317
|
1548 |
+
#: adminpages/dashboard.php:321 adminpages/dashboard.php:328
|
1549 |
+
#: adminpages/dashboard.php:332 adminpages/orders.php:1275
|
1550 |
#: adminpages/orders.php:1347 adminpages/orders.php:1371
|
1551 |
#: adminpages/orders.php:1376 adminpages/orders.php:1377
|
1552 |
#: adminpages/orders.php:1386 adminpages/orders.php:1397
|
1558 |
#: classes/class-pmpro-admin-activity-email.php:344
|
1559 |
#: adminpages/dashboard.php:372 adminpages/dashboard.php:377
|
1560 |
#: adminpages/dashboard.php:380 adminpages/dashboard.php:383
|
1561 |
+
#: adminpages/dashboard.php:387
|
1562 |
#: classes/class-pmpro-admin-activity-email.php:344
|
1563 |
msgid "No news found."
|
1564 |
msgstr ""
|
1565 |
|
1566 |
#: adminpages/dashboard.php:393 adminpages/dashboard.php:378
|
1567 |
#: adminpages/dashboard.php:383 adminpages/dashboard.php:386
|
1568 |
+
#: adminpages/dashboard.php:389 adminpages/dashboard.php:393
|
1569 |
#, php-format
|
1570 |
msgid "Posted %s"
|
1571 |
msgstr ""
|
1738 |
#: adminpages/orders.php:375 adminpages/orders.php:386
|
1739 |
#: adminpages/orders.php:394 adminpages/orders.php:401
|
1740 |
#: adminpages/orders.php:402 adminpages/orders.php:406
|
1741 |
+
#: adminpages/orders.php:408 adminpages/orders.php:412
|
1742 |
msgid "This will be generated when you save."
|
1743 |
msgstr ""
|
1744 |
|
1753 |
|
1754 |
#: adminpages/discountcodes.php:505
|
1755 |
#: classes/gateways/class.pmprogateway_braintree.php:479
|
1756 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1001 pages/billing.php:363
|
1757 |
#: pages/checkout.php:389 adminpages/discountcodes.php:367
|
1758 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
1759 |
#: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
|
1793 |
#: classes/gateways/class.pmprogateway_stripe.php:621
|
1794 |
#: classes/gateways/class.pmprogateway_stripe.php:628
|
1795 |
#: classes/gateways/class.pmprogateway_stripe.php:629
|
1796 |
+
#: classes/gateways/class.pmprogateway_stripe.php:630
|
1797 |
+
#: classes/gateways/class.pmprogateway_stripe.php:931 pages/billing.php:249
|
1798 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
|
1799 |
#: pages/billing.php:268 pages/billing.php:310 pages/billing.php:313
|
1800 |
#: pages/billing.php:316 pages/billing.php:317 pages/billing.php:319
|
1801 |
#: pages/billing.php:321 pages/billing.php:322 pages/billing.php:330
|
1802 |
+
#: pages/billing.php:339 pages/billing.php:342 pages/billing.php:363
|
1803 |
+
#: pages/checkout.php:389 pages/checkout.php:463 pages/checkout.php:471
|
1804 |
+
#: pages/checkout.php:508 pages/checkout.php:524 pages/checkout.php:525
|
1805 |
+
#: pages/checkout.php:532 pages/checkout.php:553 pages/checkout.php:562
|
1806 |
+
#: pages/checkout.php:571 pages/checkout.php:575 pages/checkout.php:582
|
1807 |
+
#: pages/checkout.php:585
|
1808 |
msgid "Expiration Date"
|
1809 |
msgstr ""
|
1810 |
|
1913 |
msgstr ""
|
1914 |
|
1915 |
#: adminpages/discountcodes.php:605 adminpages/membershiplevels.php:433
|
1916 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1178
|
1917 |
#: adminpages/discountcodes.php:603 adminpages/discountcodes.php:605
|
1918 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
1919 |
#: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
|
1942 |
#: classes/gateways/class.pmprogateway_stripe.php:784
|
1943 |
#: classes/gateways/class.pmprogateway_stripe.php:785
|
1944 |
#: classes/gateways/class.pmprogateway_stripe.php:786
|
1945 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1108
|
1946 |
msgid "per"
|
1947 |
msgstr ""
|
1948 |
|
1949 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
1950 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
1951 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1044
|
1952 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1953 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1954 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
1992 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
1993 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1994 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
1995 |
+
#: classes/gateways/class.pmprogateway_stripe.php:974
|
1996 |
msgid "Day(s)"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
2000 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
2001 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1046
|
2002 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2003 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
2004 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
2042 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
2043 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
2044 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
2045 |
+
#: classes/gateways/class.pmprogateway_stripe.php:976
|
2046 |
msgid "Month(s)"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
2050 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
2051 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1045
|
2052 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2053 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
2054 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
2092 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
2093 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
2094 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
2095 |
+
#: classes/gateways/class.pmprogateway_stripe.php:975
|
2096 |
msgid "Week(s)"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
#: adminpages/discountcodes.php:609 adminpages/discountcodes.php:663
|
2100 |
#: adminpages/membershiplevels.php:437 adminpages/membershiplevels.php:565
|
2101 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1047
|
2102 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
2103 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
2104 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
2142 |
#: classes/gateways/class.pmprogateway_stripe.php:686
|
2143 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
2144 |
#: classes/gateways/class.pmprogateway_stripe.php:688
|
2145 |
+
#: classes/gateways/class.pmprogateway_stripe.php:977
|
2146 |
msgid "Year(s)"
|
2147 |
msgstr ""
|
2148 |
|
2430 |
msgid " View Orders"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: adminpages/emailsettings.php:85 adminpages/emailsettings.php:85
|
2434 |
msgid "Send Emails From"
|
2435 |
msgstr ""
|
2436 |
|
2470 |
"use the above settings."
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: adminpages/emailsettings.php:120 adminpages/emailsettings.php:120
|
2474 |
msgid "Customizing Email Content"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: adminpages/emailsettings.php:129 adminpages/emailsettings.php:129
|
2478 |
#, php-format
|
2479 |
msgid ""
|
2480 |
"There are several ways to modify the appearance of your Paid Memberships Pro "
|
2487 |
"Memberships Pro emails</a>."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: adminpages/emailsettings.php:134 adminpages/emailsettings.php:134
|
2491 |
msgid "Email Deliverability"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: adminpages/emailsettings.php:145 adminpages/emailsettings.php:145
|
2495 |
#, php-format
|
2496 |
msgid ""
|
2497 |
"If you are having issues with email delivery from your server, <a href=\"%s"
|
2504 |
"and Paid Memberships Pro</a></em>."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: adminpages/emailsettings.php:161 adminpages/emailsettings.php:161
|
2508 |
msgid "View Your SendWP Account"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
+
#: adminpages/emailsettings.php:161 adminpages/emailsettings.php:161
|
2512 |
msgid "Your site is connected to SendWP."
|
2513 |
msgstr ""
|
2514 |
|
2515 |
+
#: adminpages/emailsettings.php:162 adminpages/emailsettings.php:162
|
2516 |
#, php-format
|
2517 |
msgid "Please enable email sending inside %s."
|
2518 |
msgstr ""
|
2520 |
#: adminpages/emailsettings.php:174 adminpages/emailsettings.php:86
|
2521 |
#: adminpages/emailsettings.php:104 adminpages/emailsettings.php:115
|
2522 |
#: adminpages/emailsettings.php:125 adminpages/emailsettings.php:129
|
2523 |
+
#: adminpages/emailsettings.php:130 adminpages/emailsettings.php:174
|
2524 |
msgid "Send the site admin emails"
|
2525 |
msgstr ""
|
2526 |
|
2528 |
#: adminpages/emailsettings.php:114 adminpages/emailsettings.php:125
|
2529 |
#: adminpages/emailsettings.php:135 adminpages/emailsettings.php:139
|
2530 |
#: adminpages/emailsettings.php:140 adminpages/emailsettings.php:141
|
2531 |
+
#: adminpages/emailsettings.php:178
|
2532 |
msgid "when a member checks out."
|
2533 |
msgstr ""
|
2534 |
|
2536 |
#: adminpages/emailsettings.php:123 adminpages/emailsettings.php:134
|
2537 |
#: adminpages/emailsettings.php:144 adminpages/emailsettings.php:148
|
2538 |
#: adminpages/emailsettings.php:149 adminpages/emailsettings.php:150
|
2539 |
+
#: adminpages/emailsettings.php:181
|
2540 |
msgid "when an admin changes a user's membership level through the dashboard."
|
2541 |
msgstr ""
|
2542 |
|
2544 |
#: adminpages/emailsettings.php:132 adminpages/emailsettings.php:143
|
2545 |
#: adminpages/emailsettings.php:153 adminpages/emailsettings.php:157
|
2546 |
#: adminpages/emailsettings.php:158 adminpages/emailsettings.php:159
|
2547 |
+
#: adminpages/emailsettings.php:184
|
2548 |
msgid "when a user cancels his or her account."
|
2549 |
msgstr ""
|
2550 |
|
2552 |
#: adminpages/emailsettings.php:141 adminpages/emailsettings.php:152
|
2553 |
#: adminpages/emailsettings.php:162 adminpages/emailsettings.php:166
|
2554 |
#: adminpages/emailsettings.php:167 adminpages/emailsettings.php:168
|
2555 |
+
#: adminpages/emailsettings.php:187
|
2556 |
msgid "when a user updates his or her billing information."
|
2557 |
msgstr ""
|
2558 |
|
2559 |
#: adminpages/emailsettings.php:192 adminpages/emailsettings.php:129
|
2560 |
#: adminpages/emailsettings.php:147 adminpages/emailsettings.php:158
|
2561 |
#: adminpages/emailsettings.php:168 adminpages/emailsettings.php:172
|
2562 |
+
#: adminpages/emailsettings.php:174 adminpages/emailsettings.php:192
|
2563 |
msgid "Send members emails"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
#: adminpages/emailsettings.php:196 adminpages/emailsettings.php:184
|
2567 |
+
#: adminpages/emailsettings.php:196
|
2568 |
msgid "Default WP notification email."
|
2569 |
msgstr ""
|
2570 |
|
2571 |
#: adminpages/emailsettings.php:197 adminpages/emailsettings.php:185
|
2572 |
+
#: adminpages/emailsettings.php:197
|
2573 |
msgid ""
|
2574 |
"Recommended: Leave unchecked. Members will still get an email confirmation "
|
2575 |
"from PMPro after checkout."
|
2621 |
msgid "Paid Memberships Pro Support License"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: adminpages/license.php:47 adminpages/license.php:47 includes/license.php:91
|
2625 |
msgid ""
|
2626 |
"Enter your support license key.</strong> Your license key can be found in "
|
2627 |
"your membership email receipt or in your <a href=\"https://www."
|
2628 |
+
"paidmembershipspro.com/login/?redirect_to=%2Fmembership-account%2F"
|
2629 |
+
"%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign"
|
2630 |
"%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership "
|
2631 |
"Account</a>."
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: adminpages/license.php:49 adminpages/license.php:49 includes/license.php:93
|
2635 |
msgid ""
|
2636 |
+
"Visit the PMPro <a href=\"https://www.paidmembershipspro.com/login/?"
|
2637 |
+
"redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin%26utm_medium"
|
2638 |
+
"%3Dpmpro-license%26utm_campaign%3Dmembership-account%26utm_content%3Dkey-not-"
|
2639 |
+
"valid\" target=\"_blank\">Membership Account</a> page to confirm that your "
|
2640 |
+
"account is active and to find your license key."
|
2641 |
msgstr ""
|
2642 |
|
2643 |
#: adminpages/license.php:49 adminpages/license.php:49 includes/license.php:91
|
3041 |
msgid "Save Level"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: adminpages/membershiplevels.php:641 includes/profile.php:538
|
3045 |
#: pages/billing.php:414 pages/cancel.php:83
|
3046 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
|
3047 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
|
3055 |
#: adminpages/orders.php:796 adminpages/orders.php:807
|
3056 |
#: adminpages/orders.php:894 adminpages/orders.php:930
|
3057 |
#: adminpages/orders.php:934 adminpages/orders.php:939
|
3058 |
+
#: adminpages/orders.php:940 adminpages/orders.php:949 includes/profile.php:529
|
3059 |
+
#: includes/profile.php:567 pages/account.php:44 pages/billing.php:295
|
3060 |
+
#: pages/billing.php:299 pages/billing.php:330 pages/billing.php:339
|
3061 |
+
#: pages/billing.php:342 pages/billing.php:344 pages/billing.php:348
|
3062 |
+
#: pages/billing.php:363 pages/billing.php:364 pages/billing.php:365
|
3063 |
+
#: pages/billing.php:371 pages/billing.php:372 pages/billing.php:380
|
3064 |
+
#: pages/billing.php:390 pages/billing.php:392 pages/billing.php:397
|
3065 |
+
#: pages/billing.php:401 pages/billing.php:406 pages/billing.php:414
|
3066 |
+
#: pages/cancel.php:71 pages/cancel.php:83 pages/cancel.php:84
|
3067 |
+
#: shortcodes/pmpro_account.php:70 shortcodes/pmpro_account.php:72
|
3068 |
+
#: shortcodes/pmpro_account.php:73
|
3069 |
msgid "Cancel"
|
3070 |
msgstr ""
|
3071 |
|
3104 |
msgstr ""
|
3105 |
|
3106 |
#: adminpages/membershiplevels.php:776 pages/billing.php:88 pages/cancel.php:61
|
3107 |
+
#: pages/confirmation.php:82 pages/invoice.php:72
|
3108 |
#: shortcodes/pmpro_account.php:44 adminpages/membershiplevels.php:510
|
3109 |
#: adminpages/membershiplevels.php:516 adminpages/membershiplevels.php:518
|
3110 |
#: adminpages/membershiplevels.php:544 adminpages/membershiplevels.php:545
|
3115 |
#: adminpages/membershiplevels.php:716 adminpages/membershiplevels.php:718
|
3116 |
#: adminpages/membershiplevels.php:744 adminpages/membershiplevels.php:761
|
3117 |
#: adminpages/membershiplevels.php:766 adminpages/membershiplevels.php:771
|
3118 |
+
#: adminpages/membershiplevels.php:776 pages/account.php:20
|
3119 |
+
#: pages/billing.php:88 pages/cancel.php:53 pages/cancel.php:61
|
3120 |
+
#: pages/cancel.php:62 pages/confirmation.php:80 pages/confirmation.php:81
|
3121 |
+
#: pages/confirmation.php:82 pages/confirmation.php:83
|
3122 |
+
#: pages/confirmation.php:84 pages/confirmation.php:89 pages/invoice.php:62
|
3123 |
+
#: pages/invoice.php:63 pages/invoice.php:64 pages/invoice.php:68
|
3124 |
+
#: pages/invoice.php:70 shortcodes/pmpro_account.php:44
|
3125 |
+
#: shortcodes/pmpro_account.php:45 shortcodes/pmpro_account.php:46
|
3126 |
msgid "Expiration"
|
3127 |
msgstr ""
|
3128 |
|
3219 |
#: adminpages/orders.php:169 adminpages/orders.php:270
|
3220 |
#: adminpages/orders.php:284 adminpages/orders.php:285
|
3221 |
#: adminpages/orders.php:295 adminpages/orders.php:296
|
3222 |
+
#: adminpages/orders.php:297 adminpages/orders.php:298
|
3223 |
+
#: adminpages/orders.php:301 adminpages/orders.php:314
|
3224 |
msgid "Order saved successfully."
|
3225 |
msgstr ""
|
3226 |
|
3228 |
#: adminpages/orders.php:174 adminpages/orders.php:275
|
3229 |
#: adminpages/orders.php:287 adminpages/orders.php:288
|
3230 |
#: adminpages/orders.php:298 adminpages/orders.php:299
|
3231 |
+
#: adminpages/orders.php:300 adminpages/orders.php:301
|
3232 |
+
#: adminpages/orders.php:304 adminpages/orders.php:317
|
3233 |
msgid "Error updating order timestamp."
|
3234 |
msgstr ""
|
3235 |
|
3237 |
#: adminpages/orders.php:180 adminpages/orders.php:281
|
3238 |
#: adminpages/orders.php:291 adminpages/orders.php:292
|
3239 |
#: adminpages/orders.php:302 adminpages/orders.php:303
|
3240 |
+
#: adminpages/orders.php:304 adminpages/orders.php:305
|
3241 |
+
#: adminpages/orders.php:308 adminpages/orders.php:321
|
3242 |
msgid "Error saving order."
|
3243 |
msgstr ""
|
3244 |
|
3248 |
#: adminpages/orders.php:395 adminpages/orders.php:406
|
3249 |
#: adminpages/orders.php:418 adminpages/orders.php:424
|
3250 |
#: adminpages/orders.php:425 adminpages/orders.php:426
|
3251 |
+
#: adminpages/orders.php:429 adminpages/orders.php:431
|
3252 |
+
#: adminpages/orders.php:436
|
3253 |
msgid "User ID"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
#: adminpages/orders.php:578 classes/class.pmproemail.php:865
|
3257 |
#: classes/class.pmproemail.php:915 includes/init.php:198
|
3258 |
#: includes/profile.php:34 adminpages/orders.php:571 adminpages/orders.php:575
|
3259 |
+
#: adminpages/orders.php:576 adminpages/orders.php:578
|
3260 |
+
#: adminpages/orders.php:586 classes/class.pmproemail.php:865
|
3261 |
+
#: classes/class.pmproemail.php:868 classes/class.pmproemail.php:876
|
3262 |
+
#: classes/class.pmproemail.php:877 classes/class.pmproemail.php:905
|
3263 |
+
#: classes/class.pmproemail.php:915 includes/init.php:193 includes/init.php:198
|
3264 |
+
#: includes/init.php:229 includes/init.php:232 includes/init.php:233
|
3265 |
+
#: includes/init.php:235 includes/init.php:237 includes/init.php:245
|
3266 |
+
#: includes/init.php:253 includes/init.php:258 includes/init.php:259
|
3267 |
+
#: includes/init.php:264 includes/init.php:265 includes/init.php:266
|
3268 |
+
#: includes/init.php:280 includes/init.php:284 includes/profile.php:34
|
3269 |
+
#: includes/profile.php:37 includes/profile.php:39 includes/profile.php:42
|
3270 |
+
#: includes/profile.php:43 includes/profile.php:48
|
3271 |
msgid "None"
|
3272 |
msgstr ""
|
3273 |
|
3277 |
#: adminpages/orders.php:501 adminpages/orders.php:512
|
3278 |
#: adminpages/orders.php:542 adminpages/orders.php:582
|
3279 |
#: adminpages/orders.php:586 adminpages/orders.php:587
|
3280 |
+
#: adminpages/orders.php:589 adminpages/orders.php:597 includes/privacy.php:273
|
3281 |
msgid "Sub Total"
|
3282 |
msgstr ""
|
3283 |
|
3288 |
#: adminpages/orders.php:692 adminpages/orders.php:737
|
3289 |
#: adminpages/orders.php:775 adminpages/orders.php:779
|
3290 |
#: adminpages/orders.php:780 adminpages/orders.php:782
|
3291 |
+
#: adminpages/orders.php:783 adminpages/orders.php:792 includes/privacy.php:321
|
3292 |
msgid "Payment Transaction ID"
|
3293 |
msgstr ""
|
3294 |
|
3311 |
#: adminpages/orders.php:1211 adminpages/orders.php:1245
|
3312 |
#: adminpages/orders.php:1251 adminpages/orders.php:1338
|
3313 |
#: adminpages/orders.php:1343 adminpages/orders.php:1344
|
3314 |
+
#: adminpages/orders.php:1347 adminpages/orders.php:1353
|
3315 |
+
#: adminpages/orders.php:1358 adminpages/orders.php:1366
|
3316 |
+
#: adminpages/orders.php:1495
|
3317 |
#, php-format
|
3318 |
msgid ""
|
3319 |
"Deleting orders is permanent and can affect active users. Are you sure you "
|
3730 |
msgstr ""
|
3731 |
|
3732 |
#: adminpages/paymentsettings.php:66 adminpages/paymentsettings.php:49
|
3733 |
+
#: adminpages/paymentsettings.php:64 adminpages/paymentsettings.php:66
|
3734 |
+
#: adminpages/paymentsettings.php:77 adminpages/paymentsettings.php:82
|
3735 |
msgid "Your payment settings have been updated."
|
3736 |
msgstr ""
|
3737 |
|
3738 |
#: adminpages/paymentsettings.php:115 adminpages/paymentsettings.php:112
|
3739 |
+
#: adminpages/paymentsettings.php:113 adminpages/paymentsettings.php:115
|
3740 |
msgid ""
|
3741 |
"Learn more about <a title=\"Paid Memberships Pro - SSL Settings\" target="
|
3742 |
"\"_blank\" href=\"https://www.paidmembershipspro.com/documentation/initial-"
|
3752 |
|
3753 |
#: adminpages/paymentsettings.php:122 adminpages/paymentsettings.php:101
|
3754 |
#: adminpages/paymentsettings.php:118 adminpages/paymentsettings.php:119
|
3755 |
+
#: adminpages/paymentsettings.php:120 adminpages/paymentsettings.php:122
|
3756 |
msgid "Choose a Gateway"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
#: adminpages/paymentsettings.php:127 adminpages/paymentsettings.php:93
|
3760 |
#: adminpages/paymentsettings.php:106 adminpages/paymentsettings.php:110
|
3761 |
#: adminpages/paymentsettings.php:123 adminpages/paymentsettings.php:124
|
3762 |
+
#: adminpages/paymentsettings.php:125 adminpages/paymentsettings.php:127
|
3763 |
+
#: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:146
|
3764 |
+
#: adminpages/paymentsettings.php:152 adminpages/paymentsettings.php:154
|
3765 |
msgid "Payment Gateway"
|
3766 |
msgstr ""
|
3767 |
|
3768 |
#: adminpages/paymentsettings.php:142 adminpages/paymentsettings.php:138
|
3769 |
#: adminpages/paymentsettings.php:139 adminpages/paymentsettings.php:140
|
3770 |
+
#: adminpages/paymentsettings.php:142
|
3771 |
msgid ""
|
3772 |
"It is not connected to a live gateway environment and cannot accept payments."
|
3773 |
msgstr ""
|
3774 |
|
3775 |
#: adminpages/paymentsettings.php:142 adminpages/paymentsettings.php:138
|
3776 |
#: adminpages/paymentsettings.php:139 adminpages/paymentsettings.php:140
|
3777 |
+
#: adminpages/paymentsettings.php:142
|
3778 |
msgid ""
|
3779 |
"This gateway is for membership sites with Free levels or for sites that "
|
3780 |
"accept payment offline."
|
3790 |
#: adminpages/orders.php:757 adminpages/orders.php:767
|
3791 |
#: adminpages/paymentsettings.php:124 adminpages/paymentsettings.php:141
|
3792 |
#: adminpages/paymentsettings.php:144 adminpages/paymentsettings.php:145
|
3793 |
+
#: adminpages/paymentsettings.php:146 adminpages/paymentsettings.php:148
|
3794 |
+
#: adminpages/paymentsettings.php:175 adminpages/paymentsettings.php:179
|
3795 |
+
#: adminpages/paymentsettings.php:184 includes/privacy.php:317
|
3796 |
msgid "Gateway Environment"
|
3797 |
msgstr ""
|
3798 |
|
3806 |
#: adminpages/orders.php:779 adminpages/paymentsettings.php:128
|
3807 |
#: adminpages/paymentsettings.php:145 adminpages/paymentsettings.php:148
|
3808 |
#: adminpages/paymentsettings.php:149 adminpages/paymentsettings.php:150
|
3809 |
+
#: adminpages/paymentsettings.php:152 adminpages/paymentsettings.php:179
|
3810 |
+
#: adminpages/paymentsettings.php:183 adminpages/paymentsettings.php:188
|
3811 |
msgid "Sandbox/Testing"
|
3812 |
msgstr ""
|
3813 |
|
3821 |
#: adminpages/orders.php:784 adminpages/paymentsettings.php:129
|
3822 |
#: adminpages/paymentsettings.php:146 adminpages/paymentsettings.php:149
|
3823 |
#: adminpages/paymentsettings.php:150 adminpages/paymentsettings.php:151
|
3824 |
+
#: adminpages/paymentsettings.php:153 adminpages/paymentsettings.php:180
|
3825 |
+
#: adminpages/paymentsettings.php:184 adminpages/paymentsettings.php:189
|
3826 |
msgid "Live/Production"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
#: adminpages/paymentsettings.php:187 adminpages/paymentsettings.php:148
|
3830 |
#: adminpages/paymentsettings.php:165 adminpages/paymentsettings.php:182
|
3831 |
#: adminpages/paymentsettings.php:184 adminpages/paymentsettings.php:185
|
3832 |
+
#: adminpages/paymentsettings.php:187
|
3833 |
msgid "Currency and Tax Settings"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
#: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:153
|
3837 |
#: adminpages/paymentsettings.php:170 adminpages/paymentsettings.php:187
|
3838 |
#: adminpages/paymentsettings.php:189 adminpages/paymentsettings.php:190
|
3839 |
+
#: adminpages/paymentsettings.php:192 adminpages/paymentsettings.php:327
|
3840 |
+
#: adminpages/paymentsettings.php:337 adminpages/paymentsettings.php:356
|
3841 |
+
#: adminpages/paymentsettings.php:381 adminpages/paymentsettings.php:386
|
3842 |
msgid "Currency"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
#: adminpages/paymentsettings.php:208 adminpages/paymentsettings.php:169
|
3846 |
#: adminpages/paymentsettings.php:186 adminpages/paymentsettings.php:203
|
3847 |
#: adminpages/paymentsettings.php:205 adminpages/paymentsettings.php:206
|
3848 |
+
#: adminpages/paymentsettings.php:208 adminpages/paymentsettings.php:400
|
3849 |
+
#: adminpages/paymentsettings.php:402
|
3850 |
msgid ""
|
3851 |
"Not all currencies will be supported by every gateway. Please check with "
|
3852 |
"your gateway."
|
3855 |
#: adminpages/paymentsettings.php:213 adminpages/paymentsettings.php:174
|
3856 |
#: adminpages/paymentsettings.php:191 adminpages/paymentsettings.php:208
|
3857 |
#: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:211
|
3858 |
+
#: adminpages/paymentsettings.php:213 adminpages/paymentsettings.php:375
|
3859 |
+
#: adminpages/paymentsettings.php:401 adminpages/paymentsettings.php:406
|
3860 |
+
#: adminpages/paymentsettings.php:408
|
3861 |
msgid "Accepted Credit Card Types"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
#: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:188
|
3865 |
#: adminpages/paymentsettings.php:205 adminpages/paymentsettings.php:222
|
3866 |
#: adminpages/paymentsettings.php:224 adminpages/paymentsettings.php:225
|
3867 |
+
#: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:398
|
3868 |
+
#: adminpages/paymentsettings.php:438 adminpages/paymentsettings.php:443
|
3869 |
+
#: adminpages/paymentsettings.php:445
|
3870 |
msgid "Sales Tax"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
#: adminpages/paymentsettings.php:227 pages/billing.php:167
|
3874 |
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:205
|
3875 |
#: adminpages/paymentsettings.php:222 adminpages/paymentsettings.php:224
|
3876 |
+
#: adminpages/paymentsettings.php:225 adminpages/paymentsettings.php:227
|
3877 |
+
#: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
|
3878 |
+
#: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
|
3879 |
+
#: pages/billing.php:78 pages/billing.php:82 pages/billing.php:91
|
3880 |
+
#: pages/billing.php:94 pages/billing.php:96 pages/billing.php:97
|
3881 |
+
#: pages/billing.php:100 pages/billing.php:117 pages/billing.php:120
|
3882 |
+
#: pages/billing.php:121 pages/billing.php:123 pages/billing.php:125
|
3883 |
+
#: pages/billing.php:126 pages/billing.php:134 pages/billing.php:143
|
3884 |
+
#: pages/billing.php:167
|
3885 |
msgid "optional"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:191
|
3889 |
#: adminpages/paymentsettings.php:208 adminpages/paymentsettings.php:225
|
3890 |
#: adminpages/paymentsettings.php:227 adminpages/paymentsettings.php:228
|
3891 |
+
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:401
|
3892 |
+
#: adminpages/paymentsettings.php:441 adminpages/paymentsettings.php:446
|
3893 |
+
#: adminpages/paymentsettings.php:448
|
3894 |
msgid "Tax State"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:192
|
3898 |
#: adminpages/paymentsettings.php:209 adminpages/paymentsettings.php:226
|
3899 |
#: adminpages/paymentsettings.php:228 adminpages/paymentsettings.php:229
|
3900 |
+
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:402
|
3901 |
+
#: adminpages/paymentsettings.php:442 adminpages/paymentsettings.php:447
|
3902 |
+
#: adminpages/paymentsettings.php:449
|
3903 |
msgid "abbreviation, e.g. \"PA\""
|
3904 |
msgstr ""
|
3905 |
|
3906 |
#: adminpages/paymentsettings.php:232 adminpages/paymentsettings.php:193
|
3907 |
#: adminpages/paymentsettings.php:210 adminpages/paymentsettings.php:227
|
3908 |
#: adminpages/paymentsettings.php:229 adminpages/paymentsettings.php:230
|
3909 |
+
#: adminpages/paymentsettings.php:232
|
3910 |
msgid "Tax Rate"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
#: adminpages/paymentsettings.php:233 adminpages/paymentsettings.php:194
|
3914 |
#: adminpages/paymentsettings.php:211 adminpages/paymentsettings.php:228
|
3915 |
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:231
|
3916 |
+
#: adminpages/paymentsettings.php:233 adminpages/paymentsettings.php:404
|
3917 |
+
#: adminpages/paymentsettings.php:444 adminpages/paymentsettings.php:449
|
3918 |
+
#: adminpages/paymentsettings.php:451
|
3919 |
msgid "decimal, e.g. \"0.06\""
|
3920 |
msgstr ""
|
3921 |
|
3922 |
#: adminpages/paymentsettings.php:234 adminpages/paymentsettings.php:229
|
3923 |
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:232
|
3924 |
+
#: adminpages/paymentsettings.php:234
|
3925 |
msgid ""
|
3926 |
"US only. If values are given, tax will be applied for any members ordering "
|
3927 |
"from the selected state.<br />For non-US or more complex tax rules, use the "
|
3936 |
#: adminpages/paymentsettings.php:146 adminpages/paymentsettings.php:201
|
3937 |
#: adminpages/paymentsettings.php:218 adminpages/paymentsettings.php:235
|
3938 |
#: adminpages/paymentsettings.php:238 adminpages/paymentsettings.php:239
|
3939 |
+
#: adminpages/paymentsettings.php:241
|
3940 |
msgid "SSL Settings"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
#: adminpages/paymentsettings.php:246 adminpages/paymentsettings.php:206
|
3944 |
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:240
|
3945 |
#: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:244
|
3946 |
+
#: adminpages/paymentsettings.php:246 adminpages/paymentsettings.php:450
|
3947 |
+
#: adminpages/paymentsettings.php:455 adminpages/paymentsettings.php:457
|
3948 |
msgid "Force SSL"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
#: adminpages/paymentsettings.php:253 adminpages/paymentsettings.php:213
|
3952 |
#: adminpages/paymentsettings.php:230 adminpages/paymentsettings.php:247
|
3953 |
#: adminpages/paymentsettings.php:250 adminpages/paymentsettings.php:251
|
3954 |
+
#: adminpages/paymentsettings.php:253
|
3955 |
msgid ""
|
3956 |
"Your Site URL starts with https:// and so PMPro will allow your entire site "
|
3957 |
"to be served over HTTPS."
|
3960 |
#: adminpages/paymentsettings.php:261 adminpages/paymentsettings.php:212
|
3961 |
#: adminpages/paymentsettings.php:221 adminpages/paymentsettings.php:238
|
3962 |
#: adminpages/paymentsettings.php:255 adminpages/paymentsettings.php:258
|
3963 |
+
#: adminpages/paymentsettings.php:259 adminpages/paymentsettings.php:261
|
3964 |
+
#: adminpages/paymentsettings.php:456 adminpages/paymentsettings.php:461
|
3965 |
+
#: adminpages/paymentsettings.php:463
|
3966 |
msgid "Yes (with JavaScript redirects)"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
#: adminpages/paymentsettings.php:263 adminpages/paymentsettings.php:214
|
3970 |
#: adminpages/paymentsettings.php:223 adminpages/paymentsettings.php:240
|
3971 |
#: adminpages/paymentsettings.php:257 adminpages/paymentsettings.php:260
|
3972 |
+
#: adminpages/paymentsettings.php:261 adminpages/paymentsettings.php:263
|
3973 |
msgid ""
|
3974 |
"Recommended: Yes. Try the JavaScript redirects setting if you are having "
|
3975 |
"issues with infinite redirect loops."
|
3978 |
#: adminpages/paymentsettings.php:271 adminpages/paymentsettings.php:219
|
3979 |
#: adminpages/paymentsettings.php:231 adminpages/paymentsettings.php:248
|
3980 |
#: adminpages/paymentsettings.php:265 adminpages/paymentsettings.php:268
|
3981 |
+
#: adminpages/paymentsettings.php:269 adminpages/paymentsettings.php:271
|
3982 |
+
#: adminpages/paymentsettings.php:430 adminpages/paymentsettings.php:463
|
3983 |
+
#: adminpages/paymentsettings.php:468 adminpages/paymentsettings.php:470
|
3984 |
msgid "SSL Seal Code"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
#: adminpages/paymentsettings.php:275 adminpages/paymentsettings.php:272
|
3988 |
+
#: adminpages/paymentsettings.php:273 adminpages/paymentsettings.php:275
|
3989 |
msgid ""
|
3990 |
"Your <strong><a target=\"_blank\" href=\"https://www.paidmembershipspro.com/"
|
3991 |
"documentation/initial-plugin-setup/ssl/?utm_source=plugin&utm_medium=pmpro-"
|
3998 |
#: adminpages/paymentsettings.php:280 adminpages/paymentsettings.php:228
|
3999 |
#: adminpages/paymentsettings.php:240 adminpages/paymentsettings.php:257
|
4000 |
#: adminpages/paymentsettings.php:274 adminpages/paymentsettings.php:277
|
4001 |
+
#: adminpages/paymentsettings.php:278 adminpages/paymentsettings.php:280
|
4002 |
msgid "Extra HTTPS URL Filter"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
#: adminpages/paymentsettings.php:283 adminpages/paymentsettings.php:231
|
4006 |
#: adminpages/paymentsettings.php:243 adminpages/paymentsettings.php:260
|
4007 |
#: adminpages/paymentsettings.php:277 adminpages/paymentsettings.php:280
|
4008 |
+
#: adminpages/paymentsettings.php:281 adminpages/paymentsettings.php:283
|
4009 |
msgid ""
|
4010 |
"Pass all generated HTML through a URL filter to add HTTPS to URLs used on "
|
4011 |
"secure pages. Check this if you are using SSL and have warnings on your "
|
4108 |
#: classes/class-pmpro-members-list-table.php:592
|
4109 |
#: classes/class-pmpro-members-list-table.php:600
|
4110 |
#: classes/class-pmpro-members-list-table.php:616
|
4111 |
+
#: classes/class-pmpro-members-list-table.php:623
|
4112 |
#: classes/class-pmpro-members-list-table.php:660
|
4113 |
msgid "Show"
|
4114 |
msgstr ""
|
4146 |
#: classes/class-pmpro-members-list-table.php:594
|
4147 |
#: classes/class-pmpro-members-list-table.php:606
|
4148 |
#: classes/class-pmpro-members-list-table.php:618
|
4149 |
+
#: classes/class-pmpro-members-list-table.php:625
|
4150 |
#: classes/class-pmpro-members-list-table.php:662
|
4151 |
#: classes/class.pmproemail.php:145 classes/class.pmproemail.php:147
|
4152 |
#: classes/class.pmproemail.php:154 classes/class.pmproemail.php:182
|
4432 |
|
4433 |
#: adminpages/templates/orders-email.php:56
|
4434 |
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:93
|
4435 |
+
#: pages/invoice.php:83 adminpages/templates/orders-email.php:56
|
4436 |
#: adminpages/templates/orders-print.php:85 pages/confirmation.php:90
|
4437 |
#: pages/confirmation.php:91 pages/confirmation.php:93 pages/invoice.php:72
|
4438 |
#: pages/invoice.php:73 pages/invoice.php:74 pages/invoice.php:75
|
4442 |
|
4443 |
#: adminpages/templates/orders-email.php:60
|
4444 |
#: adminpages/templates/orders-print.php:89 includes/privacy.php:277
|
4445 |
+
#: pages/confirmation.php:94 pages/invoice.php:84 adminpages/orders.php:304
|
4446 |
#: adminpages/orders.php:354 adminpages/orders.php:426
|
4447 |
#: adminpages/orders.php:455 adminpages/orders.php:481
|
4448 |
#: adminpages/orders.php:512 adminpages/orders.php:523
|
4606 |
"you can <a %s>update the \"Activity Email Frequency\" setting here</a>."
|
4607 |
msgstr ""
|
4608 |
|
4609 |
+
#: classes/class-pmpro-admin-activity-email.php:408
|
4610 |
#: classes/class-pmpro-admin-activity-email.php:408
|
4611 |
#, php-format
|
4612 |
msgid "[%1$s] PMPro Activity for %2$s: %3$s"
|
4630 |
#: classes/class-pmpro-members-list-table.php:604
|
4631 |
#: classes/class-pmpro-members-list-table.php:628
|
4632 |
#: classes/class-pmpro-members-list-table.php:629
|
4633 |
+
#: classes/class-pmpro-members-list-table.php:635
|
4634 |
#: classes/class-pmpro-members-list-table.php:672
|
4635 |
msgid "Cancelled Members"
|
4636 |
msgstr ""
|
4645 |
#: classes/class-pmpro-members-list-table.php:605
|
4646 |
#: classes/class-pmpro-members-list-table.php:629
|
4647 |
#: classes/class-pmpro-members-list-table.php:634
|
4648 |
+
#: classes/class-pmpro-members-list-table.php:636
|
4649 |
#: classes/class-pmpro-members-list-table.php:673
|
4650 |
msgid "Expired Members"
|
4651 |
msgstr ""
|
4660 |
#: classes/class-pmpro-members-list-table.php:571
|
4661 |
#: classes/class-pmpro-members-list-table.php:606
|
4662 |
#: classes/class-pmpro-members-list-table.php:630
|
4663 |
+
#: classes/class-pmpro-members-list-table.php:637
|
4664 |
#: classes/class-pmpro-members-list-table.php:639
|
4665 |
#: classes/class-pmpro-members-list-table.php:674
|
4666 |
msgid "Old Members"
|
4781 |
#: classes/class.pmproemail.php:422 classes/class.pmproemail.php:740
|
4782 |
#: classes/class.pmproemail.php:742
|
4783 |
#: classes/gateways/class.pmprogateway_braintree.php:509
|
4784 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1014 pages/checkout.php:83
|
4785 |
#: pages/checkout.php:89 pages/checkout.php:426 pages/confirmation.php:58
|
4786 |
+
#: pages/invoice.php:40 adminpages/orders.php:560 adminpages/orders.php:564
|
4787 |
#: adminpages/orders.php:565 adminpages/orders.php:575
|
4788 |
#: adminpages/orders.php:1307 adminpages/orders.php:1313
|
4789 |
#: adminpages/orders.php:1318 adminpages/orders.php:1322
|
4855 |
#: classes/gateways/class.pmprogateway_stripe.php:652
|
4856 |
#: classes/gateways/class.pmprogateway_stripe.php:659
|
4857 |
#: classes/gateways/class.pmprogateway_stripe.php:660
|
4858 |
+
#: classes/gateways/class.pmprogateway_stripe.php:661
|
4859 |
+
#: classes/gateways/class.pmprogateway_stripe.php:944 pages/checkout.php:66
|
4860 |
#: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:70
|
4861 |
#: pages/checkout.php:75 pages/checkout.php:76 pages/checkout.php:77
|
4862 |
#: pages/checkout.php:78 pages/checkout.php:81 pages/checkout.php:83
|
5321 |
#: classes/gateways/class.pmprogateway_authorizenet.php:910
|
5322 |
#: classes/gateways/class.pmprogateway_authorizenet.php:911
|
5323 |
#: classes/gateways/class.pmprogateway_authorizenet.php:912
|
5324 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:914
|
5325 |
+
#: classes/gateways/class.pmprogateway_authorizenet.php:915
|
5326 |
#: classes/gateways/class.pmprogateway_authorizenet.php:929
|
5327 |
#: classes/gateways/class.pmprogateway_authorizenet.php:930
|
5328 |
msgid "Could not connect to Authorize.net"
|
5345 |
#: classes/gateways/class.pmprogateway_stripe.php:81
|
5346 |
#: classes/gateways/class.pmprogateway_stripe.php:83
|
5347 |
#: classes/gateways/class.pmprogateway_stripe.php:86
|
5348 |
+
#: classes/gateways/class.pmprogateway_stripe.php:88
|
5349 |
#, php-format
|
5350 |
msgid ""
|
5351 |
"The %s gateway depends on the %s PHP extension. Please enable it, or ask "
|
5526 |
msgstr ""
|
5527 |
|
5528 |
#: classes/gateways/class.pmprogateway_braintree.php:454
|
5529 |
+
#: classes/gateways/class.pmprogateway_stripe.php:972 pages/checkout.php:362
|
5530 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
5531 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
5532 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
5563 |
#: classes/gateways/class.pmprogateway_stripe.php:569
|
5564 |
#: classes/gateways/class.pmprogateway_stripe.php:576
|
5565 |
#: classes/gateways/class.pmprogateway_stripe.php:577
|
5566 |
+
#: classes/gateways/class.pmprogateway_stripe.php:578
|
5567 |
+
#: classes/gateways/class.pmprogateway_stripe.php:902 pages/checkout.php:362
|
5568 |
#: pages/checkout.php:411 pages/checkout.php:419 pages/checkout.php:476
|
5569 |
#: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
|
5570 |
#: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:501
|
5573 |
msgstr ""
|
5574 |
|
5575 |
#: classes/gateways/class.pmprogateway_braintree.php:455
|
5576 |
+
#: classes/gateways/class.pmprogateway_stripe.php:973 pages/checkout.php:363
|
5577 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
5578 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
5579 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
5610 |
#: classes/gateways/class.pmprogateway_stripe.php:570
|
5611 |
#: classes/gateways/class.pmprogateway_stripe.php:577
|
5612 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
5613 |
+
#: classes/gateways/class.pmprogateway_stripe.php:579
|
5614 |
+
#: classes/gateways/class.pmprogateway_stripe.php:903 pages/checkout.php:363
|
5615 |
#: pages/checkout.php:412 pages/checkout.php:420 pages/checkout.php:476
|
5616 |
#: pages/checkout.php:478 pages/checkout.php:485 pages/checkout.php:493
|
5617 |
#: pages/checkout.php:494 pages/checkout.php:500 pages/checkout.php:502
|
5621 |
msgstr ""
|
5622 |
|
5623 |
#: classes/gateways/class.pmprogateway_braintree.php:466
|
5624 |
+
#: classes/gateways/class.pmprogateway_stripe.php:984 includes/privacy.php:293
|
5625 |
#: pages/billing.php:321 pages/checkout.php:374 adminpages/orders.php:339
|
5626 |
#: adminpages/orders.php:389 adminpages/orders.php:461
|
5627 |
#: adminpages/orders.php:490 adminpages/orders.php:532
|
5665 |
#: classes/gateways/class.pmprogateway_stripe.php:581
|
5666 |
#: classes/gateways/class.pmprogateway_stripe.php:588
|
5667 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
5668 |
+
#: classes/gateways/class.pmprogateway_stripe.php:590
|
5669 |
+
#: classes/gateways/class.pmprogateway_stripe.php:914 includes/privacy.php:293
|
5670 |
#: pages/billing.php:234 pages/billing.php:238 pages/billing.php:247
|
5671 |
#: pages/billing.php:250 pages/billing.php:253 pages/billing.php:262
|
5672 |
#: pages/billing.php:268 pages/billing.php:271 pages/billing.php:274
|
5673 |
#: pages/billing.php:275 pages/billing.php:279 pages/billing.php:280
|
5674 |
#: pages/billing.php:288 pages/billing.php:294 pages/billing.php:297
|
5675 |
+
#: pages/billing.php:321 pages/checkout.php:374 pages/checkout.php:423
|
5676 |
+
#: pages/checkout.php:431 pages/checkout.php:493 pages/checkout.php:507
|
5677 |
+
#: pages/checkout.php:510 pages/checkout.php:516 pages/checkout.php:517
|
5678 |
+
#: pages/checkout.php:525 pages/checkout.php:527 pages/checkout.php:534
|
5679 |
+
#: pages/checkout.php:537
|
5680 |
msgid "Card Type"
|
5681 |
msgstr ""
|
5682 |
|
5683 |
#: classes/gateways/class.pmprogateway_braintree.php:475
|
5684 |
+
#: classes/gateways/class.pmprogateway_stripe.php:997 pages/billing.php:359
|
5685 |
#: pages/checkout.php:385 classes/gateways/class.pmprogateway_braintree.php:303
|
5686 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
5687 |
#: classes/gateways/class.pmprogateway_braintree.php:318
|
5717 |
#: classes/gateways/class.pmprogateway_stripe.php:617
|
5718 |
#: classes/gateways/class.pmprogateway_stripe.php:624
|
5719 |
#: classes/gateways/class.pmprogateway_stripe.php:625
|
5720 |
+
#: classes/gateways/class.pmprogateway_stripe.php:626
|
5721 |
+
#: classes/gateways/class.pmprogateway_stripe.php:927 pages/billing.php:244
|
5722 |
#: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
|
5723 |
#: pages/billing.php:263 pages/billing.php:305 pages/billing.php:309
|
5724 |
#: pages/billing.php:311 pages/billing.php:312 pages/billing.php:313
|
5725 |
#: pages/billing.php:314 pages/billing.php:317 pages/billing.php:318
|
5726 |
#: pages/billing.php:326 pages/billing.php:335 pages/billing.php:337
|
5727 |
+
#: pages/billing.php:359 pages/checkout.php:385 pages/checkout.php:459
|
5728 |
+
#: pages/checkout.php:467 pages/checkout.php:503 pages/checkout.php:519
|
5729 |
+
#: pages/checkout.php:520 pages/checkout.php:527 pages/checkout.php:548
|
5730 |
+
#: pages/checkout.php:557 pages/checkout.php:566 pages/checkout.php:570
|
5731 |
+
#: pages/checkout.php:577 pages/checkout.php:580
|
5732 |
msgid "Card Number"
|
5733 |
msgstr ""
|
5734 |
|
5763 |
#: pages/billing.php:301 pages/billing.php:343 pages/billing.php:348
|
5764 |
#: pages/billing.php:351 pages/billing.php:352 pages/billing.php:354
|
5765 |
#: pages/billing.php:356 pages/billing.php:357 pages/billing.php:365
|
5766 |
+
#: pages/billing.php:374 pages/billing.php:380 pages/billing.php:398
|
5767 |
+
#: pages/checkout.php:540 pages/checkout.php:556 pages/checkout.php:557
|
5768 |
+
#: pages/checkout.php:564 pages/checkout.php:585 pages/checkout.php:594
|
5769 |
+
#: pages/checkout.php:603 pages/checkout.php:605 pages/checkout.php:607
|
5770 |
+
#: pages/checkout.php:608 pages/checkout.php:612 pages/checkout.php:615
|
5771 |
msgid "CVV"
|
5772 |
msgstr ""
|
5773 |
|
5808 |
#: pages/billing.php:302 pages/billing.php:344 pages/billing.php:349
|
5809 |
#: pages/billing.php:352 pages/billing.php:353 pages/billing.php:355
|
5810 |
#: pages/billing.php:357 pages/billing.php:358 pages/billing.php:366
|
5811 |
+
#: pages/billing.php:375 pages/billing.php:381 pages/billing.php:399
|
5812 |
+
#: pages/checkout.php:421 pages/checkout.php:493 pages/checkout.php:501
|
5813 |
+
#: pages/checkout.php:541 pages/checkout.php:557 pages/checkout.php:558
|
5814 |
+
#: pages/checkout.php:565 pages/checkout.php:586 pages/checkout.php:595
|
5815 |
+
#: pages/checkout.php:604 pages/checkout.php:606 pages/checkout.php:608
|
5816 |
+
#: pages/checkout.php:609 pages/checkout.php:613 pages/checkout.php:616
|
5817 |
msgid "what's this?"
|
5818 |
msgstr ""
|
5819 |
|
5820 |
#: classes/gateways/class.pmprogateway_braintree.php:511
|
5821 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1019 pages/checkout.php:91
|
5822 |
#: pages/checkout.php:428 classes/gateways/class.pmprogateway_braintree.php:351
|
5823 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
5824 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
5855 |
#: classes/gateways/class.pmprogateway_stripe.php:654
|
5856 |
#: classes/gateways/class.pmprogateway_stripe.php:661
|
5857 |
#: classes/gateways/class.pmprogateway_stripe.php:662
|
5858 |
+
#: classes/gateways/class.pmprogateway_stripe.php:663
|
5859 |
+
#: classes/gateways/class.pmprogateway_stripe.php:949 pages/checkout.php:78
|
5860 |
#: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:83
|
5861 |
#: pages/checkout.php:87 pages/checkout.php:88 pages/checkout.php:91
|
5862 |
#: pages/checkout.php:95 pages/checkout.php:98 pages/checkout.php:428
|
6936 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:208
|
6937 |
#: adminpages/paymentsettings.php:449 adminpages/paymentsettings.php:482
|
6938 |
#: adminpages/paymentsettings.php:488 adminpages/paymentsettings.php:490
|
6939 |
+
#: classes/gateways/class.pmprogateway_paypal.php:199
|
6940 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:163
|
6941 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:173
|
6942 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:196
|
6975 |
#: classes/gateways/class.pmprogateway_paypal.php:287
|
6976 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:481
|
6977 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
6978 |
+
#: pages/checkout.php:509 classes/gateways/class.pmprogateway_paypal.php:184
|
6979 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
6980 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
6981 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
7004 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:481
|
7005 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:246
|
7006 |
#: classes/gateways/class.pmprogateway_twocheckout.php:205
|
7007 |
+
#: pages/checkout.php:509 classes/gateways/class.pmprogateway_paypal.php:184
|
7008 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
7009 |
#: classes/gateways/class.pmprogateway_paypal.php:274
|
7010 |
#: classes/gateways/class.pmprogateway_paypal.php:286
|
7046 |
#: classes/gateways/class.pmprogateway_paypal.php:693
|
7047 |
#: classes/gateways/class.pmprogateway_paypal.php:694
|
7048 |
#: classes/gateways/class.pmprogateway_paypal.php:703
|
7049 |
+
#: classes/gateways/class.pmprogateway_paypal.php:708
|
7050 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
7051 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:303
|
7052 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:305
|
7062 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:784
|
7063 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:785
|
7064 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:786
|
7065 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:790
|
7066 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:216
|
7067 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:220
|
7068 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:230
|
7164 |
#: classes/gateways/class.pmprogateway_stripe.php:203
|
7165 |
#: classes/gateways/class.pmprogateway_stripe.php:229
|
7166 |
#: classes/gateways/class.pmprogateway_stripe.php:231
|
7167 |
+
#: classes/gateways/class.pmprogateway_stripe.php:237
|
7168 |
#: paid-memberships-pro.php:117 paid-memberships-pro.php:118
|
7169 |
#: paid-memberships-pro.php:125 paid-memberships-pro.php:126
|
7170 |
#: paid-memberships-pro.php:127 paid-memberships-pro.php:128
|
7179 |
#: classes/gateways/class.pmprogateway_stripe.php:331
|
7180 |
#: classes/gateways/class.pmprogateway_stripe.php:299
|
7181 |
#: classes/gateways/class.pmprogateway_stripe.php:307
|
7182 |
+
#: classes/gateways/class.pmprogateway_stripe.php:331
|
7183 |
#: classes/gateways/class.pmprogateway_stripe.php:337
|
7184 |
#: classes/gateways/class.pmprogateway_stripe.php:339
|
7185 |
#: classes/gateways/class.pmprogateway_stripe.php:340
|
7202 |
#: classes/gateways/class.pmprogateway_stripe.php:283
|
7203 |
#: classes/gateways/class.pmprogateway_stripe.php:284
|
7204 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
7205 |
+
#: classes/gateways/class.pmprogateway_stripe.php:338
|
7206 |
msgid "Stripe Settings"
|
7207 |
msgstr ""
|
7208 |
|
7225 |
#: classes/gateways/class.pmprogateway_stripe.php:288
|
7226 |
#: classes/gateways/class.pmprogateway_stripe.php:289
|
7227 |
#: classes/gateways/class.pmprogateway_stripe.php:291
|
7228 |
+
#: classes/gateways/class.pmprogateway_stripe.php:343
|
7229 |
msgid "Publishable Key"
|
7230 |
msgstr ""
|
7231 |
|
7236 |
#: classes/gateways/class.pmprogateway_stripe.php:297
|
7237 |
#: classes/gateways/class.pmprogateway_stripe.php:298
|
7238 |
#: classes/gateways/class.pmprogateway_stripe.php:299
|
7239 |
+
#: classes/gateways/class.pmprogateway_stripe.php:351
|
7240 |
msgid "Your Publishable Key appears incorrect."
|
7241 |
msgstr ""
|
7242 |
|
7259 |
#: classes/gateways/class.pmprogateway_stripe.php:305
|
7260 |
#: classes/gateways/class.pmprogateway_stripe.php:306
|
7261 |
#: classes/gateways/class.pmprogateway_stripe.php:307
|
7262 |
+
#: classes/gateways/class.pmprogateway_stripe.php:359
|
7263 |
msgid "Secret Key"
|
7264 |
msgstr ""
|
7265 |
|
7266 |
+
#: classes/gateways/class.pmprogateway_stripe.php:367
|
7267 |
#: classes/gateways/class.pmprogateway_stripe.php:367
|
7268 |
msgid "Webhook"
|
7269 |
msgstr ""
|
7270 |
|
7271 |
+
#: classes/gateways/class.pmprogateway_stripe.php:371
|
7272 |
+
#: classes/gateways/class.pmprogateway_stripe.php:376
|
7273 |
#: classes/gateways/class.pmprogateway_stripe.php:371
|
7274 |
#: classes/gateways/class.pmprogateway_stripe.php:376
|
7275 |
msgid "Create Webhook"
|
7276 |
msgstr ""
|
7277 |
|
7278 |
+
#: classes/gateways/class.pmprogateway_stripe.php:378
|
7279 |
+
#: classes/gateways/class.pmprogateway_stripe.php:473
|
7280 |
+
#: classes/gateways/class.pmprogateway_stripe.php:490
|
7281 |
#: classes/gateways/class.pmprogateway_stripe.php:378
|
7282 |
#: classes/gateways/class.pmprogateway_stripe.php:473
|
7283 |
#: classes/gateways/class.pmprogateway_stripe.php:490
|
7307 |
#: classes/gateways/class.pmprogateway_stripe.php:313
|
7308 |
#: classes/gateways/class.pmprogateway_stripe.php:314
|
7309 |
#: classes/gateways/class.pmprogateway_stripe.php:315
|
7310 |
+
#: classes/gateways/class.pmprogateway_stripe.php:387
|
7311 |
msgid "Show Billing Address Fields"
|
7312 |
msgstr ""
|
7313 |
|
7331 |
#: classes/gateways/class.pmprogateway_stripe.php:323
|
7332 |
#: classes/gateways/class.pmprogateway_stripe.php:324
|
7333 |
#: classes/gateways/class.pmprogateway_stripe.php:325
|
7334 |
+
#: classes/gateways/class.pmprogateway_stripe.php:397
|
7335 |
msgid ""
|
7336 |
"Stripe doesn't require billing address fields. Choose 'No' to hide them on "
|
7337 |
"the checkout page.<br /><strong>If No, make sure you disable address "
|
7342 |
#: classes/gateways/class.pmprogateway_stripe.php:351
|
7343 |
#: classes/gateways/class.pmprogateway_stripe.php:352
|
7344 |
#: classes/gateways/class.pmprogateway_stripe.php:354
|
7345 |
+
#: classes/gateways/class.pmprogateway_stripe.php:412
|
7346 |
#, php-format
|
7347 |
msgid ""
|
7348 |
"Optional: Offer PayPal Express as an option at checkout using the <a target="
|
7350 |
"Option at Checkout Add On\">Add PayPal Express Add On</a>."
|
7351 |
msgstr ""
|
7352 |
|
7353 |
+
#: classes/gateways/class.pmprogateway_stripe.php:432
|
7354 |
#: classes/gateways/class.pmprogateway_stripe.php:432
|
7355 |
msgid "Webhook creation failed. You might already have a webhook set up."
|
7356 |
msgstr ""
|
7357 |
|
7358 |
+
#: classes/gateways/class.pmprogateway_stripe.php:447
|
7359 |
#: classes/gateways/class.pmprogateway_stripe.php:447
|
7360 |
msgid "Your webhook is enabled."
|
7361 |
msgstr ""
|
7362 |
|
7363 |
+
#: classes/gateways/class.pmprogateway_stripe.php:497
|
7364 |
#: classes/gateways/class.pmprogateway_stripe.php:497
|
7365 |
msgid "There was an error deleting the webhook."
|
7366 |
msgstr ""
|
7371 |
#: classes/gateways/class.pmprogateway_stripe.php:379
|
7372 |
#: classes/gateways/class.pmprogateway_stripe.php:380
|
7373 |
#: classes/gateways/class.pmprogateway_stripe.php:381
|
7374 |
+
#: classes/gateways/class.pmprogateway_stripe.php:530
|
7375 |
msgid "Verification steps confirmed. Your payment is processing."
|
7376 |
msgstr ""
|
7377 |
|
7378 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1008
|
7379 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
7380 |
#: classes/gateways/class.pmprogateway_stripe.php:577
|
7381 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
7382 |
#: classes/gateways/class.pmprogateway_stripe.php:580
|
7383 |
+
#: classes/gateways/class.pmprogateway_stripe.php:938
|
7384 |
msgid "CVC"
|
7385 |
msgstr ""
|
7386 |
|
7387 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1086
|
7388 |
#: classes/gateways/class.pmprogateway_stripe.php:650
|
7389 |
#: classes/gateways/class.pmprogateway_stripe.php:655
|
7390 |
#: classes/gateways/class.pmprogateway_stripe.php:656
|
7396 |
#: classes/gateways/class.pmprogateway_stripe.php:725
|
7397 |
#: classes/gateways/class.pmprogateway_stripe.php:726
|
7398 |
#: classes/gateways/class.pmprogateway_stripe.php:727
|
7399 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1016
|
7400 |
#, php-format
|
7401 |
msgid ""
|
7402 |
"%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may "
|
7403 |
"have been deleted."
|
7404 |
msgstr ""
|
7405 |
|
7406 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1091
|
7407 |
#: classes/gateways/class.pmprogateway_stripe.php:567
|
7408 |
#: classes/gateways/class.pmprogateway_stripe.php:568
|
7409 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
7426 |
#: classes/gateways/class.pmprogateway_stripe.php:732
|
7427 |
#: classes/gateways/class.pmprogateway_stripe.php:733
|
7428 |
#: classes/gateways/class.pmprogateway_stripe.php:734
|
7429 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1021
|
7430 |
msgid "Subscription Updates"
|
7431 |
msgstr ""
|
7432 |
|
7433 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1095
|
7434 |
#: classes/gateways/class.pmprogateway_stripe.php:571
|
7435 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
7436 |
#: classes/gateways/class.pmprogateway_stripe.php:582
|
7453 |
#: classes/gateways/class.pmprogateway_stripe.php:736
|
7454 |
#: classes/gateways/class.pmprogateway_stripe.php:737
|
7455 |
#: classes/gateways/class.pmprogateway_stripe.php:738
|
7456 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1025
|
7457 |
msgid ""
|
7458 |
"Subscription updates, allow you to change the member's subscription values "
|
7459 |
"at predefined times. Be sure to click Update Profile after making changes."
|
7460 |
msgstr ""
|
7461 |
|
7462 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1097
|
7463 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
7464 |
#: classes/gateways/class.pmprogateway_stripe.php:574
|
7465 |
#: classes/gateways/class.pmprogateway_stripe.php:584
|
7482 |
#: classes/gateways/class.pmprogateway_stripe.php:738
|
7483 |
#: classes/gateways/class.pmprogateway_stripe.php:739
|
7484 |
#: classes/gateways/class.pmprogateway_stripe.php:740
|
7485 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1027
|
7486 |
msgid ""
|
7487 |
"Subscription updates, allow you to change the member's subscription values "
|
7488 |
"at predefined times. Be sure to click Update User after making changes."
|
7489 |
msgstr ""
|
7490 |
|
7491 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1103 pages/billing.php:413
|
7492 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
7493 |
#: classes/gateways/class.pmprogateway_stripe.php:579
|
7494 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
7510 |
#: classes/gateways/class.pmprogateway_stripe.php:736
|
7511 |
#: classes/gateways/class.pmprogateway_stripe.php:743
|
7512 |
#: classes/gateways/class.pmprogateway_stripe.php:744
|
7513 |
+
#: classes/gateways/class.pmprogateway_stripe.php:745
|
7514 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1033 pages/billing.php:294
|
7515 |
#: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
|
7516 |
#: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
|
7517 |
#: pages/billing.php:362 pages/billing.php:363 pages/billing.php:364
|
7518 |
#: pages/billing.php:370 pages/billing.php:371 pages/billing.php:379
|
7519 |
#: pages/billing.php:389 pages/billing.php:391 pages/billing.php:396
|
7520 |
+
#: pages/billing.php:400 pages/billing.php:405 pages/billing.php:413
|
7521 |
msgid "Update"
|
7522 |
msgstr ""
|
7523 |
|
7524 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1683
|
7525 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1687
|
7526 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1700
|
7527 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1704
|
7528 |
#: classes/gateways/class.pmprogateway_stripe.php:1236
|
7529 |
#: classes/gateways/class.pmprogateway_stripe.php:1243
|
7530 |
#: classes/gateways/class.pmprogateway_stripe.php:1247
|
7545 |
#: classes/gateways/class.pmprogateway_stripe.php:1297
|
7546 |
#: classes/gateways/class.pmprogateway_stripe.php:1302
|
7547 |
#: classes/gateways/class.pmprogateway_stripe.php:1310
|
7548 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1613
|
7549 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1617
|
7550 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1630
|
7551 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1634
|
7552 |
#, php-format
|
7553 |
msgid "Error: %s"
|
7554 |
msgstr ""
|
7555 |
|
7556 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1798
|
7557 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1803
|
7558 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1808
|
7559 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
7560 |
#: classes/gateways/class.pmprogateway_stripe.php:192
|
7561 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
7590 |
#: classes/gateways/class.pmprogateway_stripe.php:1384
|
7591 |
#: classes/gateways/class.pmprogateway_stripe.php:1392
|
7592 |
#: classes/gateways/class.pmprogateway_stripe.php:1410
|
7593 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1728
|
7594 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1733
|
7595 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1738
|
7596 |
msgid "Error creating customer record with Stripe:"
|
7597 |
msgstr ""
|
7598 |
|
7599 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1867
|
7600 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1872
|
7601 |
#: classes/gateways/class.pmprogateway_stripe.php:1275
|
7602 |
#: classes/gateways/class.pmprogateway_stripe.php:1303
|
7603 |
#: classes/gateways/class.pmprogateway_stripe.php:1313
|
7621 |
#: classes/gateways/class.pmprogateway_stripe.php:1444
|
7622 |
#: classes/gateways/class.pmprogateway_stripe.php:1451
|
7623 |
#: classes/gateways/class.pmprogateway_stripe.php:1469
|
7624 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1797
|
7625 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1802
|
7626 |
msgid "Error getting subscription with Stripe:"
|
7627 |
msgstr ""
|
7628 |
|
7629 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2038
|
7630 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2043
|
7631 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
7632 |
#: classes/gateways/class.pmprogateway_stripe.php:279
|
7633 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
7672 |
#: classes/gateways/class.pmprogateway_stripe.php:1610
|
7673 |
#: classes/gateways/class.pmprogateway_stripe.php:1615
|
7674 |
#: classes/gateways/class.pmprogateway_stripe.php:1625
|
7675 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1968
|
7676 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1973
|
7677 |
msgid "Error creating plan with Stripe:"
|
7678 |
msgstr ""
|
7679 |
|
7680 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2074
|
7681 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2088
|
7682 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
7683 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
7684 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
7718 |
#: classes/gateways/class.pmprogateway_stripe.php:1646
|
7719 |
#: classes/gateways/class.pmprogateway_stripe.php:1656
|
7720 |
#: classes/gateways/class.pmprogateway_stripe.php:1660
|
7721 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2004
|
7722 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2018
|
7723 |
msgid "Error subscribing customer to plan with Stripe:"
|
7724 |
msgstr ""
|
7725 |
|
7726 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2179
|
7727 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
7728 |
#: classes/gateways/class.pmprogateway_stripe.php:770
|
7729 |
#: classes/gateways/class.pmprogateway_stripe.php:780
|
7749 |
#: classes/gateways/class.pmprogateway_stripe.php:1734
|
7750 |
#: classes/gateways/class.pmprogateway_stripe.php:1736
|
7751 |
#: classes/gateways/class.pmprogateway_stripe.php:1751
|
7752 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2109
|
7753 |
msgid "Could not cancel the old subscription. Updates have not been processed."
|
7754 |
msgstr ""
|
7755 |
|
7756 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2331
|
7757 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
7758 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
7759 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
7788 |
#: classes/gateways/class.pmprogateway_stripe.php:1885
|
7789 |
#: classes/gateways/class.pmprogateway_stripe.php:1887
|
7790 |
#: classes/gateways/class.pmprogateway_stripe.php:1902
|
7791 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2261
|
7792 |
msgid "Could not cancel old subscription."
|
7793 |
msgstr ""
|
7794 |
|
7795 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2347
|
7796 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
7797 |
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
7798 |
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
7823 |
#: classes/gateways/class.pmprogateway_stripe.php:1901
|
7824 |
#: classes/gateways/class.pmprogateway_stripe.php:1903
|
7825 |
#: classes/gateways/class.pmprogateway_stripe.php:1918
|
7826 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2277
|
7827 |
msgid "Could not find the customer."
|
7828 |
msgstr ""
|
7829 |
|
7830 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2515
|
7831 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2521
|
7832 |
#: classes/gateways/class.pmprogateway_stripe.php:1836
|
7833 |
#: classes/gateways/class.pmprogateway_stripe.php:1837
|
7834 |
#: classes/gateways/class.pmprogateway_stripe.php:1847
|
7850 |
#: classes/gateways/class.pmprogateway_stripe.php:2076
|
7851 |
#: classes/gateways/class.pmprogateway_stripe.php:2085
|
7852 |
#: classes/gateways/class.pmprogateway_stripe.php:2091
|
7853 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2445
|
7854 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2451
|
7855 |
msgid "Error: "
|
7856 |
msgstr ""
|
7857 |
|
7858 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2535
|
7859 |
#: classes/gateways/class.pmprogateway_stripe.php:1849
|
7860 |
#: classes/gateways/class.pmprogateway_stripe.php:1850
|
7861 |
#: classes/gateways/class.pmprogateway_stripe.php:1860
|
7874 |
#: classes/gateways/class.pmprogateway_stripe.php:2088
|
7875 |
#: classes/gateways/class.pmprogateway_stripe.php:2090
|
7876 |
#: classes/gateways/class.pmprogateway_stripe.php:2105
|
7877 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2465
|
7878 |
#, php-format
|
7879 |
msgid "Error: Unkown error while refunding charge #%s"
|
7880 |
msgstr ""
|
7881 |
|
7882 |
+
#: classes/gateways/class.pmprogateway_stripe.php:3003
|
7883 |
#: classes/gateways/class.pmprogateway_stripe.php:2438
|
7884 |
#: classes/gateways/class.pmprogateway_stripe.php:2479
|
7885 |
#: classes/gateways/class.pmprogateway_stripe.php:2485
|
7886 |
#: classes/gateways/class.pmprogateway_stripe.php:2547
|
7887 |
#: classes/gateways/class.pmprogateway_stripe.php:2549
|
7888 |
#: classes/gateways/class.pmprogateway_stripe.php:2564
|
7889 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2924
|
7890 |
msgid ""
|
7891 |
"Customer authentication is required to complete this transaction. Please "
|
7892 |
"complete the verification steps issued by your payment provider."
|
7893 |
msgstr ""
|
7894 |
|
7895 |
+
#: classes/gateways/class.pmprogateway_stripe.php:3020
|
7896 |
#: classes/gateways/class.pmprogateway_stripe.php:2455
|
7897 |
#: classes/gateways/class.pmprogateway_stripe.php:2496
|
7898 |
#: classes/gateways/class.pmprogateway_stripe.php:2502
|
7899 |
#: classes/gateways/class.pmprogateway_stripe.php:2564
|
7900 |
#: classes/gateways/class.pmprogateway_stripe.php:2566
|
7901 |
#: classes/gateways/class.pmprogateway_stripe.php:2581
|
7902 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2941
|
7903 |
msgid ""
|
7904 |
"Customer authentication is required to finish setting up your subscription. "
|
7905 |
"Please complete the verification steps issued by your payment provider."
|
7993 |
msgid "Check Out with 2Checkout"
|
7994 |
msgstr ""
|
7995 |
|
7996 |
+
#: includes/addons.php:241 includes/addons.php:222 includes/addons.php:225
|
7997 |
#: includes/addons.php:239
|
7998 |
msgid ""
|
7999 |
"Important: This plugin requires a valid PMPro Plus license key to update."
|
8000 |
msgstr ""
|
8001 |
|
8002 |
+
#: includes/addons.php:294 includes/addons.php:274 includes/addons.php:278
|
8003 |
#: includes/addons.php:292
|
8004 |
msgid ""
|
8005 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
8008 |
"updated:"
|
8009 |
msgstr ""
|
8010 |
|
8011 |
+
#: includes/addons.php:312 includes/addons.php:292 includes/addons.php:296
|
8012 |
#: includes/addons.php:310
|
8013 |
msgid "Update Plugin"
|
8014 |
msgstr ""
|
8015 |
|
8016 |
+
#: includes/addons.php:314 includes/addons.php:294 includes/addons.php:298
|
8017 |
#: includes/addons.php:312
|
8018 |
msgid ""
|
8019 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
8021 |
"Key</a> to update PMPro Plus add ons."
|
8022 |
msgstr ""
|
8023 |
|
8024 |
+
#: includes/addons.php:317 includes/addons.php:297 includes/addons.php:301
|
8025 |
#: includes/addons.php:315
|
8026 |
msgid "Return to the PMPro Add Ons page"
|
8027 |
msgstr ""
|
8028 |
|
8029 |
+
#: includes/addons.php:336 includes/addons.php:316 includes/addons.php:320
|
8030 |
#: includes/addons.php:334
|
8031 |
msgid ""
|
8032 |
"You must enter a valid PMPro Plus License Key under Settings > PMPro License "
|
9205 |
msgid "US Armed Forces"
|
9206 |
msgstr ""
|
9207 |
|
9208 |
+
#: includes/currencies.php:7 includes/currencies.php:113
|
9209 |
+
#: includes/currencies.php:140 includes/currencies.php:7
|
9210 |
#: includes/currencies.php:17 includes/currencies.php:37
|
9211 |
#: includes/currencies.php:44 includes/currencies.php:64
|
9212 |
#: includes/currencies.php:68 includes/currencies.php:75
|
9219 |
msgid "US Dollars ($)"
|
9220 |
msgstr ""
|
9221 |
|
9222 |
+
#: includes/currencies.php:9 includes/currencies.php:116
|
9223 |
#: includes/currencies.php:8 includes/currencies.php:9
|
9224 |
#: includes/currencies.php:19 includes/currencies.php:40
|
9225 |
#: includes/currencies.php:47 includes/currencies.php:67
|
9231 |
msgid "Euros (€)"
|
9232 |
msgstr ""
|
9233 |
|
9234 |
+
#: includes/currencies.php:14 includes/currencies.php:115
|
9235 |
#: includes/currencies.php:9 includes/currencies.php:14
|
9236 |
#: includes/currencies.php:24 includes/currencies.php:39
|
9237 |
#: includes/currencies.php:46 includes/currencies.php:66
|
9260 |
msgid "Brazilian Real (R$)"
|
9261 |
msgstr ""
|
9262 |
|
9263 |
+
#: includes/currencies.php:25 includes/currencies.php:114
|
9264 |
#: includes/currencies.php:12 includes/currencies.php:24
|
9265 |
#: includes/currencies.php:25 includes/currencies.php:34
|
9266 |
#: includes/currencies.php:35 includes/currencies.php:38
|
9409 |
msgid "Polish Zloty"
|
9410 |
msgstr ""
|
9411 |
|
9412 |
+
#: includes/currencies.php:68
|
9413 |
+
msgid "Romanian Leu"
|
9414 |
+
msgstr ""
|
9415 |
+
|
9416 |
+
#: includes/currencies.php:76 includes/currencies.php:63
|
9417 |
#: includes/currencies.php:65 includes/currencies.php:68
|
9418 |
#: includes/currencies.php:73
|
9419 |
msgid "Russian Ruble (₽)"
|
9420 |
msgstr ""
|
9421 |
|
9422 |
+
#: includes/currencies.php:84 includes/currencies.php:25
|
9423 |
#: includes/currencies.php:28 includes/currencies.php:45
|
9424 |
#: includes/currencies.php:52 includes/currencies.php:62
|
9425 |
#: includes/currencies.php:64 includes/currencies.php:65
|
9429 |
msgid "Singapore Dollar ($)"
|
9430 |
msgstr ""
|
9431 |
|
9432 |
+
#: includes/currencies.php:89 includes/currencies.php:50
|
9433 |
#: includes/currencies.php:57 includes/currencies.php:67
|
9434 |
#: includes/currencies.php:69 includes/currencies.php:70
|
9435 |
#: includes/currencies.php:73 includes/currencies.php:75
|
9438 |
msgid "South African Rand (R)"
|
9439 |
msgstr ""
|
9440 |
|
9441 |
+
#: includes/currencies.php:94 includes/currencies.php:30
|
9442 |
#: includes/currencies.php:50 includes/currencies.php:54
|
9443 |
#: includes/currencies.php:61 includes/currencies.php:71
|
9444 |
#: includes/currencies.php:73 includes/currencies.php:75
|
9448 |
msgid "South Korean Won"
|
9449 |
msgstr ""
|
9450 |
|
9451 |
+
#: includes/currencies.php:97 includes/currencies.php:26
|
9452 |
#: includes/currencies.php:31 includes/currencies.php:51
|
9453 |
#: includes/currencies.php:55 includes/currencies.php:62
|
9454 |
#: includes/currencies.php:72 includes/currencies.php:74
|
9458 |
msgid "Swedish Krona"
|
9459 |
msgstr ""
|
9460 |
|
9461 |
+
#: includes/currencies.php:98 includes/currencies.php:27
|
9462 |
#: includes/currencies.php:32 includes/currencies.php:52
|
9463 |
#: includes/currencies.php:56 includes/currencies.php:63
|
9464 |
#: includes/currencies.php:73 includes/currencies.php:75
|
9468 |
msgid "Swiss Franc"
|
9469 |
msgstr ""
|
9470 |
|
9471 |
+
#: includes/currencies.php:99 includes/currencies.php:28
|
9472 |
#: includes/currencies.php:33 includes/currencies.php:53
|
9473 |
#: includes/currencies.php:57 includes/currencies.php:64
|
9474 |
#: includes/currencies.php:74 includes/currencies.php:76
|
9478 |
msgid "Taiwan New Dollars"
|
9479 |
msgstr ""
|
9480 |
|
9481 |
+
#: includes/currencies.php:100 includes/currencies.php:29
|
9482 |
#: includes/currencies.php:34 includes/currencies.php:54
|
9483 |
#: includes/currencies.php:58 includes/currencies.php:65
|
9484 |
#: includes/currencies.php:75 includes/currencies.php:77
|
9488 |
msgid "Thai Baht"
|
9489 |
msgstr ""
|
9490 |
|
9491 |
+
#: includes/currencies.php:101 includes/currencies.php:35
|
9492 |
#: includes/currencies.php:55 includes/currencies.php:59
|
9493 |
#: includes/currencies.php:66 includes/currencies.php:76
|
9494 |
#: includes/currencies.php:78 includes/currencies.php:82
|
9498 |
msgid "Turkish Lira"
|
9499 |
msgstr ""
|
9500 |
|
9501 |
+
#: includes/currencies.php:103 includes/currencies.php:36
|
9502 |
#: includes/currencies.php:56 includes/currencies.php:60
|
9503 |
#: includes/currencies.php:67 includes/currencies.php:77
|
9504 |
#: includes/currencies.php:79 includes/currencies.php:84
|
9845 |
#: includes/functions.php:1077 includes/functions.php:1096
|
9846 |
#: includes/functions.php:1123 includes/functions.php:1127
|
9847 |
#: includes/functions.php:1129 includes/functions.php:1135
|
9848 |
+
#: includes/functions.php:1138 includes/functions.php:1139
|
9849 |
+
#: includes/functions.php:1140
|
9850 |
#, php-format
|
9851 |
msgid "Error interacting with database: %s"
|
9852 |
msgstr ""
|
9875 |
#: includes/functions.php:1179 includes/functions.php:1193
|
9876 |
#: includes/functions.php:1198 includes/functions.php:1202
|
9877 |
#: includes/functions.php:1204 includes/functions.php:1212
|
9878 |
+
#: includes/functions.php:1213 includes/functions.php:1217
|
9879 |
+
#: includes/functions.php:1218 includes/functions.php:1237
|
9880 |
+
#: includes/functions.php:1241 includes/functions.php:1243
|
9881 |
+
#: includes/functions.php:1251 includes/functions.php:1252
|
9882 |
+
#: includes/functions.php:1255 includes/functions.php:1256
|
9883 |
msgid "Membership level not found."
|
9884 |
msgstr ""
|
9885 |
|
9894 |
#: includes/functions.php:1547 includes/functions.php:1586
|
9895 |
#: includes/functions.php:1605 includes/functions.php:1609
|
9896 |
#: includes/functions.php:1611 includes/functions.php:1620
|
9897 |
+
#: includes/functions.php:1625 includes/functions.php:1629
|
9898 |
+
#: includes/functions.php:1630
|
9899 |
msgid "No code was given to check."
|
9900 |
msgstr ""
|
9901 |
|
9914 |
#: includes/functions.php:1595 includes/functions.php:1614
|
9915 |
#: includes/functions.php:1618 includes/functions.php:1620
|
9916 |
#: includes/functions.php:1629 includes/functions.php:1634
|
9917 |
+
#: includes/functions.php:1638 includes/functions.php:1639
|
9918 |
msgid "The discount code could not be found."
|
9919 |
msgstr ""
|
9920 |
|
9933 |
#: includes/functions.php:1610 includes/functions.php:1629
|
9934 |
#: includes/functions.php:1633 includes/functions.php:1635
|
9935 |
#: includes/functions.php:1644 includes/functions.php:1649
|
9936 |
+
#: includes/functions.php:1653 includes/functions.php:1654
|
9937 |
#, php-format
|
9938 |
msgid "This discount code goes into effect on %s."
|
9939 |
msgstr ""
|
9953 |
#: includes/functions.php:1617 includes/functions.php:1636
|
9954 |
#: includes/functions.php:1640 includes/functions.php:1642
|
9955 |
#: includes/functions.php:1651 includes/functions.php:1656
|
9956 |
+
#: includes/functions.php:1660 includes/functions.php:1661
|
9957 |
#, php-format
|
9958 |
msgid "This discount code expired on %s."
|
9959 |
msgstr ""
|
9973 |
#: includes/functions.php:1626 includes/functions.php:1646
|
9974 |
#: includes/functions.php:1650 includes/functions.php:1652
|
9975 |
#: includes/functions.php:1661 includes/functions.php:1665
|
9976 |
+
#: includes/functions.php:1669 includes/functions.php:1670
|
9977 |
msgid "This discount code is no longer valid."
|
9978 |
msgstr ""
|
9979 |
|
9991 |
#: includes/functions.php:1606 includes/functions.php:1645
|
9992 |
#: includes/functions.php:1666 includes/functions.php:1670
|
9993 |
#: includes/functions.php:1672 includes/functions.php:1681
|
9994 |
+
#: includes/functions.php:1684 includes/functions.php:1688
|
9995 |
+
#: includes/functions.php:1689
|
9996 |
msgid "This discount code does not apply to this membership level."
|
9997 |
msgstr ""
|
9998 |
|
10011 |
#: includes/functions.php:1683 includes/functions.php:1703
|
10012 |
#: includes/functions.php:1707 includes/functions.php:1709
|
10013 |
#: includes/functions.php:1718 includes/functions.php:1722
|
10014 |
+
#: includes/functions.php:1726 includes/functions.php:1727
|
10015 |
msgid "This discount code is okay."
|
10016 |
msgstr ""
|
10017 |
|
10030 |
#: includes/functions.php:1711 includes/functions.php:1730
|
10031 |
#: includes/functions.php:1734 includes/functions.php:1736
|
10032 |
#: includes/functions.php:1745 includes/functions.php:1750
|
10033 |
+
#: includes/functions.php:1754 includes/functions.php:1755
|
10034 |
msgid "and"
|
10035 |
msgstr ""
|
10036 |
|
10052 |
#: includes/functions.php:2034 includes/functions.php:2061
|
10053 |
#: includes/functions.php:2100 includes/functions.php:2102
|
10054 |
#: includes/functions.php:2155 includes/functions.php:2199
|
10055 |
+
#: includes/functions.php:2210
|
10056 |
msgid "Sign Up for !!name!! Now"
|
10057 |
msgstr ""
|
10058 |
|
10060 |
#: includes/functions.php:2054 includes/functions.php:2085
|
10061 |
#: includes/functions.php:2124 includes/functions.php:2126
|
10062 |
#: includes/functions.php:2179 includes/functions.php:2223
|
10063 |
+
#: includes/functions.php:2234
|
10064 |
msgid "Sign Up Now"
|
10065 |
msgstr ""
|
10066 |
|
10076 |
#: includes/init.php:220 includes/init.php:222 includes/init.php:230
|
10077 |
#: includes/init.php:238 includes/init.php:242 includes/init.php:243
|
10078 |
#: includes/init.php:244 includes/init.php:258 includes/init.php:262
|
10079 |
+
#: includes/profile.php:22 includes/profile.php:25 includes/profile.php:27
|
10080 |
+
#: includes/profile.php:30 includes/profile.php:31 includes/profile.php:36
|
10081 |
+
#: pages/checkout.php:33 pages/checkout.php:34 pages/checkout.php:35
|
10082 |
+
#: pages/checkout.php:39 pages/checkout.php:42 pages/checkout.php:45
|
10083 |
+
#: pages/checkout.php:47 pages/confirmation.php:46 pages/confirmation.php:47
|
10084 |
#: pages/confirmation.php:52 pages/confirmation.php:53
|
10085 |
#: pages/confirmation.php:62 pages/confirmation.php:64
|
10086 |
#: pages/confirmation.php:70 pages/confirmation.php:91
|
10093 |
msgid "Membership Level"
|
10094 |
msgstr ""
|
10095 |
|
10096 |
+
#: includes/lib/SendWP/sendwp.php:90 includes/lib/SendWP/sendwp.php:90
|
10097 |
msgid "Something went wrong. SendWP was not installed correctly."
|
10098 |
msgstr ""
|
10099 |
|
10166 |
msgstr ""
|
10167 |
|
10168 |
#: includes/login.php:251 includes/login.php:275 includes/login.php:211
|
10169 |
+
#: includes/login.php:235 includes/login.php:251 includes/login.php:275
|
10170 |
msgid "Welcome"
|
10171 |
msgstr ""
|
10172 |
|
10173 |
#: includes/login.php:253 includes/login.php:277 includes/login.php:213
|
10174 |
+
#: includes/login.php:237 includes/login.php:253 includes/login.php:277
|
10175 |
msgid "Lost Password"
|
10176 |
msgstr ""
|
10177 |
|
10178 |
#: includes/login.php:255 includes/login.php:279 includes/login.php:215
|
10179 |
+
#: includes/login.php:239 includes/login.php:255 includes/login.php:279
|
10180 |
msgid "Reset Password"
|
10181 |
msgstr ""
|
10182 |
|
10183 |
#: includes/login.php:303 includes/login.php:820 includes/login.php:263
|
10184 |
+
#: includes/login.php:303 includes/login.php:751 includes/login.php:820
|
10185 |
msgid "There was a problem with your username or password."
|
10186 |
msgstr ""
|
10187 |
|
10188 |
+
#: includes/login.php:307 includes/login.php:267 includes/login.php:307
|
10189 |
msgid "Unknown username. Check again or try your email address."
|
10190 |
msgstr ""
|
10191 |
|
10192 |
+
#: includes/login.php:311 includes/login.php:271 includes/login.php:311
|
10193 |
msgid "Empty username. Please enter your username and try again."
|
10194 |
msgstr ""
|
10195 |
|
10196 |
+
#: includes/login.php:315 includes/login.php:275 includes/login.php:315
|
10197 |
msgid "Empty password. Please enter your password and try again."
|
10198 |
msgstr ""
|
10199 |
|
10200 |
+
#: includes/login.php:319 includes/login.php:279 includes/login.php:319
|
10201 |
msgid "The password you entered for the user is incorrect. Please try again."
|
10202 |
msgstr ""
|
10203 |
|
10204 |
+
#: includes/login.php:323 includes/login.php:283 includes/login.php:323
|
10205 |
msgid "Check your email for the confirmation link."
|
10206 |
msgstr ""
|
10207 |
|
10208 |
+
#: includes/login.php:332 includes/login.php:292 includes/login.php:332
|
10209 |
msgid "You are now logged out."
|
10210 |
msgstr ""
|
10211 |
|
10212 |
+
#: includes/login.php:336 includes/login.php:296 includes/login.php:336
|
10213 |
msgid "There was a problem logging you out."
|
10214 |
msgstr ""
|
10215 |
|
10216 |
+
#: includes/login.php:347 includes/login.php:307 includes/login.php:347
|
10217 |
msgid "Check your email for a link to reset your password."
|
10218 |
msgstr ""
|
10219 |
|
10220 |
+
#: includes/login.php:350 includes/login.php:310 includes/login.php:350
|
10221 |
msgid "There was an unexpected error regarding your email. Please try again"
|
10222 |
msgstr ""
|
10223 |
|
10224 |
+
#: includes/login.php:360 includes/login.php:320 includes/login.php:360
|
10225 |
msgid "Your reset password key is invalid."
|
10226 |
msgstr ""
|
10227 |
|
10228 |
+
#: includes/login.php:364 includes/login.php:324 includes/login.php:364
|
10229 |
msgid ""
|
10230 |
"Your reset password key is expired, please request a new key from the "
|
10231 |
"password reset page."
|
10232 |
msgstr ""
|
10233 |
|
10234 |
+
#: includes/login.php:376 includes/login.php:336 includes/login.php:376
|
10235 |
msgid "Your password has successfully been updated."
|
10236 |
msgstr ""
|
10237 |
|
10238 |
+
#: includes/login.php:380 includes/login.php:340 includes/login.php:380
|
10239 |
msgid "There was a problem updating your password"
|
10240 |
msgstr ""
|
10241 |
|
10242 |
+
#: includes/login.php:394 includes/login.php:349 includes/login.php:394
|
10243 |
msgid "There is no account with that username or email address."
|
10244 |
msgstr ""
|
10245 |
|
10246 |
+
#: includes/login.php:398 includes/login.php:353 includes/login.php:398
|
10247 |
msgid "Please enter a valid username."
|
10248 |
msgstr ""
|
10249 |
|
10250 |
+
#: includes/login.php:402 includes/login.php:357 includes/login.php:402
|
10251 |
msgid "You've entered an invalid email address."
|
10252 |
msgstr ""
|
10253 |
|
10254 |
+
#: includes/login.php:406 includes/profile.php:595 includes/login.php:361
|
10255 |
+
#: includes/login.php:406 includes/profile.php:586 includes/profile.php:624
|
10256 |
msgid "New passwords do not match."
|
10257 |
msgstr ""
|
10258 |
|
10259 |
+
#: includes/login.php:410 includes/profile.php:591 includes/login.php:365
|
10260 |
+
#: includes/login.php:410 includes/profile.php:582 includes/profile.php:620
|
10261 |
msgid "Please complete all fields."
|
10262 |
msgstr ""
|
10263 |
|
10264 |
+
#: includes/login.php:414 includes/login.php:414
|
10265 |
msgid ""
|
10266 |
"The email could not be sent. This site may not be correctly configured to "
|
10267 |
"send emails."
|
10268 |
msgstr ""
|
10269 |
|
10270 |
+
#: includes/login.php:636 includes/profile.php:646 includes/scripts.php:86
|
10271 |
+
#: includes/login.php:587 includes/login.php:636 includes/profile.php:637
|
10272 |
+
#: includes/profile.php:675 includes/scripts.php:72 includes/scripts.php:86
|
10273 |
msgid "Strength Indicator"
|
10274 |
msgstr ""
|
10275 |
|
10276 |
+
#: includes/login.php:959 includes/login.php:886 includes/login.php:959
|
10277 |
msgid "Missing request ID."
|
10278 |
msgstr ""
|
10279 |
|
10280 |
+
#: includes/login.php:963 includes/login.php:890 includes/login.php:963
|
10281 |
msgid "Missing confirm key."
|
10282 |
msgstr ""
|
10283 |
|
10320 |
"Only members of these levels will be able to view posts in this category."
|
10321 |
msgstr ""
|
10322 |
|
10323 |
+
#: includes/pointers.php:31 includes/pointers.php:28
|
10324 |
msgid "PMPro v2.0 Update"
|
10325 |
msgstr ""
|
10326 |
|
10327 |
+
#: includes/pointers.php:32 includes/pointers.php:29
|
10328 |
#, php-format
|
10329 |
msgid ""
|
10330 |
"The Memberships menu has moved. Check out the new dashboard. The Membership "
|
10332 |
"\">Settings</a>."
|
10333 |
msgstr ""
|
10334 |
|
10335 |
+
#: includes/pointers.php:47 includes/pointers.php:44 includes/pointers.php:45
|
10336 |
msgid "Close"
|
10337 |
msgstr ""
|
10338 |
|
10600 |
msgid "That post has since been updated."
|
10601 |
msgstr ""
|
10602 |
|
10603 |
+
#: includes/profile.php:31 includes/profile.php:31 includes/profile.php:34
|
10604 |
+
#: includes/profile.php:36 includes/profile.php:39 includes/profile.php:40
|
10605 |
+
#: includes/profile.php:45
|
10606 |
msgid "Current Level"
|
10607 |
msgstr ""
|
10608 |
|
10609 |
+
#: includes/profile.php:58 pages/invoice.php:31
|
10610 |
+
#: shortcodes/pmpro_account.php:231 includes/profile.php:58
|
10611 |
#: includes/profile.php:67 includes/profile.php:72
|
10612 |
#: shortcodes/pmpro_account.php:148 shortcodes/pmpro_account.php:224
|
10613 |
+
#: shortcodes/pmpro_account.php:231
|
10614 |
msgid "Paid"
|
10615 |
msgstr ""
|
10616 |
|
10617 |
#: includes/profile.php:60 includes/profile.php:190 includes/profile.php:237
|
10618 |
#: includes/profile.php:54 includes/profile.php:60 includes/profile.php:65
|
10619 |
#: includes/profile.php:68 includes/profile.php:69 includes/profile.php:74
|
10620 |
+
#: includes/profile.php:190 includes/profile.php:195 includes/profile.php:221
|
10621 |
+
#: includes/profile.php:226 includes/profile.php:237 includes/profile.php:242
|
10622 |
+
#: includes/profile.php:268 includes/profile.php:273
|
10623 |
msgid "Not paying."
|
10624 |
msgstr ""
|
10625 |
|
10631 |
"checkbox is selected below."
|
10632 |
msgstr ""
|
10633 |
|
10634 |
+
#: includes/profile.php:120 includes/profile.php:120 includes/profile.php:151
|
10635 |
+
#: includes/profile.php:156
|
10636 |
msgid "Send the user an email about this change."
|
10637 |
msgstr ""
|
10638 |
|
10639 |
+
#: includes/profile.php:126 includes/profile.php:126 includes/profile.php:157
|
10640 |
+
#: includes/profile.php:162
|
10641 |
msgid "Cancel this user's subscription at the gateway."
|
10642 |
msgstr ""
|
10643 |
|
10644 |
+
#: includes/profile.php:140 includes/profile.php:140 includes/profile.php:171
|
10645 |
+
#: includes/profile.php:176
|
10646 |
msgid "TOS Consent History"
|
10647 |
msgstr ""
|
10648 |
|
10649 |
+
#: includes/profile.php:440 includes/profile.php:440 includes/profile.php:473
|
10650 |
msgid "Please enter a display name."
|
10651 |
msgstr ""
|
10652 |
|
10653 |
+
#: includes/profile.php:450 includes/profile.php:450 includes/profile.php:483
|
10654 |
msgid "Please enter an email address."
|
10655 |
msgstr ""
|
10656 |
|
10657 |
+
#: includes/profile.php:452 includes/profile.php:452 includes/profile.php:485
|
10658 |
msgid "The email address isn’t correct."
|
10659 |
msgstr ""
|
10660 |
|
10661 |
+
#: includes/profile.php:456 includes/profile.php:456 includes/profile.php:489
|
10662 |
msgid "This email is already registered, please choose another one."
|
10663 |
msgstr ""
|
10664 |
|
10665 |
+
#: includes/profile.php:474 includes/profile.php:474 includes/profile.php:507
|
10666 |
msgid "Your profile has been updated."
|
10667 |
msgstr ""
|
10668 |
|
10669 |
+
#: includes/profile.php:499 pages/billing.php:152 pages/checkout.php:230
|
10670 |
+
#: includes/profile.php:490 includes/profile.php:523 pages/billing.php:65
|
10671 |
+
#: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
|
10672 |
+
#: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
|
10673 |
+
#: pages/billing.php:104 pages/billing.php:107 pages/billing.php:108
|
10674 |
+
#: pages/billing.php:110 pages/billing.php:112 pages/billing.php:113
|
10675 |
+
#: pages/billing.php:121 pages/billing.php:130 pages/billing.php:152
|
10676 |
+
#: pages/checkout.php:230 pages/checkout.php:279 pages/checkout.php:287
|
10677 |
+
#: pages/checkout.php:305 pages/checkout.php:307 pages/checkout.php:309
|
10678 |
+
#: pages/checkout.php:318 pages/checkout.php:321 pages/checkout.php:324
|
10679 |
+
#: pages/checkout.php:326 pages/checkout.php:328 pages/checkout.php:333
|
10680 |
+
#: pages/checkout.php:336
|
10681 |
msgid "First Name"
|
10682 |
msgstr ""
|
10683 |
|
10684 |
+
#: includes/profile.php:500 pages/billing.php:156 pages/checkout.php:234
|
10685 |
+
#: includes/profile.php:491 includes/profile.php:528 pages/billing.php:69
|
10686 |
+
#: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
|
10687 |
+
#: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
|
10688 |
+
#: pages/billing.php:108 pages/billing.php:111 pages/billing.php:112
|
10689 |
+
#: pages/billing.php:114 pages/billing.php:116 pages/billing.php:117
|
10690 |
+
#: pages/billing.php:125 pages/billing.php:134 pages/billing.php:156
|
10691 |
+
#: pages/checkout.php:234 pages/checkout.php:283 pages/checkout.php:291
|
10692 |
+
#: pages/checkout.php:309 pages/checkout.php:311 pages/checkout.php:313
|
10693 |
+
#: pages/checkout.php:322 pages/checkout.php:325 pages/checkout.php:328
|
10694 |
+
#: pages/checkout.php:330 pages/checkout.php:332 pages/checkout.php:337
|
10695 |
+
#: pages/checkout.php:340
|
10696 |
msgid "Last Name"
|
10697 |
msgstr ""
|
10698 |
|
10699 |
+
#: includes/profile.php:501 includes/profile.php:492 includes/profile.php:533
|
10700 |
msgid "Display name publicly as"
|
10701 |
msgstr ""
|
10702 |
|
10703 |
+
#: includes/profile.php:537 includes/profile.php:528 includes/profile.php:566
|
10704 |
msgid "Update Profile"
|
10705 |
msgstr ""
|
10706 |
|
10707 |
+
#: includes/profile.php:593 includes/profile.php:584 includes/profile.php:622
|
10708 |
msgid "Please enter your current password."
|
10709 |
msgstr ""
|
10710 |
|
10711 |
+
#: includes/profile.php:597 includes/profile.php:588 includes/profile.php:626
|
10712 |
msgid "Your current password is incorrect."
|
10713 |
msgstr ""
|
10714 |
|
10715 |
+
#: includes/profile.php:608 includes/profile.php:599 includes/profile.php:637
|
10716 |
msgid "Your password has been updated."
|
10717 |
msgstr ""
|
10718 |
|
10719 |
+
#: includes/profile.php:624 includes/profile.php:615 includes/profile.php:653
|
10720 |
+
#: pages/account.php:56 pages/account.php:60 pages/account.php:81
|
10721 |
+
#: shortcodes/pmpro_account.php:111 shortcodes/pmpro_account.php:113
|
10722 |
+
#: shortcodes/pmpro_account.php:114 shortcodes/pmpro_account.php:116
|
10723 |
msgid "Change Password"
|
10724 |
msgstr ""
|
10725 |
|
10726 |
+
#: includes/profile.php:638 includes/profile.php:629 includes/profile.php:667
|
10727 |
msgid "Current Password"
|
10728 |
msgstr ""
|
10729 |
|
10730 |
+
#: includes/profile.php:640 includes/profile.php:645 includes/profile.php:652
|
10731 |
+
#: includes/profile.php:535 includes/profile.php:546 includes/profile.php:631
|
10732 |
+
#: includes/profile.php:636 includes/profile.php:643 includes/profile.php:669
|
10733 |
#: includes/profile.php:674 includes/profile.php:681
|
10734 |
msgid "Required Field"
|
10735 |
msgstr ""
|
10736 |
|
10737 |
+
#: includes/profile.php:643 includes/profile.php:634 includes/profile.php:672
|
10738 |
msgid "New Password"
|
10739 |
msgstr ""
|
10740 |
|
10741 |
+
#: includes/profile.php:650 includes/profile.php:641 includes/profile.php:679
|
10742 |
msgid "Confirm New Password"
|
10743 |
msgstr ""
|
10744 |
|
10795 |
#: pages/billing.php:34 pages/billing.php:14 pages/billing.php:23
|
10796 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
10797 |
#: pages/billing.php:28 pages/billing.php:31 pages/billing.php:32
|
10798 |
+
#: pages/billing.php:33 pages/billing.php:34 pages/billing.php:389
|
10799 |
#, php-format
|
10800 |
msgid "Logged in as <strong>%s</strong>."
|
10801 |
msgstr ""
|
10803 |
#: pages/billing.php:34 pages/billing.php:14 pages/billing.php:23
|
10804 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
10805 |
#: pages/billing.php:28 pages/billing.php:31 pages/billing.php:32
|
10806 |
+
#: pages/billing.php:33 pages/billing.php:34 pages/billing.php:389
|
10807 |
msgid "logout"
|
10808 |
msgstr ""
|
10809 |
|
10811 |
#: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
|
10812 |
#: pages/billing.php:32 pages/billing.php:43 pages/billing.php:46
|
10813 |
#: pages/billing.php:47 pages/billing.php:51 pages/billing.php:52
|
10814 |
+
#: pages/billing.php:59 pages/billing.php:60
|
10815 |
msgid "Membership Fee"
|
10816 |
msgstr ""
|
10817 |
|
10819 |
#: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
|
10820 |
#: pages/billing.php:36 pages/billing.php:47 pages/billing.php:50
|
10821 |
#: pages/billing.php:51 pages/billing.php:55 pages/billing.php:56
|
10822 |
+
#: pages/billing.php:63 pages/billing.php:64 pages/levels.php:70
|
10823 |
#, php-format
|
10824 |
msgid "%s every %d %s."
|
10825 |
msgstr ""
|
10828 |
#: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
|
10829 |
#: pages/billing.php:38 pages/billing.php:49 pages/billing.php:52
|
10830 |
#: pages/billing.php:53 pages/billing.php:57 pages/billing.php:58
|
10831 |
+
#: pages/billing.php:65 pages/billing.php:66 pages/levels.php:66
|
10832 |
#, php-format
|
10833 |
msgid "%s per %s."
|
10834 |
msgstr ""
|
10838 |
#: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
|
10839 |
#: pages/billing.php:59 pages/billing.php:62 pages/billing.php:63
|
10840 |
#: pages/billing.php:67 pages/billing.php:68 pages/billing.php:76
|
10841 |
+
#: pages/billing.php:77
|
10842 |
msgid "Duration"
|
10843 |
msgstr ""
|
10844 |
|
10845 |
+
#: pages/billing.php:84 pages/confirmation.php:79 pages/invoice.php:69
|
10846 |
+
#: pages/account.php:105 pages/account.php:109 pages/billing.php:84
|
10847 |
+
#: pages/confirmation.php:61 pages/confirmation.php:63
|
10848 |
+
#: pages/confirmation.php:69 pages/confirmation.php:78
|
10849 |
+
#: pages/confirmation.php:79 pages/confirmation.php:82 pages/invoice.php:48
|
10850 |
+
#: pages/invoice.php:50 pages/invoice.php:60 pages/invoice.php:61
|
10851 |
+
#: pages/invoice.php:62
|
10852 |
msgid "Payment Method"
|
10853 |
msgstr ""
|
10854 |
|
10855 |
+
#: pages/billing.php:86 pages/confirmation.php:81 pages/invoice.php:71
|
10856 |
+
#: pages/billing.php:86 pages/confirmation.php:79 pages/confirmation.php:80
|
10857 |
#: pages/confirmation.php:81 pages/confirmation.php:82
|
10858 |
#: pages/confirmation.php:83 pages/confirmation.php:88 pages/invoice.php:61
|
10859 |
#: pages/invoice.php:62 pages/invoice.php:63 pages/invoice.php:67
|
10862 |
msgstr ""
|
10863 |
|
10864 |
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:133
|
10865 |
+
#: pages/invoice.php:143 pages/billing.php:97 pages/billing.php:103
|
10866 |
+
#: pages/billing.php:113 pages/billing.php:119 pages/confirmation.php:111
|
10867 |
+
#: pages/confirmation.php:113 pages/confirmation.php:121
|
10868 |
+
#: pages/confirmation.php:124 pages/confirmation.php:131
|
10869 |
+
#: pages/confirmation.php:132 pages/confirmation.php:133
|
10870 |
+
#: pages/confirmation.php:134 pages/invoice.php:121 pages/invoice.php:133
|
10871 |
+
#: pages/invoice.php:134 pages/invoice.php:135 pages/invoice.php:136
|
10872 |
+
#: pages/invoice.php:139 pages/invoice.php:141
|
10873 |
msgid "View Your Membership Account →"
|
10874 |
msgstr ""
|
10875 |
|
10877 |
#: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
|
10878 |
#: pages/billing.php:57 pages/billing.php:77 pages/billing.php:80
|
10879 |
#: pages/billing.php:81 pages/billing.php:85 pages/billing.php:86
|
10880 |
+
#: pages/billing.php:94 pages/billing.php:100 pages/billing.php:116
|
10881 |
msgid ""
|
10882 |
"Your payment subscription is managed by PayPal. Please <a href=\"http://www."
|
10883 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
10884 |
msgstr ""
|
10885 |
|
10886 |
+
#: pages/billing.php:124 pages/billing.php:124
|
10887 |
msgid "Your billing information cannot be updated at this time."
|
10888 |
msgstr ""
|
10889 |
|
10890 |
#: pages/billing.php:148 pages/checkout.php:226 pages/confirmation.php:66
|
10891 |
+
#: pages/invoice.php:56 adminpages/memberslist.php:117
|
10892 |
#: adminpages/memberslist.php:150 adminpages/memberslist.php:160
|
10893 |
#: adminpages/memberslist.php:170 adminpages/memberslist.php:174
|
10894 |
#: pages/account.php:90 pages/account.php:94 pages/billing.php:58
|
10896 |
#: pages/billing.php:76 pages/billing.php:77 pages/billing.php:80
|
10897 |
#: pages/billing.php:100 pages/billing.php:103 pages/billing.php:104
|
10898 |
#: pages/billing.php:108 pages/billing.php:109 pages/billing.php:117
|
10899 |
+
#: pages/billing.php:126 pages/billing.php:148 pages/checkout.php:226
|
10900 |
+
#: pages/checkout.php:275 pages/checkout.php:283 pages/checkout.php:298
|
10901 |
+
#: pages/checkout.php:300 pages/checkout.php:302 pages/checkout.php:311
|
10902 |
+
#: pages/checkout.php:314 pages/checkout.php:317 pages/checkout.php:319
|
10903 |
+
#: pages/checkout.php:321 pages/checkout.php:326 pages/checkout.php:329
|
10904 |
+
#: pages/confirmation.php:59 pages/confirmation.php:61
|
10905 |
+
#: pages/confirmation.php:65 pages/confirmation.php:66
|
10906 |
+
#: pages/confirmation.php:67 pages/confirmation.php:69 pages/invoice.php:46
|
10907 |
+
#: pages/invoice.php:47 pages/invoice.php:48 pages/invoice.php:49
|
10908 |
msgid "Billing Address"
|
10909 |
msgstr ""
|
10910 |
|
10913 |
#: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
|
10914 |
#: pages/billing.php:112 pages/billing.php:115 pages/billing.php:116
|
10915 |
#: pages/billing.php:118 pages/billing.php:120 pages/billing.php:121
|
10916 |
+
#: pages/billing.php:129 pages/billing.php:138 pages/billing.php:162
|
10917 |
+
#: pages/checkout.php:238 pages/checkout.php:287 pages/checkout.php:295
|
10918 |
+
#: pages/checkout.php:313 pages/checkout.php:315 pages/checkout.php:317
|
10919 |
+
#: pages/checkout.php:326 pages/checkout.php:329 pages/checkout.php:332
|
10920 |
+
#: pages/checkout.php:334 pages/checkout.php:336 pages/checkout.php:341
|
10921 |
+
#: pages/checkout.php:344
|
10922 |
msgid "Address 1"
|
10923 |
msgstr ""
|
10924 |
|
10927 |
#: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
|
10928 |
#: pages/billing.php:116 pages/billing.php:119 pages/billing.php:120
|
10929 |
#: pages/billing.php:122 pages/billing.php:124 pages/billing.php:125
|
10930 |
+
#: pages/billing.php:133 pages/billing.php:142 pages/billing.php:166
|
10931 |
+
#: pages/checkout.php:242 pages/checkout.php:291 pages/checkout.php:299
|
10932 |
+
#: pages/checkout.php:317 pages/checkout.php:319 pages/checkout.php:321
|
10933 |
+
#: pages/checkout.php:330 pages/checkout.php:333 pages/checkout.php:336
|
10934 |
+
#: pages/checkout.php:338 pages/checkout.php:340 pages/checkout.php:345
|
10935 |
+
#: pages/checkout.php:348
|
10936 |
msgid "Address 2"
|
10937 |
msgstr ""
|
10938 |
|
10941 |
#: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
|
10942 |
#: pages/billing.php:126 pages/billing.php:129 pages/billing.php:130
|
10943 |
#: pages/billing.php:132 pages/billing.php:134 pages/billing.php:135
|
10944 |
+
#: pages/billing.php:143 pages/billing.php:152 pages/billing.php:176
|
10945 |
+
#: pages/checkout.php:249 pages/checkout.php:298 pages/checkout.php:306
|
10946 |
+
#: pages/checkout.php:327 pages/checkout.php:329 pages/checkout.php:331
|
10947 |
+
#: pages/checkout.php:340 pages/checkout.php:343 pages/checkout.php:346
|
10948 |
+
#: pages/checkout.php:348 pages/checkout.php:350 pages/checkout.php:355
|
10949 |
+
#: pages/checkout.php:358
|
10950 |
msgid "City"
|
10951 |
msgstr ""
|
10952 |
|
10955 |
#: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
|
10956 |
#: pages/billing.php:130 pages/billing.php:133 pages/billing.php:134
|
10957 |
#: pages/billing.php:136 pages/billing.php:138 pages/billing.php:139
|
10958 |
+
#: pages/billing.php:147 pages/billing.php:156 pages/billing.php:180
|
10959 |
+
#: pages/checkout.php:253 pages/checkout.php:302 pages/checkout.php:310
|
10960 |
+
#: pages/checkout.php:331 pages/checkout.php:333 pages/checkout.php:335
|
10961 |
+
#: pages/checkout.php:344 pages/checkout.php:347 pages/checkout.php:350
|
10962 |
+
#: pages/checkout.php:352 pages/checkout.php:354 pages/checkout.php:359
|
10963 |
+
#: pages/checkout.php:362
|
10964 |
msgid "State"
|
10965 |
msgstr ""
|
10966 |
|
10969 |
#: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
|
10970 |
#: pages/billing.php:134 pages/billing.php:137 pages/billing.php:138
|
10971 |
#: pages/billing.php:140 pages/billing.php:142 pages/billing.php:143
|
10972 |
+
#: pages/billing.php:151 pages/billing.php:160 pages/billing.php:184
|
10973 |
+
#: pages/checkout.php:257 pages/checkout.php:306 pages/checkout.php:314
|
10974 |
+
#: pages/checkout.php:335 pages/checkout.php:337 pages/checkout.php:339
|
10975 |
+
#: pages/checkout.php:348 pages/checkout.php:351 pages/checkout.php:354
|
10976 |
+
#: pages/checkout.php:356 pages/checkout.php:358 pages/checkout.php:363
|
10977 |
+
#: pages/checkout.php:366
|
10978 |
msgid "Postal Code"
|
10979 |
msgstr ""
|
10980 |
|
10983 |
#: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
|
10984 |
#: pages/billing.php:143 pages/billing.php:146 pages/billing.php:147
|
10985 |
#: pages/billing.php:149 pages/billing.php:151 pages/billing.php:152
|
10986 |
+
#: pages/billing.php:160 pages/billing.php:169 pages/billing.php:193
|
10987 |
+
#: pages/checkout.php:262 pages/checkout.php:311 pages/checkout.php:319
|
10988 |
+
#: pages/checkout.php:344 pages/checkout.php:346 pages/checkout.php:348
|
10989 |
+
#: pages/checkout.php:357 pages/checkout.php:360 pages/checkout.php:363
|
10990 |
+
#: pages/checkout.php:365 pages/checkout.php:367 pages/checkout.php:372
|
10991 |
+
#: pages/checkout.php:375
|
10992 |
msgid "City, State Zip"
|
10993 |
msgstr ""
|
10994 |
|
10997 |
#: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
|
10998 |
#: pages/billing.php:196 pages/billing.php:199 pages/billing.php:200
|
10999 |
#: pages/billing.php:202 pages/billing.php:204 pages/billing.php:205
|
11000 |
+
#: pages/billing.php:213 pages/billing.php:222 pages/billing.php:246
|
11001 |
+
#: pages/checkout.php:299 pages/checkout.php:348 pages/checkout.php:356
|
11002 |
+
#: pages/checkout.php:397 pages/checkout.php:399 pages/checkout.php:401
|
11003 |
+
#: pages/checkout.php:410 pages/checkout.php:413 pages/checkout.php:416
|
11004 |
+
#: pages/checkout.php:418 pages/checkout.php:420 pages/checkout.php:425
|
11005 |
+
#: pages/checkout.php:428
|
11006 |
msgid "Country"
|
11007 |
msgstr ""
|
11008 |
|
11011 |
#: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
|
11012 |
#: pages/billing.php:221 pages/billing.php:224 pages/billing.php:225
|
11013 |
#: pages/billing.php:227 pages/billing.php:229 pages/billing.php:230
|
11014 |
+
#: pages/billing.php:238 pages/billing.php:247 pages/billing.php:271
|
11015 |
+
#: pages/checkout.php:315 pages/checkout.php:364 pages/checkout.php:372
|
11016 |
+
#: pages/checkout.php:422 pages/checkout.php:424 pages/checkout.php:426
|
11017 |
+
#: pages/checkout.php:435 pages/checkout.php:438 pages/checkout.php:441
|
11018 |
+
#: pages/checkout.php:443 pages/checkout.php:445 pages/checkout.php:450
|
11019 |
+
#: pages/checkout.php:453
|
11020 |
msgid "Phone"
|
11021 |
msgstr ""
|
11022 |
|
11026 |
#: pages/billing.php:215 pages/billing.php:232 pages/billing.php:235
|
11027 |
#: pages/billing.php:236 pages/billing.php:238 pages/billing.php:240
|
11028 |
#: pages/billing.php:241 pages/billing.php:249 pages/billing.php:258
|
11029 |
+
#: pages/billing.php:282 pages/checkout.php:148 pages/checkout.php:197
|
11030 |
+
#: pages/checkout.php:204 pages/checkout.php:205 pages/checkout.php:207
|
11031 |
+
#: pages/checkout.php:209 pages/checkout.php:216 pages/checkout.php:218
|
11032 |
+
#: pages/checkout.php:220 pages/checkout.php:227 pages/checkout.php:230
|
11033 |
+
#: pages/checkout.php:330 pages/checkout.php:379 pages/checkout.php:387
|
11034 |
+
#: pages/checkout.php:436 pages/checkout.php:438 pages/checkout.php:440
|
11035 |
+
#: pages/checkout.php:449 pages/checkout.php:453 pages/checkout.php:455
|
11036 |
+
#: pages/checkout.php:457 pages/checkout.php:460 pages/checkout.php:464
|
11037 |
+
#: pages/checkout.php:467
|
11038 |
msgid "Email Address"
|
11039 |
msgstr ""
|
11040 |
|
11043 |
#: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
|
11044 |
#: pages/billing.php:236 pages/billing.php:239 pages/billing.php:240
|
11045 |
#: pages/billing.php:242 pages/billing.php:244 pages/billing.php:245
|
11046 |
+
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:286
|
11047 |
+
#: pages/checkout.php:337 pages/checkout.php:386 pages/checkout.php:394
|
11048 |
+
#: pages/checkout.php:445 pages/checkout.php:447 pages/checkout.php:449
|
11049 |
+
#: pages/checkout.php:458 pages/checkout.php:462 pages/checkout.php:464
|
11050 |
+
#: pages/checkout.php:466 pages/checkout.php:469 pages/checkout.php:473
|
11051 |
+
#: pages/checkout.php:476
|
11052 |
msgid "Confirm Email"
|
11053 |
msgstr ""
|
11054 |
|
11057 |
#: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
|
11058 |
#: pages/billing.php:259 pages/billing.php:262 pages/billing.php:263
|
11059 |
#: pages/billing.php:267 pages/billing.php:268 pages/billing.php:270
|
11060 |
+
#: pages/billing.php:276 pages/billing.php:285 pages/billing.php:309
|
11061 |
msgid "Credit Card Information"
|
11062 |
msgstr ""
|
11063 |
|
11066 |
#: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
|
11067 |
#: pages/billing.php:260 pages/billing.php:263 pages/billing.php:264
|
11068 |
#: pages/billing.php:268 pages/billing.php:269 pages/billing.php:271
|
11069 |
+
#: pages/billing.php:277 pages/billing.php:286 pages/billing.php:310
|
11070 |
#, php-format
|
11071 |
msgid "We accept %s"
|
11072 |
msgstr ""
|
11073 |
|
11074 |
#: pages/billing.php:446 shortcodes/pmpro_account.php:68 pages/billing.php:410
|
11075 |
#: pages/billing.php:412 pages/billing.php:418 pages/billing.php:422
|
11076 |
+
#: pages/billing.php:446 shortcodes/pmpro_account.php:68
|
11077 |
#, php-format
|
11078 |
msgid "Your membership is not active. <a href='%s'>Renew now.</a>"
|
11079 |
msgstr ""
|
11080 |
|
11081 |
#: pages/billing.php:449 shortcodes/pmpro_account.php:71 pages/billing.php:407
|
11082 |
#: pages/billing.php:409 pages/billing.php:415 pages/billing.php:425
|
11083 |
+
#: pages/billing.php:449 shortcodes/pmpro_account.php:71
|
11084 |
#, php-format
|
11085 |
msgid "You do not have an active membership. <a href='%s'>Register here.</a>"
|
11086 |
msgstr ""
|
11087 |
|
11088 |
#: pages/billing.php:452 shortcodes/pmpro_account.php:74 pages/billing.php:404
|
11089 |
#: pages/billing.php:406 pages/billing.php:412 pages/billing.php:428
|
11090 |
+
#: pages/billing.php:452 shortcodes/pmpro_account.php:74
|
11091 |
#, php-format
|
11092 |
msgid ""
|
11093 |
"You do not have an active membership. <a href='%s'>Choose a membership level."
|
11100 |
#: pages/billing.php:380 pages/billing.php:381 pages/billing.php:385
|
11101 |
#: pages/billing.php:387 pages/billing.php:408 pages/billing.php:413
|
11102 |
#: pages/billing.php:415 pages/billing.php:417 pages/billing.php:421
|
11103 |
+
#: pages/billing.php:422 pages/billing.php:431 pages/billing.php:455
|
11104 |
msgid ""
|
11105 |
"This subscription is not recurring. So you don't need to update your billing "
|
11106 |
"information."
|
11164 |
msgid "You have selected the <strong>%s</strong> membership level."
|
11165 |
msgstr ""
|
11166 |
|
11167 |
+
#: pages/checkout.php:69 pages/checkout.php:69
|
11168 |
msgid "<p class=\""
|
11169 |
msgstr ""
|
11170 |
|
11269 |
msgid "Security Code (CVC)"
|
11270 |
msgstr ""
|
11271 |
|
11272 |
+
#: pages/checkout.php:472 pages/checkout.php:277 pages/checkout.php:284
|
11273 |
#: pages/checkout.php:459 pages/checkout.php:567 pages/checkout.php:575
|
11274 |
#: pages/checkout.php:657 pages/checkout.php:672 pages/checkout.php:673
|
11275 |
#: pages/checkout.php:681 pages/checkout.php:686 pages/checkout.php:690
|
11279 |
msgid "I agree to the %s"
|
11280 |
msgstr ""
|
11281 |
|
11282 |
+
#: pages/checkout.php:497 pages/checkout.php:484 pages/checkout.php:586
|
11283 |
#: pages/checkout.php:594 pages/checkout.php:667 pages/checkout.php:674
|
11284 |
#: pages/checkout.php:677 pages/checkout.php:692 pages/checkout.php:693
|
11285 |
#: pages/checkout.php:701 pages/checkout.php:706 pages/checkout.php:710
|
11288 |
msgid "Complete Payment"
|
11289 |
msgstr ""
|
11290 |
|
11291 |
+
#: pages/checkout.php:519 pages/checkout.php:506 pages/checkout.php:608
|
11292 |
#: pages/checkout.php:616 pages/checkout.php:687 pages/checkout.php:694
|
11293 |
#: pages/checkout.php:697 pages/checkout.php:713 pages/checkout.php:714
|
11294 |
#: pages/checkout.php:723 pages/checkout.php:728 pages/checkout.php:732
|
11346 |
msgid "Account"
|
11347 |
msgstr ""
|
11348 |
|
11349 |
+
#: pages/confirmation.php:55 pages/account.php:29 pages/account.php:33
|
11350 |
+
#: pages/confirmation.php:48 pages/confirmation.php:49
|
11351 |
#: pages/confirmation.php:54 pages/confirmation.php:55 pages/invoice.php:29
|
11352 |
#: pages/invoice.php:30 pages/invoice.php:31
|
11353 |
msgid "Membership Expires"
|
11354 |
msgstr ""
|
11355 |
|
11356 |
+
#: pages/confirmation.php:90 pages/invoice.php:80 pages/invoice.php:113
|
11357 |
#: pages/confirmation.php:61 pages/confirmation.php:63
|
11358 |
#: pages/confirmation.php:65 pages/confirmation.php:71
|
11359 |
#: pages/confirmation.php:87 pages/confirmation.php:88
|
11365 |
msgid "Total Billed"
|
11366 |
msgstr ""
|
11367 |
|
11368 |
+
#: pages/confirmation.php:96 pages/invoice.php:86 pages/confirmation.php:93
|
11369 |
#: pages/confirmation.php:94 pages/confirmation.php:96 pages/invoice.php:75
|
11370 |
#: pages/invoice.php:76 pages/invoice.php:77 pages/invoice.php:78
|
11371 |
#: pages/invoice.php:80 pages/invoice.php:82
|
11387 |
#: pages/confirmation.php:113 pages/confirmation.php:116
|
11388 |
#: pages/confirmation.php:123 pages/confirmation.php:124
|
11389 |
#: pages/confirmation.php:126 shortcodes/pmpro_account.php:151
|
11390 |
+
#: shortcodes/pmpro_account.php:227 shortcodes/pmpro_account.php:234
|
11391 |
msgid "Pending"
|
11392 |
msgstr ""
|
11393 |
|
11401 |
"site owner."
|
11402 |
msgstr ""
|
11403 |
|
11404 |
+
#: pages/invoice.php:111 pages/invoice.php:88 pages/invoice.php:100
|
|
|
|
|
|
|
|
|
11405 |
#: pages/invoice.php:101 pages/invoice.php:102 pages/invoice.php:103
|
11406 |
#: pages/invoice.php:106 pages/invoice.php:108
|
11407 |
msgid "Invoice #"
|
11408 |
msgstr ""
|
11409 |
|
11410 |
+
#: pages/invoice.php:137 pages/invoice.php:114 pages/invoice.php:126
|
11411 |
#: pages/invoice.php:127 pages/invoice.php:128 pages/invoice.php:129
|
11412 |
#: pages/invoice.php:132 pages/invoice.php:134
|
11413 |
msgid "No invoices found."
|
11414 |
msgstr ""
|
11415 |
|
11416 |
+
#: pages/invoice.php:145 pages/invoice.php:125 pages/invoice.php:137
|
11417 |
#: pages/invoice.php:138 pages/invoice.php:139 pages/invoice.php:140
|
11418 |
#: pages/invoice.php:143 pages/invoice.php:145
|
11419 |
msgid "← View All Invoices"
|
11520 |
#: preheaders/billing.php:162 preheaders/checkout.php:336
|
11521 |
#: preheaders/billing.php:145 preheaders/billing.php:147
|
11522 |
#: preheaders/billing.php:151 preheaders/billing.php:153
|
11523 |
+
#: preheaders/billing.php:158 preheaders/billing.php:162
|
11524 |
+
#: preheaders/billing.php:258 preheaders/billing.php:265
|
11525 |
+
#: preheaders/billing.php:266 preheaders/billing.php:270
|
11526 |
+
#: preheaders/billing.php:273 preheaders/billing.php:279
|
11527 |
+
#: preheaders/checkout.php:322 preheaders/checkout.php:332
|
11528 |
+
#: preheaders/checkout.php:336 preheaders/checkout.php:364
|
11529 |
+
#: preheaders/checkout.php:458 preheaders/checkout.php:464
|
11530 |
+
#: preheaders/checkout.php:465 preheaders/checkout.php:470
|
11531 |
+
#: preheaders/checkout.php:481 preheaders/checkout.php:482
|
11532 |
msgid "Please complete all required fields."
|
11533 |
msgstr ""
|
11534 |
|
11535 |
#: preheaders/billing.php:165 preheaders/checkout.php:344
|
11536 |
#: preheaders/billing.php:148 preheaders/billing.php:150
|
11537 |
#: preheaders/billing.php:154 preheaders/billing.php:156
|
11538 |
+
#: preheaders/billing.php:161 preheaders/billing.php:165
|
11539 |
+
#: preheaders/billing.php:263 preheaders/billing.php:268
|
11540 |
+
#: preheaders/billing.php:269 preheaders/billing.php:273
|
11541 |
+
#: preheaders/billing.php:276 preheaders/billing.php:284
|
11542 |
+
#: preheaders/checkout.php:330 preheaders/checkout.php:340
|
11543 |
+
#: preheaders/checkout.php:344 preheaders/checkout.php:372
|
11544 |
+
#: preheaders/checkout.php:466 preheaders/checkout.php:473
|
11545 |
+
#: preheaders/checkout.php:474 preheaders/checkout.php:478
|
11546 |
+
#: preheaders/checkout.php:491 preheaders/checkout.php:492
|
11547 |
msgid "Your email addresses do not match. Please try again."
|
11548 |
msgstr ""
|
11549 |
|
11550 |
#: preheaders/billing.php:168 preheaders/checkout.php:349
|
11551 |
#: preheaders/billing.php:151 preheaders/billing.php:153
|
11552 |
#: preheaders/billing.php:157 preheaders/billing.php:159
|
11553 |
+
#: preheaders/billing.php:164 preheaders/billing.php:168
|
11554 |
+
#: preheaders/billing.php:268 preheaders/billing.php:271
|
11555 |
+
#: preheaders/billing.php:272 preheaders/billing.php:276
|
11556 |
+
#: preheaders/billing.php:279 preheaders/billing.php:289
|
11557 |
+
#: preheaders/checkout.php:335 preheaders/checkout.php:345
|
11558 |
+
#: preheaders/checkout.php:349 preheaders/checkout.php:377
|
11559 |
+
#: preheaders/checkout.php:471 preheaders/checkout.php:478
|
11560 |
+
#: preheaders/checkout.php:480 preheaders/checkout.php:483
|
11561 |
+
#: preheaders/checkout.php:497 preheaders/checkout.php:498
|
11562 |
msgid "The email address entered is in an invalid format. Please try again."
|
11563 |
msgstr ""
|
11564 |
|
11565 |
#: preheaders/billing.php:172 preheaders/billing.php:155
|
11566 |
#: preheaders/billing.php:157 preheaders/billing.php:161
|
11567 |
#: preheaders/billing.php:163 preheaders/billing.php:168
|
11568 |
+
#: preheaders/billing.php:172 preheaders/billing.php:274
|
11569 |
+
#: preheaders/billing.php:275 preheaders/billing.php:276
|
11570 |
+
#: preheaders/billing.php:280 preheaders/billing.php:283
|
11571 |
+
#: preheaders/billing.php:295
|
11572 |
msgid "All good!"
|
11573 |
msgstr ""
|
11574 |
|
11575 |
#: preheaders/billing.php:239 preheaders/billing.php:222
|
11576 |
#: preheaders/billing.php:224 preheaders/billing.php:228
|
11577 |
#: preheaders/billing.php:230 preheaders/billing.php:235
|
11578 |
+
#: preheaders/billing.php:239 preheaders/billing.php:340
|
11579 |
+
#: preheaders/billing.php:345 preheaders/billing.php:346
|
11580 |
+
#: preheaders/billing.php:350 preheaders/billing.php:353
|
11581 |
+
#: preheaders/billing.php:370
|
11582 |
#, php-format
|
11583 |
msgid "Information updated. <a href=\"%s\">« back to my account</a>"
|
11584 |
msgstr ""
|
11586 |
#: preheaders/billing.php:245 preheaders/billing.php:228
|
11587 |
#: preheaders/billing.php:230 preheaders/billing.php:234
|
11588 |
#: preheaders/billing.php:236 preheaders/billing.php:241
|
11589 |
+
#: preheaders/billing.php:245 preheaders/billing.php:347
|
11590 |
+
#: preheaders/billing.php:351 preheaders/billing.php:352
|
11591 |
+
#: preheaders/billing.php:356 preheaders/billing.php:359
|
11592 |
+
#: preheaders/billing.php:378 preheaders/billing.php:380
|
11593 |
msgid "Error updating billing information."
|
11594 |
msgstr ""
|
11595 |
|
11860 |
#: shortcodes/pmpro_account.php:145 pages/account.php:64
|
11861 |
#: shortcodes/pmpro_account.php:90 shortcodes/pmpro_account.php:92
|
11862 |
#: shortcodes/pmpro_account.php:93 shortcodes/pmpro_account.php:95
|
11863 |
+
#: shortcodes/pmpro_account.php:144 shortcodes/pmpro_account.php:145
|
11864 |
msgid "View all Membership Options"
|
11865 |
msgstr ""
|
11866 |
|
11868 |
#: pages/account.php:71 shortcodes/pmpro_account.php:99
|
11869 |
#: shortcodes/pmpro_account.php:101 shortcodes/pmpro_account.php:102
|
11870 |
#: shortcodes/pmpro_account.php:104 shortcodes/pmpro_account.php:153
|
11871 |
+
#: shortcodes/pmpro_account.php:154
|
11872 |
msgid "My Account"
|
11873 |
msgstr ""
|
11874 |
|
11876 |
#: pages/account.php:129 shortcodes/pmpro_account.php:118
|
11877 |
#: shortcodes/pmpro_account.php:120 shortcodes/pmpro_account.php:121
|
11878 |
#: shortcodes/pmpro_account.php:123 shortcodes/pmpro_account.php:199
|
11879 |
+
#: shortcodes/pmpro_account.php:206
|
11880 |
msgid "Past Invoices"
|
11881 |
msgstr ""
|
11882 |
|
11883 |
#: shortcodes/pmpro_account.php:212 pages/account.php:93
|
11884 |
#: shortcodes/pmpro_account.php:124 shortcodes/pmpro_account.php:126
|
11885 |
#: shortcodes/pmpro_account.php:127 shortcodes/pmpro_account.php:129
|
11886 |
+
#: shortcodes/pmpro_account.php:205 shortcodes/pmpro_account.php:212
|
11887 |
msgid "Amount"
|
11888 |
msgstr ""
|
11889 |
|
11890 |
#: shortcodes/pmpro_account.php:236 shortcodes/pmpro_account.php:153
|
11891 |
+
#: shortcodes/pmpro_account.php:229 shortcodes/pmpro_account.php:236
|
11892 |
msgid "Refunded"
|
11893 |
msgstr ""
|
11894 |
|
11896 |
#: pages/account.php:144 shortcodes/pmpro_account.php:152
|
11897 |
#: shortcodes/pmpro_account.php:154 shortcodes/pmpro_account.php:155
|
11898 |
#: shortcodes/pmpro_account.php:157 shortcodes/pmpro_account.php:168
|
11899 |
+
#: shortcodes/pmpro_account.php:244 shortcodes/pmpro_account.php:251
|
11900 |
msgid "View All Invoices"
|
11901 |
msgstr ""
|
11902 |
|
11904 |
#: pages/account.php:150 shortcodes/pmpro_account.php:159
|
11905 |
#: shortcodes/pmpro_account.php:161 shortcodes/pmpro_account.php:162
|
11906 |
#: shortcodes/pmpro_account.php:164 shortcodes/pmpro_account.php:175
|
11907 |
+
#: shortcodes/pmpro_account.php:251 shortcodes/pmpro_account.php:258
|
11908 |
msgid "Member Links"
|
11909 |
msgstr ""
|
11910 |
|
12202 |
"still get an email confirmation from PMPro after checkout.)"
|
12203 |
msgstr ""
|
12204 |
|
12205 |
+
#: adminpages/license.php:47
|
12206 |
msgid ""
|
12207 |
"Enter your support license key.</strong> Your license key can be found in "
|
12208 |
"your membership email receipt or in your <a href=\"https://www."
|
12209 |
+
"paidmembershipspro.com/membership-account/?redirect_to=%2Fmembership-account"
|
12210 |
+
"%2F%3Futm_source%3Dplugin%26utm_medium%3Dpmpro-license%26utm_campaign"
|
12211 |
"%3Dmembership-account%26utm_content%3Dno-key\" target=\"_blank\">Membership "
|
12212 |
"Account</a>."
|
12213 |
msgstr ""
|
12214 |
|
12215 |
+
#: adminpages/license.php:49
|
12216 |
msgid ""
|
12217 |
+
"Visit the PMPro <a href=\"https://www.paidmembershipspro.com/membership-"
|
12218 |
+
"account/?redirect_to=%2Fmembership-account%2F%3Futm_source%3Dplugin"
|
12219 |
+
"%26utm_medium%3Dpmpro-license%26utm_campaign%3Dmembership-account"
|
12220 |
+
"%26utm_content%3Dkey-not-valid\" target=\"_blank\">Membership Account</a> "
|
12221 |
+
"page to confirm that your account is active and to find your license key."
|
12222 |
msgstr ""
|
12223 |
|
12224 |
#: adminpages/membershiplevels.php:364
|
13420 |
"been sent to %s."
|
13421 |
msgstr ""
|
13422 |
|
13423 |
+
#: pages/invoice.php:27
|
13424 |
+
msgid "Success"
|
13425 |
+
msgstr ""
|
13426 |
+
|
13427 |
#: pages/invoice.php:29
|
13428 |
msgid "success"
|
13429 |
msgstr ""
|
pages/checkout.php
CHANGED
@@ -447,7 +447,20 @@
|
|
447 |
</h3>
|
448 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-fields' ); ?>">
|
449 |
<div id="pmpro_license" class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field', 'pmpro_license' ); ?>">
|
450 |
-
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
</div> <!-- end pmpro_license -->
|
452 |
<?php
|
453 |
if ( isset( $_REQUEST['tos'] ) ) {
|
447 |
</h3>
|
448 |
<div class="<?php echo pmpro_get_element_class( 'pmpro_checkout-fields' ); ?>">
|
449 |
<div id="pmpro_license" class="<?php echo pmpro_get_element_class( 'pmpro_checkout-field', 'pmpro_license' ); ?>">
|
450 |
+
<?php
|
451 |
+
/**
|
452 |
+
* Hook to run formatting filters before displaying the content of your "Terms of Service" page at checkout.
|
453 |
+
*
|
454 |
+
* @since 2.4.1
|
455 |
+
*
|
456 |
+
* @param string $pmpro_tos_content The content of the post assigned as the Terms of Service page.
|
457 |
+
* @param string $tospage The post assigned as the Terms of Service page.
|
458 |
+
*
|
459 |
+
* @return string $pmpro_tos_content
|
460 |
+
*/
|
461 |
+
$pmpro_tos_content = apply_filters( 'pmpro_tos_content', do_shortcode( $tospage->post_content ), $tospage );
|
462 |
+
echo $pmpro_tos_content;
|
463 |
+
?>
|
464 |
</div> <!-- end pmpro_license -->
|
465 |
<?php
|
466 |
if ( isset( $_REQUEST['tos'] ) ) {
|
pages/invoice.php
CHANGED
@@ -24,9 +24,17 @@
|
|
24 |
<?php do_action("pmpro_invoice_bullets_top", $pmpro_invoice); ?>
|
25 |
<li><strong><?php _e('Account', 'paid-memberships-pro' );?>:</strong> <?php echo $pmpro_invoice->user->display_name?> (<?php echo $pmpro_invoice->user->user_email?>)</li>
|
26 |
<li><strong><?php _e('Membership Level', 'paid-memberships-pro' );?>:</strong> <?php echo $pmpro_invoice->membership_level->name?></li>
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
<?php } ?>
|
31 |
<?php if($pmpro_invoice->getDiscountCode()) { ?>
|
32 |
<li><strong><?php _e('Discount Code', 'paid-memberships-pro' );?>:</strong> <?php echo $pmpro_invoice->discount_code->code?></li>
|
24 |
<?php do_action("pmpro_invoice_bullets_top", $pmpro_invoice); ?>
|
25 |
<li><strong><?php _e('Account', 'paid-memberships-pro' );?>:</strong> <?php echo $pmpro_invoice->user->display_name?> (<?php echo $pmpro_invoice->user->user_email?>)</li>
|
26 |
<li><strong><?php _e('Membership Level', 'paid-memberships-pro' );?>:</strong> <?php echo $pmpro_invoice->membership_level->name?></li>
|
27 |
+
<?php if ( ! empty( $pmpro_invoice->status ) ) { ?>
|
28 |
+
<li><strong><?php _e('Status', 'paid-memberships-pro' ); ?>:</strong>
|
29 |
+
<?php
|
30 |
+
if ( in_array( $pmpro_invoice->status, array( '', 'success', 'cancelled' ) ) ) {
|
31 |
+
$display_status = __( 'Paid', 'paid-memberships-pro' );
|
32 |
+
} else {
|
33 |
+
$display_status = ucwords( $pmpro_invoice->status );
|
34 |
+
}
|
35 |
+
esc_html_e( $display_status );
|
36 |
+
?>
|
37 |
+
</li>
|
38 |
<?php } ?>
|
39 |
<?php if($pmpro_invoice->getDiscountCode()) { ?>
|
40 |
<li><strong><?php _e('Discount Code', 'paid-memberships-pro' );?>:</strong> <?php echo $pmpro_invoice->discount_code->code?></li>
|
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.4
|
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.4' );
|
20 |
define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
|
21 |
define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
|
22 |
|
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.4.1
|
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.4.1' );
|
20 |
define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
|
21 |
define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
|
22 |
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
=== Paid Memberships Pro ===
|
2 |
-
Contributors: strangerstudios, kimannwall, andrewza, dlparker1005
|
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.
|
6 |
-
Stable tag: 2.4
|
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,24 @@ Not sure? You can find out by doing a bit a research.
|
|
153 |
8. Membership Account page, display all sections or show specific sections using shortcode attributes.
|
154 |
|
155 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
= 2.4 - 2020-07-24 =
|
157 |
* FEATURE: Now detecting if the Stripe webhook is set up correctly. You can now create or disable the webhook from the payment settings page in the WP admin dashboard.
|
158 |
* FEATURE: Added a link to use and set up SendWP for more reliable email sending from WP.
|
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.5
|
6 |
+
Stable tag: 2.4.1
|
7 |
|
8 |
Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site.
|
9 |
|
153 |
8. Membership Account page, display all sections or show specific sections using shortcode attributes.
|
154 |
|
155 |
== Changelog ==
|
156 |
+
= 2.4.1 - 2020-08-10 =
|
157 |
+
* BUG FIX: Fixed issues with password resets on WP Engine hosting due to security features added by their mu-plugin.
|
158 |
+
* BUG FIX: Fixed issue where end dates were showing up incorrectly in the confirmation email sometimes.
|
159 |
+
* BUG FIX: Fixed issue where renewing memberships were extended one day less than they should have been in some cases.
|
160 |
+
* BUG FIX: Fixed issue where users without a PMPro Plus license were sometimes not getting an error when trying to update a Plus Add On.
|
161 |
+
* BUG FIX/ENHANCEMENT: Added compatibility for core auto-updates for our Add Ons which aren't hosted in the .org repository.
|
162 |
+
* BUG FIX/ENHANCEMENT: Fixed issue where PHP sessions were set up to track ReCAPTCHA even if you weren't using ReCAPTCHA. ReCAPTCHA is now only loaded on the checkout page. Loading sessions unecessarily would break some Varnish cache setups.
|
163 |
+
* BUG FIX/ENHANCEMENT: Updated the single invoice/order page. No longer showing the end date, which isn't really related to the order. Showing a better status related to the order now.
|
164 |
+
* BUG FIX/ENHANCEMENT: Fixed some links to the PMPro site in the plugin admin area.
|
165 |
+
* BUG FIX/ENHANCEMENT: Now saving a hash of the Stripe secretkey when saving webhook ids. This allows us to keep track of webhook ids if you switch between gateway environments or swap your Stripe keys for some reason.
|
166 |
+
* BUG FIX/ENHANCEMENT: No longer running the Terms of Service text through wpautop. This usually just added extra spacing to your TOS. Shortcodes are rendered now though. Added a filter pmpro_tos_content so you can change the TOS content or how it is shown.
|
167 |
+
* ENHANCEMENT: Added a checkout_levels API endpoint. This will allow us to build features that adjust the price on the frontend at checkout.
|
168 |
+
* ENHANCEMENT: Added a pmpro_member_profile_edit_form_tag action to the form tag on the frontend member profile page. This is useful to set the form enctype for file uploads.
|
169 |
+
* ENHANCEMENT: Added Romanian Leu as a currency option.
|
170 |
+
* ENHANCEMENT: Added the pmpro_stripe_payment_intent_params filter. Useful if you would like to set a specific statement descriptor for the site. See https://gist.github.com/ideadude/16983fdfa0da12fc40ef36d870f4cbd0
|
171 |
+
* REFACTOR: Removed some unused methods from the Stripe class.
|
172 |
+
* REFACTOR: Removed the help pointer about the menu location change.
|
173 |
+
|
174 |
= 2.4 - 2020-07-24 =
|
175 |
* FEATURE: Now detecting if the Stripe webhook is set up correctly. You can now create or disable the webhook from the payment settings page in the WP admin dashboard.
|
176 |
* FEATURE: Added a link to use and set up SendWP for more reliable email sending from WP.
|