Version Description
- 2018-05-24 =
- BUG FIX: Added 'error' to the list of default order statuses.
- BUG FIX: Fixed issue where PayPal recurring_payment messages with status "Pending" were treated as "Failed" by our IPN handler. (Thanks, Matt Julian)
- BUG FIX: The redirect away from the billing page needed to be in the preheader instead of the page shortcode.
- BUG FIX/ENHANCEMENT: Using the pmpro_getOrderStatuses() function in adminpages/orders.php instead of redundant code there.
- BUG FIX/ENHANCEMENT: Passing the $order as a second parameter to pmpro_after_checkout when called from the PayPal IPN handler. (The $order was being passed already for "regular" checkouts.)
- ENHANCEMENT: You can now sort by the Membership Level column added to the users list in the dashboard. (Thanks, Matt Julian)
- FEATURE: Added support for the privacy features added in WP 4.9.6. Details below.
- FEATURE: Added suggest privacy page text.
- FEATURE: Added PMPro-related user meta fields, membership history, and order history to the personal data export. You can filter which user meta fields are included in the export using the new pmpro_get_personal_user_meta_fields filter.
- FEATURE: Deleting PMPro-related personal data fields when personal data is erased. The ereaser deletes a number of user meta fields (filterable through the new pmpro_get_personal_user_meta_fields_to_erase filter). A user's membership history and order history are retained unless the user is deleted.
- FEATURE: Now saving a log of when the TOS page is agreed to at checkout. The ID and date modified of the TOS post is saved along with a timestamp of when the TOS was agreed to. This information is shown on the single order page in the admin, the orders CSV export, and on the edit user profile page in the admin. Note that this feature does not yet backport any data for existing users or ask users to re-agree to the TOS if the TOS has gone out of date.
Download this release
Release Info
Developer | strangerstudios |
Plugin | Paid Memberships Pro |
Version | 1.9.5 |
Comparing to | |
See all releases |
Code changes from version 1.9.4.4 to 1.9.5
- CHANGELOG.txt +22 -0
- CONTRIBUTE.md +12 -8
- adminpages/orders-csv.php +12 -0
- adminpages/orders.php +30 -20
- classes/class.memberorder.php +15 -0
- classes/class.pmproemail.php +13 -5
- classes/gateways/class.pmprogateway_paypalexpress.php +10 -4
- includes/addons.php +217 -213
- includes/functions.php +1 -1
- includes/init.php +20 -1
- includes/privacy.php +531 -0
- includes/profile.php +27 -1
- includes/sessions.php +8 -3
- languages/paid-memberships-pro.mo +0 -0
- languages/paid-memberships-pro.po +630 -382
- languages/paid-memberships-pro.pot +630 -382
- pages/billing.php +1 -5
- paid-memberships-pro.php +3 -2
- preheaders/billing.php +6 -2
- readme.txt +16 -46
- services/ipnhandler.php +4 -3
CHANGELOG.txt
CHANGED
@@ -1,5 +1,27 @@
|
|
1 |
== Changelog ==
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
= 1.9.4.3 - 2018-01-04 =
|
4 |
* BUG FIX: Fixed issue where PMPro would attempt to cancel gateway subscriptions more than once in some cases.
|
5 |
|
1 |
== Changelog ==
|
2 |
|
3 |
+
= 1.9.5 - 2018-05-24 =
|
4 |
+
* BUG FIX: Added 'error' to the list of default order statuses.
|
5 |
+
* BUG FIX: Fixed issue where PayPal recurring_payment messages with status "Pending" were treated as "Failed" by our IPN handler. (Thanks, Matt Julian)
|
6 |
+
* BUG FIX: The redirect away from the billing page needed to be in the preheader instead of the page shortcode.
|
7 |
+
* BUG FIX/ENHANCEMENT: Using the pmpro_getOrderStatuses() function in adminpages/orders.php instead of redundant code there.
|
8 |
+
* BUG FIX/ENHANCEMENT: Passing the $order as a second parameter to pmpro_after_checkout when called from the PayPal IPN handler. (The $order was being passed already for "regular" checkouts.)
|
9 |
+
* ENHANCEMENT: You can now sort by the Membership Level column added to the users list in the dashboard. (Thanks, Matt Julian)
|
10 |
+
* FEATURE: Added support for the privacy features added in WP 4.9.6. Details below.
|
11 |
+
* FEATURE: Added suggest privacy page text.
|
12 |
+
* FEATURE: Added PMPro-related user meta fields, membership history, and order history to the personal data export. You can filter which user meta fields are included in the export using the new pmpro_get_personal_user_meta_fields filter.
|
13 |
+
* FEATURE: Deleting PMPro-related personal data fields when personal data is erased. The ereaser deletes a number of user meta fields (filterable through the new pmpro_get_personal_user_meta_fields_to_erase filter). A user's membership history and order history are retained unless the user is deleted.
|
14 |
+
* FEATURE: Now saving a log of when the TOS page is agreed to at checkout. The ID and date modified of the TOS post is saved along with a timestamp of when the TOS was agreed to. This information is shown on the single order page in the admin, the orders CSV export, and on the edit user profile page in the admin. Note that this feature does not yet backport any data for existing users or ask users to re-agree to the TOS if the TOS has gone out of date.
|
15 |
+
|
16 |
+
= 1.9.4.4 - 2018-03-14 =
|
17 |
+
* BUG FIX: Updated the filters to extend membership levels to use the new pmpro_getSpecificMembershipLevelForUser() function to avoid bugs when MMPU is enabled.
|
18 |
+
* BUG FIX: Fixed cases where certain email templates were resulting in the body of the email being duplicated.
|
19 |
+
* BUG FIX: Fixed conflict with pmpro-email-templates when emails were disabled (the pmpro_email filter returns false). (Thanks, Mathieu Hays)
|
20 |
+
* BUG FIX: Now updating status on related subscription orders BEFORE canceling at gateway to avoid cases where the webhook sent by the gateway after canceling the subscription triggers further cancellation attempts.
|
21 |
+
* BUG FIX: No longer showing the "Stripe Publishable Key appears incorrect" error message if the key field is blank.
|
22 |
+
* ENHANCEMENT: Added the pmpro_getSpecificMembershipLevelForUser( $user_id, $level_id ) function for cases where MMPU is enabled and you want data about a specific membership level a user might have.
|
23 |
+
* ENHANCEMENT: Changed labels on the reCAPTCHA settings to match their current terminology: Site Key and Secret Key.
|
24 |
+
|
25 |
= 1.9.4.3 - 2018-01-04 =
|
26 |
* BUG FIX: Fixed issue where PMPro would attempt to cancel gateway subscriptions more than once in some cases.
|
27 |
|
CONTRIBUTE.md
CHANGED
@@ -19,16 +19,20 @@ __Please Note:__ GitHub is for bug reports and contributions only. If you have a
|
|
19 |
* Fork the repository on GitHub
|
20 |
* For bug fixes, checkout the DEV branch of the PMPro repository.
|
21 |
* For new features and enhancements, checkout the branch for the version the feature is milestoned for.
|
22 |
-
* Make
|
23 |
-
|
24 |
-
* Use `git remote add upstream https://github.com/strangerstudios/paid-memberships-pro.git` to set the upstream repo
|
25 |
* Use `git checkout upstream/dev` then `git pull` to pull in the latest updates on dev.
|
26 |
* Use `git checkout dev` then `git merge upstream/dev` to merge those updates into your dev.
|
27 |
-
|
28 |
-
*
|
29 |
-
*
|
30 |
-
*
|
31 |
-
*
|
|
|
|
|
|
|
|
|
|
|
32 |
* We will process all pull requests and make suggestions or changes as soon as possible. Feel free to ping us politely via email or social networks to take a look at your pulls.
|
33 |
|
34 |
## Code Documentation
|
19 |
* Fork the repository on GitHub
|
20 |
* For bug fixes, checkout the DEV branch of the PMPro repository.
|
21 |
* For new features and enhancements, checkout the branch for the version the feature is milestoned for.
|
22 |
+
* Make sure to pull in any "upstream" changes first.
|
23 |
+
* Use `git remote add upstream https://github.com/strangerstudios/paid-memberships-pro.git` to set the upstream repo
|
|
|
24 |
* Use `git checkout upstream/dev` then `git pull` to pull in the latest updates on dev.
|
25 |
* Use `git checkout dev` then `git merge upstream/dev` to merge those updates into your dev.
|
26 |
+
* Create a new local branch for each separate bug fix or feature. This will ensure that each pull request is for one issue only and easier to process.
|
27 |
+
* Use `git checkout -b nameofmybugfixorfeature` to create the new branch
|
28 |
+
* Make the changes to your local repository.
|
29 |
+
* Ensure you stick to the [WordPress Coding Standards](https://codex.wordpress.org/WordPress_Coding_Standards) (even though much of the PMPro code does not currently)
|
30 |
+
* If you have an automatic beautifier in your IDE or dev environment, turn it off. Unrelated style changes in your pull requests will make them harder to process. Feel free to message the core development team to ask them to clean up a file you are working on if the inconsitent coding styles is bothering you.
|
31 |
+
* You can update the readme.txt to include a comment about your fix or feature in the changelog, but if you do not the core team will do it for you.
|
32 |
+
* When committing, reference your issue (if present) and include a note about the fix in the commit message.
|
33 |
+
* Push the changes to your fork.
|
34 |
+
* For bug fixes, submit a pull request to the DEV branch of the PMPro repository.
|
35 |
+
* For new features and enhancements, submit a pull request to the version the feature is milestoned for. This will usually be the version number following the current release unless the core dev team has milestoned the feature for a later release.
|
36 |
* We will process all pull requests and make suggestions or changes as soon as possible. Feel free to ping us politely via email or social networks to take a look at your pulls.
|
37 |
|
38 |
## Code Documentation
|
adminpages/orders-csv.php
CHANGED
@@ -271,6 +271,8 @@ $csv_file_header_array = array(
|
|
271 |
"subscription_transaction_id",
|
272 |
"discount_code_id",
|
273 |
"discount_code",
|
|
|
|
|
274 |
"timestamp"
|
275 |
);
|
276 |
|
@@ -467,6 +469,16 @@ for ( $ic = 1; $ic <= $iterations; $ic ++ ) {
|
|
467 |
}
|
468 |
}
|
469 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
470 |
//timestamp
|
471 |
$ts = date_i18n( $dateformat, $order->timestamp );
|
472 |
array_push( $csvoutput, pmpro_enclose( $ts ) );
|
271 |
"subscription_transaction_id",
|
272 |
"discount_code_id",
|
273 |
"discount_code",
|
274 |
+
"tos_consent_post_id",
|
275 |
+
"tos_consent_post_modified",
|
276 |
"timestamp"
|
277 |
);
|
278 |
|
469 |
}
|
470 |
}
|
471 |
|
472 |
+
//tos_consent
|
473 |
+
$consent_entry = $order->get_tos_consent_log_entry();
|
474 |
+
if( !empty( $consent_entry ) ) {
|
475 |
+
array_push( $csvoutput, pmpro_enclose( $consent_entry['post_id'] ) );
|
476 |
+
array_push( $csvoutput, pmpro_enclose( $consent_entry['post_modified'] ) );
|
477 |
+
} else {
|
478 |
+
array_push( $csvoutput, '' );
|
479 |
+
array_push( $csvoutput, '' );
|
480 |
+
}
|
481 |
+
|
482 |
//timestamp
|
483 |
$ts = date_i18n( $dateformat, $order->timestamp );
|
484 |
array_push( $csvoutput, pmpro_enclose( $ts ) );
|
adminpages/orders.php
CHANGED
@@ -669,32 +669,19 @@ require_once( dirname( __FILE__ ) . '/admin_header.php' );
|
|
669 |
<?php
|
670 |
if ( in_array( 'status', $read_only_fields ) && $order_id > 0 ) {
|
671 |
echo $order->status;
|
672 |
-
} else {
|
673 |
-
|
674 |
-
|
675 |
-
$statuses = array();
|
676 |
-
$default_statuses = array(
|
677 |
-
'',
|
678 |
-
'success',
|
679 |
-
'cancelled',
|
680 |
-
'review',
|
681 |
-
'token',
|
682 |
-
'refunded',
|
683 |
-
'pending',
|
684 |
-
'error',
|
685 |
-
);
|
686 |
-
$used_statuses = $wpdb->get_col( "SELECT DISTINCT(status) FROM $wpdb->pmpro_membership_orders" );
|
687 |
-
$statuses = array_unique( array_merge( $default_statuses, $used_statuses ) );
|
688 |
-
asort( $statuses );
|
689 |
-
$statuses = apply_filters( 'pmpro_order_statuses', $statuses );
|
690 |
?>
|
691 |
<select id="status" name="status">
|
692 |
-
|
693 |
<option
|
694 |
value="<?php echo esc_attr( $status ); ?>" <?php selected( $order->status, $status ); ?>><?php echo $status; ?></option>
|
695 |
<?php } ?>
|
696 |
</select>
|
697 |
-
|
|
|
|
|
698 |
</td>
|
699 |
</tr>
|
700 |
|
@@ -851,6 +838,29 @@ selected="selected"<?php } ?>><?php echo date_i18n( 'M', strtotime( $i . '/1/' .
|
|
851 |
</tr>
|
852 |
<?php } ?>
|
853 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
854 |
<tr>
|
855 |
<th scope="row" valign="top"><label for="notes"><?php _e( 'Notes', 'paid-memberships-pro' ); ?>:</label></th>
|
856 |
<td>
|
669 |
<?php
|
670 |
if ( in_array( 'status', $read_only_fields ) && $order_id > 0 ) {
|
671 |
echo $order->status;
|
672 |
+
} else { ?>
|
673 |
+
<?php
|
674 |
+
$statuses = pmpro_getOrderStatuses();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
675 |
?>
|
676 |
<select id="status" name="status">
|
677 |
+
<?php foreach ( $statuses as $status ) { ?>
|
678 |
<option
|
679 |
value="<?php echo esc_attr( $status ); ?>" <?php selected( $order->status, $status ); ?>><?php echo $status; ?></option>
|
680 |
<?php } ?>
|
681 |
</select>
|
682 |
+
<?php
|
683 |
+
}
|
684 |
+
?>
|
685 |
</td>
|
686 |
</tr>
|
687 |
|
838 |
</tr>
|
839 |
<?php } ?>
|
840 |
|
841 |
+
<?php
|
842 |
+
$tospage_id = pmpro_getOption( 'tospage' );
|
843 |
+
$consent_entry = $order->get_tos_consent_log_entry();
|
844 |
+
|
845 |
+
if( !empty( $tospage_id ) || !empty( $consent_entry ) ) {
|
846 |
+
?>
|
847 |
+
<tr>
|
848 |
+
<th scope="row" valign="top"><label for="tos_consent"><?php _e( 'TOS Consent', 'paid-memberships-pro' ); ?>:</label></th>
|
849 |
+
<td id="tos_consent">
|
850 |
+
<?php
|
851 |
+
|
852 |
+
if( !empty( $consent_entry ) ) {
|
853 |
+
echo pmpro_consent_to_text( $consent_entry );
|
854 |
+
} else {
|
855 |
+
echo __( 'N/A' );
|
856 |
+
}
|
857 |
+
?>
|
858 |
+
</td>
|
859 |
+
</tr>
|
860 |
+
<?php
|
861 |
+
}
|
862 |
+
?>
|
863 |
+
|
864 |
<tr>
|
865 |
<th scope="row" valign="top"><label for="notes"><?php _e( 'Notes', 'paid-memberships-pro' ); ?>:</label></th>
|
866 |
<td>
|
classes/class.memberorder.php
CHANGED
@@ -808,6 +808,21 @@
|
|
808 |
}
|
809 |
}
|
810 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
811 |
/**
|
812 |
* Delete an order and associated data.
|
813 |
*/
|
808 |
}
|
809 |
}
|
810 |
|
811 |
+
/**
|
812 |
+
* Get TOS consent information.
|
813 |
+
* @since 1.9.5
|
814 |
+
*/
|
815 |
+
function get_tos_consent_log_entry() {
|
816 |
+
$consent_log = pmpro_get_consent_log( $this->user_id );
|
817 |
+
foreach( $consent_log as $entry ) {
|
818 |
+
if( $entry['order_id'] == $this->id ) {
|
819 |
+
return $entry;
|
820 |
+
}
|
821 |
+
}
|
822 |
+
|
823 |
+
return false;
|
824 |
+
}
|
825 |
+
|
826 |
/**
|
827 |
* Delete an order and associated data.
|
828 |
*/
|
classes/class.pmproemail.php
CHANGED
@@ -862,16 +862,24 @@
|
|
862 |
//make sure we have the current membership level data
|
863 |
$user->membership_level = pmpro_getMembershipLevelForUser($user->ID, true);
|
864 |
|
|
|
|
|
|
|
|
|
|
|
|
|
865 |
$this->email = get_bloginfo("admin_email");
|
866 |
$this->subject = sprintf(__("Membership for %s at %s has been changed", "paid-memberships-pro"), $user->user_login, get_option("blogname"));
|
867 |
|
868 |
-
$this->data = array("subject" => $this->subject, "name" => $user->display_name, "user_login" => $user->user_login, "sitename" => get_option("blogname"), "membership_level_name" => $
|
869 |
-
|
|
|
870 |
$this->data["membership_change"] = sprintf(__("The new level is %s", 'paid-memberships-pro' ), $user->membership_level->name);
|
871 |
-
else
|
872 |
-
$this->data["membership_change"] = __("Membership has been cancelled", 'paid-memberships-pro' );
|
|
|
873 |
|
874 |
-
if(!empty($user->membership_level->enddate))
|
875 |
{
|
876 |
$this->data["membership_change"] .= ". " . sprintf(__("This membership will expire on %s", 'paid-memberships-pro' ), date_i18n(get_option('date_format'), $user->membership_level->enddate));
|
877 |
}
|
862 |
//make sure we have the current membership level data
|
863 |
$user->membership_level = pmpro_getMembershipLevelForUser($user->ID, true);
|
864 |
|
865 |
+
if(!empty($user->membership_level) && !empty($user->membership_level->name)) {
|
866 |
+
$membership_level_name = $user->membership_level->name;
|
867 |
+
} else {
|
868 |
+
$membership_level_name = __('None', 'paid-memberships-pro');
|
869 |
+
}
|
870 |
+
|
871 |
$this->email = get_bloginfo("admin_email");
|
872 |
$this->subject = sprintf(__("Membership for %s at %s has been changed", "paid-memberships-pro"), $user->user_login, get_option("blogname"));
|
873 |
|
874 |
+
$this->data = array("subject" => $this->subject, "name" => $user->display_name, "user_login" => $user->user_login, "sitename" => get_option("blogname"), "membership_level_name" => $membership_level_name, "siteemail" => get_bloginfo("admin_email"), "login_link" => wp_login_url());
|
875 |
+
|
876 |
+
if(!empty($user->membership_level) && !empty($user->membership_level->ID)) {
|
877 |
$this->data["membership_change"] = sprintf(__("The new level is %s", 'paid-memberships-pro' ), $user->membership_level->name);
|
878 |
+
} else {
|
879 |
+
$this->data["membership_change"] = __("Membership has been cancelled", 'paid-memberships-pro' );
|
880 |
+
}
|
881 |
|
882 |
+
if(!empty($user->membership_level) && !empty($user->membership_level->enddate))
|
883 |
{
|
884 |
$this->data["membership_change"] .= ". " . sprintf(__("This membership will expire on %s", 'paid-memberships-pro' ), date_i18n(get_option('date_format'), $user->membership_level->enddate));
|
885 |
}
|
classes/gateways/class.pmprogateway_paypalexpress.php
CHANGED
@@ -229,13 +229,11 @@
|
|
229 |
*
|
230 |
* @since 1.8
|
231 |
*/
|
232 |
-
static function pmpro_checkout_before_processing()
|
233 |
-
{
|
234 |
global $current_user, $gateway;
|
235 |
|
236 |
//save user fields for PayPal Express
|
237 |
-
if(!$current_user->ID)
|
238 |
-
{
|
239 |
//get values from post
|
240 |
if(isset($_REQUEST['username']))
|
241 |
$username = trim(sanitize_text_field($_REQUEST['username']));
|
@@ -256,6 +254,14 @@
|
|
256 |
$_SESSION['pmpro_signup_email'] = $bemail;
|
257 |
}
|
258 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
//can use this hook to save some other variables to the session
|
260 |
do_action("pmpro_paypalexpress_session_vars");
|
261 |
}
|
229 |
*
|
230 |
* @since 1.8
|
231 |
*/
|
232 |
+
static function pmpro_checkout_before_processing() {
|
|
|
233 |
global $current_user, $gateway;
|
234 |
|
235 |
//save user fields for PayPal Express
|
236 |
+
if(!$current_user->ID) {
|
|
|
237 |
//get values from post
|
238 |
if(isset($_REQUEST['username']))
|
239 |
$username = trim(sanitize_text_field($_REQUEST['username']));
|
254 |
$_SESSION['pmpro_signup_email'] = $bemail;
|
255 |
}
|
256 |
|
257 |
+
if( !empty( $_REQUEST['tos'] ) ) {
|
258 |
+
$tospost = get_post( pmpro_getOption( 'tospage' ) );
|
259 |
+
$_SESSION['tos'] = array(
|
260 |
+
'post_id' => $tospost->ID,
|
261 |
+
'post_modified' => $tospost->post_modified,
|
262 |
+
);
|
263 |
+
}
|
264 |
+
|
265 |
//can use this hook to save some other variables to the session
|
266 |
do_action("pmpro_paypalexpress_session_vars");
|
267 |
}
|
includes/addons.php
CHANGED
@@ -1,70 +1,66 @@
|
|
1 |
<?php
|
2 |
-
|
3 |
-
|
4 |
-
*/
|
5 |
|
6 |
/**
|
7 |
* Setup plugins api filters
|
8 |
*
|
9 |
* @since 1.8.5
|
10 |
-
*/
|
11 |
-
function pmpro_setupAddonUpdateInfo()
|
12 |
-
|
13 |
-
add_filter('
|
14 |
-
add_filter('
|
15 |
-
|
16 |
-
add_action('update_option_pmpro_license_key', 'pmpro_reset_update_plugins_cache', 10, 2);
|
17 |
}
|
18 |
-
add_action('init', 'pmpro_setupAddonUpdateInfo');
|
19 |
|
20 |
/**
|
21 |
* Get addon information from PMPro server.
|
22 |
*
|
23 |
* @since 1.8.5
|
24 |
*/
|
25 |
-
function pmpro_getAddons()
|
26 |
-
|
27 |
-
|
28 |
-
$
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
add_option("pmpro_addons_timestamp", current_time('timestamp'), NULL, 'no');
|
66 |
-
}
|
67 |
-
|
68 |
return $addons;
|
69 |
}
|
70 |
|
@@ -75,31 +71,33 @@ function pmpro_getAddons()
|
|
75 |
*
|
76 |
* @param object $slug The identifying slug for the addon (typically the directory name)
|
77 |
* @return object $addon containing plugin information or false if not found
|
78 |
-
*/
|
79 |
-
function pmpro_getAddonBySlug($slug)
|
80 |
-
{
|
81 |
$addons = pmpro_getAddons();
|
82 |
-
|
83 |
-
if(empty($addons))
|
84 |
return false;
|
85 |
-
|
86 |
-
|
87 |
-
|
|
|
88 |
return $addon;
|
89 |
-
|
|
|
|
|
90 |
return false;
|
91 |
}
|
92 |
|
93 |
/**
|
94 |
-
* Infuse plugin update details when WordPress runs its update checker.
|
95 |
-
*
|
96 |
-
* @since 1.8.5
|
97 |
-
*
|
98 |
-
* @param object $value The WordPress update object.
|
99 |
-
* @return object $value Amended WordPress update object on success, default if object is empty.
|
100 |
-
*/
|
101 |
function pmpro_update_plugins_filter( $value ) {
|
102 |
-
|
103 |
// If no update object exists, return early.
|
104 |
if ( empty( $value ) ) {
|
105 |
return $value;
|
@@ -107,36 +105,37 @@ function pmpro_update_plugins_filter( $value ) {
|
|
107 |
|
108 |
// get addon information
|
109 |
$addons = pmpro_getAddons();
|
110 |
-
|
111 |
// no addons?
|
112 |
-
if(empty($addons))
|
113 |
return $value;
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
{
|
118 |
-
//skip wordpress.org plugins
|
119 |
-
if(empty($addon['License']) || $addon['License'] == 'wordpress')
|
120 |
continue;
|
121 |
-
|
122 |
-
|
|
|
123 |
$plugin_file = $addon['Slug'] . '/' . $addon['Slug'] . '.php';
|
124 |
-
$plugin_file_abs = WP_PLUGIN_DIR .
|
125 |
-
|
126 |
-
//couldn't find plugin, skip
|
127 |
-
if(!file_exists($plugin_file_abs))
|
128 |
continue;
|
129 |
-
else
|
130 |
-
$plugin_data = get_plugin_data( $plugin_file_abs, false, true);
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
{
|
135 |
-
$value->response[$plugin_file] = pmpro_getPluginAPIObjectFromAddon($addon);
|
136 |
-
$value->response[$plugin_file]->new_version = $addon['Version'];
|
137 |
}
|
138 |
}
|
139 |
-
|
140 |
// Return the update object.
|
141 |
return $value;
|
142 |
}
|
@@ -146,16 +145,16 @@ function pmpro_update_plugins_filter( $value ) {
|
|
146 |
*
|
147 |
* @since 1.8.5
|
148 |
*
|
149 |
-
* @param array
|
150 |
* @param string $url The URL to be pinged.
|
151 |
* @return array $args Amended array of request args.
|
152 |
*/
|
153 |
-
function pmpro_http_request_args_for_addons($args, $url)
|
154 |
-
{
|
155 |
// If this is an SSL request and we are performing an upgrade routine, disable SSL verification.
|
156 |
-
if(strpos($url, 'https://') !== false && strpos($url, PMPRO_LICENSE_SERVER) !== false && strpos($url,
|
157 |
$args['sslverify'] = false;
|
158 |
-
|
|
|
159 |
return $args;
|
160 |
}
|
161 |
|
@@ -164,25 +163,27 @@ function pmpro_http_request_args_for_addons($args, $url)
|
|
164 |
*
|
165 |
* @since 1.8.5
|
166 |
*/
|
167 |
-
function pmpro_plugins_api($api, $action = '', $args = null)
|
168 |
-
|
169 |
-
|
170 |
-
if('plugin_information' != $action || empty($args->slug))
|
171 |
return $api;
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
|
|
178 |
return $api;
|
179 |
-
|
180 |
-
|
181 |
-
|
|
|
182 |
return $api;
|
183 |
-
|
|
|
184 |
// Create a new stdClass object and populate it with our plugin information.
|
185 |
-
$api = pmpro_getPluginAPIObjectFromAddon($addon);
|
186 |
return $api;
|
187 |
}
|
188 |
|
@@ -191,36 +192,39 @@ function pmpro_plugins_api($api, $action = '', $args = null)
|
|
191 |
*
|
192 |
* @since 1.8.5
|
193 |
*/
|
194 |
-
function pmpro_getPluginAPIObjectFromAddon($addon)
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
if(empty($addon))
|
199 |
return $api;
|
200 |
-
|
201 |
-
|
202 |
-
$api->
|
203 |
-
$api->
|
204 |
-
$api->
|
205 |
-
$api->
|
206 |
-
$api->
|
207 |
-
$api->
|
208 |
-
$api->
|
209 |
-
$api->
|
210 |
-
$api->
|
211 |
-
$api->
|
212 |
-
$api->
|
213 |
-
$api->
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
if(empty($
|
222 |
-
$api->
|
223 |
-
|
|
|
|
|
|
|
|
|
224 |
return $api;
|
225 |
}
|
226 |
|
@@ -229,14 +233,13 @@ function pmpro_getPluginAPIObjectFromAddon($addon)
|
|
229 |
*
|
230 |
* @since 1.8
|
231 |
*
|
232 |
-
* @param array
|
233 |
* @param string $url The URL to be pinged.
|
234 |
* @return array $args Amended array of request args.
|
235 |
*/
|
236 |
-
function pmpro_reset_update_plugins_cache($old_value, $value)
|
237 |
-
|
238 |
-
|
239 |
-
delete_site_transient('update_themes');
|
240 |
}
|
241 |
|
242 |
/**
|
@@ -244,89 +247,90 @@ function pmpro_reset_update_plugins_cache($old_value, $value)
|
|
244 |
*
|
245 |
* @since 1.9
|
246 |
*/
|
247 |
-
function pmpro_admin_init_updating_plugins() {
|
248 |
-
//if user can't edit plugins, then WP will catch this later
|
249 |
-
if ( ! current_user_can('update_plugins') )
|
250 |
return;
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
$plugins =
|
257 |
-
|
258 |
-
|
|
|
259 |
$plus_addons = array();
|
260 |
$plus_plugins = array();
|
261 |
-
foreach($plugins as $plugin) {
|
262 |
-
$slug = str_replace('.php', '', basename($plugin));
|
263 |
-
$addon = pmpro_getAddonBySlug($slug);
|
264 |
-
if(!empty($addon) && $addon['License'] == 'plus') {
|
265 |
$plus_addons[] = $addon['Name'];
|
266 |
$plus_plugins[] = $plugin;
|
267 |
-
}
|
268 |
}
|
269 |
-
unset($plugin);
|
270 |
-
|
271 |
-
//if Plus addons found, check license key
|
272 |
-
if(!empty($plus_plugins) && !pmpro_license_isValid(
|
273 |
-
//show error
|
274 |
-
$msg = __('You must have a <a href="https://www.paidmembershipspro.com/pricing/?utm_source=wp-admin&utm_pluginlink=bulkupdate">valid PMPro Plus License Key</a> to update PMPro Plus add ons. The following plugins will not be updated:', 'paid-memberships-pro');
|
275 |
-
echo '<div class="error"><p>' . $msg . ' <strong>' . implode(', ', $plus_addons) . '</strong></p></div>';
|
276 |
}
|
277 |
-
|
278 |
-
//can exit out of this function now
|
279 |
return;
|
280 |
}
|
281 |
-
|
282 |
-
//upgrading just one or plugin via an update.php link
|
283 |
-
if(basename($_SERVER['SCRIPT_NAME']) == 'update.php' && !empty($_REQUEST['action']) && $_REQUEST['action'] == 'upgrade-plugin' && !empty($_REQUEST['plugin'])) {
|
284 |
-
//figure out which plugin we are updating
|
285 |
-
$plugin = urldecode(trim($_REQUEST['plugin']));
|
286 |
-
|
287 |
-
$slug = str_replace('.php', '', basename($plugin));
|
288 |
-
$addon = pmpro_getAddonBySlug($slug);
|
289 |
-
if(!empty($addon) && !pmpro_license_isValid()) {
|
290 |
-
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
291 |
-
|
292 |
-
echo '<div class="wrap"><h2>' . __('Update Plugin') . '</h2>';
|
293 |
-
|
294 |
-
$msg = __('You must have a <a href="https://www.paidmembershipspro.com/pricing/?utm_source=wp-admin&utm_pluginlink=addon_update">valid PMPro Plus License Key</a> to update PMPro Plus add ons.', 'paid-memberships-pro');
|
295 |
echo '<div class="error"><p>' . $msg . '</p></div>';
|
296 |
-
|
297 |
-
echo '<p><a href="' . admin_url('admin.php?page=pmpro-addons') . '" target="_parent">' . __('Return to the PMPro Add Ons page', 'paid-memberships-pro') . '</a></p>';
|
298 |
-
|
299 |
echo '</div>';
|
300 |
-
|
301 |
-
include(ABSPATH . 'wp-admin/admin-footer.php');
|
302 |
-
|
303 |
-
//can exit WP now
|
304 |
-
exit;
|
305 |
-
}
|
306 |
}
|
307 |
-
|
308 |
-
//updating via AJAX on the plugins page
|
309 |
-
if(basename($_SERVER['SCRIPT_NAME']) == 'admin-ajax.php' && !empty($_REQUEST['action']) && $_REQUEST['action'] == 'update-plugin' && !empty($_REQUEST['plugin'])) {
|
310 |
-
//figure out which plugin we are updating
|
311 |
-
$plugin = urldecode(trim($_REQUEST['plugin']));
|
312 |
-
|
313 |
-
$slug = str_replace('.php', '', basename($plugin));
|
314 |
-
$addon = pmpro_getAddonBySlug($slug);
|
315 |
-
if(!empty($addon) && !pmpro_license_isValid()) {
|
316 |
-
$msg = __('You must enter a valid PMPro Plus License Key under Settings > PMPro License to update this add on.', 'paid-memberships-pro');
|
317 |
-
echo '<div class="error"><p>' . $msg . '</p></div>';
|
318 |
-
|
319 |
-
//can exit WP now
|
320 |
exit;
|
321 |
-
}
|
322 |
}
|
323 |
-
|
324 |
/*
|
325 |
-
|
326 |
* Check for PMPro Plug plugins
|
327 |
* If a plus plugin is found, check the PMPro license key
|
328 |
* If the key is missing or invalid, throw an error
|
329 |
* Show appropriate footer and exit... maybe do something else to keep plugin update from happening
|
330 |
*/
|
331 |
}
|
332 |
-
add_action('admin_init', 'pmpro_admin_init_updating_plugins');
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Some of the code in this library was borrowed from the TGM Updater class by Thomas Griffin. (https://github.com/thomasgriffin/TGM-Updater)
|
4 |
+
*/
|
5 |
|
6 |
/**
|
7 |
* Setup plugins api filters
|
8 |
*
|
9 |
* @since 1.8.5
|
10 |
+
*/
|
11 |
+
function pmpro_setupAddonUpdateInfo() {
|
12 |
+
add_filter( 'plugins_api', 'pmpro_plugins_api', 10, 3 );
|
13 |
+
add_filter( 'pre_set_site_transient_update_plugins', 'pmpro_update_plugins_filter' );
|
14 |
+
add_filter( 'http_request_args', 'pmpro_http_request_args_for_addons', 10, 2 );
|
15 |
+
add_action( 'update_option_pmpro_license_key', 'pmpro_reset_update_plugins_cache', 10, 2 );
|
|
|
16 |
}
|
17 |
+
add_action( 'init', 'pmpro_setupAddonUpdateInfo' );
|
18 |
|
19 |
/**
|
20 |
* Get addon information from PMPro server.
|
21 |
*
|
22 |
* @since 1.8.5
|
23 |
*/
|
24 |
+
function pmpro_getAddons() {
|
25 |
+
// check if forcing a pull from the server
|
26 |
+
$addons = get_option( 'pmpro_addons', array() );
|
27 |
+
$addons_timestamp = get_option( 'pmpro_addons_timestamp', 0 );
|
28 |
+
|
29 |
+
// if no addons locally, we need to hit the server
|
30 |
+
if ( empty( $addons ) || ! empty( $_REQUEST['force-check'] ) || current_time( 'timestamp' ) > $addons_timestamp + 86400 ) {
|
31 |
+
/**
|
32 |
+
* Filter to change the timeout for this wp_remote_get() request.
|
33 |
+
*
|
34 |
+
* @since 1.8.5.1
|
35 |
+
*
|
36 |
+
* @param int $timeout The number of seconds before the request times out
|
37 |
+
*/
|
38 |
+
$timeout = apply_filters( 'pmpro_get_addons_timeout', 5 );
|
39 |
+
|
40 |
+
// get em
|
41 |
+
$remote_addons = wp_remote_get( PMPRO_LICENSE_SERVER . 'addons/', $timeout );
|
42 |
+
|
43 |
+
// make sure we have at least an array to pass back
|
44 |
+
if ( empty( $addons ) ) {
|
45 |
+
$addons = array();
|
46 |
+
}
|
47 |
+
|
48 |
+
// test response
|
49 |
+
if ( is_wp_error( $remote_addons ) ) {
|
50 |
+
// error
|
51 |
+
pmpro_setMessage( 'Could not connect to the PMPro License Server to update addon information. Try again later.', 'error' );
|
52 |
+
} elseif ( ! empty( $remote_addons ) && $remote_addons['response']['code'] == 200 ) {
|
53 |
+
// update addons in cache
|
54 |
+
$addons = json_decode( wp_remote_retrieve_body( $remote_addons ), true );
|
55 |
+
delete_option( 'pmpro_addons' );
|
56 |
+
add_option( 'pmpro_addons', $addons, null, 'no' );
|
57 |
+
}
|
58 |
+
|
59 |
+
// save timestamp of last update
|
60 |
+
delete_option( 'pmpro_addons_timestamp' );
|
61 |
+
add_option( 'pmpro_addons_timestamp', current_time( 'timestamp' ), null, 'no' );
|
62 |
+
}
|
63 |
+
|
|
|
|
|
|
|
64 |
return $addons;
|
65 |
}
|
66 |
|
71 |
*
|
72 |
* @param object $slug The identifying slug for the addon (typically the directory name)
|
73 |
* @return object $addon containing plugin information or false if not found
|
74 |
+
*/
|
75 |
+
function pmpro_getAddonBySlug( $slug ) {
|
|
|
76 |
$addons = pmpro_getAddons();
|
77 |
+
|
78 |
+
if ( empty( $addons ) ) {
|
79 |
return false;
|
80 |
+
}
|
81 |
+
|
82 |
+
foreach ( $addons as $addon ) {
|
83 |
+
if ( $addon['Slug'] == $slug ) {
|
84 |
return $addon;
|
85 |
+
}
|
86 |
+
}
|
87 |
+
|
88 |
return false;
|
89 |
}
|
90 |
|
91 |
/**
|
92 |
+
* Infuse plugin update details when WordPress runs its update checker.
|
93 |
+
*
|
94 |
+
* @since 1.8.5
|
95 |
+
*
|
96 |
+
* @param object $value The WordPress update object.
|
97 |
+
* @return object $value Amended WordPress update object on success, default if object is empty.
|
98 |
+
*/
|
99 |
function pmpro_update_plugins_filter( $value ) {
|
100 |
+
|
101 |
// If no update object exists, return early.
|
102 |
if ( empty( $value ) ) {
|
103 |
return $value;
|
105 |
|
106 |
// get addon information
|
107 |
$addons = pmpro_getAddons();
|
108 |
+
|
109 |
// no addons?
|
110 |
+
if ( empty( $addons ) ) {
|
111 |
return $value;
|
112 |
+
}
|
113 |
+
|
114 |
+
// check addons
|
115 |
+
foreach ( $addons as $addon ) {
|
116 |
+
// skip wordpress.org plugins
|
117 |
+
if ( empty( $addon['License'] ) || $addon['License'] == 'wordpress.org' ) {
|
118 |
continue;
|
119 |
+
}
|
120 |
+
|
121 |
+
// get data for plugin
|
122 |
$plugin_file = $addon['Slug'] . '/' . $addon['Slug'] . '.php';
|
123 |
+
$plugin_file_abs = WP_PLUGIN_DIR . '/' . $plugin_file;
|
124 |
+
|
125 |
+
// couldn't find plugin, skip
|
126 |
+
if ( ! file_exists( $plugin_file_abs ) ) {
|
127 |
continue;
|
128 |
+
} else {
|
129 |
+
$plugin_data = get_plugin_data( $plugin_file_abs, false, true );
|
130 |
+
}
|
131 |
+
|
132 |
+
// compare versions
|
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 |
+
|
139 |
// Return the update object.
|
140 |
return $value;
|
141 |
}
|
145 |
*
|
146 |
* @since 1.8.5
|
147 |
*
|
148 |
+
* @param array $args Array of request args.
|
149 |
* @param string $url The URL to be pinged.
|
150 |
* @return array $args Amended array of request args.
|
151 |
*/
|
152 |
+
function pmpro_http_request_args_for_addons( $args, $url ) {
|
|
|
153 |
// If this is an SSL request and we are performing an upgrade routine, disable SSL verification.
|
154 |
+
if ( strpos( $url, 'https://' ) !== false && strpos( $url, PMPRO_LICENSE_SERVER ) !== false && strpos( $url, 'download' ) !== false ) {
|
155 |
$args['sslverify'] = false;
|
156 |
+
}
|
157 |
+
|
158 |
return $args;
|
159 |
}
|
160 |
|
163 |
*
|
164 |
* @since 1.8.5
|
165 |
*/
|
166 |
+
function pmpro_plugins_api( $api, $action = '', $args = null ) {
|
167 |
+
// Not even looking for plugin information? Or not given slug?
|
168 |
+
if ( 'plugin_information' != $action || empty( $args->slug ) ) {
|
|
|
169 |
return $api;
|
170 |
+
}
|
171 |
+
|
172 |
+
// get addon information
|
173 |
+
$addon = pmpro_getAddonBySlug( $args->slug );
|
174 |
+
|
175 |
+
// no addons?
|
176 |
+
if ( empty( $addon ) ) {
|
177 |
return $api;
|
178 |
+
}
|
179 |
+
|
180 |
+
// handled by wordpress.org?
|
181 |
+
if ( empty( $addon['License'] ) || $addon['License'] == 'wordpress.org' ) {
|
182 |
return $api;
|
183 |
+
}
|
184 |
+
|
185 |
// Create a new stdClass object and populate it with our plugin information.
|
186 |
+
$api = pmpro_getPluginAPIObjectFromAddon( $addon );
|
187 |
return $api;
|
188 |
}
|
189 |
|
192 |
*
|
193 |
* @since 1.8.5
|
194 |
*/
|
195 |
+
function pmpro_getPluginAPIObjectFromAddon( $addon ) {
|
196 |
+
$api = new stdClass();
|
197 |
+
|
198 |
+
if ( empty( $addon ) ) {
|
|
|
199 |
return $api;
|
200 |
+
}
|
201 |
+
|
202 |
+
$api->name = isset( $addon['Name'] ) ? $addon['Name'] : '';
|
203 |
+
$api->slug = isset( $addon['Slug'] ) ? $addon['Slug'] : '';
|
204 |
+
$api->plugin = isset( $addon['plugin'] ) ? $addon['plugin'] : '';
|
205 |
+
$api->version = isset( $addon['Version'] ) ? $addon['Version'] : '';
|
206 |
+
$api->author = isset( $addon['Author'] ) ? $addon['Author'] : '';
|
207 |
+
$api->author_profile = isset( $addon['AuthorURI'] ) ? $addon['AuthorURI'] : '';
|
208 |
+
$api->requires = isset( $addon['Requires'] ) ? $addon['Requires'] : '';
|
209 |
+
$api->tested = isset( $addon['Tested'] ) ? $addon['Tested'] : '';
|
210 |
+
$api->last_updated = isset( $addon['LastUpdated'] ) ? $addon['LastUpdated'] : '';
|
211 |
+
$api->homepage = isset( $addon['URI'] ) ? $addon['URI'] : '';
|
212 |
+
$api->sections['changelog'] = isset( $addon['Changelog'] ) ? $addon['Changelog'] : '';
|
213 |
+
$api->download_link = isset( $addon['Download'] ) ? $addon['Download'] : '';
|
214 |
+
$api->package = isset( $addon['Download'] ) ? $addon['Download'] : '';
|
215 |
+
|
216 |
+
// get license key if one is available
|
217 |
+
$key = get_option( 'pmpro_license_key', '' );
|
218 |
+
if ( ! empty( $key ) && ! empty( $api->download_link ) ) {
|
219 |
+
$api->download_link = add_query_arg( 'key', $key, $api->download_link );
|
220 |
+
}
|
221 |
+
if ( ! empty( $key ) && ! empty( $api->package ) ) {
|
222 |
+
$api->package = add_query_arg( 'key', $key, $api->package );
|
223 |
+
}
|
224 |
+
if ( empty( $api->upgrade_notice ) && ! pmpro_license_isValid() ) {
|
225 |
+
$api->upgrade_notice = __( 'Important: This plugin requires a valid PMPro Plus license key to update.', 'paid-memberships-pro' );
|
226 |
+
}
|
227 |
+
|
228 |
return $api;
|
229 |
}
|
230 |
|
233 |
*
|
234 |
* @since 1.8
|
235 |
*
|
236 |
+
* @param array $args Array of request args.
|
237 |
* @param string $url The URL to be pinged.
|
238 |
* @return array $args Amended array of request args.
|
239 |
*/
|
240 |
+
function pmpro_reset_update_plugins_cache( $old_value, $value ) {
|
241 |
+
delete_option( 'pmpro_addons_timestamp' );
|
242 |
+
delete_site_transient( 'update_themes' );
|
|
|
243 |
}
|
244 |
|
245 |
/**
|
247 |
*
|
248 |
* @since 1.9
|
249 |
*/
|
250 |
+
function pmpro_admin_init_updating_plugins() {
|
251 |
+
// if user can't edit plugins, then WP will catch this later
|
252 |
+
if ( ! current_user_can( 'update_plugins' ) ) {
|
253 |
return;
|
254 |
+
}
|
255 |
+
|
256 |
+
// updating one or more plugins via Dashboard -> Upgrade
|
257 |
+
if ( basename( $_SERVER['SCRIPT_NAME'] ) == 'update.php' && ! empty( $_REQUEST['action'] ) && $_REQUEST['action'] == 'update-selected' && ! empty( $_REQUEST['plugins'] ) ) {
|
258 |
+
// figure out which plugin we are updating
|
259 |
+
$plugins = explode( ',', stripslashes( $_GET['plugins'] ) );
|
260 |
+
$plugins = array_map( 'urldecode', $plugins );
|
261 |
+
|
262 |
+
// look for addons
|
263 |
$plus_addons = array();
|
264 |
$plus_plugins = array();
|
265 |
+
foreach ( $plugins as $plugin ) {
|
266 |
+
$slug = str_replace( '.php', '', basename( $plugin ) );
|
267 |
+
$addon = pmpro_getAddonBySlug( $slug );
|
268 |
+
if ( ! empty( $addon ) && $addon['License'] == 'plus' ) {
|
269 |
$plus_addons[] = $addon['Name'];
|
270 |
$plus_plugins[] = $plugin;
|
271 |
+
}
|
272 |
}
|
273 |
+
unset( $plugin );
|
274 |
+
|
275 |
+
// if Plus addons found, check license key
|
276 |
+
if ( ! empty( $plus_plugins ) && ! pmpro_license_isValid( null, 'plus' ) ) {
|
277 |
+
// show error
|
278 |
+
$msg = __( 'You must have a <a href="https://www.paidmembershipspro.com/pricing/?utm_source=wp-admin&utm_pluginlink=bulkupdate">valid PMPro Plus License Key</a> to update PMPro Plus add ons. The following plugins will not be updated:', 'paid-memberships-pro' );
|
279 |
+
echo '<div class="error"><p>' . $msg . ' <strong>' . implode( ', ', $plus_addons ) . '</strong></p></div>';
|
280 |
}
|
281 |
+
|
282 |
+
// can exit out of this function now
|
283 |
return;
|
284 |
}
|
285 |
+
|
286 |
+
// upgrading just one or plugin via an update.php link
|
287 |
+
if ( basename( $_SERVER['SCRIPT_NAME'] ) == 'update.php' && ! empty( $_REQUEST['action'] ) && $_REQUEST['action'] == 'upgrade-plugin' && ! empty( $_REQUEST['plugin'] ) ) {
|
288 |
+
// figure out which plugin we are updating
|
289 |
+
$plugin = urldecode( trim( $_REQUEST['plugin'] ) );
|
290 |
+
|
291 |
+
$slug = str_replace( '.php', '', basename( $plugin ) );
|
292 |
+
$addon = pmpro_getAddonBySlug( $slug );
|
293 |
+
if ( ! empty( $addon ) && ! pmpro_license_isValid() ) {
|
294 |
+
require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
295 |
+
|
296 |
+
echo '<div class="wrap"><h2>' . __( 'Update Plugin' ) . '</h2>';
|
297 |
+
|
298 |
+
$msg = __( 'You must have a <a href="https://www.paidmembershipspro.com/pricing/?utm_source=wp-admin&utm_pluginlink=addon_update">valid PMPro Plus License Key</a> to update PMPro Plus add ons.', 'paid-memberships-pro' );
|
299 |
echo '<div class="error"><p>' . $msg . '</p></div>';
|
300 |
+
|
301 |
+
echo '<p><a href="' . admin_url( 'admin.php?page=pmpro-addons' ) . '" target="_parent">' . __( 'Return to the PMPro Add Ons page', 'paid-memberships-pro' ) . '</a></p>';
|
302 |
+
|
303 |
echo '</div>';
|
304 |
+
|
305 |
+
include( ABSPATH . 'wp-admin/admin-footer.php' );
|
306 |
+
|
307 |
+
// can exit WP now
|
308 |
+
exit;
|
309 |
+
}
|
310 |
}
|
311 |
+
|
312 |
+
// updating via AJAX on the plugins page
|
313 |
+
if ( basename( $_SERVER['SCRIPT_NAME'] ) == 'admin-ajax.php' && ! empty( $_REQUEST['action'] ) && $_REQUEST['action'] == 'update-plugin' && ! empty( $_REQUEST['plugin'] ) ) {
|
314 |
+
// figure out which plugin we are updating
|
315 |
+
$plugin = urldecode( trim( $_REQUEST['plugin'] ) );
|
316 |
+
|
317 |
+
$slug = str_replace( '.php', '', basename( $plugin ) );
|
318 |
+
$addon = pmpro_getAddonBySlug( $slug );
|
319 |
+
if ( ! empty( $addon ) && ! pmpro_license_isValid() ) {
|
320 |
+
$msg = __( 'You must enter a valid PMPro Plus License Key under Settings > PMPro License to update this add on.', 'paid-memberships-pro' );
|
321 |
+
echo '<div class="error"><p>' . $msg . '</p></div>';
|
322 |
+
|
323 |
+
// can exit WP now
|
324 |
exit;
|
325 |
+
}
|
326 |
}
|
327 |
+
|
328 |
/*
|
329 |
+
TODO:
|
330 |
* Check for PMPro Plug plugins
|
331 |
* If a plus plugin is found, check the PMPro license key
|
332 |
* If the key is missing or invalid, throw an error
|
333 |
* Show appropriate footer and exit... maybe do something else to keep plugin update from happening
|
334 |
*/
|
335 |
}
|
336 |
+
add_action( 'admin_init', 'pmpro_admin_init_updating_plugins' );
|
includes/functions.php
CHANGED
@@ -2574,7 +2574,7 @@ function pmpro_getOrderStatuses( $force = false ) {
|
|
2574 |
if ( ! isset( $pmpro_order_statuses ) || $force ) {
|
2575 |
global $wpdb;
|
2576 |
$statuses = array();
|
2577 |
-
$default_statuses = array( '', 'success', 'cancelled', 'review', 'token', 'refunded' );
|
2578 |
$used_statuses = $wpdb->get_col( "SELECT DISTINCT(status) FROM $wpdb->pmpro_membership_orders" );
|
2579 |
$statuses = array_unique( array_merge( $default_statuses, $used_statuses ) );
|
2580 |
asort( $statuses );
|
2574 |
if ( ! isset( $pmpro_order_statuses ) || $force ) {
|
2575 |
global $wpdb;
|
2576 |
$statuses = array();
|
2577 |
+
$default_statuses = array( '', 'success', 'cancelled', 'review', 'token', 'refunded', 'pending', 'error' );
|
2578 |
$used_statuses = $wpdb->get_col( "SELECT DISTINCT(status) FROM $wpdb->pmpro_membership_orders" );
|
2579 |
$statuses = array_unique( array_merge( $default_statuses, $used_statuses ) );
|
2580 |
asort( $statuses );
|
includes/init.php
CHANGED
@@ -245,6 +245,12 @@ function pmpro_manage_users_columns($columns) {
|
|
245 |
return $columns;
|
246 |
}
|
247 |
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
function pmpro_manage_users_custom_column($column_data, $column_name, $user_id) {
|
249 |
|
250 |
if($column_name == 'pmpro_membership_level') {
|
@@ -261,6 +267,19 @@ function pmpro_manage_users_custom_column($column_data, $column_name, $user_id)
|
|
261 |
return $column_data;
|
262 |
}
|
263 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
264 |
add_filter('manage_users_columns', 'pmpro_manage_users_columns');
|
265 |
add_filter('manage_users_custom_column', 'pmpro_manage_users_custom_column', 10, 3);
|
266 |
-
|
|
245 |
return $columns;
|
246 |
}
|
247 |
|
248 |
+
function pmpro_sortable_column($columns)
|
249 |
+
{
|
250 |
+
$columns['pmpro_membership_level'] = ['level', 'desc'];
|
251 |
+
return $columns;
|
252 |
+
}
|
253 |
+
|
254 |
function pmpro_manage_users_custom_column($column_data, $column_name, $user_id) {
|
255 |
|
256 |
if($column_name == 'pmpro_membership_level') {
|
267 |
return $column_data;
|
268 |
}
|
269 |
|
270 |
+
function pmpro_sortable_column_query($query) {
|
271 |
+
global $wpdb;
|
272 |
+
|
273 |
+
$vars = $query->query_vars;
|
274 |
+
|
275 |
+
if($vars['orderby'] == 'level'){
|
276 |
+
$query->query_from .= " LEFT JOIN {$wpdb->prefix}pmpro_memberships_users AS pmpro_mu ON {$wpdb->prefix}users.ID = pmpro_mu.user_id AND pmpro_mu.status = 'active'";
|
277 |
+
$query->query_orderby = "ORDER BY pmpro_mu.membership_id " . $vars['order'] . ", {$wpdb->prefix}users.user_registered";
|
278 |
+
}
|
279 |
+
|
280 |
+
}
|
281 |
+
|
282 |
add_filter('manage_users_columns', 'pmpro_manage_users_columns');
|
283 |
add_filter('manage_users_custom_column', 'pmpro_manage_users_custom_column', 10, 3);
|
284 |
+
add_filter( 'manage_users_sortable_columns', 'pmpro_sortable_column' );
|
285 |
+
add_action('pre_user_query','pmpro_sortable_column_query');
|
includes/privacy.php
ADDED
@@ -0,0 +1,531 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Code to aid with user data privacy, e.g. GDPR compliance
|
4 |
+
*
|
5 |
+
* @since 1.9.5
|
6 |
+
*/
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Add suggested Privacy Policy language for PMPro
|
10 |
+
* @since 1.9.5
|
11 |
+
*/
|
12 |
+
function pmpro_add_privacy_policy_content() {
|
13 |
+
// Check for support.
|
14 |
+
if ( ! function_exists( 'wp_add_privacy_policy_content') ) {
|
15 |
+
return;
|
16 |
+
}
|
17 |
+
|
18 |
+
$content = '';
|
19 |
+
$content .= '<h2>' . __( 'Data Collected to Manage Your Membership', 'paid-memberships-pro' ) . '</h2>';
|
20 |
+
$content .= '<p>' . __( "At checkout, we will collect your name, email address, username, and password. This information is used to setup your account for our site. If you are redirected to an offsite payment gateway to complete your payment, we may store this information in a temporary session variable to setup your account when you return to our site.", 'paid-memberships-pro' ) . '</p>';
|
21 |
+
$content .= '<p>' . __( "At checkout, we may also collect your billing address and phone number. This information is used to confirm your credit card. The billing address and phone number are saved by our site to prepopulate the checkout form for future purchases and so we can get in touch with you if needed to discuss your order.", 'paid-memberships-pro' ) . '</p>';
|
22 |
+
$content .= '<p>' . __( "At checkout, we may also collect your credit card number, expiration date, and security code. This information is passed to our payment gateway to process your purchase. The last 4 digits of your credit card number and the expiration date are saved by our site to use for reference and to send you an email if your credit card will expire before the next recurring payment.", 'paid-memberships-pro' ) . '</p>';
|
23 |
+
$content .= '<p>' . __( "When logged in, we use cookies to track some of your activity on our site including logins, visits, and page views.", 'paid-memberships-pro' ) . '</p>';
|
24 |
+
|
25 |
+
wp_add_privacy_policy_content( 'Paid Memberships Pro', $content );
|
26 |
+
}
|
27 |
+
add_action( 'admin_init', 'pmpro_add_privacy_policy_content' );
|
28 |
+
|
29 |
+
/**
|
30 |
+
* Register the personal data eraser for PMPro
|
31 |
+
* @param array $erasers All erasers added so far
|
32 |
+
*/
|
33 |
+
function pmpro_register_personal_data_erasers( $erasers = array() ) {
|
34 |
+
$erasers[] = array(
|
35 |
+
'eraser_friendly_name' => __( 'Paid Memberships Pro Data' ),
|
36 |
+
'callback' => 'pmpro_personal_data_eraser',
|
37 |
+
);
|
38 |
+
|
39 |
+
return $erasers;
|
40 |
+
}
|
41 |
+
add_filter( 'wp_privacy_personal_data_erasers', 'pmpro_register_personal_data_erasers' );
|
42 |
+
|
43 |
+
/**
|
44 |
+
* Personal data eraser for PMPro data.
|
45 |
+
* @since 1.9.5
|
46 |
+
* @param string $email_address Email address of the user to be erased.
|
47 |
+
* @param int $page For batching
|
48 |
+
*/
|
49 |
+
function pmpro_personal_data_eraser( $email_address, $page = 1 ) {
|
50 |
+
global $wpdb;
|
51 |
+
|
52 |
+
// What user is this?
|
53 |
+
$user = get_user_by( 'email', $email_address );
|
54 |
+
|
55 |
+
$num_items_removed = 0;
|
56 |
+
$num_items_retained = 0;
|
57 |
+
$messages = array();
|
58 |
+
$done = false;
|
59 |
+
|
60 |
+
if( !empty( $user ) ) {
|
61 |
+
// Erase any data we have about this user.
|
62 |
+
$user_meta_fields_to_erase = pmpro_get_personal_user_meta_fields_to_erase();
|
63 |
+
|
64 |
+
$sqlQuery = $wpdb->prepare( "DELETE FROM {$wpdb->usermeta} WHERE user_id = %d AND meta_key IN( [IN_CLAUSE] )", intval( $user->ID ) );
|
65 |
+
|
66 |
+
$in_clause_data = array_map( 'esc_sql', $user_meta_fields_to_erase );
|
67 |
+
$in_clause = "'" . implode( "', '", $in_clause_data ) . "'";
|
68 |
+
$sqlQuery = preg_replace( '/\[IN_CLAUSE\]/', $in_clause, $sqlQuery );
|
69 |
+
|
70 |
+
$wpdb->query( $sqlQuery );
|
71 |
+
$num_deleted = $wpdb->rows_affected;
|
72 |
+
$num_items_removed += $num_deleted;
|
73 |
+
|
74 |
+
// We retain all orders. Get the number of them to report them as retained.
|
75 |
+
$sqlQuery = $wpdb->prepare( "SELECT COUNT(id) FROM {$wpdb->pmpro_membership_orders} WHERE user_id = %d", intval( $user->ID ) );
|
76 |
+
$num_orders = $wpdb->get_var( $sqlQuery );
|
77 |
+
if( $num_orders > 0 ) {
|
78 |
+
$num_items_retained += $num_orders;
|
79 |
+
// We could have used _n below, but that doesn't work well with our script for generating the .pot file.
|
80 |
+
if( $num_orders == 1 ) {
|
81 |
+
$messages[] = __( '1 PMPro order was retained for business records.', 'paid-memberships-pro' );
|
82 |
+
} else {
|
83 |
+
$messages[] = sprintf( __( '%d PMPro orders were retained for business records.', 'paid-memberships-pro' ), $num_orders );
|
84 |
+
}
|
85 |
+
}
|
86 |
+
|
87 |
+
// Warn the admin if this user has an active subscription
|
88 |
+
$messages[] = __( "Please note that data erasure will not cancel a user's membership level or any active subscriptions. Please edit or delete the user through the WordPress dashboard.", 'paid-memberships-pro' );
|
89 |
+
}
|
90 |
+
|
91 |
+
// Set done to false if we still have stuff to erase.
|
92 |
+
$done = true;
|
93 |
+
|
94 |
+
return array(
|
95 |
+
'items_removed' => $num_items_removed,
|
96 |
+
'items_retained' => $num_items_retained,
|
97 |
+
'messages' => $messages,
|
98 |
+
'done' => $done,
|
99 |
+
);
|
100 |
+
}
|
101 |
+
|
102 |
+
/**
|
103 |
+
* Register the personal data exporter for PMPro.
|
104 |
+
* @since 1.9.5
|
105 |
+
* @param array $exporters All exporters added so far
|
106 |
+
*/
|
107 |
+
function pmpro_register_personal_data_exporters( $exporters ) {
|
108 |
+
$exporters[] = array(
|
109 |
+
'exporter_friendly_name' => __( 'Paid Memberships Pro Data' ),
|
110 |
+
'callback' => 'pmpro_personal_data_exporter',
|
111 |
+
);
|
112 |
+
|
113 |
+
return $exporters;
|
114 |
+
}
|
115 |
+
add_filter( 'wp_privacy_personal_data_exporters', 'pmpro_register_personal_data_exporters' );
|
116 |
+
|
117 |
+
/**
|
118 |
+
* Personal data exporter for PMPro data.
|
119 |
+
* @since 1.9.5
|
120 |
+
*/
|
121 |
+
function pmpro_personal_data_exporter( $email_address, $page = 1 ) {
|
122 |
+
global $wpdb;
|
123 |
+
|
124 |
+
$data_to_export = array();
|
125 |
+
|
126 |
+
// What user is this?
|
127 |
+
$user = get_user_by( 'email', $email_address );
|
128 |
+
|
129 |
+
if( !empty( $user ) ) {
|
130 |
+
// Add data stored in user meta.
|
131 |
+
$personal_user_meta_fields = pmpro_get_personal_user_meta_fields();
|
132 |
+
$sqlQuery = $wpdb->prepare(
|
133 |
+
"SELECT meta_key, meta_value
|
134 |
+
FROM {$wpdb->usermeta}
|
135 |
+
WHERE user_id = %d
|
136 |
+
AND meta_key IN( [IN_CLAUSE] )", intval( $user->ID ) );
|
137 |
+
|
138 |
+
$in_clause_data = array_map( 'esc_sql', array_keys( $personal_user_meta_fields ) );
|
139 |
+
$in_clause = "'" . implode( "', '", $in_clause_data ) . "'";
|
140 |
+
$sqlQuery = preg_replace( '/\[IN_CLAUSE\]/', $in_clause, $sqlQuery );
|
141 |
+
|
142 |
+
$personal_user_meta_data = $wpdb->get_results( $sqlQuery, OBJECT_K );
|
143 |
+
|
144 |
+
$user_meta_data_to_export = array();
|
145 |
+
foreach( $personal_user_meta_fields as $key => $name ) {
|
146 |
+
if( !empty( $personal_user_meta_data[$key] ) ) {
|
147 |
+
$value = $personal_user_meta_data[$key]->meta_value;
|
148 |
+
} else {
|
149 |
+
$value = '';
|
150 |
+
}
|
151 |
+
|
152 |
+
$user_meta_data_to_export[] = array(
|
153 |
+
'name' => $name,
|
154 |
+
'value' => $value,
|
155 |
+
);
|
156 |
+
}
|
157 |
+
|
158 |
+
$data_to_export[] = array(
|
159 |
+
'group_id' => 'pmpro_user_data',
|
160 |
+
'group_label' => __( 'Paid Memberships Pro User Data' ),
|
161 |
+
'item_id' => "user-{$user->ID}",
|
162 |
+
'data' => $user_meta_data_to_export,
|
163 |
+
);
|
164 |
+
|
165 |
+
|
166 |
+
// Add membership history.
|
167 |
+
$sqlQuery = $wpdb->prepare(
|
168 |
+
"SELECT * FROM {$wpdb->pmpro_memberships_users}
|
169 |
+
WHERE user_id = %d
|
170 |
+
ORDER BY id DESC", intval( $user->ID ) );
|
171 |
+
|
172 |
+
$history = $wpdb->get_results( $sqlQuery );
|
173 |
+
foreach( $history as $item ) {
|
174 |
+
if( $item->enddate === null || $item->enddate == '0000-00-00 00:00:00' ) {
|
175 |
+
$item->enddate = __( 'Never', 'paid-memberships-pro' );
|
176 |
+
} else {
|
177 |
+
$item->enddate = date( get_option( 'date_format' ), strtotime( $item->enddate, current_time( 'timestamp' ) ) );
|
178 |
+
}
|
179 |
+
|
180 |
+
$history_data_to_export = array(
|
181 |
+
array(
|
182 |
+
'name' => __( 'Level ID', 'paid-memberships-pro' ),
|
183 |
+
'value' => $item->membership_id,
|
184 |
+
),
|
185 |
+
array(
|
186 |
+
'name' => __( 'Start Date', 'paid-memberships-pro' ),
|
187 |
+
'value' => date( get_option( 'date_format' ), strtotime( $item->startdate, current_time( 'timestamp' ) ) ),
|
188 |
+
),
|
189 |
+
array(
|
190 |
+
'name' => __( 'Date Modified', 'paid-memberships-pro' ),
|
191 |
+
'value' => date( get_option( 'date_format' ), strtotime( $item->modified, current_time( 'timestamp' ) ) ),
|
192 |
+
),
|
193 |
+
array(
|
194 |
+
'name' => __( 'End Date', 'paid-memberships-pro' ),
|
195 |
+
'value' => $item->enddate,
|
196 |
+
),
|
197 |
+
array(
|
198 |
+
'name' => __( 'Level Cost', 'paid-memberships-pro' ),
|
199 |
+
'value' => pmpro_getLevelCost( $item, false, true ),
|
200 |
+
),
|
201 |
+
array(
|
202 |
+
'name' => __( 'Status', 'paid-memberships-pro' ),
|
203 |
+
'value' => $item->status,
|
204 |
+
),
|
205 |
+
);
|
206 |
+
|
207 |
+
$data_to_export[] = array(
|
208 |
+
'group_id' => 'pmpro_membership_history',
|
209 |
+
'group_label' => __( 'Paid Memberships Pro Membership History' ),
|
210 |
+
'item_id' => "memberships_users-{$item->id}",
|
211 |
+
'data' => $history_data_to_export,
|
212 |
+
);
|
213 |
+
}
|
214 |
+
|
215 |
+
// Add order history.
|
216 |
+
$sqlQuery = $wpdb->prepare(
|
217 |
+
"SELECT id FROM {$wpdb->pmpro_membership_orders}
|
218 |
+
WHERE user_id = %d
|
219 |
+
ORDER BY id DESC", intval( $user->ID ) );
|
220 |
+
|
221 |
+
$order_ids = $wpdb->get_col( $sqlQuery );
|
222 |
+
|
223 |
+
foreach( $order_ids as $order_id ) {
|
224 |
+
$order = new MemberOrder( $order_id );
|
225 |
+
$order->getMembershipLevel();
|
226 |
+
|
227 |
+
$order_data_to_export = array(
|
228 |
+
array(
|
229 |
+
'name' => __( 'Order ID', 'paid-memberships-pro' ),
|
230 |
+
'value' => $order->id,
|
231 |
+
),
|
232 |
+
array(
|
233 |
+
'name' => __( 'Order Code', 'paid-memberships-pro' ),
|
234 |
+
'value' => $order->code,
|
235 |
+
),
|
236 |
+
array(
|
237 |
+
'name' => __( 'Order Date', 'paid-memberships-pro' ),
|
238 |
+
'value' => date( get_option( 'date_format' ), $order->timestamp ),
|
239 |
+
),
|
240 |
+
array(
|
241 |
+
'name' => __( 'Level', 'paid-memberships-pro' ),
|
242 |
+
'value' => $order->membership_level->name,
|
243 |
+
),
|
244 |
+
array(
|
245 |
+
'name' => __( 'Billing Name', 'paid-memberships-pro' ),
|
246 |
+
'value' => $order->billing->name,
|
247 |
+
),
|
248 |
+
array(
|
249 |
+
'name' => __( 'Billing Street', 'paid-memberships-pro' ),
|
250 |
+
'value' => $order->billing->street,
|
251 |
+
),
|
252 |
+
array(
|
253 |
+
'name' => __( 'Billing City', 'paid-memberships-pro' ),
|
254 |
+
'value' => $order->billing->city,
|
255 |
+
),
|
256 |
+
array(
|
257 |
+
'name' => __( 'Billing State', 'paid-memberships-pro' ),
|
258 |
+
'value' => $order->billing->state,
|
259 |
+
),
|
260 |
+
array(
|
261 |
+
'name' => __( 'Billing Postal Code', 'paid-memberships-pro' ),
|
262 |
+
'value' => $order->billing->zip,
|
263 |
+
),
|
264 |
+
array(
|
265 |
+
'name' => __( 'Billing Country', 'paid-memberships-pro' ),
|
266 |
+
'value' => $order->billing->country,
|
267 |
+
),
|
268 |
+
array(
|
269 |
+
'name' => __( 'Billing Phone', 'paid-memberships-pro' ),
|
270 |
+
'value' => formatPhone( $order->billing->phone ),
|
271 |
+
),
|
272 |
+
array(
|
273 |
+
'name' => __( 'Sub Total', 'paid-memberships-pro' ),
|
274 |
+
'value' => $order->subtotal,
|
275 |
+
),
|
276 |
+
array(
|
277 |
+
'name' => __( 'Tax', 'paid-memberships-pro' ),
|
278 |
+
'value' => $order->tax,
|
279 |
+
),
|
280 |
+
array(
|
281 |
+
'name' => __( 'Coupon Amount', 'paid-memberships-pro' ),
|
282 |
+
'value' => $order->couponamount,
|
283 |
+
),
|
284 |
+
array(
|
285 |
+
'name' => __( 'Total', 'paid-memberships-pro' ),
|
286 |
+
'value' => $order->total,
|
287 |
+
),
|
288 |
+
array(
|
289 |
+
'name' => __( 'Payment Type', 'paid-memberships-pro' ),
|
290 |
+
'value' => $order->payment_type,
|
291 |
+
),
|
292 |
+
array(
|
293 |
+
'name' => __( 'Card Type', 'paid-memberships-pro' ),
|
294 |
+
'value' => $order->cardtype,
|
295 |
+
),
|
296 |
+
array(
|
297 |
+
'name' => __( 'Account Number', 'paid-memberships-pro' ),
|
298 |
+
'value' => $order->accountnumber,
|
299 |
+
),
|
300 |
+
array(
|
301 |
+
'name' => __( 'Expiration Month', 'paid-memberships-pro' ),
|
302 |
+
'value' => $order->expirationmonth,
|
303 |
+
),
|
304 |
+
array(
|
305 |
+
'name' => __( 'Expiration Year', 'paid-memberships-pro' ),
|
306 |
+
'value' => $order->expirationyear,
|
307 |
+
),
|
308 |
+
array(
|
309 |
+
'name' => __( 'Status', 'paid-memberships-pro' ),
|
310 |
+
'value' => $order->status,
|
311 |
+
),
|
312 |
+
array(
|
313 |
+
'name' => __( 'Gateway', 'paid-memberships-pro' ),
|
314 |
+
'value' => $order->gateway,
|
315 |
+
),
|
316 |
+
array(
|
317 |
+
'name' => __( 'Gateway Environment', 'paid-memberships-pro' ),
|
318 |
+
'value' => $order->gateway_environment,
|
319 |
+
),
|
320 |
+
array(
|
321 |
+
'name' => __( 'Payment Transaction ID', 'paid-memberships-pro' ),
|
322 |
+
'value' => $order->payment_transaction_id,
|
323 |
+
),
|
324 |
+
array(
|
325 |
+
'name' => __( 'Subscription Transaction ID', 'paid-memberships-pro' ),
|
326 |
+
'value' => $order->subscription_transaction_id,
|
327 |
+
),
|
328 |
+
// Note: Order notes, session_id, and paypal_token are excluded.
|
329 |
+
);
|
330 |
+
|
331 |
+
$data_to_export[] = array(
|
332 |
+
'group_id' => 'pmpro_order_history',
|
333 |
+
'group_label' => __( 'Paid Memberships Pro Order History' ),
|
334 |
+
'item_id' => "membership_order-{$order->id}",
|
335 |
+
'data' => $order_data_to_export,
|
336 |
+
);
|
337 |
+
}
|
338 |
+
}
|
339 |
+
|
340 |
+
$done = true;
|
341 |
+
|
342 |
+
return array(
|
343 |
+
'data' => $data_to_export,
|
344 |
+
'done' => $done,
|
345 |
+
);
|
346 |
+
}
|
347 |
+
|
348 |
+
/**
|
349 |
+
* Get list of user meta fields with labels to include in the PMPro data exporter
|
350 |
+
* @since 1.9.5
|
351 |
+
*/
|
352 |
+
function pmpro_get_personal_user_meta_fields() {
|
353 |
+
$fields = array(
|
354 |
+
'pmpro_bfirstname' => __( 'Billing First Name', 'paid-memberships-pro' ),
|
355 |
+
'pmpro_blastname' => __( 'Billing Last Name', 'paid-memberships-pro' ),
|
356 |
+
'pmpro_baddress1' => __( 'Billing Address 1', 'paid-memberships-pro' ),
|
357 |
+
'pmpro_baddress2' => __( 'Billing Address 2', 'paid-memberships-pro' ),
|
358 |
+
'pmpro_bcity' => __( 'Billing City', 'paid-memberships-pro' ),
|
359 |
+
'pmpro_bstate' => __( 'Billing State/Province', 'paid-memberships-pro' ),
|
360 |
+
'pmpro_bzipcode' => __( 'Billing Postal Code', 'paid-memberships-pro' ),
|
361 |
+
'pmpro_bphone' => __( 'Billing Phone Number', 'paid-memberships-pro' ),
|
362 |
+
'pmpro_bcountry' => __( 'Billing Country', 'paid-memberships-pro' ),
|
363 |
+
'pmpro_CardType' => __( 'Credit Card Type', 'paid-memberships-pro' ),
|
364 |
+
'pmpro_AccountNumber' => __( 'Credit Card Account Number', 'paid-memberships-pro' ),
|
365 |
+
'pmpro_ExpirationMonth' => __( 'Credit Card Expiration Month', 'paid-memberships-pro' ),
|
366 |
+
'pmpro_ExpirationYear' => __( 'Credit Card Expiration Year', 'paid-memberships-pro' ),
|
367 |
+
'pmpro_logins' => __( 'Login Data', 'paid-memberships-pro' ),
|
368 |
+
'pmpro_visits' => __( 'Visits Data', 'paid-memberships-pro' ),
|
369 |
+
'pmpro_views' => __( 'Views Data', 'paid-memberships-pro' ),
|
370 |
+
);
|
371 |
+
|
372 |
+
$fields = apply_filters( 'pmpro_get_personal_user_meta_fields', $fields );
|
373 |
+
|
374 |
+
return $fields;
|
375 |
+
}
|
376 |
+
|
377 |
+
/**
|
378 |
+
* Get list of user meta fields to include in the PMPro data eraser
|
379 |
+
* @since 1.9.5
|
380 |
+
*/
|
381 |
+
function pmpro_get_personal_user_meta_fields_to_erase() {
|
382 |
+
$fields = array(
|
383 |
+
'pmpro_bfirstname',
|
384 |
+
'pmpro_blastname',
|
385 |
+
'pmpro_baddress1',
|
386 |
+
'pmpro_baddress2',
|
387 |
+
'pmpro_bcity',
|
388 |
+
'pmpro_bstate',
|
389 |
+
'pmpro_bzipcode',
|
390 |
+
'pmpro_bphone',
|
391 |
+
'pmpro_bcountry',
|
392 |
+
'pmpro_CardType',
|
393 |
+
'pmpro_AccountNumber',
|
394 |
+
'pmpro_ExpirationMonth',
|
395 |
+
'pmpro_ExpirationYear',
|
396 |
+
'pmpro_logins',
|
397 |
+
'pmpro_visits',
|
398 |
+
'pmpro_views',
|
399 |
+
);
|
400 |
+
|
401 |
+
$fields = apply_filters( 'pmpro_get_personal_user_meta_fields_to_erase', $fields );
|
402 |
+
|
403 |
+
return $fields;
|
404 |
+
}
|
405 |
+
|
406 |
+
/**
|
407 |
+
* Save a TOS consent timestamp to user meta.
|
408 |
+
* @since 1.9.5
|
409 |
+
*/
|
410 |
+
function pmpro_save_consent( $user_id = NULL, $post_id = NULL, $post_modified = NULL, $order_id = NULL ) {
|
411 |
+
// Default to current user.
|
412 |
+
if( empty( $user_id ) ) {
|
413 |
+
global $current_user;
|
414 |
+
$user_id = $user->ID;
|
415 |
+
}
|
416 |
+
|
417 |
+
if( empty( $user_id ) ) {
|
418 |
+
return false;
|
419 |
+
}
|
420 |
+
|
421 |
+
// Default to the TOS post chosen on the advanced settings page
|
422 |
+
if( empty( $post_id ) ) {
|
423 |
+
$post_id = pmpro_getOption( 'tospage' );
|
424 |
+
}
|
425 |
+
|
426 |
+
if( empty( $post_id ) ) {
|
427 |
+
return false;
|
428 |
+
}
|
429 |
+
|
430 |
+
$post = get_post( $post_id );
|
431 |
+
|
432 |
+
if( empty( $post_modified ) ) {
|
433 |
+
$post_modified = $post->post_modified;
|
434 |
+
}
|
435 |
+
|
436 |
+
$log = pmpro_get_consent_log( $user_id );
|
437 |
+
$log[] = array(
|
438 |
+
'user_id' => $user_id,
|
439 |
+
'post_id' => $post_id,
|
440 |
+
'post_modified' => $post_modified,
|
441 |
+
'order_id' => $order_id,
|
442 |
+
'consented' => true,
|
443 |
+
'timestamp' => current_time( 'timestamp' ),
|
444 |
+
);
|
445 |
+
|
446 |
+
update_user_meta( $user_id, 'pmpro_consent_log', $log );
|
447 |
+
return true;
|
448 |
+
}
|
449 |
+
|
450 |
+
/**
|
451 |
+
* Get the TOS consent log from user meta.
|
452 |
+
* @since 1.9.5
|
453 |
+
*/
|
454 |
+
function pmpro_get_consent_log( $user_id = NULL, $reversed = true ) {
|
455 |
+
// Default to current user.
|
456 |
+
if( empty( $user_id ) ) {
|
457 |
+
global $current_user;
|
458 |
+
$user_id = $user->ID;
|
459 |
+
}
|
460 |
+
|
461 |
+
if( empty( $user_id ) ) {
|
462 |
+
return false;
|
463 |
+
}
|
464 |
+
|
465 |
+
$log = get_user_meta( $user_id, 'pmpro_consent_log', true );
|
466 |
+
|
467 |
+
// Default log.
|
468 |
+
if( empty( $log ) ) {
|
469 |
+
$log = array();
|
470 |
+
}
|
471 |
+
|
472 |
+
if( $reversed ) {
|
473 |
+
$log = array_reverse( $log );
|
474 |
+
}
|
475 |
+
|
476 |
+
return $log;
|
477 |
+
}
|
478 |
+
|
479 |
+
/**
|
480 |
+
* Update TOS consent log after checkout.
|
481 |
+
* @since 1.9.5
|
482 |
+
*/
|
483 |
+
function pmpro_after_checkout_update_consent( $user_id, $order ) {
|
484 |
+
if( !empty( $_REQUEST['tos'] ) ) {
|
485 |
+
$tospage_id = pmpro_getOption( 'tospage' );
|
486 |
+
pmpro_save_consent( $user_id, $tospage_id, NULL, $order->id );
|
487 |
+
} elseif ( !empty( $_SESSION['tos'] ) ) {
|
488 |
+
// PayPal Express and others might save tos info into a session variable
|
489 |
+
$tospage_id = $_SESSION['tos']['post_id'];
|
490 |
+
$tospage_modified = $_SESSION['tos']['post_modified'];
|
491 |
+
pmpro_save_consent( $user_id, $tospage_id, $tospage_modified, $order->id );
|
492 |
+
unset( $_SESSION['tos'] );
|
493 |
+
}
|
494 |
+
}
|
495 |
+
add_action( 'pmpro_after_checkout', 'pmpro_after_checkout_update_consent', 10, 2 );
|
496 |
+
add_action( 'pmpro_before_send_to_paypal_standard', 'pmpro_after_checkout_update_consent', 10, 2);
|
497 |
+
add_action( 'pmpro_before_send_to_twocheckout', 'pmpro_after_checkout_update_consent' );
|
498 |
+
|
499 |
+
/**
|
500 |
+
* Convert a consent entry into a English sentence.
|
501 |
+
* @since 1.9.5
|
502 |
+
*/
|
503 |
+
function pmpro_consent_to_text( $entry ) {
|
504 |
+
$user = get_userdata( $entry['user_id'] );
|
505 |
+
$post = get_post( $entry['post_id'] );
|
506 |
+
|
507 |
+
$s = sprintf( __('%s agreed to %s (ID #%d, last modified %s) on %s.' ),
|
508 |
+
$user->display_name,
|
509 |
+
$post->post_title,
|
510 |
+
$post->ID,
|
511 |
+
$entry['post_modified'],
|
512 |
+
date( get_option( 'date_format' ), $entry['timestamp'] ) );
|
513 |
+
|
514 |
+
if( !pmpro_is_consent_current( $entry ) ) {
|
515 |
+
$s .= ' ' . __( 'That post has since been updated.', 'paid-memberships-pro' );
|
516 |
+
}
|
517 |
+
|
518 |
+
return $s;
|
519 |
+
}
|
520 |
+
|
521 |
+
/**
|
522 |
+
* Check if a consent entry is current.
|
523 |
+
* @since 1.9.5
|
524 |
+
*/
|
525 |
+
function pmpro_is_consent_current( $entry ) {
|
526 |
+
$post = get_post( $entry['post_id'] );
|
527 |
+
if( !empty( $post ) && !empty( $post->post_modified ) && $post->post_modified == $entry['post_modified'] ) {
|
528 |
+
return true;
|
529 |
+
}
|
530 |
+
return false;
|
531 |
+
}
|
includes/profile.php
CHANGED
@@ -165,6 +165,32 @@ function pmpro_membership_level_profile_fields($user)
|
|
165 |
<?php
|
166 |
}
|
167 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
</table>
|
169 |
<script>
|
170 |
jQuery(document).ready(function() {
|
@@ -295,7 +321,7 @@ function pmpro_membership_level_profile_fields_update()
|
|
295 |
add_filter('pmpro_cancel_previous_subscriptions', 'pmpro_cancel_previous_subscriptions_false');
|
296 |
|
297 |
//do the change
|
298 |
-
if(pmpro_changeMembershipLevel($_REQUEST['membership_level'], $user_ID, $changed_or_cancelled))
|
299 |
{
|
300 |
//it changed. send email
|
301 |
$level_changed = true;
|
165 |
<?php
|
166 |
}
|
167 |
?>
|
168 |
+
|
169 |
+
<?php
|
170 |
+
$tospage_id = pmpro_getOption( 'tospage' );
|
171 |
+
$consent_log = pmpro_get_consent_log( $user->ID, true );
|
172 |
+
|
173 |
+
if( !empty( $tospage_id ) || !empty( $consent_log ) ) {
|
174 |
+
?>
|
175 |
+
<tr>
|
176 |
+
<th><label for="tos_consent_history"><?php _e("TOS Consent History", 'paid-memberships-pro' ); ?></label></th>
|
177 |
+
<td id="tos_consent_history">
|
178 |
+
<?php
|
179 |
+
if( !empty( $consent_log ) ) {
|
180 |
+
echo '<ul>';
|
181 |
+
foreach( $consent_log as $entry ) {
|
182 |
+
echo '<li>' . pmpro_consent_to_text( $entry ) . '</li>';
|
183 |
+
}
|
184 |
+
echo '</ul>';
|
185 |
+
} else {
|
186 |
+
echo __( 'N/A', 'paid-memberships-pro' );
|
187 |
+
}
|
188 |
+
?>
|
189 |
+
</td>
|
190 |
+
</tr>
|
191 |
+
<?php
|
192 |
+
}
|
193 |
+
?>
|
194 |
</table>
|
195 |
<script>
|
196 |
jQuery(document).ready(function() {
|
321 |
add_filter('pmpro_cancel_previous_subscriptions', 'pmpro_cancel_previous_subscriptions_false');
|
322 |
|
323 |
//do the change
|
324 |
+
if(pmpro_changeMembershipLevel(intval($_REQUEST['membership_level']), $user_ID, $changed_or_cancelled))
|
325 |
{
|
326 |
//it changed. send email
|
327 |
$level_changed = true;
|
includes/sessions.php
CHANGED
@@ -4,9 +4,14 @@
|
|
4 |
GPLv2 Full license details in license.txt
|
5 |
*/
|
6 |
|
|
|
|
|
|
|
|
|
|
|
7 |
function pmpro_start_session() {
|
8 |
|
9 |
-
//if the session
|
10 |
if ( ! defined( 'PMPRO_USE_SESSIONS' ) || PMPRO_USE_SESSIONS == true ) {
|
11 |
if ( defined( 'STDIN' ) ) {
|
12 |
//command line
|
@@ -28,7 +33,7 @@ add_action( 'pmpro_checkout_preheader', 'pmpro_start_session', -1 );
|
|
28 |
|
29 |
/**
|
30 |
* Close the session object for new updates
|
31 |
-
* @
|
32 |
*/
|
33 |
function pmpro_close_session() {
|
34 |
|
@@ -49,4 +54,4 @@ function pmpro_close_session() {
|
|
49 |
}
|
50 |
}
|
51 |
|
52 |
-
add_action( 'pmpro_after_checkout', 'pmpro_close_session', 32768 );
|
4 |
GPLv2 Full license details in license.txt
|
5 |
*/
|
6 |
|
7 |
+
|
8 |
+
/**
|
9 |
+
* A general function to start sessions for Paid Memberships Pro.
|
10 |
+
* @since 1.9.2
|
11 |
+
*/
|
12 |
function pmpro_start_session() {
|
13 |
|
14 |
+
//if the session hasn't been started yet, start it (ignore if running from command line)
|
15 |
if ( ! defined( 'PMPRO_USE_SESSIONS' ) || PMPRO_USE_SESSIONS == true ) {
|
16 |
if ( defined( 'STDIN' ) ) {
|
17 |
//command line
|
33 |
|
34 |
/**
|
35 |
* Close the session object for new updates
|
36 |
+
* @since 1.9.2
|
37 |
*/
|
38 |
function pmpro_close_session() {
|
39 |
|
54 |
}
|
55 |
}
|
56 |
|
57 |
+
add_action( 'pmpro_after_checkout', 'pmpro_close_session', 32768 );
|
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: jason@strangerstudios.com\n"
|
9 |
-
"POT-Creation-Date: 2018-
|
10 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11 |
"Last-Translator: \n"
|
12 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
@@ -57,7 +57,7 @@ msgstr ""
|
|
57 |
msgid "Check Again"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: adminpages/addons.php:79 adminpages/orders.php:
|
61 |
#: adminpages/addons.php:79 adminpages/addons.php:92 adminpages/orders.php:605
|
62 |
#: adminpages/orders.php:712 adminpages/orders.php:741
|
63 |
#: adminpages/orders.php:850 adminpages/orders.php:881
|
@@ -188,7 +188,9 @@ msgstr ""
|
|
188 |
msgid "WordPress.org"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: adminpages/addons.php:234
|
|
|
|
|
192 |
#: adminpages/addons.php:231 adminpages/addons.php:234
|
193 |
#: adminpages/addons.php:247 shortcodes/pmpro_account.php:145
|
194 |
#: shortcodes/pmpro_account.php:146 shortcodes/pmpro_account.php:148
|
@@ -539,7 +541,7 @@ msgstr ""
|
|
539 |
#: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:226
|
540 |
#: adminpages/advancedsettings.php:238 adminpages/membershiplevels.php:694
|
541 |
#: adminpages/paymentsettings.php:236
|
542 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
543 |
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
|
544 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:151
|
545 |
#: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:187
|
@@ -569,7 +571,8 @@ msgstr ""
|
|
569 |
#: classes/gateways/class.pmprogateway_stripe.php:222
|
570 |
#: classes/gateways/class.pmprogateway_stripe.php:249
|
571 |
#: classes/gateways/class.pmprogateway_stripe.php:281
|
572 |
-
#: classes/gateways/class.pmprogateway_stripe.php:297
|
|
|
573 |
#: includes/profile.php:105 includes/profile.php:110 includes/profile.php:117
|
574 |
#: includes/profile.php:121 includes/profile.php:123 includes/profile.php:125
|
575 |
msgid "No"
|
@@ -619,7 +622,7 @@ msgstr ""
|
|
619 |
|
620 |
#: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:694
|
621 |
#: adminpages/paymentsettings.php:237
|
622 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
623 |
#: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
|
624 |
#: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:211
|
625 |
#: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:563
|
@@ -645,7 +648,8 @@ msgstr ""
|
|
645 |
#: classes/gateways/class.pmprogateway_stripe.php:223
|
646 |
#: classes/gateways/class.pmprogateway_stripe.php:250
|
647 |
#: classes/gateways/class.pmprogateway_stripe.php:282
|
648 |
-
#: classes/gateways/class.pmprogateway_stripe.php:298
|
|
|
649 |
#: includes/profile.php:106 includes/profile.php:111 includes/profile.php:118
|
650 |
#: includes/profile.php:122 includes/profile.php:124 includes/profile.php:126
|
651 |
msgid "Yes"
|
@@ -681,11 +685,11 @@ msgstr ""
|
|
681 |
msgid "Click here to signup for reCAPTCHA"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: adminpages/advancedsettings.php:248
|
685 |
msgid "reCAPTCHA Site Key"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: adminpages/advancedsettings.php:251
|
689 |
msgid "reCAPTCHA Secret Key"
|
690 |
msgstr ""
|
691 |
|
@@ -809,7 +813,7 @@ msgstr ""
|
|
809 |
|
810 |
#: adminpages/discountcodes.php:422 adminpages/discountcodes.php:719
|
811 |
#: adminpages/membershiplevels.php:322 adminpages/membershiplevels.php:663
|
812 |
-
#: adminpages/memberslist.php:164 adminpages/orders.php:
|
813 |
#: adminpages/reports/login.php:162 adminpages/templates/orders-email.php:46
|
814 |
#: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
|
815 |
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
|
@@ -841,7 +845,7 @@ msgstr ""
|
|
841 |
msgid "ID"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: adminpages/discountcodes.php:423 adminpages/orders.php:
|
845 |
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
846 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
|
847 |
#: adminpages/discountcodes.php:317 adminpages/discountcodes.php:382
|
@@ -853,7 +857,7 @@ msgid "This will be generated when you save."
|
|
853 |
msgstr ""
|
854 |
|
855 |
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:720
|
856 |
-
#: adminpages/orders.php:
|
857 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
858 |
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
|
859 |
#: adminpages/discountcodes.php:321 adminpages/discountcodes.php:386
|
@@ -872,16 +876,17 @@ msgstr ""
|
|
872 |
msgid "Code"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: adminpages/discountcodes.php:465
|
876 |
-
#: adminpages/discountcodes.php:
|
877 |
-
#: adminpages/discountcodes.php:
|
878 |
-
#: adminpages/discountcodes.php:
|
|
|
879 |
msgid "Start Date"
|
880 |
msgstr ""
|
881 |
|
882 |
#: adminpages/discountcodes.php:483
|
883 |
#: classes/gateways/class.pmprogateway_braintree.php:459
|
884 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
885 |
#: pages/checkout.php:463 adminpages/discountcodes.php:367
|
886 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
887 |
#: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
|
@@ -908,7 +913,8 @@ msgstr ""
|
|
908 |
#: classes/gateways/class.pmprogateway_stripe.php:570
|
909 |
#: classes/gateways/class.pmprogateway_stripe.php:597
|
910 |
#: classes/gateways/class.pmprogateway_stripe.php:613
|
911 |
-
#: classes/gateways/class.pmprogateway_stripe.php:629
|
|
|
912 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
|
913 |
#: pages/billing.php:268 pages/billing.php:310 pages/billing.php:316
|
914 |
#: pages/billing.php:317 pages/billing.php:319 pages/billing.php:342
|
@@ -1007,7 +1013,7 @@ msgstr ""
|
|
1007 |
|
1008 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1009 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1010 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1011 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1012 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1013 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -1036,12 +1042,13 @@ msgstr ""
|
|
1036 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1037 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1038 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
|
|
1039 |
msgid "Day(s)"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1043 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1044 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1045 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1046 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1047 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -1070,12 +1077,13 @@ msgstr ""
|
|
1070 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1071 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1072 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
|
|
1073 |
msgid "Month(s)"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1077 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1078 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1079 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1080 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1081 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -1104,12 +1112,13 @@ msgstr ""
|
|
1104 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1105 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1106 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
|
|
1107 |
msgid "Week(s)"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1111 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1112 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1113 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1114 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1115 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -1138,6 +1147,7 @@ msgstr ""
|
|
1138 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1139 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1140 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
|
|
1141 |
msgid "Year(s)"
|
1142 |
msgstr ""
|
1143 |
|
@@ -1375,7 +1385,7 @@ msgid ""
|
|
1375 |
msgstr ""
|
1376 |
|
1377 |
#: adminpages/discountcodes.php:789 adminpages/membershiplevels.php:696
|
1378 |
-
#: adminpages/orders.php:
|
1379 |
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
1380 |
#: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
|
1381 |
#: adminpages/discountcodes.php:650 adminpages/discountcodes.php:655
|
@@ -1408,7 +1418,7 @@ msgid ""
|
|
1408 |
msgstr ""
|
1409 |
|
1410 |
#: adminpages/discountcodes.php:792 adminpages/membershiplevels.php:696
|
1411 |
-
#: adminpages/orders.php:
|
1412 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
1413 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
1414 |
#: adminpages/discountcodes.php:653 adminpages/discountcodes.php:658
|
@@ -1657,7 +1667,7 @@ msgid "Billing Details"
|
|
1657 |
msgstr ""
|
1658 |
|
1659 |
#: adminpages/membershiplevels.php:406
|
1660 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1661 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
1662 |
#: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
|
1663 |
#: adminpages/membershiplevels.php:373 adminpages/membershiplevels.php:396
|
@@ -1676,6 +1686,7 @@ msgstr ""
|
|
1676 |
#: classes/gateways/class.pmprogateway_stripe.php:762
|
1677 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
1678 |
#: classes/gateways/class.pmprogateway_stripe.php:785
|
|
|
1679 |
msgid "per"
|
1680 |
msgstr ""
|
1681 |
|
@@ -1835,8 +1846,8 @@ msgstr ""
|
|
1835 |
msgid "Save Level"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: adminpages/membershiplevels.php:540 adminpages/orders.php:
|
1839 |
-
#: pages/billing.php:
|
1840 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
|
1841 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
|
1842 |
#: adminpages/membershiplevels.php:530 adminpages/membershiplevels.php:540
|
@@ -1947,7 +1958,7 @@ msgid ""
|
|
1947 |
"be cancelled."
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: adminpages/membershiplevels.php:696 adminpages/orders.php:
|
1951 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
|
1952 |
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
|
1953 |
#: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
|
@@ -1972,7 +1983,7 @@ msgstr ""
|
|
1972 |
msgid "Members List"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: adminpages/memberslist.php:26 adminpages/orders.php:
|
1976 |
#: adminpages/memberslist.php:26 adminpages/orders.php:522
|
1977 |
#: adminpages/orders.php:591 adminpages/orders.php:698
|
1978 |
#: adminpages/orders.php:727 adminpages/orders.php:833
|
@@ -1980,7 +1991,7 @@ msgstr ""
|
|
1980 |
msgid "Export to CSV"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: adminpages/memberslist.php:30 adminpages/orders.php:
|
1984 |
#: adminpages/reports/login.php:87 adminpages/reports/memberships.php:328
|
1985 |
#: adminpages/reports/sales.php:203 adminpages/memberslist.php:30
|
1986 |
#: adminpages/orders.php:603 adminpages/orders.php:710
|
@@ -2013,7 +2024,8 @@ msgstr ""
|
|
2013 |
#: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
|
2014 |
#: adminpages/reports/sales.php:225 adminpages/reports/sales.php:226
|
2015 |
#: classes/class.pmproemail.php:145 classes/class.pmproemail.php:147
|
2016 |
-
#: classes/class.pmproemail.php:
|
|
|
2017 |
msgid "All Levels"
|
2018 |
msgstr ""
|
2019 |
|
@@ -2069,7 +2081,7 @@ msgstr ""
|
|
2069 |
msgid "Last Name"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: adminpages/memberslist.php:170 pages/billing.php:
|
2073 |
#: pages/confirmation.php:66 pages/invoice.php:48
|
2074 |
#: adminpages/memberslist.php:117 adminpages/memberslist.php:150
|
2075 |
#: adminpages/memberslist.php:160 adminpages/memberslist.php:170
|
@@ -2163,181 +2175,187 @@ msgstr ""
|
|
2163 |
msgid "Error deleting order."
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: adminpages/orders.php:
|
2167 |
#: adminpages/orders.php:169 adminpages/orders.php:270
|
2168 |
#: adminpages/orders.php:284 adminpages/orders.php:285
|
2169 |
#: adminpages/orders.php:295
|
2170 |
msgid "Order saved successfully."
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#: adminpages/orders.php:
|
2174 |
#: adminpages/orders.php:174 adminpages/orders.php:275
|
2175 |
#: adminpages/orders.php:287 adminpages/orders.php:288
|
2176 |
#: adminpages/orders.php:298
|
2177 |
msgid "Error updating order timestamp."
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: adminpages/orders.php:
|
2181 |
#: adminpages/orders.php:180 adminpages/orders.php:281
|
2182 |
#: adminpages/orders.php:291 adminpages/orders.php:292
|
2183 |
#: adminpages/orders.php:302
|
2184 |
msgid "Error saving order."
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: adminpages/orders.php:
|
2188 |
#: adminpages/orders.php:195 adminpages/orders.php:245
|
2189 |
#: adminpages/orders.php:317 adminpages/orders.php:321
|
2190 |
#: adminpages/orders.php:346 adminpages/orders.php:352
|
2191 |
-
#: adminpages/orders.php:362 classes/class.memberorder.php:
|
|
|
2192 |
msgid "Order"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: adminpages/orders.php:
|
2196 |
#: adminpages/orders.php:247 adminpages/orders.php:319
|
2197 |
#: adminpages/orders.php:323 adminpages/orders.php:348
|
2198 |
#: adminpages/orders.php:354 adminpages/orders.php:364
|
2199 |
msgid "New Order"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: adminpages/orders.php:
|
2203 |
#: adminpages/orders.php:270 adminpages/orders.php:342
|
2204 |
#: adminpages/orders.php:359 adminpages/orders.php:371
|
2205 |
#: adminpages/orders.php:390 adminpages/orders.php:401
|
2206 |
msgid "Randomly generated for you."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: adminpages/orders.php:
|
2210 |
#: adminpages/orders.php:275 adminpages/orders.php:347
|
2211 |
#: adminpages/orders.php:364 adminpages/orders.php:376
|
2212 |
#: adminpages/orders.php:395 adminpages/orders.php:406
|
2213 |
msgid "User ID"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: adminpages/orders.php:
|
2217 |
#: adminpages/orders.php:284 adminpages/orders.php:356
|
2218 |
#: adminpages/orders.php:376 adminpages/orders.php:385
|
2219 |
#: adminpages/orders.php:407 adminpages/orders.php:418
|
2220 |
msgid "Membership Level ID"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: adminpages/orders.php:
|
2224 |
#: adminpages/orders.php:293 adminpages/orders.php:365
|
2225 |
#: adminpages/orders.php:389 adminpages/orders.php:394
|
2226 |
#: adminpages/orders.php:420 adminpages/orders.php:431
|
2227 |
msgid "Billing Name"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: adminpages/orders.php:
|
2231 |
#: adminpages/orders.php:301 adminpages/orders.php:373
|
2232 |
#: adminpages/orders.php:401 adminpages/orders.php:402
|
2233 |
#: adminpages/orders.php:432 adminpages/orders.php:443
|
2234 |
msgid "Billing Street"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: adminpages/orders.php:
|
2238 |
-
#: adminpages/orders.php:
|
2239 |
-
#: adminpages/orders.php:
|
2240 |
-
#: adminpages/orders.php:
|
|
|
2241 |
msgid "Billing City"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: adminpages/orders.php:
|
2245 |
#: adminpages/orders.php:315 adminpages/orders.php:387
|
2246 |
#: adminpages/orders.php:416 adminpages/orders.php:423
|
2247 |
#: adminpages/orders.php:454 adminpages/orders.php:465
|
2248 |
msgid "Billing State"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: adminpages/orders.php:
|
2252 |
-
#: adminpages/orders.php:
|
2253 |
-
#: adminpages/orders.php:
|
2254 |
-
#: adminpages/orders.php:
|
|
|
2255 |
msgid "Billing Postal Code"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: adminpages/orders.php:
|
2259 |
-
#: adminpages/orders.php:
|
2260 |
-
#: adminpages/orders.php:
|
2261 |
-
#: adminpages/orders.php:
|
|
|
2262 |
msgid "Billing Country"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: adminpages/orders.php:
|
2266 |
#: adminpages/orders.php:337 adminpages/orders.php:409
|
2267 |
#: adminpages/orders.php:438 adminpages/orders.php:457
|
2268 |
#: adminpages/orders.php:488 adminpages/orders.php:499
|
2269 |
msgid "Billing Phone"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: adminpages/orders.php:
|
2273 |
#: adminpages/orders.php:346 adminpages/orders.php:418
|
2274 |
#: adminpages/orders.php:447 adminpages/orders.php:470
|
2275 |
#: adminpages/orders.php:501 adminpages/orders.php:512
|
2276 |
msgid "Sub Total"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: adminpages/orders.php:
|
2280 |
-
#: adminpages/templates/orders-print.php:89
|
2281 |
-
#: pages/
|
2282 |
-
#: adminpages/orders.php:
|
2283 |
-
#: adminpages/orders.php:
|
2284 |
-
#: adminpages/orders.php:
|
|
|
2285 |
#: adminpages/templates/orders-print.php:89 pages/confirmation.php:92
|
2286 |
#: pages/invoice.php:74 pages/invoice.php:78 pages/invoice.php:80
|
2287 |
msgid "Tax"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: adminpages/orders.php:
|
2291 |
#: adminpages/orders.php:362 adminpages/orders.php:434
|
2292 |
#: adminpages/orders.php:463 adminpages/orders.php:492
|
2293 |
#: adminpages/orders.php:523 adminpages/orders.php:534
|
2294 |
msgid "Coupon Amount"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: adminpages/orders.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2298 |
#: adminpages/templates/orders-email.php:64
|
2299 |
-
#: adminpages/templates/orders-print.php:93 pages/confirmation.php:96
|
2300 |
-
#: pages/invoice.php:78 adminpages/orders.php:320 adminpages/orders.php:370
|
2301 |
-
#: adminpages/orders.php:442 adminpages/orders.php:471
|
2302 |
-
#: adminpages/orders.php:504 adminpages/orders.php:535
|
2303 |
-
#: adminpages/orders.php:546 adminpages/orders.php:602
|
2304 |
-
#: adminpages/orders.php:905 adminpages/orders.php:915
|
2305 |
-
#: adminpages/orders.php:942 adminpages/orders.php:971
|
2306 |
-
#: adminpages/orders.php:1108 adminpages/orders.php:1139
|
2307 |
-
#: adminpages/orders.php:1145 adminpages/templates/orders-email.php:64
|
2308 |
#: adminpages/templates/orders-print.php:93 pages/confirmation.php:96
|
2309 |
#: pages/invoice.php:78 pages/invoice.php:82 pages/invoice.php:84
|
2310 |
msgid "Total"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: adminpages/orders.php:
|
2314 |
#: adminpages/orders.php:375 adminpages/orders.php:447
|
2315 |
#: adminpages/orders.php:476 adminpages/orders.php:513
|
2316 |
#: adminpages/orders.php:544 adminpages/orders.php:555
|
2317 |
msgid "Should be subtotal + tax - couponamount."
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: adminpages/orders.php:
|
2321 |
#: adminpages/orders.php:380 adminpages/orders.php:452
|
2322 |
#: adminpages/orders.php:481 adminpages/orders.php:518
|
2323 |
#: adminpages/orders.php:549 adminpages/orders.php:560
|
2324 |
msgid "Payment Type"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: adminpages/orders.php:
|
2328 |
#: adminpages/orders.php:385 adminpages/orders.php:457
|
2329 |
#: adminpages/orders.php:486 adminpages/orders.php:528
|
2330 |
#: adminpages/orders.php:559 adminpages/orders.php:570
|
2331 |
msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: adminpages/orders.php:
|
2335 |
#: classes/gateways/class.pmprogateway_braintree.php:446
|
2336 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
2337 |
-
#: pages/
|
2338 |
-
#: adminpages/orders.php:
|
2339 |
-
#: adminpages/orders.php:
|
2340 |
-
#: adminpages/orders.php:574
|
2341 |
#: classes/gateways/class.pmprogateway_braintree.php:291
|
2342 |
#: classes/gateways/class.pmprogateway_braintree.php:304
|
2343 |
#: classes/gateways/class.pmprogateway_braintree.php:306
|
@@ -2361,7 +2379,8 @@ msgstr ""
|
|
2361 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2362 |
#: classes/gateways/class.pmprogateway_stripe.php:549
|
2363 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
2364 |
-
#: classes/gateways/class.pmprogateway_stripe.php:589
|
|
|
2365 |
#: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
|
2366 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:268
|
2367 |
#: pages/billing.php:271 pages/billing.php:274 pages/billing.php:275
|
@@ -2372,16 +2391,16 @@ msgstr ""
|
|
2372 |
msgid "Card Type"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: adminpages/orders.php:
|
2376 |
#: adminpages/orders.php:394 adminpages/orders.php:466
|
2377 |
#: adminpages/orders.php:495 adminpages/orders.php:540
|
2378 |
#: adminpages/orders.php:571 adminpages/orders.php:582
|
2379 |
msgid "e.g. Visa, MasterCard, AMEX, etc"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: adminpages/orders.php:
|
2383 |
#: classes/gateways/class.pmprogateway_twocheckout.php:137
|
2384 |
-
#: adminpages/orders.php:348 adminpages/orders.php:398
|
2385 |
#: adminpages/orders.php:470 adminpages/orders.php:499
|
2386 |
#: adminpages/orders.php:544 adminpages/orders.php:575
|
2387 |
#: adminpages/orders.php:586 adminpages/paymentsettings.php:347
|
@@ -2392,54 +2411,55 @@ msgstr ""
|
|
2392 |
msgid "Account Number"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: adminpages/orders.php:
|
2396 |
#: adminpages/orders.php:403 adminpages/orders.php:475
|
2397 |
#: adminpages/orders.php:504 adminpages/orders.php:553
|
2398 |
#: adminpages/orders.php:584 adminpages/orders.php:595
|
2399 |
msgid "Obscure all but last 4 digits."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: adminpages/orders.php:
|
2403 |
#: adminpages/orders.php:408 adminpages/orders.php:480
|
2404 |
#: adminpages/orders.php:509 adminpages/orders.php:561
|
2405 |
#: adminpages/orders.php:592 adminpages/orders.php:603
|
2406 |
msgid "Expiration Month"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: adminpages/orders.php:
|
2410 |
#: adminpages/orders.php:415 adminpages/orders.php:487
|
2411 |
#: adminpages/orders.php:516 adminpages/orders.php:569
|
2412 |
#: adminpages/orders.php:600 adminpages/orders.php:611
|
2413 |
msgid "Expiration Year"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: adminpages/orders.php:
|
2417 |
-
#:
|
2418 |
-
#: adminpages/orders.php:
|
2419 |
-
#: adminpages/orders.php:
|
2420 |
-
#: adminpages/orders.php:
|
2421 |
-
#: adminpages/orders.php:
|
2422 |
-
#: adminpages/orders.php:
|
2423 |
-
#: adminpages/orders.php:
|
2424 |
-
#: adminpages/orders.php:1149
|
2425 |
msgid "Status"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: adminpages/orders.php:
|
2429 |
-
#: classes/class.memberorder.php:
|
2430 |
-
#: adminpages/orders.php:
|
2431 |
-
#: adminpages/orders.php:
|
2432 |
-
#: adminpages/orders.php:
|
2433 |
-
#: adminpages/orders.php:
|
2434 |
-
#: adminpages/orders.php:
|
2435 |
-
#: adminpages/orders.php:
|
2436 |
-
#: adminpages/orders.php:
|
|
|
2437 |
#: classes/class.memberorder.php:747
|
2438 |
msgid "Gateway"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: adminpages/orders.php:
|
2442 |
-
#: adminpages/orders.php:411 adminpages/orders.php:461
|
2443 |
#: adminpages/orders.php:462 adminpages/orders.php:534
|
2444 |
#: adminpages/orders.php:563 adminpages/orders.php:633
|
2445 |
#: adminpages/orders.php:664 adminpages/orders.php:675
|
@@ -2449,7 +2469,7 @@ msgstr ""
|
|
2449 |
msgid "Gateway Environment"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
#: adminpages/orders.php:
|
2453 |
#: adminpages/orders.php:415 adminpages/orders.php:465
|
2454 |
#: adminpages/orders.php:466 adminpages/orders.php:538
|
2455 |
#: adminpages/orders.php:567 adminpages/orders.php:640
|
@@ -2460,7 +2480,7 @@ msgstr ""
|
|
2460 |
msgid "Sandbox/Testing"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: adminpages/orders.php:
|
2464 |
#: adminpages/orders.php:416 adminpages/orders.php:466
|
2465 |
#: adminpages/orders.php:467 adminpages/orders.php:539
|
2466 |
#: adminpages/orders.php:568 adminpages/orders.php:642
|
@@ -2471,7 +2491,7 @@ msgstr ""
|
|
2471 |
msgid "Live/Production"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: adminpages/orders.php:
|
2475 |
#: adminpages/orders.php:473 adminpages/orders.php:474
|
2476 |
#: adminpages/orders.php:546 adminpages/orders.php:575
|
2477 |
#: adminpages/orders.php:650 adminpages/orders.php:681
|
@@ -2479,7 +2499,7 @@ msgstr ""
|
|
2479 |
msgid "Payment Transaction ID"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: adminpages/orders.php:
|
2483 |
#: adminpages/orders.php:478 adminpages/orders.php:479
|
2484 |
#: adminpages/orders.php:551 adminpages/orders.php:580
|
2485 |
#: adminpages/orders.php:659 adminpages/orders.php:690
|
@@ -2487,16 +2507,16 @@ msgstr ""
|
|
2487 |
msgid "Generated by the gateway. Useful to cross reference orders."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: adminpages/orders.php:
|
2491 |
-
#: adminpages/orders.php:432 adminpages/orders.php:482
|
2492 |
#: adminpages/orders.php:483 adminpages/orders.php:555
|
2493 |
#: adminpages/orders.php:584 adminpages/orders.php:664
|
2494 |
#: adminpages/orders.php:695 adminpages/orders.php:706
|
2495 |
-
#: classes/class.memberorder.php:748
|
2496 |
msgid "Subscription Transaction ID"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: adminpages/orders.php:
|
2500 |
#: adminpages/orders.php:487 adminpages/orders.php:488
|
2501 |
#: adminpages/orders.php:560 adminpages/orders.php:589
|
2502 |
#: adminpages/orders.php:674 adminpages/orders.php:705
|
@@ -2504,7 +2524,7 @@ msgstr ""
|
|
2504 |
msgid "Generated by the gateway. Useful to cross reference subscriptions."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: adminpages/orders.php:
|
2508 |
#: shortcodes/pmpro_account.php:127 adminpages/orders.php:442
|
2509 |
#: adminpages/orders.php:492 adminpages/orders.php:493
|
2510 |
#: adminpages/orders.php:565 adminpages/orders.php:594
|
@@ -2520,53 +2540,57 @@ msgstr ""
|
|
2520 |
msgid "Date"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: adminpages/orders.php:
|
2524 |
#: adminpages/orders.php:527 adminpages/orders.php:599
|
2525 |
#: adminpages/orders.php:628 adminpages/orders.php:716
|
2526 |
#: adminpages/orders.php:747 adminpages/orders.php:758
|
2527 |
msgid "Affiliate ID"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: adminpages/orders.php:
|
2531 |
#: adminpages/orders.php:535 adminpages/orders.php:607
|
2532 |
#: adminpages/orders.php:636 adminpages/orders.php:728
|
2533 |
#: adminpages/orders.php:759 adminpages/orders.php:770
|
2534 |
msgid "Affiliate SubID"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: adminpages/orders.php:
|
|
|
|
|
|
|
|
|
2538 |
#: adminpages/orders.php:545 adminpages/orders.php:617
|
2539 |
#: adminpages/orders.php:646 adminpages/orders.php:742
|
2540 |
#: adminpages/orders.php:773 adminpages/orders.php:784
|
2541 |
msgid "Notes"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
#: adminpages/orders.php:
|
2545 |
#: adminpages/orders.php:560 adminpages/orders.php:632
|
2546 |
#: adminpages/orders.php:661 adminpages/orders.php:764
|
2547 |
#: adminpages/orders.php:795 adminpages/orders.php:806
|
2548 |
msgid "Save Order"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: adminpages/orders.php:
|
2552 |
#: adminpages/orders.php:696 adminpages/orders.php:800
|
2553 |
#: adminpages/orders.php:831 adminpages/orders.php:842
|
2554 |
msgid "Email Invoice"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: adminpages/orders.php:
|
2558 |
#: adminpages/orders.php:699 adminpages/orders.php:803
|
2559 |
#: adminpages/orders.php:834 adminpages/orders.php:845
|
2560 |
msgid "Send an invoice for this order to: "
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: adminpages/orders.php:
|
2564 |
#: adminpages/orders.php:701 adminpages/orders.php:805
|
2565 |
#: adminpages/orders.php:836 adminpages/orders.php:847
|
2566 |
msgid "Send Email"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: adminpages/orders.php:
|
2570 |
#: includes/adminpages.php:172 adminpages/orders.php:520
|
2571 |
#: adminpages/orders.php:570 adminpages/orders.php:677
|
2572 |
#: adminpages/orders.php:706 adminpages/orders.php:810
|
@@ -2578,70 +2602,70 @@ msgstr ""
|
|
2578 |
msgid "Orders"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: adminpages/orders.php:
|
2582 |
#: adminpages/orders.php:571 adminpages/orders.php:678
|
2583 |
#: adminpages/orders.php:707 adminpages/orders.php:812
|
2584 |
#: adminpages/orders.php:843 adminpages/orders.php:854
|
2585 |
msgid "Add New Order"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: adminpages/orders.php:
|
2589 |
#: adminpages/orders.php:713 adminpages/orders.php:742
|
2590 |
#: adminpages/orders.php:852 adminpages/orders.php:883
|
2591 |
#: adminpages/orders.php:894
|
2592 |
msgid "Within a Date Range"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: adminpages/orders.php:
|
2596 |
#: adminpages/orders.php:714 adminpages/orders.php:743
|
2597 |
#: adminpages/orders.php:854 adminpages/orders.php:885
|
2598 |
#: adminpages/orders.php:896
|
2599 |
msgid "Predefined Date Range"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: adminpages/orders.php:
|
2603 |
#: adminpages/orders.php:715 adminpages/orders.php:744
|
2604 |
#: adminpages/orders.php:856 adminpages/orders.php:887
|
2605 |
#: adminpages/orders.php:898
|
2606 |
msgid "Within a Level"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: adminpages/orders.php:
|
2610 |
#: adminpages/orders.php:716 adminpages/orders.php:745
|
2611 |
#: adminpages/orders.php:858 adminpages/orders.php:889
|
2612 |
#: adminpages/orders.php:900
|
2613 |
msgid "Within a Status"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: adminpages/orders.php:
|
2617 |
#: adminpages/orders.php:719 adminpages/orders.php:748
|
2618 |
#: adminpages/orders.php:861 adminpages/orders.php:892
|
2619 |
#: adminpages/orders.php:903
|
2620 |
msgid "From"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: adminpages/orders.php:
|
2624 |
#: adminpages/orders.php:731 adminpages/orders.php:760
|
2625 |
#: adminpages/orders.php:876 adminpages/orders.php:907
|
2626 |
#: adminpages/orders.php:918
|
2627 |
msgid "To"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: adminpages/orders.php:
|
2631 |
#: adminpages/orders.php:743 adminpages/orders.php:772
|
2632 |
#: adminpages/orders.php:889 adminpages/orders.php:920
|
2633 |
#: adminpages/orders.php:931
|
2634 |
msgid "filter by "
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: adminpages/orders.php:
|
2638 |
#: adminpages/orders.php:780 adminpages/orders.php:809
|
2639 |
#: adminpages/orders.php:932 adminpages/orders.php:963
|
2640 |
#: adminpages/orders.php:969
|
2641 |
msgid "Filter"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: adminpages/orders.php:
|
2645 |
#: adminpages/orders.php:535 adminpages/orders.php:538
|
2646 |
#: adminpages/orders.php:777 adminpages/orders.php:780
|
2647 |
#: adminpages/orders.php:883 adminpages/orders.php:886
|
@@ -2652,7 +2676,7 @@ msgstr ""
|
|
2652 |
msgid "Search Orders"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: adminpages/orders.php:
|
2656 |
#: adminpages/orders.php:893 adminpages/orders.php:903
|
2657 |
#: adminpages/orders.php:930 adminpages/orders.php:959
|
2658 |
#: adminpages/orders.php:1096 adminpages/orders.php:1127
|
@@ -2661,7 +2685,7 @@ msgstr ""
|
|
2661 |
msgid "%d orders found."
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: adminpages/orders.php:
|
2665 |
#: classes/gateways/class.pmprogateway_payflowpro.php:116
|
2666 |
#: adminpages/orders.php:599 adminpages/orders.php:902
|
2667 |
#: adminpages/orders.php:912 adminpages/orders.php:939
|
@@ -2675,7 +2699,7 @@ msgstr ""
|
|
2675 |
msgid "User"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: adminpages/orders.php:
|
2679 |
#: pages/checkout.php:34 pages/confirmation.php:53 pages/confirmation.php:124
|
2680 |
#: pages/invoice.php:28 adminpages/orders.php:601 adminpages/orders.php:904
|
2681 |
#: adminpages/orders.php:914 adminpages/orders.php:941
|
@@ -2697,7 +2721,7 @@ msgstr ""
|
|
2697 |
msgid "Membership Level"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: adminpages/orders.php:
|
2701 |
#: adminpages/orders.php:603 adminpages/orders.php:651
|
2702 |
#: adminpages/orders.php:906 adminpages/orders.php:916
|
2703 |
#: adminpages/orders.php:943 adminpages/orders.php:954
|
@@ -2709,7 +2733,7 @@ msgstr ""
|
|
2709 |
msgid "Payment"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: adminpages/orders.php:
|
2713 |
#: adminpages/orders.php:908 adminpages/orders.php:918
|
2714 |
#: adminpages/orders.php:945 adminpages/orders.php:974
|
2715 |
#: adminpages/orders.php:1111 adminpages/orders.php:1142
|
@@ -2717,7 +2741,7 @@ msgstr ""
|
|
2717 |
msgid "Transaction IDs"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: adminpages/orders.php:
|
2721 |
#: adminpages/orders.php:933 adminpages/orders.php:943
|
2722 |
#: adminpages/orders.php:972 adminpages/orders.php:1001
|
2723 |
#: adminpages/orders.php:1141 adminpages/orders.php:1172
|
@@ -2725,7 +2749,11 @@ msgstr ""
|
|
2725 |
msgid "deleted"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: adminpages/orders.php:
|
|
|
|
|
|
|
|
|
2729 |
#: adminpages/orders.php:956 adminpages/orders.php:974
|
2730 |
#: adminpages/orders.php:984 adminpages/orders.php:1013
|
2731 |
#: adminpages/orders.php:1042 adminpages/orders.php:1192
|
@@ -2733,7 +2761,7 @@ msgstr ""
|
|
2733 |
msgid "Subscription"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: adminpages/orders.php:
|
2737 |
#: adminpages/orders.php:967 adminpages/orders.php:985
|
2738 |
#: adminpages/orders.php:995 adminpages/orders.php:998
|
2739 |
#: adminpages/orders.php:1027 adminpages/orders.php:1056
|
@@ -2745,19 +2773,19 @@ msgid ""
|
|
2745 |
"want to delete order %s?"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: adminpages/orders.php:
|
2749 |
#: adminpages/orders.php:1059 adminpages/orders.php:1215
|
2750 |
#: adminpages/orders.php:1249 adminpages/orders.php:1255
|
2751 |
msgid "print"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: adminpages/orders.php:
|
2755 |
#: adminpages/orders.php:1062 adminpages/orders.php:1219
|
2756 |
#: adminpages/orders.php:1253 adminpages/orders.php:1259
|
2757 |
msgid "email"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: adminpages/orders.php:
|
2761 |
#: adminpages/orders.php:977 adminpages/orders.php:995
|
2762 |
#: adminpages/orders.php:1005 adminpages/orders.php:1008
|
2763 |
#: adminpages/orders.php:1043 adminpages/orders.php:1072
|
@@ -3075,7 +3103,7 @@ msgstr ""
|
|
3075 |
msgid "Sales Tax"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: adminpages/paymentsettings.php:205 pages/billing.php:
|
3079 |
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:205
|
3080 |
#: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
|
3081 |
#: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
|
@@ -3518,7 +3546,7 @@ msgid ""
|
|
3518 |
"site's plugin page."
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#: classes/class.memberorder.php:
|
3522 |
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
3523 |
#: classes/class.memberorder.php:573 classes/class.memberorder.php:644
|
3524 |
#: classes/class.memberorder.php:697 classes/class.memberorder.php:699
|
@@ -3533,11 +3561,13 @@ msgid ""
|
|
3533 |
"active."
|
3534 |
msgstr ""
|
3535 |
|
3536 |
-
#: classes/class.memberorder.php:
|
|
|
3537 |
msgid "User Email"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: classes/class.memberorder.php:
|
|
|
3541 |
msgid "User Display Name"
|
3542 |
msgstr ""
|
3543 |
|
@@ -3549,6 +3579,7 @@ msgstr ""
|
|
3549 |
#: classes/class.pmproemail.php:143 classes/class.pmproemail.php:120
|
3550 |
#: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
|
3551 |
#: classes/class.pmproemail.php:134 classes/class.pmproemail.php:136
|
|
|
3552 |
#, php-format
|
3553 |
msgid "Your membership at %s has been CANCELLED"
|
3554 |
msgstr ""
|
@@ -3556,7 +3587,7 @@ msgstr ""
|
|
3556 |
#: classes/class.pmproemail.php:176 classes/class.pmproemail.php:142
|
3557 |
#: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
|
3558 |
#: classes/class.pmproemail.php:156 classes/class.pmproemail.php:166
|
3559 |
-
#: classes/class.pmproemail.php:169
|
3560 |
#, php-format
|
3561 |
msgid "Membership for %s at %s has been CANCELLED"
|
3562 |
msgstr ""
|
@@ -3565,6 +3596,7 @@ msgstr ""
|
|
3565 |
#: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
|
3566 |
#: classes/class.pmproemail.php:178 classes/class.pmproemail.php:187
|
3567 |
#: classes/class.pmproemail.php:207 classes/class.pmproemail.php:212
|
|
|
3568 |
#, php-format
|
3569 |
msgid "Your membership confirmation for %s"
|
3570 |
msgstr ""
|
@@ -3574,7 +3606,7 @@ msgstr ""
|
|
3574 |
#: classes/class.pmproemail.php:385 classes/class.pmproemail.php:703
|
3575 |
#: classes/class.pmproemail.php:705
|
3576 |
#: classes/gateways/class.pmprogateway_braintree.php:489
|
3577 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3578 |
#: pages/checkout.php:76 pages/checkout.php:498 pages/confirmation.php:58
|
3579 |
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
3580 |
#: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
|
@@ -3584,18 +3616,22 @@ msgstr ""
|
|
3584 |
#: classes/class.pmproemail.php:240 classes/class.pmproemail.php:246
|
3585 |
#: classes/class.pmproemail.php:249 classes/class.pmproemail.php:258
|
3586 |
#: classes/class.pmproemail.php:260 classes/class.pmproemail.php:269
|
3587 |
-
#: classes/class.pmproemail.php:
|
3588 |
-
#: classes/class.pmproemail.php:
|
3589 |
-
#: classes/class.pmproemail.php:
|
3590 |
-
#: classes/class.pmproemail.php:
|
3591 |
-
#: classes/class.pmproemail.php:
|
3592 |
-
#: classes/class.pmproemail.php:
|
3593 |
-
#: classes/class.pmproemail.php:
|
3594 |
-
#: classes/class.pmproemail.php:
|
3595 |
-
#: classes/class.pmproemail.php:
|
3596 |
-
#: classes/class.pmproemail.php:
|
3597 |
-
#: classes/class.pmproemail.php:
|
3598 |
-
#: classes/class.pmproemail.php:
|
|
|
|
|
|
|
|
|
3599 |
#: classes/gateways/class.pmprogateway_braintree.php:349
|
3600 |
#: classes/gateways/class.pmprogateway_braintree.php:362
|
3601 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
@@ -3619,7 +3655,8 @@ msgstr ""
|
|
3619 |
#: classes/gateways/class.pmprogateway_stripe.php:611
|
3620 |
#: classes/gateways/class.pmprogateway_stripe.php:638
|
3621 |
#: classes/gateways/class.pmprogateway_stripe.php:644
|
3622 |
-
#: classes/gateways/class.pmprogateway_stripe.php:660
|
|
|
3623 |
#: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:70
|
3624 |
#: pages/checkout.php:75 pages/checkout.php:76 pages/checkout.php:77
|
3625 |
#: pages/checkout.php:78 pages/checkout.php:83 pages/checkout.php:85
|
@@ -3638,14 +3675,15 @@ msgstr ""
|
|
3638 |
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
3639 |
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
|
3640 |
#: classes/class.pmproemail.php:285 classes/class.pmproemail.php:294
|
3641 |
-
#: classes/class.pmproemail.php:
|
3642 |
-
#: classes/class.pmproemail.php:
|
3643 |
-
#: classes/class.pmproemail.php:
|
3644 |
-
#: classes/class.pmproemail.php:
|
|
|
3645 |
#: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
|
3646 |
#: classes/class.pmproemail.php:654 classes/class.pmproemail.php:663
|
3647 |
#: classes/class.pmproemail.php:665 classes/class.pmproemail.php:685
|
3648 |
-
#: classes/class.pmproemail.php:705
|
3649 |
#, php-format
|
3650 |
msgid "This membership will expire on %s."
|
3651 |
msgstr ""
|
@@ -3654,18 +3692,21 @@ msgstr ""
|
|
3654 |
#: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
|
3655 |
#: classes/class.pmproemail.php:278 classes/class.pmproemail.php:287
|
3656 |
#: classes/class.pmproemail.php:307 classes/class.pmproemail.php:316
|
|
|
3657 |
#, php-format
|
3658 |
msgid "Member Checkout for %s at %s"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
#: classes/class.pmproemail.php:414 classes/class.pmproemail.php:375
|
3662 |
#: classes/class.pmproemail.php:395 classes/class.pmproemail.php:407
|
|
|
3663 |
#, php-format
|
3664 |
msgid "Your billing information has been updated at %s"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:428
|
3668 |
#: classes/class.pmproemail.php:448 classes/class.pmproemail.php:461
|
|
|
3669 |
#, php-format
|
3670 |
msgid "Billing information has been updated for %s at %s"
|
3671 |
msgstr ""
|
@@ -3674,6 +3715,7 @@ msgstr ""
|
|
3674 |
#: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
|
3675 |
#: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
|
3676 |
#: classes/class.pmproemail.php:496 classes/class.pmproemail.php:510
|
|
|
3677 |
#, php-format
|
3678 |
msgid "Membership Payment Failed at %s"
|
3679 |
msgstr ""
|
@@ -3682,6 +3724,7 @@ msgstr ""
|
|
3682 |
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
|
3683 |
#: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
|
3684 |
#: classes/class.pmproemail.php:542 classes/class.pmproemail.php:557
|
|
|
3685 |
#, php-format
|
3686 |
msgid "Membership Payment Failed For %s at %s"
|
3687 |
msgstr ""
|
@@ -3689,7 +3732,7 @@ msgstr ""
|
|
3689 |
#: classes/class.pmproemail.php:612 classes/class.pmproemail.php:508
|
3690 |
#: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
|
3691 |
#: classes/class.pmproemail.php:569 classes/class.pmproemail.php:589
|
3692 |
-
#: classes/class.pmproemail.php:605
|
3693 |
#, php-format
|
3694 |
msgid "Credit Card on File Expiring Soon at %s"
|
3695 |
msgstr ""
|
@@ -3698,7 +3741,7 @@ msgstr ""
|
|
3698 |
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
3699 |
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
|
3700 |
#: classes/class.pmproemail.php:619 classes/class.pmproemail.php:639
|
3701 |
-
#: classes/class.pmproemail.php:656
|
3702 |
#, php-format
|
3703 |
msgid "INVOICE for %s membership"
|
3704 |
msgstr ""
|
@@ -3707,7 +3750,7 @@ msgstr ""
|
|
3707 |
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
3708 |
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
|
3709 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:710
|
3710 |
-
#: classes/class.pmproemail.php:733
|
3711 |
#, php-format
|
3712 |
msgid "Your trial at %s is ending soon"
|
3713 |
msgstr ""
|
@@ -3716,7 +3759,7 @@ msgstr ""
|
|
3716 |
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
3717 |
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
|
3718 |
#: classes/class.pmproemail.php:724 classes/class.pmproemail.php:744
|
3719 |
-
#: classes/class.pmproemail.php:769
|
3720 |
#, php-format
|
3721 |
msgid "Your membership at %s has ended"
|
3722 |
msgstr ""
|
@@ -3725,7 +3768,7 @@ msgstr ""
|
|
3725 |
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
3726 |
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
|
3727 |
#: classes/class.pmproemail.php:749 classes/class.pmproemail.php:769
|
3728 |
-
#: classes/class.pmproemail.php:796
|
3729 |
#, php-format
|
3730 |
msgid "Your membership at %s will end soon"
|
3731 |
msgstr ""
|
@@ -3734,18 +3777,19 @@ msgstr ""
|
|
3734 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
3735 |
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
|
3736 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:789
|
3737 |
-
#: classes/class.pmproemail.php:818
|
3738 |
#, php-format
|
3739 |
msgid "Your membership at %s has been changed"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: classes/class.pmproemail.php:830 classes/class.pmproemail.php:
|
3743 |
#: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
|
3744 |
#: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
|
3745 |
#: classes/class.pmproemail.php:793 classes/class.pmproemail.php:800
|
3746 |
#: classes/class.pmproemail.php:809 classes/class.pmproemail.php:810
|
3747 |
#: classes/class.pmproemail.php:811 classes/class.pmproemail.php:823
|
3748 |
#: classes/class.pmproemail.php:830 classes/class.pmproemail.php:863
|
|
|
3749 |
#, php-format
|
3750 |
msgid "The new level is %s"
|
3751 |
msgstr ""
|
@@ -3754,11 +3798,11 @@ msgstr ""
|
|
3754 |
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
3755 |
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
|
3756 |
#: classes/class.pmproemail.php:775 classes/class.pmproemail.php:795
|
3757 |
-
#: classes/class.pmproemail.php:825
|
3758 |
msgid "Your membership has been cancelled"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: classes/class.pmproemail.php:836 classes/class.pmproemail.php:
|
3762 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
3763 |
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
3764 |
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
|
@@ -3768,11 +3812,12 @@ msgstr ""
|
|
3768 |
#: classes/class.pmproemail.php:815 classes/class.pmproemail.php:816
|
3769 |
#: classes/class.pmproemail.php:817 classes/class.pmproemail.php:829
|
3770 |
#: classes/class.pmproemail.php:836 classes/class.pmproemail.php:869
|
|
|
3771 |
#, php-format
|
3772 |
msgid "This membership will expire on %s"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: classes/class.pmproemail.php:840 classes/class.pmproemail.php:
|
3776 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
3777 |
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
3778 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
|
@@ -3782,32 +3827,46 @@ msgstr ""
|
|
3782 |
#: classes/class.pmproemail.php:819 classes/class.pmproemail.php:820
|
3783 |
#: classes/class.pmproemail.php:821 classes/class.pmproemail.php:833
|
3784 |
#: classes/class.pmproemail.php:840 classes/class.pmproemail.php:873
|
|
|
3785 |
msgid "This membership does not expire"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: classes/class.pmproemail.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3789 |
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
3790 |
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
|
3791 |
#: classes/class.pmproemail.php:806 classes/class.pmproemail.php:807
|
3792 |
#: classes/class.pmproemail.php:826 classes/class.pmproemail.php:859
|
|
|
3793 |
#, php-format
|
3794 |
msgid "Membership for %s at %s has been changed"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#: classes/class.pmproemail.php:
|
3798 |
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
|
3799 |
#: classes/class.pmproemail.php:812 classes/class.pmproemail.php:813
|
3800 |
#: classes/class.pmproemail.php:832 classes/class.pmproemail.php:865
|
|
|
3801 |
msgid "Membership has been cancelled"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#: classes/class.pmproemail.php:
|
3805 |
#: classes/class.pmproemail.php:849 classes/class.pmproemail.php:850
|
3806 |
#: classes/class.pmproemail.php:869 classes/class.pmproemail.php:904
|
|
|
3807 |
msgid "Invoice for Order #: "
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: classes/class.pmproemail.php:
|
|
|
3811 |
msgid ""
|
3812 |
"<p>An administrator at !!sitename!! has changed your membership level.</p>\n"
|
3813 |
"\n"
|
@@ -3913,7 +3972,7 @@ msgid ""
|
|
3913 |
msgstr ""
|
3914 |
|
3915 |
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
3916 |
-
#: paid-memberships-pro.php:
|
3917 |
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
3918 |
#: paid-memberships-pro.php:122 paid-memberships-pro.php:123
|
3919 |
#: paid-memberships-pro.php:130 paid-memberships-pro.php:131
|
@@ -4003,7 +4062,7 @@ msgid ""
|
|
4003 |
msgstr ""
|
4004 |
|
4005 |
#: classes/gateways/class.pmprogateway_braintree.php:220
|
4006 |
-
#: paid-memberships-pro.php:
|
4007 |
#: classes/gateways/class.pmprogateway_braintree.php:63
|
4008 |
#: classes/gateways/class.pmprogateway_braintree.php:76
|
4009 |
#: classes/gateways/class.pmprogateway_braintree.php:77
|
@@ -4086,7 +4145,7 @@ msgid "Client-Side Encryption Key"
|
|
4086 |
msgstr ""
|
4087 |
|
4088 |
#: classes/gateways/class.pmprogateway_braintree.php:313
|
4089 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4090 |
#: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
|
4091 |
#: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
|
4092 |
#: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
|
@@ -4109,6 +4168,7 @@ msgstr ""
|
|
4109 |
#: classes/gateways/class.pmprogateway_stripe.php:257
|
4110 |
#: classes/gateways/class.pmprogateway_stripe.php:289
|
4111 |
#: classes/gateways/class.pmprogateway_stripe.php:305
|
|
|
4112 |
msgid "Web Hook URL"
|
4113 |
msgstr ""
|
4114 |
|
@@ -4126,7 +4186,7 @@ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
|
4126 |
msgstr ""
|
4127 |
|
4128 |
#: classes/gateways/class.pmprogateway_braintree.php:434
|
4129 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4130 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
4131 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
4132 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -4150,7 +4210,8 @@ msgstr ""
|
|
4150 |
#: classes/gateways/class.pmprogateway_stripe.php:499
|
4151 |
#: classes/gateways/class.pmprogateway_stripe.php:526
|
4152 |
#: classes/gateways/class.pmprogateway_stripe.php:561
|
4153 |
-
#: classes/gateways/class.pmprogateway_stripe.php:577
|
|
|
4154 |
#: pages/checkout.php:476 pages/checkout.php:478 pages/checkout.php:485
|
4155 |
#: pages/checkout.php:493 pages/checkout.php:494 pages/checkout.php:500
|
4156 |
#: pages/checkout.php:501 pages/checkout.php:503 pages/checkout.php:510
|
@@ -4159,7 +4220,7 @@ msgid "Payment Information"
|
|
4159 |
msgstr ""
|
4160 |
|
4161 |
#: classes/gateways/class.pmprogateway_braintree.php:435
|
4162 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4163 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
4164 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
4165 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -4183,7 +4244,8 @@ msgstr ""
|
|
4183 |
#: classes/gateways/class.pmprogateway_stripe.php:500
|
4184 |
#: classes/gateways/class.pmprogateway_stripe.php:527
|
4185 |
#: classes/gateways/class.pmprogateway_stripe.php:562
|
4186 |
-
#: classes/gateways/class.pmprogateway_stripe.php:578
|
|
|
4187 |
#: pages/checkout.php:476 pages/checkout.php:478 pages/checkout.php:485
|
4188 |
#: pages/checkout.php:493 pages/checkout.php:494 pages/checkout.php:500
|
4189 |
#: pages/checkout.php:502 pages/checkout.php:504 pages/checkout.php:511
|
@@ -4193,7 +4255,7 @@ msgid "We Accept %s"
|
|
4193 |
msgstr ""
|
4194 |
|
4195 |
#: classes/gateways/class.pmprogateway_braintree.php:455
|
4196 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4197 |
#: pages/checkout.php:459 classes/gateways/class.pmprogateway_braintree.php:303
|
4198 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
4199 |
#: classes/gateways/class.pmprogateway_braintree.php:318
|
@@ -4216,7 +4278,8 @@ msgstr ""
|
|
4216 |
#: classes/gateways/class.pmprogateway_stripe.php:565
|
4217 |
#: classes/gateways/class.pmprogateway_stripe.php:592
|
4218 |
#: classes/gateways/class.pmprogateway_stripe.php:609
|
4219 |
-
#: classes/gateways/class.pmprogateway_stripe.php:625
|
|
|
4220 |
#: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
|
4221 |
#: pages/billing.php:263 pages/billing.php:305 pages/billing.php:311
|
4222 |
#: pages/billing.php:312 pages/billing.php:313 pages/billing.php:314
|
@@ -4227,7 +4290,7 @@ msgstr ""
|
|
4227 |
msgid "Card Number"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
-
#: classes/gateways/class.pmprogateway_braintree.php:483 pages/billing.php:
|
4231 |
#: classes/gateways/class.pmprogateway_braintree.php:340
|
4232 |
#: classes/gateways/class.pmprogateway_braintree.php:353
|
4233 |
#: classes/gateways/class.pmprogateway_braintree.php:355
|
@@ -4261,7 +4324,7 @@ msgid "CVV"
|
|
4261 |
msgstr ""
|
4262 |
|
4263 |
#: classes/gateways/class.pmprogateway_braintree.php:484
|
4264 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4265 |
#: pages/checkout.php:493 classes/gateways/class.pmprogateway_braintree.php:341
|
4266 |
#: classes/gateways/class.pmprogateway_braintree.php:354
|
4267 |
#: classes/gateways/class.pmprogateway_braintree.php:356
|
@@ -4284,7 +4347,8 @@ msgstr ""
|
|
4284 |
#: classes/gateways/class.pmprogateway_stripe.php:603
|
4285 |
#: classes/gateways/class.pmprogateway_stripe.php:630
|
4286 |
#: classes/gateways/class.pmprogateway_stripe.php:639
|
4287 |
-
#: classes/gateways/class.pmprogateway_stripe.php:655
|
|
|
4288 |
#: pages/billing.php:286 pages/billing.php:295 pages/billing.php:298
|
4289 |
#: pages/billing.php:302 pages/billing.php:344 pages/billing.php:352
|
4290 |
#: pages/billing.php:353 pages/billing.php:355 pages/billing.php:358
|
@@ -4297,7 +4361,7 @@ msgid "what's this?"
|
|
4297 |
msgstr ""
|
4298 |
|
4299 |
#: classes/gateways/class.pmprogateway_braintree.php:491
|
4300 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4301 |
#: pages/checkout.php:500 classes/gateways/class.pmprogateway_braintree.php:351
|
4302 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
4303 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
@@ -4321,7 +4385,8 @@ msgstr ""
|
|
4321 |
#: classes/gateways/class.pmprogateway_stripe.php:613
|
4322 |
#: classes/gateways/class.pmprogateway_stripe.php:640
|
4323 |
#: classes/gateways/class.pmprogateway_stripe.php:646
|
4324 |
-
#: classes/gateways/class.pmprogateway_stripe.php:662
|
|
|
4325 |
#: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
|
4326 |
#: pages/checkout.php:88 pages/checkout.php:95 pages/checkout.php:98
|
4327 |
#: pages/checkout.php:500 pages/checkout.php:551 pages/checkout.php:567
|
@@ -4359,7 +4424,7 @@ msgid "Payment error: Please contact the webmaster (braintree-load-error)"
|
|
4359 |
msgstr ""
|
4360 |
|
4361 |
#: classes/gateways/class.pmprogateway_braintree.php:554
|
4362 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4363 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
4364 |
#: classes/gateways/class.pmprogateway_braintree.php:406
|
4365 |
#: classes/gateways/class.pmprogateway_braintree.php:419
|
@@ -4385,6 +4450,7 @@ msgstr ""
|
|
4385 |
#: classes/gateways/class.pmprogateway_stripe.php:1105
|
4386 |
#: classes/gateways/class.pmprogateway_stripe.php:1123
|
4387 |
#: classes/gateways/class.pmprogateway_stripe.php:1139
|
|
|
4388 |
#: classes/gateways/class.pmprogateway_stripe.php:1143
|
4389 |
#: classes/gateways/class.pmprogateway_stripe.php:1176
|
4390 |
msgid "Unknown error: Initial payment failed."
|
@@ -4563,7 +4629,7 @@ msgid "Could not find the subscription."
|
|
4563 |
msgstr ""
|
4564 |
|
4565 |
#: classes/gateways/class.pmprogateway_check.php:49
|
4566 |
-
#: paid-memberships-pro.php:
|
4567 |
#: adminpages/orders.php:449 adminpages/paymentsettings.php:157
|
4568 |
#: adminpages/paymentsettings.php:159
|
4569 |
#: classes/gateways/class.pmprogateway_check.php:48
|
@@ -4687,7 +4753,7 @@ msgid ""
|
|
4687 |
msgstr ""
|
4688 |
|
4689 |
#: classes/gateways/class.pmprogateway_paypal.php:68
|
4690 |
-
#: paid-memberships-pro.php:
|
4691 |
#: classes/gateways/class.pmprogateway_paypal.php:57
|
4692 |
#: classes/gateways/class.pmprogateway_paypal.php:68
|
4693 |
#: paid-memberships-pro.php:119 paid-memberships-pro.php:120
|
@@ -4831,7 +4897,7 @@ msgid ""
|
|
4831 |
msgstr ""
|
4832 |
|
4833 |
#: classes/gateways/class.pmprogateway_paypal.php:201
|
4834 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
4835 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:229
|
4836 |
#: pages/checkout.php:263 classes/gateways/class.pmprogateway_paypal.php:178
|
4837 |
#: classes/gateways/class.pmprogateway_paypal.php:201
|
@@ -4849,7 +4915,7 @@ msgid "Check Out with PayPal"
|
|
4849 |
msgstr ""
|
4850 |
|
4851 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
4852 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
4853 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:234
|
4854 |
#: pages/checkout.php:598 classes/gateways/class.pmprogateway_paypal.php:184
|
4855 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
@@ -4868,7 +4934,7 @@ msgid "Submit and Check Out"
|
|
4868 |
msgstr ""
|
4869 |
|
4870 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
4871 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
4872 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:234
|
4873 |
#: classes/gateways/class.pmprogateway_twocheckout.php:203
|
4874 |
#: pages/checkout.php:598 classes/gateways/class.pmprogateway_paypal.php:184
|
@@ -4891,7 +4957,7 @@ msgid "Submit and Confirm"
|
|
4891 |
msgstr ""
|
4892 |
|
4893 |
#: classes/gateways/class.pmprogateway_paypal.php:631
|
4894 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
4895 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:575
|
4896 |
#: classes/gateways/class.pmprogateway_paypal.php:385
|
4897 |
#: classes/gateways/class.pmprogateway_paypal.php:605
|
@@ -4919,7 +4985,7 @@ msgid ""
|
|
4919 |
msgstr ""
|
4920 |
|
4921 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:84
|
4922 |
-
#: paid-memberships-pro.php:
|
4923 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:63
|
4924 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:73
|
4925 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:84
|
@@ -4940,8 +5006,8 @@ msgstr ""
|
|
4940 |
msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
|
4941 |
msgstr ""
|
4942 |
|
4943 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
4944 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
4945 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:268
|
4946 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:278
|
4947 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
@@ -4958,7 +5024,7 @@ msgid "The PayPal Token was lost."
|
|
4958 |
msgstr ""
|
4959 |
|
4960 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:71
|
4961 |
-
#: paid-memberships-pro.php:
|
4962 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
4963 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:71
|
4964 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:122
|
@@ -4983,7 +5049,7 @@ msgid "User requested cancellation"
|
|
4983 |
msgstr ""
|
4984 |
|
4985 |
#: classes/gateways/class.pmprogateway_stripe.php:201
|
4986 |
-
#: paid-memberships-pro.php:
|
4987 |
#: classes/gateways/class.pmprogateway_stripe.php:93
|
4988 |
#: classes/gateways/class.pmprogateway_stripe.php:94
|
4989 |
#: classes/gateways/class.pmprogateway_stripe.php:104
|
@@ -5055,12 +5121,7 @@ msgstr ""
|
|
5055 |
msgid "Secret Key"
|
5056 |
msgstr ""
|
5057 |
|
5058 |
-
#: classes/gateways/class.pmprogateway_stripe.php:286
|
5059 |
#: classes/gateways/class.pmprogateway_stripe.php:285
|
5060 |
-
msgid "Your Secret Key appears incorrect."
|
5061 |
-
msgstr ""
|
5062 |
-
|
5063 |
-
#: classes/gateways/class.pmprogateway_stripe.php:294
|
5064 |
#: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
|
5065 |
#: adminpages/paymentsettings.php:432
|
5066 |
#: classes/gateways/class.pmprogateway_stripe.php:169
|
@@ -5074,10 +5135,11 @@ msgstr ""
|
|
5074 |
#: classes/gateways/class.pmprogateway_stripe.php:245
|
5075 |
#: classes/gateways/class.pmprogateway_stripe.php:277
|
5076 |
#: classes/gateways/class.pmprogateway_stripe.php:293
|
|
|
5077 |
msgid "Show Billing Address Fields"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5081 |
#: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
|
5082 |
#: classes/gateways/class.pmprogateway_stripe.php:176
|
5083 |
#: classes/gateways/class.pmprogateway_stripe.php:177
|
@@ -5090,13 +5152,14 @@ msgstr ""
|
|
5090 |
#: classes/gateways/class.pmprogateway_stripe.php:252
|
5091 |
#: classes/gateways/class.pmprogateway_stripe.php:284
|
5092 |
#: classes/gateways/class.pmprogateway_stripe.php:300
|
|
|
5093 |
msgid ""
|
5094 |
"Stripe doesn't require billing address fields. Choose 'No' to hide them on "
|
5095 |
"the checkout page.<br /><strong>If No, make sure you disable address "
|
5096 |
"verification in the Stripe dashboard settings.</strong>"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5100 |
#: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
|
5101 |
#: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
|
5102 |
#: classes/gateways/class.pmprogateway_stripe.php:184
|
@@ -5110,26 +5173,29 @@ msgstr ""
|
|
5110 |
#: classes/gateways/class.pmprogateway_stripe.php:260
|
5111 |
#: classes/gateways/class.pmprogateway_stripe.php:292
|
5112 |
#: classes/gateways/class.pmprogateway_stripe.php:308
|
|
|
5113 |
msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
|
5114 |
msgstr ""
|
5115 |
|
5116 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5117 |
#: classes/gateways/class.pmprogateway_stripe.php:638
|
5118 |
-
#: classes/gateways/class.pmprogateway_stripe.php:654
|
|
|
5119 |
msgid "Security Code (CVC)"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5123 |
#: classes/gateways/class.pmprogateway_stripe.php:703
|
5124 |
#: classes/gateways/class.pmprogateway_stripe.php:710
|
5125 |
#: classes/gateways/class.pmprogateway_stripe.php:726
|
|
|
5126 |
#, php-format
|
5127 |
msgid ""
|
5128 |
"%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may "
|
5129 |
"have been deleted."
|
5130 |
msgstr ""
|
5131 |
|
5132 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5133 |
#: classes/gateways/class.pmprogateway_stripe.php:567
|
5134 |
#: classes/gateways/class.pmprogateway_stripe.php:568
|
5135 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
@@ -5144,10 +5210,11 @@ msgstr ""
|
|
5144 |
#: classes/gateways/class.pmprogateway_stripe.php:710
|
5145 |
#: classes/gateways/class.pmprogateway_stripe.php:717
|
5146 |
#: classes/gateways/class.pmprogateway_stripe.php:733
|
|
|
5147 |
msgid "Subscription Updates"
|
5148 |
msgstr ""
|
5149 |
|
5150 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5151 |
#: classes/gateways/class.pmprogateway_stripe.php:571
|
5152 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
5153 |
#: classes/gateways/class.pmprogateway_stripe.php:582
|
@@ -5162,12 +5229,13 @@ msgstr ""
|
|
5162 |
#: classes/gateways/class.pmprogateway_stripe.php:714
|
5163 |
#: classes/gateways/class.pmprogateway_stripe.php:721
|
5164 |
#: classes/gateways/class.pmprogateway_stripe.php:737
|
|
|
5165 |
msgid ""
|
5166 |
"Subscription updates, allow you to change the member's subscription values "
|
5167 |
"at predefined times. Be sure to click Update Profile after making changes."
|
5168 |
msgstr ""
|
5169 |
|
5170 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5171 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
5172 |
#: classes/gateways/class.pmprogateway_stripe.php:574
|
5173 |
#: classes/gateways/class.pmprogateway_stripe.php:584
|
@@ -5182,12 +5250,13 @@ msgstr ""
|
|
5182 |
#: classes/gateways/class.pmprogateway_stripe.php:716
|
5183 |
#: classes/gateways/class.pmprogateway_stripe.php:723
|
5184 |
#: classes/gateways/class.pmprogateway_stripe.php:739
|
|
|
5185 |
msgid ""
|
5186 |
"Subscription updates, allow you to change the member's subscription values "
|
5187 |
"at predefined times. Be sure to click Update User after making changes."
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5191 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
5192 |
#: classes/gateways/class.pmprogateway_stripe.php:579
|
5193 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
@@ -5201,7 +5270,8 @@ msgstr ""
|
|
5201 |
#: classes/gateways/class.pmprogateway_stripe.php:694
|
5202 |
#: classes/gateways/class.pmprogateway_stripe.php:721
|
5203 |
#: classes/gateways/class.pmprogateway_stripe.php:728
|
5204 |
-
#: classes/gateways/class.pmprogateway_stripe.php:744
|
|
|
5205 |
#: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
|
5206 |
#: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
|
5207 |
#: pages/billing.php:363 pages/billing.php:364 pages/billing.php:370
|
@@ -5210,14 +5280,15 @@ msgstr ""
|
|
5210 |
msgid "Update"
|
5211 |
msgstr ""
|
5212 |
|
5213 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5214 |
#: classes/gateways/class.pmprogateway_stripe.php:1119
|
5215 |
#: classes/gateways/class.pmprogateway_stripe.php:1135
|
|
|
5216 |
#: classes/gateways/class.pmprogateway_stripe.php:1172
|
5217 |
msgid "Payment error: Please contact the webmaster (stripe-load-error)"
|
5218 |
msgstr ""
|
5219 |
|
5220 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5221 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
5222 |
#: classes/gateways/class.pmprogateway_stripe.php:192
|
5223 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
@@ -5244,7 +5315,7 @@ msgstr ""
|
|
5244 |
msgid "Error creating customer record with Stripe:"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5248 |
#: classes/gateways/class.pmprogateway_stripe.php:1275
|
5249 |
#: classes/gateways/class.pmprogateway_stripe.php:1303
|
5250 |
#: classes/gateways/class.pmprogateway_stripe.php:1313
|
@@ -5261,7 +5332,7 @@ msgstr ""
|
|
5261 |
msgid "Error getting subscription with Stripe:"
|
5262 |
msgstr ""
|
5263 |
|
5264 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5265 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
5266 |
#: classes/gateways/class.pmprogateway_stripe.php:279
|
5267 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
@@ -5296,7 +5367,7 @@ msgstr ""
|
|
5296 |
msgid "Error creating plan with Stripe:"
|
5297 |
msgstr ""
|
5298 |
|
5299 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5300 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
5301 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
5302 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
@@ -5326,7 +5397,7 @@ msgstr ""
|
|
5326 |
msgid "Error subscribing customer to plan with Stripe:"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5330 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
5331 |
#: classes/gateways/class.pmprogateway_stripe.php:770
|
5332 |
#: classes/gateways/class.pmprogateway_stripe.php:780
|
@@ -5341,10 +5412,11 @@ msgstr ""
|
|
5341 |
#: classes/gateways/class.pmprogateway_stripe.php:914
|
5342 |
#: classes/gateways/class.pmprogateway_stripe.php:1698
|
5343 |
#: classes/gateways/class.pmprogateway_stripe.php:1714
|
|
|
5344 |
msgid "Could not cancel the old subscription. Updates have not been processed."
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5348 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
5349 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
5350 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
@@ -5368,10 +5440,11 @@ msgstr ""
|
|
5368 |
#: classes/gateways/class.pmprogateway_stripe.php:1752
|
5369 |
#: classes/gateways/class.pmprogateway_stripe.php:1801
|
5370 |
#: classes/gateways/class.pmprogateway_stripe.php:1817
|
|
|
5371 |
msgid "Could not cancel old subscription."
|
5372 |
msgstr ""
|
5373 |
|
5374 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5375 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
5376 |
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
5377 |
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
@@ -5392,10 +5465,11 @@ msgstr ""
|
|
5392 |
#: classes/gateways/class.pmprogateway_stripe.php:1769
|
5393 |
#: classes/gateways/class.pmprogateway_stripe.php:1818
|
5394 |
#: classes/gateways/class.pmprogateway_stripe.php:1834
|
|
|
5395 |
msgid "Could not find the customer."
|
5396 |
msgstr ""
|
5397 |
|
5398 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5399 |
#: classes/gateways/class.pmprogateway_stripe.php:1836
|
5400 |
#: classes/gateways/class.pmprogateway_stripe.php:1837
|
5401 |
#: classes/gateways/class.pmprogateway_stripe.php:1847
|
@@ -5403,10 +5477,11 @@ msgstr ""
|
|
5403 |
#: classes/gateways/class.pmprogateway_stripe.php:1921
|
5404 |
#: classes/gateways/class.pmprogateway_stripe.php:1978
|
5405 |
#: classes/gateways/class.pmprogateway_stripe.php:1994
|
|
|
5406 |
msgid "Error: "
|
5407 |
msgstr ""
|
5408 |
|
5409 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5410 |
#: classes/gateways/class.pmprogateway_stripe.php:1849
|
5411 |
#: classes/gateways/class.pmprogateway_stripe.php:1850
|
5412 |
#: classes/gateways/class.pmprogateway_stripe.php:1860
|
@@ -5414,12 +5489,13 @@ msgstr ""
|
|
5414 |
#: classes/gateways/class.pmprogateway_stripe.php:1934
|
5415 |
#: classes/gateways/class.pmprogateway_stripe.php:1991
|
5416 |
#: classes/gateways/class.pmprogateway_stripe.php:2007
|
|
|
5417 |
#, php-format
|
5418 |
msgid "Error: Unkown error while refunding charge #%s"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
#: classes/gateways/class.pmprogateway_twocheckout.php:59
|
5422 |
-
#: paid-memberships-pro.php:
|
5423 |
#: classes/gateways/class.pmprogateway_twocheckout.php:53
|
5424 |
#: classes/gateways/class.pmprogateway_twocheckout.php:59
|
5425 |
#: classes/gateways/class.pmprogateway_twocheckout.php:60
|
@@ -5498,12 +5574,12 @@ msgstr ""
|
|
5498 |
msgid "Check Out with 2Checkout"
|
5499 |
msgstr ""
|
5500 |
|
5501 |
-
#: includes/addons.php:
|
5502 |
msgid ""
|
5503 |
"Important: This plugin requires a valid PMPro Plus license key to update."
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: includes/addons.php:
|
5507 |
msgid ""
|
5508 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
5509 |
"utm_source=wp-admin&utm_pluginlink=bulkupdate\">valid PMPro Plus License "
|
@@ -5511,22 +5587,22 @@ msgid ""
|
|
5511 |
"updated:"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
-
#: includes/addons.php:
|
5515 |
msgid "Update Plugin"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: includes/addons.php:
|
5519 |
msgid ""
|
5520 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
5521 |
"utm_source=wp-admin&utm_pluginlink=addon_update\">valid PMPro Plus License "
|
5522 |
"Key</a> to update PMPro Plus add ons."
|
5523 |
msgstr ""
|
5524 |
|
5525 |
-
#: includes/addons.php:
|
5526 |
msgid "Return to the PMPro Add Ons page"
|
5527 |
msgstr ""
|
5528 |
|
5529 |
-
#: includes/addons.php:
|
5530 |
msgid ""
|
5531 |
"You must enter a valid PMPro Plus License Key under Settings > PMPro License "
|
5532 |
"to update this add on."
|
@@ -6827,7 +6903,7 @@ msgstr ""
|
|
6827 |
msgid "Vietnamese Dong"
|
6828 |
msgstr ""
|
6829 |
|
6830 |
-
#: includes/filters.php:224 includes/filters.php:217
|
6831 |
msgid ""
|
6832 |
"There was a potential issue while setting the 'Profile Start Date' for a "
|
6833 |
"user's subscription at checkout. PayPal does not allow one to set a Profile "
|
@@ -6844,7 +6920,7 @@ msgid ""
|
|
6844 |
"situations."
|
6845 |
msgstr ""
|
6846 |
|
6847 |
-
#: includes/filters.php:225
|
6848 |
#, php-format
|
6849 |
msgid ""
|
6850 |
"User: %1$s<br />Email: %2$s<br />Membership Level: %3$s<br />Order #: "
|
@@ -6852,7 +6928,7 @@ msgid ""
|
|
6852 |
"Date: %6$s<br />Trial Period: %7$s<br />Trial Frequency: %8$s<br />"
|
6853 |
msgstr ""
|
6854 |
|
6855 |
-
#: includes/filters.php:227 includes/filters.php:220
|
6856 |
#, php-format
|
6857 |
msgid "Profile Start Date Issue Detected and Fixed at %s"
|
6858 |
msgstr ""
|
@@ -6863,7 +6939,8 @@ msgstr ""
|
|
6863 |
#: includes/functions.php:203 includes/functions.php:204
|
6864 |
#: includes/functions.php:207 includes/functions.php:243
|
6865 |
#: includes/functions.php:309 includes/functions.php:315
|
6866 |
-
#: includes/functions.php:320 includes/functions.php:
|
|
|
6867 |
#: includes/functions.php:455 includes/functions.php:464
|
6868 |
#, php-format
|
6869 |
msgid "The price for membership is <strong>%s</strong> now"
|
@@ -6874,53 +6951,54 @@ msgstr ""
|
|
6874 |
#: includes/functions.php:205 includes/functions.php:206
|
6875 |
#: includes/functions.php:209 includes/functions.php:245
|
6876 |
#: includes/functions.php:311 includes/functions.php:317
|
6877 |
-
#: includes/functions.php:322 includes/functions.php:
|
|
|
6878 |
#: includes/functions.php:457 includes/functions.php:466
|
6879 |
#, php-format
|
6880 |
msgid "<strong>%s</strong> now"
|
6881 |
msgstr ""
|
6882 |
|
6883 |
-
#: includes/functions.php:330
|
6884 |
#, php-format
|
6885 |
msgid " and then <strong>%1$s per %2$s for %3$d more %4$s</strong>."
|
6886 |
msgstr ""
|
6887 |
|
6888 |
-
#: includes/functions.php:332
|
6889 |
#, php-format
|
6890 |
msgid " and then <strong>%1$s every %2$d %3$s for %4$d more payments</strong>."
|
6891 |
msgstr ""
|
6892 |
|
6893 |
-
#: includes/functions.php:335
|
6894 |
#, php-format
|
6895 |
msgid " and then <strong>%1$s after %2$d %3$s</strong>."
|
6896 |
msgstr ""
|
6897 |
|
6898 |
-
#: includes/functions.php:340
|
6899 |
#, php-format
|
6900 |
msgid "The price for membership is <strong>%1$s per %2$s</strong>."
|
6901 |
msgstr ""
|
6902 |
|
6903 |
-
#: includes/functions.php:342
|
6904 |
#, php-format
|
6905 |
msgid "<strong>%1$s per %2$s</strong>."
|
6906 |
msgstr ""
|
6907 |
|
6908 |
-
#: includes/functions.php:346
|
6909 |
#, php-format
|
6910 |
msgid "The price for membership is <strong>%1$s every %2$d %3$s</strong>."
|
6911 |
msgstr ""
|
6912 |
|
6913 |
-
#: includes/functions.php:348
|
6914 |
#, php-format
|
6915 |
msgid "<strong>%1$s every %2$d %3$s</strong>."
|
6916 |
msgstr ""
|
6917 |
|
6918 |
-
#: includes/functions.php:353
|
6919 |
#, php-format
|
6920 |
msgid " and then <strong>%1$s per %2$s</strong>."
|
6921 |
msgstr ""
|
6922 |
|
6923 |
-
#: includes/functions.php:355
|
6924 |
#, php-format
|
6925 |
msgid " and then <strong>%1$s every %2$d %3$s</strong>."
|
6926 |
msgstr ""
|
@@ -6930,9 +7008,9 @@ msgstr ""
|
|
6930 |
#: includes/functions.php:260 includes/functions.php:261
|
6931 |
#: includes/functions.php:262 includes/functions.php:264
|
6932 |
#: includes/functions.php:267 includes/functions.php:271
|
6933 |
-
#: includes/functions.php:307 includes/functions.php:
|
6934 |
-
#: includes/functions.php:
|
6935 |
-
#: includes/functions.php:393 pages/levels.php:82
|
6936 |
msgid "After your initial payment, your first payment is Free."
|
6937 |
msgstr ""
|
6938 |
|
@@ -6941,9 +7019,9 @@ msgstr ""
|
|
6941 |
#: includes/functions.php:264 includes/functions.php:265
|
6942 |
#: includes/functions.php:266 includes/functions.php:268
|
6943 |
#: includes/functions.php:271 includes/functions.php:275
|
6944 |
-
#: includes/functions.php:311 includes/functions.php:
|
6945 |
-
#: includes/functions.php:
|
6946 |
-
#: includes/functions.php:397 pages/levels.php:86
|
6947 |
#, php-format
|
6948 |
msgid "After your initial payment, your first %d payments are Free."
|
6949 |
msgstr ""
|
@@ -6953,65 +7031,66 @@ msgstr ""
|
|
6953 |
#: includes/functions.php:271 includes/functions.php:272
|
6954 |
#: includes/functions.php:273 includes/functions.php:275
|
6955 |
#: includes/functions.php:278 includes/functions.php:282
|
6956 |
-
#: includes/functions.php:318 includes/functions.php:
|
6957 |
-
#: includes/functions.php:
|
6958 |
-
#: includes/functions.php:404 pages/levels.php:93
|
6959 |
#, php-format
|
6960 |
msgid "After your initial payment, your first payment will cost %s."
|
6961 |
msgstr ""
|
6962 |
|
6963 |
-
#: includes/functions.php:378
|
6964 |
#, php-format
|
6965 |
msgid "After your initial payment, your first %1$d payments will cost %2$s."
|
6966 |
msgstr ""
|
6967 |
|
|
|
6968 |
#: includes/functions.php:388 includes/functions.php:489
|
6969 |
#, php-format
|
6970 |
msgid "Customers in %1$s will be charged %2$s%% tax."
|
6971 |
msgstr ""
|
6972 |
|
6973 |
-
#: includes/functions.php:446
|
6974 |
#, php-format
|
6975 |
msgid "<strong>%1$s per %2$s for %3$d more %4$s</strong>"
|
6976 |
msgstr ""
|
6977 |
|
6978 |
-
#: includes/functions.php:448
|
6979 |
#, php-format
|
6980 |
msgid "<strong>%1$s every %2$d %3$s for %4$d more payments</strong>"
|
6981 |
msgstr ""
|
6982 |
|
6983 |
-
#: includes/functions.php:451
|
6984 |
#, php-format
|
6985 |
msgid "<strong>%1$s after %2$d %3$s</strong>"
|
6986 |
msgstr ""
|
6987 |
|
6988 |
-
#: includes/functions.php:454
|
6989 |
#, php-format
|
6990 |
msgid "<strong>%1$s every %2$s</strong>"
|
6991 |
msgstr ""
|
6992 |
|
6993 |
-
#: includes/functions.php:456
|
6994 |
#, php-format
|
6995 |
msgid "<strong>%1$s every %2$d %3$s</strong>"
|
6996 |
msgstr ""
|
6997 |
|
6998 |
-
#: includes/functions.php:478 includes/functions.php:
|
6999 |
-
#: includes/functions.php:520
|
7000 |
msgid "Trial pricing has been applied to the first payment."
|
7001 |
msgstr ""
|
7002 |
|
7003 |
-
#: includes/functions.php:480 includes/functions.php:
|
7004 |
-
#: includes/functions.php:522
|
7005 |
#, php-format
|
7006 |
msgid "Trial pricing has been applied to the first %d payments."
|
7007 |
msgstr ""
|
7008 |
|
7009 |
-
#: includes/functions.php:505
|
7010 |
#, php-format
|
7011 |
msgid "Membership expires after %1$d %2$s."
|
7012 |
msgstr ""
|
7013 |
|
7014 |
-
#: includes/functions.php:524
|
7015 |
#, php-format
|
7016 |
msgid "%1$s membership expires after %2$d %3$s"
|
7017 |
msgstr ""
|
@@ -7024,12 +7103,12 @@ msgstr ""
|
|
7024 |
#: includes/functions.php:576 includes/functions.php:592
|
7025 |
#: includes/functions.php:615 includes/functions.php:694
|
7026 |
#: includes/functions.php:760 includes/functions.php:766
|
7027 |
-
#: includes/functions.php:
|
7028 |
-
#: includes/functions.php:956
|
7029 |
msgid "User ID not found."
|
7030 |
msgstr ""
|
7031 |
|
7032 |
-
#: includes/functions.php:889
|
7033 |
msgid "No membership_id specified in pmpro_changeMembershipLevel."
|
7034 |
msgstr ""
|
7035 |
|
@@ -7042,6 +7121,7 @@ msgstr ""
|
|
7042 |
#: includes/functions.php:596 includes/functions.php:612
|
7043 |
#: includes/functions.php:635 includes/functions.php:714
|
7044 |
#: includes/functions.php:780 includes/functions.php:786
|
|
|
7045 |
#: includes/functions.php:965 includes/functions.php:967
|
7046 |
#: includes/functions.php:976
|
7047 |
msgid "Invalid level."
|
@@ -7055,8 +7135,9 @@ msgstr ""
|
|
7055 |
#: includes/functions.php:600 includes/functions.php:607
|
7056 |
#: includes/functions.php:623 includes/functions.php:646
|
7057 |
#: includes/functions.php:725 includes/functions.php:791
|
7058 |
-
#: includes/functions.php:797 includes/functions.php:
|
7059 |
-
#: includes/functions.php:
|
|
|
7060 |
msgid "not changing?"
|
7061 |
msgstr ""
|
7062 |
|
@@ -7083,14 +7164,15 @@ msgstr ""
|
|
7083 |
#: includes/functions.php:815 includes/functions.php:839
|
7084 |
#: includes/functions.php:881 includes/functions.php:887
|
7085 |
#: includes/functions.php:905 includes/functions.php:911
|
7086 |
-
#: includes/functions.php:
|
7087 |
-
#: includes/functions.php:1046
|
7088 |
msgid "Error interacting with database"
|
7089 |
msgstr ""
|
7090 |
|
7091 |
#: includes/functions.php:1067 includes/functions.php:907
|
7092 |
-
#: includes/functions.php:
|
7093 |
-
#: includes/functions.php:
|
|
|
7094 |
#, php-format
|
7095 |
msgid "Error interacting with database: %s"
|
7096 |
msgstr ""
|
@@ -7113,7 +7195,8 @@ msgstr ""
|
|
7113 |
#: includes/functions.php:920 includes/functions.php:947
|
7114 |
#: includes/functions.php:948 includes/functions.php:953
|
7115 |
#: includes/functions.php:986 includes/functions.php:987
|
7116 |
-
#: includes/functions.php:992 includes/functions.php:
|
|
|
7117 |
#: includes/functions.php:1202 includes/functions.php:1204
|
7118 |
#: includes/functions.php:1213 includes/functions.php:1237
|
7119 |
#: includes/functions.php:1241 includes/functions.php:1243
|
@@ -7128,8 +7211,9 @@ msgstr ""
|
|
7128 |
#: includes/functions.php:1173 includes/functions.php:1196
|
7129 |
#: includes/functions.php:1290 includes/functions.php:1356
|
7130 |
#: includes/functions.php:1357 includes/functions.php:1362
|
7131 |
-
#: includes/functions.php:
|
7132 |
-
#: includes/functions.php:
|
|
|
7133 |
msgid "No code was given to check."
|
7134 |
msgstr ""
|
7135 |
|
@@ -7143,9 +7227,9 @@ msgstr ""
|
|
7143 |
#: includes/functions.php:1166 includes/functions.php:1182
|
7144 |
#: includes/functions.php:1205 includes/functions.php:1299
|
7145 |
#: includes/functions.php:1365 includes/functions.php:1366
|
7146 |
-
#: includes/functions.php:1371 includes/functions.php:
|
7147 |
-
#: includes/functions.php:
|
7148 |
-
#: includes/functions.php:1629
|
7149 |
msgid "The discount code could not be found."
|
7150 |
msgstr ""
|
7151 |
|
@@ -7159,9 +7243,9 @@ msgstr ""
|
|
7159 |
#: includes/functions.php:1181 includes/functions.php:1197
|
7160 |
#: includes/functions.php:1220 includes/functions.php:1314
|
7161 |
#: includes/functions.php:1380 includes/functions.php:1381
|
7162 |
-
#: includes/functions.php:1386 includes/functions.php:
|
7163 |
-
#: includes/functions.php:
|
7164 |
-
#: includes/functions.php:1644
|
7165 |
#, php-format
|
7166 |
msgid "This discount code goes into effect on %s."
|
7167 |
msgstr ""
|
@@ -7176,9 +7260,9 @@ msgstr ""
|
|
7176 |
#: includes/functions.php:1188 includes/functions.php:1204
|
7177 |
#: includes/functions.php:1227 includes/functions.php:1321
|
7178 |
#: includes/functions.php:1387 includes/functions.php:1388
|
7179 |
-
#: includes/functions.php:1393 includes/functions.php:
|
7180 |
-
#: includes/functions.php:
|
7181 |
-
#: includes/functions.php:1651
|
7182 |
#, php-format
|
7183 |
msgid "This discount code expired on %s."
|
7184 |
msgstr ""
|
@@ -7193,9 +7277,9 @@ msgstr ""
|
|
7193 |
#: includes/functions.php:1198 includes/functions.php:1214
|
7194 |
#: includes/functions.php:1237 includes/functions.php:1331
|
7195 |
#: includes/functions.php:1397 includes/functions.php:1398
|
7196 |
-
#: includes/functions.php:1403 includes/functions.php:
|
7197 |
-
#: includes/functions.php:
|
7198 |
-
#: includes/functions.php:1661
|
7199 |
msgid "This discount code is no longer valid."
|
7200 |
msgstr ""
|
7201 |
|
@@ -7209,8 +7293,9 @@ msgstr ""
|
|
7209 |
#: includes/functions.php:1227 includes/functions.php:1250
|
7210 |
#: includes/functions.php:1344 includes/functions.php:1410
|
7211 |
#: includes/functions.php:1411 includes/functions.php:1416
|
7212 |
-
#: includes/functions.php:
|
7213 |
-
#: includes/functions.php:
|
|
|
7214 |
msgid "This discount code does not apply to this membership level."
|
7215 |
msgstr ""
|
7216 |
|
@@ -7224,9 +7309,9 @@ msgstr ""
|
|
7224 |
#: includes/functions.php:1237 includes/functions.php:1253
|
7225 |
#: includes/functions.php:1276 includes/functions.php:1370
|
7226 |
#: includes/functions.php:1436 includes/functions.php:1442
|
7227 |
-
#: includes/functions.php:1448 includes/functions.php:
|
7228 |
-
#: includes/functions.php:
|
7229 |
-
#: includes/functions.php:1718
|
7230 |
msgid "This discount code is okay."
|
7231 |
msgstr ""
|
7232 |
|
@@ -7240,9 +7325,9 @@ msgstr ""
|
|
7240 |
#: includes/functions.php:1278 includes/functions.php:1301
|
7241 |
#: includes/functions.php:1395 includes/functions.php:1397
|
7242 |
#: includes/functions.php:1463 includes/functions.php:1469
|
7243 |
-
#: includes/functions.php:1475 includes/functions.php:
|
7244 |
-
#: includes/functions.php:
|
7245 |
-
#: includes/functions.php:1745
|
7246 |
msgid "and"
|
7247 |
msgstr ""
|
7248 |
|
@@ -7257,9 +7342,10 @@ msgstr ""
|
|
7257 |
#: includes/functions.php:1501 includes/functions.php:1620
|
7258 |
#: includes/functions.php:1624 includes/functions.php:1691
|
7259 |
#: includes/functions.php:1697 includes/functions.php:1703
|
7260 |
-
#: includes/functions.php:
|
7261 |
-
#: includes/functions.php:
|
7262 |
-
#: includes/functions.php:
|
|
|
7263 |
msgid "Sign Up for !!name!! Now"
|
7264 |
msgstr ""
|
7265 |
|
@@ -7274,26 +7360,19 @@ msgstr ""
|
|
7274 |
#: includes/functions.php:1507 includes/functions.php:1626
|
7275 |
#: includes/functions.php:1630 includes/functions.php:1697
|
7276 |
#: includes/functions.php:1703 includes/functions.php:1709
|
7277 |
-
#: includes/functions.php:
|
7278 |
-
#: includes/functions.php:
|
7279 |
-
#: includes/functions.php:
|
|
|
7280 |
msgid "Please specify a level id."
|
7281 |
msgstr ""
|
7282 |
|
7283 |
-
#: includes/functions.php:1991 includes/functions.php:
|
7284 |
-
#: includes/functions.php:2047
|
7285 |
#, php-format
|
7286 |
msgid "Level #%s not found."
|
7287 |
msgstr ""
|
7288 |
|
7289 |
-
#: includes/init.php:259 includes/profile.php:48 includes/init.php:229
|
7290 |
-
#: includes/init.php:232 includes/init.php:233 includes/init.php:235
|
7291 |
-
#: includes/init.php:237 includes/init.php:245 includes/init.php:253
|
7292 |
-
#: includes/init.php:258 includes/init.php:259 includes/profile.php:37
|
7293 |
-
#: includes/profile.php:39 includes/profile.php:42 includes/profile.php:48
|
7294 |
-
msgid "None"
|
7295 |
-
msgstr ""
|
7296 |
-
|
7297 |
#: includes/license.php:54 includes/license.php:51 includes/license.php:54
|
7298 |
msgid "Your license key has been validated."
|
7299 |
msgstr ""
|
@@ -7427,12 +7506,190 @@ msgid ""
|
|
7427 |
"Only members of these levels will be able to view posts in this category."
|
7428 |
msgstr ""
|
7429 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7430 |
#: includes/profile.php:45 includes/profile.php:34 includes/profile.php:36
|
7431 |
#: includes/profile.php:39 includes/profile.php:45
|
7432 |
msgid "Current Level"
|
7433 |
msgstr ""
|
7434 |
|
7435 |
-
#: includes/profile.php:74 includes/profile.php:
|
7436 |
#: includes/profile.php:54 includes/profile.php:60 includes/profile.php:65
|
7437 |
#: includes/profile.php:68 includes/profile.php:74 includes/profile.php:195
|
7438 |
#: includes/profile.php:242
|
@@ -7454,6 +7711,10 @@ msgstr ""
|
|
7454 |
msgid "Cancel this user's subscription at the gateway."
|
7455 |
msgstr ""
|
7456 |
|
|
|
|
|
|
|
|
|
7457 |
#: includes/updates.php:110 includes/updates.php:97 includes/updates.php:110
|
7458 |
msgid "Paid Memberships Pro Data Update Required"
|
7459 |
msgstr ""
|
@@ -7516,41 +7777,26 @@ msgid ""
|
|
7516 |
"the issues</a>."
|
7517 |
msgstr ""
|
7518 |
|
7519 |
-
#: pages/billing.php:
|
7520 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
7521 |
#: pages/billing.php:28
|
7522 |
#, php-format
|
7523 |
msgid "Logged in as <strong>%s</strong>."
|
7524 |
msgstr ""
|
7525 |
|
7526 |
-
#: pages/billing.php:
|
7527 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
7528 |
#: pages/billing.php:28
|
7529 |
msgid "logout"
|
7530 |
msgstr ""
|
7531 |
|
7532 |
-
#: pages/billing.php:
|
7533 |
-
#: pages/levels.php:35 shortcodes/pmpro_account.php:44
|
7534 |
-
#: shortcodes/pmpro_account.php:128 pages/account.php:12 pages/account.php:18
|
7535 |
-
#: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
|
7536 |
-
#: pages/billing.php:27 pages/billing.php:28 pages/billing.php:30
|
7537 |
-
#: pages/billing.php:44 pages/billing.php:45 pages/cancel.php:52
|
7538 |
-
#: pages/cancel.php:60 pages/cancel.php:61 pages/invoice.php:89
|
7539 |
-
#: pages/invoice.php:102 pages/invoice.php:109 pages/levels.php:13
|
7540 |
-
#: pages/levels.php:35 shortcodes/pmpro_account.php:43
|
7541 |
-
#: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
|
7542 |
-
#: shortcodes/pmpro_account.php:125 shortcodes/pmpro_account.php:126
|
7543 |
-
#: shortcodes/pmpro_account.php:128
|
7544 |
-
msgid "Level"
|
7545 |
-
msgstr ""
|
7546 |
-
|
7547 |
-
#: pages/billing.php:47 pages/account.php:14 pages/billing.php:18
|
7548 |
#: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
|
7549 |
#: pages/billing.php:32 pages/billing.php:46 pages/billing.php:47
|
7550 |
msgid "Membership Fee"
|
7551 |
msgstr ""
|
7552 |
|
7553 |
-
#: pages/billing.php:
|
7554 |
#: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
|
7555 |
#: pages/billing.php:36 pages/billing.php:50 pages/billing.php:51
|
7556 |
#: pages/levels.php:70
|
@@ -7558,7 +7804,7 @@ msgstr ""
|
|
7558 |
msgid "%s every %d %s."
|
7559 |
msgstr ""
|
7560 |
|
7561 |
-
#: pages/billing.php:
|
7562 |
#: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
|
7563 |
#: pages/billing.php:38 pages/billing.php:52 pages/billing.php:53
|
7564 |
#: pages/levels.php:66
|
@@ -7566,14 +7812,14 @@ msgstr ""
|
|
7566 |
msgid "%s per %s."
|
7567 |
msgstr ""
|
7568 |
|
7569 |
-
#: pages/billing.php:
|
7570 |
#: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
|
7571 |
#: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
|
7572 |
#: pages/billing.php:62 pages/billing.php:63
|
7573 |
msgid "Duration"
|
7574 |
msgstr ""
|
7575 |
|
7576 |
-
#: pages/billing.php:
|
7577 |
#: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
|
7578 |
#: pages/billing.php:57 pages/billing.php:80 pages/billing.php:81
|
7579 |
msgid ""
|
@@ -7581,7 +7827,7 @@ msgid ""
|
|
7581 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
7582 |
msgstr ""
|
7583 |
|
7584 |
-
#: pages/billing.php:
|
7585 |
#: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
|
7586 |
#: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
|
7587 |
#: pages/billing.php:107 pages/billing.php:108 pages/billing.php:110
|
@@ -7592,7 +7838,7 @@ msgstr ""
|
|
7592 |
msgid "First Name"
|
7593 |
msgstr ""
|
7594 |
|
7595 |
-
#: pages/billing.php:
|
7596 |
#: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
|
7597 |
#: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
|
7598 |
#: pages/billing.php:111 pages/billing.php:112 pages/billing.php:114
|
@@ -7603,7 +7849,7 @@ msgstr ""
|
|
7603 |
msgid "Last Name"
|
7604 |
msgstr ""
|
7605 |
|
7606 |
-
#: pages/billing.php:
|
7607 |
#: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
|
7608 |
#: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
|
7609 |
#: pages/billing.php:115 pages/billing.php:116 pages/billing.php:118
|
@@ -7614,7 +7860,7 @@ msgstr ""
|
|
7614 |
msgid "Address 1"
|
7615 |
msgstr ""
|
7616 |
|
7617 |
-
#: pages/billing.php:
|
7618 |
#: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
|
7619 |
#: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
|
7620 |
#: pages/billing.php:119 pages/billing.php:120 pages/billing.php:122
|
@@ -7625,7 +7871,7 @@ msgstr ""
|
|
7625 |
msgid "Address 2"
|
7626 |
msgstr ""
|
7627 |
|
7628 |
-
#: pages/billing.php:
|
7629 |
#: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
|
7630 |
#: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
|
7631 |
#: pages/billing.php:129 pages/billing.php:130 pages/billing.php:132
|
@@ -7636,7 +7882,7 @@ msgstr ""
|
|
7636 |
msgid "City"
|
7637 |
msgstr ""
|
7638 |
|
7639 |
-
#: pages/billing.php:
|
7640 |
#: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
|
7641 |
#: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
|
7642 |
#: pages/billing.php:133 pages/billing.php:134 pages/billing.php:136
|
@@ -7647,7 +7893,7 @@ msgstr ""
|
|
7647 |
msgid "State"
|
7648 |
msgstr ""
|
7649 |
|
7650 |
-
#: pages/billing.php:
|
7651 |
#: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
|
7652 |
#: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
|
7653 |
#: pages/billing.php:137 pages/billing.php:138 pages/billing.php:140
|
@@ -7658,7 +7904,7 @@ msgstr ""
|
|
7658 |
msgid "Postal Code"
|
7659 |
msgstr ""
|
7660 |
|
7661 |
-
#: pages/billing.php:
|
7662 |
#: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
|
7663 |
#: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
|
7664 |
#: pages/billing.php:146 pages/billing.php:147 pages/billing.php:149
|
@@ -7669,7 +7915,7 @@ msgstr ""
|
|
7669 |
msgid "City, State Zip"
|
7670 |
msgstr ""
|
7671 |
|
7672 |
-
#: pages/billing.php:
|
7673 |
#: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
|
7674 |
#: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
|
7675 |
#: pages/billing.php:199 pages/billing.php:200 pages/billing.php:202
|
@@ -7680,7 +7926,7 @@ msgstr ""
|
|
7680 |
msgid "Country"
|
7681 |
msgstr ""
|
7682 |
|
7683 |
-
#: pages/billing.php:
|
7684 |
#: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
|
7685 |
#: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
|
7686 |
#: pages/billing.php:224 pages/billing.php:225 pages/billing.php:227
|
@@ -7691,7 +7937,7 @@ msgstr ""
|
|
7691 |
msgid "Phone"
|
7692 |
msgstr ""
|
7693 |
|
7694 |
-
#: pages/billing.php:
|
7695 |
#: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
|
7696 |
#: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
|
7697 |
#: pages/billing.php:215 pages/billing.php:235 pages/billing.php:236
|
@@ -7705,7 +7951,7 @@ msgstr ""
|
|
7705 |
msgid "E-mail Address"
|
7706 |
msgstr ""
|
7707 |
|
7708 |
-
#: pages/billing.php:
|
7709 |
#: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
|
7710 |
#: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
|
7711 |
#: pages/billing.php:239 pages/billing.php:240 pages/billing.php:242
|
@@ -7716,14 +7962,14 @@ msgstr ""
|
|
7716 |
msgid "Confirm E-mail"
|
7717 |
msgstr ""
|
7718 |
|
7719 |
-
#: pages/billing.php:
|
7720 |
#: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
|
7721 |
#: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
|
7722 |
#: pages/billing.php:262 pages/billing.php:263 pages/billing.php:270
|
7723 |
msgid "Credit Card Information"
|
7724 |
msgstr ""
|
7725 |
|
7726 |
-
#: pages/billing.php:
|
7727 |
#: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
|
7728 |
#: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
|
7729 |
#: pages/billing.php:263 pages/billing.php:264 pages/billing.php:271
|
@@ -7731,11 +7977,12 @@ msgstr ""
|
|
7731 |
msgid "We accept %s"
|
7732 |
msgstr ""
|
7733 |
|
7734 |
-
#: pages/billing.php:
|
7735 |
#: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
|
7736 |
#: pages/billing.php:360 pages/billing.php:364 pages/billing.php:380
|
7737 |
-
#: pages/billing.php:381 pages/billing.php:
|
7738 |
-
#: pages/billing.php:
|
|
|
7739 |
msgid ""
|
7740 |
"This subscription is not recurring. So you don't need to update your billing "
|
7741 |
"information."
|
@@ -8075,7 +8322,7 @@ msgstr ""
|
|
8075 |
msgid "← Return to Home"
|
8076 |
msgstr ""
|
8077 |
|
8078 |
-
#: paid-memberships-pro.php:
|
8079 |
#: adminpages/orders.php:448 paid-memberships-pro.php:115
|
8080 |
#: paid-memberships-pro.php:116 paid-memberships-pro.php:123
|
8081 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
@@ -8084,7 +8331,7 @@ msgstr ""
|
|
8084 |
msgid "Testing Only"
|
8085 |
msgstr ""
|
8086 |
|
8087 |
-
#: paid-memberships-pro.php:
|
8088 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:128
|
8089 |
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
8090 |
#: paid-memberships-pro.php:131 paid-memberships-pro.php:132
|
@@ -8092,7 +8339,7 @@ msgstr ""
|
|
8092 |
msgid "PayPal Payflow Pro/PayPal Pro"
|
8093 |
msgstr ""
|
8094 |
|
8095 |
-
#: paid-memberships-pro.php:
|
8096 |
#: paid-memberships-pro.php:126 paid-memberships-pro.php:133
|
8097 |
#: paid-memberships-pro.php:134 paid-memberships-pro.php:135
|
8098 |
#: paid-memberships-pro.php:136 paid-memberships-pro.php:137
|
@@ -8100,7 +8347,7 @@ msgstr ""
|
|
8100 |
msgid "Cybersource"
|
8101 |
msgstr ""
|
8102 |
|
8103 |
-
#: paid-memberships-pro.php:
|
8104 |
#: paid-memberships-pro.php:157 paid-memberships-pro.php:158
|
8105 |
#: paid-memberships-pro.php:159 paid-memberships-pro.php:166
|
8106 |
msgid "Once a month"
|
@@ -8119,7 +8366,7 @@ msgid ""
|
|
8119 |
"moments."
|
8120 |
msgstr ""
|
8121 |
|
8122 |
-
#: preheaders/billing.php:
|
8123 |
#: preheaders/billing.php:145 preheaders/billing.php:147
|
8124 |
#: preheaders/billing.php:258 preheaders/billing.php:265
|
8125 |
#: preheaders/billing.php:266 preheaders/billing.php:270
|
@@ -8132,7 +8379,7 @@ msgstr ""
|
|
8132 |
msgid "Please complete all required fields."
|
8133 |
msgstr ""
|
8134 |
|
8135 |
-
#: preheaders/billing.php:
|
8136 |
#: preheaders/billing.php:148 preheaders/billing.php:150
|
8137 |
#: preheaders/billing.php:263 preheaders/billing.php:268
|
8138 |
#: preheaders/billing.php:269 preheaders/billing.php:273
|
@@ -8145,7 +8392,7 @@ msgstr ""
|
|
8145 |
msgid "Your email addresses do not match. Please try again."
|
8146 |
msgstr ""
|
8147 |
|
8148 |
-
#: preheaders/billing.php:
|
8149 |
#: preheaders/billing.php:151 preheaders/billing.php:153
|
8150 |
#: preheaders/billing.php:268 preheaders/billing.php:271
|
8151 |
#: preheaders/billing.php:272 preheaders/billing.php:276
|
@@ -8158,7 +8405,7 @@ msgstr ""
|
|
8158 |
msgid "The email address entered is in an invalid format. Please try again."
|
8159 |
msgstr ""
|
8160 |
|
8161 |
-
#: preheaders/billing.php:
|
8162 |
#: preheaders/billing.php:157 preheaders/billing.php:274
|
8163 |
#: preheaders/billing.php:275 preheaders/billing.php:276
|
8164 |
#: preheaders/billing.php:280 preheaders/billing.php:283
|
@@ -8166,7 +8413,7 @@ msgstr ""
|
|
8166 |
msgid "All good!"
|
8167 |
msgstr ""
|
8168 |
|
8169 |
-
#: preheaders/billing.php:
|
8170 |
#: preheaders/billing.php:224 preheaders/billing.php:340
|
8171 |
#: preheaders/billing.php:345 preheaders/billing.php:346
|
8172 |
#: preheaders/billing.php:350 preheaders/billing.php:353
|
@@ -8175,7 +8422,7 @@ msgstr ""
|
|
8175 |
msgid "Information updated. <a href=\"%s\">« back to my account</a>"
|
8176 |
msgstr ""
|
8177 |
|
8178 |
-
#: preheaders/billing.php:
|
8179 |
#: preheaders/billing.php:230 preheaders/billing.php:347
|
8180 |
#: preheaders/billing.php:351 preheaders/billing.php:352
|
8181 |
#: preheaders/billing.php:356 preheaders/billing.php:359
|
@@ -8582,10 +8829,6 @@ msgstr ""
|
|
8582 |
msgid "every"
|
8583 |
msgstr ""
|
8584 |
|
8585 |
-
#: adminpages/memberslist.php:184 adminpages/memberslist.php:212
|
8586 |
-
msgid "Never"
|
8587 |
-
msgstr ""
|
8588 |
-
|
8589 |
#: adminpages/pagesettings.php:73
|
8590 |
#, php-format
|
8591 |
msgid "Membership %s"
|
@@ -8724,6 +8967,11 @@ msgid ""
|
|
8724 |
"your hosting provider to enable it"
|
8725 |
msgstr ""
|
8726 |
|
|
|
|
|
|
|
|
|
|
|
8727 |
#: classes/gateways/class.pmprogateway_twocheckout.php:139
|
8728 |
msgid "API Private Key"
|
8729 |
msgstr ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: paid-memberships-pro\n"
|
8 |
"Report-Msgid-Bugs-To: jason@strangerstudios.com\n"
|
9 |
+
"POT-Creation-Date: 2018-05-24 14:48-0400\n"
|
10 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11 |
"Last-Translator: \n"
|
12 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
57 |
msgid "Check Again"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: adminpages/addons.php:79 adminpages/orders.php:983 adminpages/addons.php:76
|
61 |
#: adminpages/addons.php:79 adminpages/addons.php:92 adminpages/orders.php:605
|
62 |
#: adminpages/orders.php:712 adminpages/orders.php:741
|
63 |
#: adminpages/orders.php:850 adminpages/orders.php:881
|
188 |
msgid "WordPress.org"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: adminpages/addons.php:234 adminpages/orders.php:855
|
192 |
+
#: adminpages/orders.php:1340 adminpages/orders.php:1350
|
193 |
+
#: includes/profile.php:186 shortcodes/pmpro_account.php:148
|
194 |
#: adminpages/addons.php:231 adminpages/addons.php:234
|
195 |
#: adminpages/addons.php:247 shortcodes/pmpro_account.php:145
|
196 |
#: shortcodes/pmpro_account.php:146 shortcodes/pmpro_account.php:148
|
541 |
#: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:226
|
542 |
#: adminpages/advancedsettings.php:238 adminpages/membershiplevels.php:694
|
543 |
#: adminpages/paymentsettings.php:236
|
544 |
+
#: classes/gateways/class.pmprogateway_stripe.php:289 includes/profile.php:125
|
545 |
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
|
546 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:151
|
547 |
#: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:187
|
571 |
#: classes/gateways/class.pmprogateway_stripe.php:222
|
572 |
#: classes/gateways/class.pmprogateway_stripe.php:249
|
573 |
#: classes/gateways/class.pmprogateway_stripe.php:281
|
574 |
+
#: classes/gateways/class.pmprogateway_stripe.php:297
|
575 |
+
#: classes/gateways/class.pmprogateway_stripe.php:298 includes/profile.php:101
|
576 |
#: includes/profile.php:105 includes/profile.php:110 includes/profile.php:117
|
577 |
#: includes/profile.php:121 includes/profile.php:123 includes/profile.php:125
|
578 |
msgid "No"
|
622 |
|
623 |
#: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:694
|
624 |
#: adminpages/paymentsettings.php:237
|
625 |
+
#: classes/gateways/class.pmprogateway_stripe.php:290 includes/profile.php:126
|
626 |
#: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
|
627 |
#: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:211
|
628 |
#: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:563
|
648 |
#: classes/gateways/class.pmprogateway_stripe.php:223
|
649 |
#: classes/gateways/class.pmprogateway_stripe.php:250
|
650 |
#: classes/gateways/class.pmprogateway_stripe.php:282
|
651 |
+
#: classes/gateways/class.pmprogateway_stripe.php:298
|
652 |
+
#: classes/gateways/class.pmprogateway_stripe.php:299 includes/profile.php:102
|
653 |
#: includes/profile.php:106 includes/profile.php:111 includes/profile.php:118
|
654 |
#: includes/profile.php:122 includes/profile.php:124 includes/profile.php:126
|
655 |
msgid "Yes"
|
685 |
msgid "Click here to signup for reCAPTCHA"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: adminpages/advancedsettings.php:248 adminpages/advancedsettings.php:248
|
689 |
msgid "reCAPTCHA Site Key"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: adminpages/advancedsettings.php:251 adminpages/advancedsettings.php:251
|
693 |
msgid "reCAPTCHA Secret Key"
|
694 |
msgstr ""
|
695 |
|
813 |
|
814 |
#: adminpages/discountcodes.php:422 adminpages/discountcodes.php:719
|
815 |
#: adminpages/membershiplevels.php:322 adminpages/membershiplevels.php:663
|
816 |
+
#: adminpages/memberslist.php:164 adminpages/orders.php:1231
|
817 |
#: adminpages/reports/login.php:162 adminpages/templates/orders-email.php:46
|
818 |
#: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
|
819 |
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
|
845 |
msgid "ID"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: adminpages/discountcodes.php:423 adminpages/orders.php:394
|
849 |
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
850 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
|
851 |
#: adminpages/discountcodes.php:317 adminpages/discountcodes.php:382
|
857 |
msgstr ""
|
858 |
|
859 |
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:720
|
860 |
+
#: adminpages/orders.php:401 adminpages/orders.php:1232
|
861 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
862 |
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
|
863 |
#: adminpages/discountcodes.php:321 adminpages/discountcodes.php:386
|
876 |
msgid "Code"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: adminpages/discountcodes.php:465 includes/privacy.php:186
|
880 |
+
#: adminpages/discountcodes.php:349 adminpages/discountcodes.php:352
|
881 |
+
#: adminpages/discountcodes.php:353 adminpages/discountcodes.php:354
|
882 |
+
#: adminpages/discountcodes.php:359 adminpages/discountcodes.php:424
|
883 |
+
#: adminpages/discountcodes.php:465
|
884 |
msgid "Start Date"
|
885 |
msgstr ""
|
886 |
|
887 |
#: adminpages/discountcodes.php:483
|
888 |
#: classes/gateways/class.pmprogateway_braintree.php:459
|
889 |
+
#: classes/gateways/class.pmprogateway_stripe.php:621 pages/billing.php:313
|
890 |
#: pages/checkout.php:463 adminpages/discountcodes.php:367
|
891 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
892 |
#: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
|
913 |
#: classes/gateways/class.pmprogateway_stripe.php:570
|
914 |
#: classes/gateways/class.pmprogateway_stripe.php:597
|
915 |
#: classes/gateways/class.pmprogateway_stripe.php:613
|
916 |
+
#: classes/gateways/class.pmprogateway_stripe.php:629
|
917 |
+
#: classes/gateways/class.pmprogateway_stripe.php:630 pages/billing.php:249
|
918 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
|
919 |
#: pages/billing.php:268 pages/billing.php:310 pages/billing.php:316
|
920 |
#: pages/billing.php:317 pages/billing.php:319 pages/billing.php:342
|
1013 |
|
1014 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1015 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1016 |
+
#: classes/gateways/class.pmprogateway_stripe.php:679
|
1017 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1018 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1019 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
1042 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1043 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1044 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1045 |
+
#: classes/gateways/class.pmprogateway_stripe.php:688
|
1046 |
msgid "Day(s)"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1050 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1051 |
+
#: classes/gateways/class.pmprogateway_stripe.php:679
|
1052 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1053 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1054 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
1077 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1078 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1079 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1080 |
+
#: classes/gateways/class.pmprogateway_stripe.php:688
|
1081 |
msgid "Month(s)"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1085 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1086 |
+
#: classes/gateways/class.pmprogateway_stripe.php:679
|
1087 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1088 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1089 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
1112 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1113 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1114 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1115 |
+
#: classes/gateways/class.pmprogateway_stripe.php:688
|
1116 |
msgid "Week(s)"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1120 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1121 |
+
#: classes/gateways/class.pmprogateway_stripe.php:679
|
1122 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1123 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1124 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
1147 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1148 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1149 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1150 |
+
#: classes/gateways/class.pmprogateway_stripe.php:688
|
1151 |
msgid "Year(s)"
|
1152 |
msgstr ""
|
1153 |
|
1385 |
msgstr ""
|
1386 |
|
1387 |
#: adminpages/discountcodes.php:789 adminpages/membershiplevels.php:696
|
1388 |
+
#: adminpages/orders.php:1360 adminpages/discountcodes.php:614
|
1389 |
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
1390 |
#: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
|
1391 |
#: adminpages/discountcodes.php:650 adminpages/discountcodes.php:655
|
1418 |
msgstr ""
|
1419 |
|
1420 |
#: adminpages/discountcodes.php:792 adminpages/membershiplevels.php:696
|
1421 |
+
#: adminpages/orders.php:1366 adminpages/discountcodes.php:617
|
1422 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
1423 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
1424 |
#: adminpages/discountcodes.php:653 adminpages/discountcodes.php:658
|
1667 |
msgstr ""
|
1668 |
|
1669 |
#: adminpages/membershiplevels.php:406
|
1670 |
+
#: classes/gateways/class.pmprogateway_stripe.php:777
|
1671 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
1672 |
#: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
|
1673 |
#: adminpages/membershiplevels.php:373 adminpages/membershiplevels.php:396
|
1686 |
#: classes/gateways/class.pmprogateway_stripe.php:762
|
1687 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
1688 |
#: classes/gateways/class.pmprogateway_stripe.php:785
|
1689 |
+
#: classes/gateways/class.pmprogateway_stripe.php:786
|
1690 |
msgid "per"
|
1691 |
msgstr ""
|
1692 |
|
1846 |
msgid "Save Level"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: adminpages/membershiplevels.php:540 adminpages/orders.php:894
|
1850 |
+
#: pages/billing.php:363 pages/cancel.php:84 shortcodes/pmpro_account.php:72
|
1851 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
|
1852 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
|
1853 |
#: adminpages/membershiplevels.php:530 adminpages/membershiplevels.php:540
|
1958 |
"be cancelled."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: adminpages/membershiplevels.php:696 adminpages/orders.php:1363
|
1962 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
|
1963 |
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
|
1964 |
#: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
|
1983 |
msgid "Members List"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: adminpages/memberslist.php:26 adminpages/orders.php:962
|
1987 |
#: adminpages/memberslist.php:26 adminpages/orders.php:522
|
1988 |
#: adminpages/orders.php:591 adminpages/orders.php:698
|
1989 |
#: adminpages/orders.php:727 adminpages/orders.php:833
|
1991 |
msgid "Export to CSV"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: adminpages/memberslist.php:30 adminpages/orders.php:981
|
1995 |
#: adminpages/reports/login.php:87 adminpages/reports/memberships.php:328
|
1996 |
#: adminpages/reports/sales.php:203 adminpages/memberslist.php:30
|
1997 |
#: adminpages/orders.php:603 adminpages/orders.php:710
|
2024 |
#: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
|
2025 |
#: adminpages/reports/sales.php:225 adminpages/reports/sales.php:226
|
2026 |
#: classes/class.pmproemail.php:145 classes/class.pmproemail.php:147
|
2027 |
+
#: classes/class.pmproemail.php:154 classes/class.pmproemail.php:189
|
2028 |
+
#: classes/class.pmproemail.php:192 classes/class.pmproemail.php:199
|
2029 |
msgid "All Levels"
|
2030 |
msgstr ""
|
2031 |
|
2081 |
msgid "Last Name"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: adminpages/memberslist.php:170 pages/billing.php:100 pages/checkout.php:275
|
2085 |
#: pages/confirmation.php:66 pages/invoice.php:48
|
2086 |
#: adminpages/memberslist.php:117 adminpages/memberslist.php:150
|
2087 |
#: adminpages/memberslist.php:160 adminpages/memberslist.php:170
|
2175 |
msgid "Error deleting order."
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: adminpages/orders.php:297 adminpages/orders.php:119
|
2179 |
#: adminpages/orders.php:169 adminpages/orders.php:270
|
2180 |
#: adminpages/orders.php:284 adminpages/orders.php:285
|
2181 |
#: adminpages/orders.php:295
|
2182 |
msgid "Order saved successfully."
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: adminpages/orders.php:300 adminpages/orders.php:124
|
2186 |
#: adminpages/orders.php:174 adminpages/orders.php:275
|
2187 |
#: adminpages/orders.php:287 adminpages/orders.php:288
|
2188 |
#: adminpages/orders.php:298
|
2189 |
msgid "Error updating order timestamp."
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: adminpages/orders.php:304 adminpages/orders.php:130
|
2193 |
#: adminpages/orders.php:180 adminpages/orders.php:281
|
2194 |
#: adminpages/orders.php:291 adminpages/orders.php:292
|
2195 |
#: adminpages/orders.php:302
|
2196 |
msgid "Error saving order."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: adminpages/orders.php:364 classes/class.memberorder.php:763
|
2200 |
#: adminpages/orders.php:195 adminpages/orders.php:245
|
2201 |
#: adminpages/orders.php:317 adminpages/orders.php:321
|
2202 |
#: adminpages/orders.php:346 adminpages/orders.php:352
|
2203 |
+
#: adminpages/orders.php:362 classes/class.memberorder.php:743
|
2204 |
+
#: classes/class.memberorder.php:746
|
2205 |
msgid "Order"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: adminpages/orders.php:366 adminpages/orders.php:197
|
2209 |
#: adminpages/orders.php:247 adminpages/orders.php:319
|
2210 |
#: adminpages/orders.php:323 adminpages/orders.php:348
|
2211 |
#: adminpages/orders.php:354 adminpages/orders.php:364
|
2212 |
msgid "New Order"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: adminpages/orders.php:413 adminpages/orders.php:220
|
2216 |
#: adminpages/orders.php:270 adminpages/orders.php:342
|
2217 |
#: adminpages/orders.php:359 adminpages/orders.php:371
|
2218 |
#: adminpages/orders.php:390 adminpages/orders.php:401
|
2219 |
msgid "Randomly generated for you."
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: adminpages/orders.php:418 adminpages/orders.php:225
|
2223 |
#: adminpages/orders.php:275 adminpages/orders.php:347
|
2224 |
#: adminpages/orders.php:364 adminpages/orders.php:376
|
2225 |
#: adminpages/orders.php:395 adminpages/orders.php:406
|
2226 |
msgid "User ID"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: adminpages/orders.php:432 adminpages/orders.php:234
|
2230 |
#: adminpages/orders.php:284 adminpages/orders.php:356
|
2231 |
#: adminpages/orders.php:376 adminpages/orders.php:385
|
2232 |
#: adminpages/orders.php:407 adminpages/orders.php:418
|
2233 |
msgid "Membership Level ID"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: adminpages/orders.php:447 includes/privacy.php:245 adminpages/orders.php:243
|
2237 |
#: adminpages/orders.php:293 adminpages/orders.php:365
|
2238 |
#: adminpages/orders.php:389 adminpages/orders.php:394
|
2239 |
#: adminpages/orders.php:420 adminpages/orders.php:431
|
2240 |
msgid "Billing Name"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: adminpages/orders.php:461 includes/privacy.php:249 adminpages/orders.php:251
|
2244 |
#: adminpages/orders.php:301 adminpages/orders.php:373
|
2245 |
#: adminpages/orders.php:401 adminpages/orders.php:402
|
2246 |
#: adminpages/orders.php:432 adminpages/orders.php:443
|
2247 |
msgid "Billing Street"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: adminpages/orders.php:474 includes/privacy.php:253 includes/privacy.php:358
|
2251 |
+
#: adminpages/orders.php:258 adminpages/orders.php:308
|
2252 |
+
#: adminpages/orders.php:380 adminpages/orders.php:409
|
2253 |
+
#: adminpages/orders.php:412 adminpages/orders.php:443
|
2254 |
+
#: adminpages/orders.php:454
|
2255 |
msgid "Billing City"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: adminpages/orders.php:487 includes/privacy.php:257 adminpages/orders.php:265
|
2259 |
#: adminpages/orders.php:315 adminpages/orders.php:387
|
2260 |
#: adminpages/orders.php:416 adminpages/orders.php:423
|
2261 |
#: adminpages/orders.php:454 adminpages/orders.php:465
|
2262 |
msgid "Billing State"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: adminpages/orders.php:500 includes/privacy.php:261 includes/privacy.php:360
|
2266 |
+
#: adminpages/orders.php:272 adminpages/orders.php:322
|
2267 |
+
#: adminpages/orders.php:394 adminpages/orders.php:423
|
2268 |
+
#: adminpages/orders.php:434 adminpages/orders.php:465
|
2269 |
+
#: adminpages/orders.php:476
|
2270 |
msgid "Billing Postal Code"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: adminpages/orders.php:513 includes/privacy.php:265 includes/privacy.php:362
|
2274 |
+
#: adminpages/orders.php:279 adminpages/orders.php:329
|
2275 |
+
#: adminpages/orders.php:401 adminpages/orders.php:430
|
2276 |
+
#: adminpages/orders.php:445 adminpages/orders.php:476
|
2277 |
+
#: adminpages/orders.php:487
|
2278 |
msgid "Billing Country"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: adminpages/orders.php:527 includes/privacy.php:269 adminpages/orders.php:287
|
2282 |
#: adminpages/orders.php:337 adminpages/orders.php:409
|
2283 |
#: adminpages/orders.php:438 adminpages/orders.php:457
|
2284 |
#: adminpages/orders.php:488 adminpages/orders.php:499
|
2285 |
msgid "Billing Phone"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: adminpages/orders.php:542 includes/privacy.php:273 adminpages/orders.php:296
|
2289 |
#: adminpages/orders.php:346 adminpages/orders.php:418
|
2290 |
#: adminpages/orders.php:447 adminpages/orders.php:470
|
2291 |
#: adminpages/orders.php:501 adminpages/orders.php:512
|
2292 |
msgid "Sub Total"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: adminpages/orders.php:555 adminpages/templates/orders-email.php:60
|
2296 |
+
#: adminpages/templates/orders-print.php:89 includes/privacy.php:277
|
2297 |
+
#: pages/confirmation.php:92 pages/invoice.php:74 adminpages/orders.php:304
|
2298 |
+
#: adminpages/orders.php:354 adminpages/orders.php:426
|
2299 |
+
#: adminpages/orders.php:455 adminpages/orders.php:481
|
2300 |
+
#: adminpages/orders.php:512 adminpages/orders.php:523
|
2301 |
+
#: adminpages/templates/orders-email.php:60
|
2302 |
#: adminpages/templates/orders-print.php:89 pages/confirmation.php:92
|
2303 |
#: pages/invoice.php:74 pages/invoice.php:78 pages/invoice.php:80
|
2304 |
msgid "Tax"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: adminpages/orders.php:568 includes/privacy.php:281 adminpages/orders.php:312
|
2308 |
#: adminpages/orders.php:362 adminpages/orders.php:434
|
2309 |
#: adminpages/orders.php:463 adminpages/orders.php:492
|
2310 |
#: adminpages/orders.php:523 adminpages/orders.php:534
|
2311 |
msgid "Coupon Amount"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: adminpages/orders.php:582 adminpages/orders.php:1236
|
2315 |
+
#: adminpages/templates/orders-email.php:64
|
2316 |
+
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
2317 |
+
#: pages/confirmation.php:96 pages/invoice.php:78 adminpages/orders.php:320
|
2318 |
+
#: adminpages/orders.php:370 adminpages/orders.php:442
|
2319 |
+
#: adminpages/orders.php:471 adminpages/orders.php:504
|
2320 |
+
#: adminpages/orders.php:535 adminpages/orders.php:546
|
2321 |
+
#: adminpages/orders.php:602 adminpages/orders.php:905
|
2322 |
+
#: adminpages/orders.php:915 adminpages/orders.php:942
|
2323 |
+
#: adminpages/orders.php:971 adminpages/orders.php:1108
|
2324 |
+
#: adminpages/orders.php:1139 adminpages/orders.php:1145
|
2325 |
#: adminpages/templates/orders-email.php:64
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2326 |
#: adminpages/templates/orders-print.php:93 pages/confirmation.php:96
|
2327 |
#: pages/invoice.php:78 pages/invoice.php:82 pages/invoice.php:84
|
2328 |
msgid "Total"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: adminpages/orders.php:593 adminpages/orders.php:325
|
2332 |
#: adminpages/orders.php:375 adminpages/orders.php:447
|
2333 |
#: adminpages/orders.php:476 adminpages/orders.php:513
|
2334 |
#: adminpages/orders.php:544 adminpages/orders.php:555
|
2335 |
msgid "Should be subtotal + tax - couponamount."
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: adminpages/orders.php:598 includes/privacy.php:289 adminpages/orders.php:330
|
2339 |
#: adminpages/orders.php:380 adminpages/orders.php:452
|
2340 |
#: adminpages/orders.php:481 adminpages/orders.php:518
|
2341 |
#: adminpages/orders.php:549 adminpages/orders.php:560
|
2342 |
msgid "Payment Type"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: adminpages/orders.php:610 adminpages/orders.php:335
|
2346 |
#: adminpages/orders.php:385 adminpages/orders.php:457
|
2347 |
#: adminpages/orders.php:486 adminpages/orders.php:528
|
2348 |
#: adminpages/orders.php:559 adminpages/orders.php:570
|
2349 |
msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: adminpages/orders.php:614
|
2353 |
#: classes/gateways/class.pmprogateway_braintree.php:446
|
2354 |
+
#: classes/gateways/class.pmprogateway_stripe.php:581 includes/privacy.php:293
|
2355 |
+
#: pages/billing.php:271 pages/checkout.php:423 adminpages/orders.php:339
|
2356 |
+
#: adminpages/orders.php:389 adminpages/orders.php:461
|
2357 |
+
#: adminpages/orders.php:490 adminpages/orders.php:532
|
2358 |
+
#: adminpages/orders.php:563 adminpages/orders.php:574
|
2359 |
#: classes/gateways/class.pmprogateway_braintree.php:291
|
2360 |
#: classes/gateways/class.pmprogateway_braintree.php:304
|
2361 |
#: classes/gateways/class.pmprogateway_braintree.php:306
|
2379 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2380 |
#: classes/gateways/class.pmprogateway_stripe.php:549
|
2381 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
2382 |
+
#: classes/gateways/class.pmprogateway_stripe.php:589
|
2383 |
+
#: classes/gateways/class.pmprogateway_stripe.php:590 pages/billing.php:234
|
2384 |
#: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
|
2385 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:268
|
2386 |
#: pages/billing.php:271 pages/billing.php:274 pages/billing.php:275
|
2391 |
msgid "Card Type"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: adminpages/orders.php:624 adminpages/orders.php:344
|
2395 |
#: adminpages/orders.php:394 adminpages/orders.php:466
|
2396 |
#: adminpages/orders.php:495 adminpages/orders.php:540
|
2397 |
#: adminpages/orders.php:571 adminpages/orders.php:582
|
2398 |
msgid "e.g. Visa, MasterCard, AMEX, etc"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: adminpages/orders.php:628
|
2402 |
#: classes/gateways/class.pmprogateway_twocheckout.php:137
|
2403 |
+
#: includes/privacy.php:297 adminpages/orders.php:348 adminpages/orders.php:398
|
2404 |
#: adminpages/orders.php:470 adminpages/orders.php:499
|
2405 |
#: adminpages/orders.php:544 adminpages/orders.php:575
|
2406 |
#: adminpages/orders.php:586 adminpages/paymentsettings.php:347
|
2411 |
msgid "Account Number"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: adminpages/orders.php:639 adminpages/orders.php:353
|
2415 |
#: adminpages/orders.php:403 adminpages/orders.php:475
|
2416 |
#: adminpages/orders.php:504 adminpages/orders.php:553
|
2417 |
#: adminpages/orders.php:584 adminpages/orders.php:595
|
2418 |
msgid "Obscure all but last 4 digits."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: adminpages/orders.php:649 includes/privacy.php:301 adminpages/orders.php:358
|
2422 |
#: adminpages/orders.php:408 adminpages/orders.php:480
|
2423 |
#: adminpages/orders.php:509 adminpages/orders.php:561
|
2424 |
#: adminpages/orders.php:592 adminpages/orders.php:603
|
2425 |
msgid "Expiration Month"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: adminpages/orders.php:657 includes/privacy.php:305 adminpages/orders.php:365
|
2429 |
#: adminpages/orders.php:415 adminpages/orders.php:487
|
2430 |
#: adminpages/orders.php:516 adminpages/orders.php:569
|
2431 |
#: adminpages/orders.php:600 adminpages/orders.php:611
|
2432 |
msgid "Expiration Year"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: adminpages/orders.php:667 adminpages/orders.php:1240
|
2436 |
+
#: includes/privacy.php:202 includes/privacy.php:309 adminpages/orders.php:373
|
2437 |
+
#: adminpages/orders.php:423 adminpages/orders.php:495
|
2438 |
+
#: adminpages/orders.php:524 adminpages/orders.php:579
|
2439 |
+
#: adminpages/orders.php:606 adminpages/orders.php:610
|
2440 |
+
#: adminpages/orders.php:621 adminpages/orders.php:909
|
2441 |
+
#: adminpages/orders.php:919 adminpages/orders.php:946
|
2442 |
+
#: adminpages/orders.php:975 adminpages/orders.php:1112
|
2443 |
+
#: adminpages/orders.php:1143 adminpages/orders.php:1149
|
2444 |
msgid "Status"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: adminpages/orders.php:689 adminpages/orders.php:1238
|
2448 |
+
#: classes/class.memberorder.php:764 includes/privacy.php:313
|
2449 |
+
#: adminpages/orders.php:394 adminpages/orders.php:444
|
2450 |
+
#: adminpages/orders.php:516 adminpages/orders.php:545
|
2451 |
+
#: adminpages/orders.php:604 adminpages/orders.php:612
|
2452 |
+
#: adminpages/orders.php:643 adminpages/orders.php:654
|
2453 |
+
#: adminpages/orders.php:907 adminpages/orders.php:917
|
2454 |
+
#: adminpages/orders.php:944 adminpages/orders.php:973
|
2455 |
+
#: adminpages/orders.php:1110 adminpages/orders.php:1141
|
2456 |
+
#: adminpages/orders.php:1147 classes/class.memberorder.php:744
|
2457 |
#: classes/class.memberorder.php:747
|
2458 |
msgid "Gateway"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: adminpages/orders.php:712 adminpages/paymentsettings.php:141
|
2462 |
+
#: includes/privacy.php:317 adminpages/orders.php:411 adminpages/orders.php:461
|
2463 |
#: adminpages/orders.php:462 adminpages/orders.php:534
|
2464 |
#: adminpages/orders.php:563 adminpages/orders.php:633
|
2465 |
#: adminpages/orders.php:664 adminpages/orders.php:675
|
2469 |
msgid "Gateway Environment"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: adminpages/orders.php:724 adminpages/paymentsettings.php:145
|
2473 |
#: adminpages/orders.php:415 adminpages/orders.php:465
|
2474 |
#: adminpages/orders.php:466 adminpages/orders.php:538
|
2475 |
#: adminpages/orders.php:567 adminpages/orders.php:640
|
2480 |
msgid "Sandbox/Testing"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: adminpages/orders.php:729 adminpages/paymentsettings.php:146
|
2484 |
#: adminpages/orders.php:416 adminpages/orders.php:466
|
2485 |
#: adminpages/orders.php:467 adminpages/orders.php:539
|
2486 |
#: adminpages/orders.php:568 adminpages/orders.php:642
|
2491 |
msgid "Live/Production"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: adminpages/orders.php:737 includes/privacy.php:321 adminpages/orders.php:423
|
2495 |
#: adminpages/orders.php:473 adminpages/orders.php:474
|
2496 |
#: adminpages/orders.php:546 adminpages/orders.php:575
|
2497 |
#: adminpages/orders.php:650 adminpages/orders.php:681
|
2499 |
msgid "Payment Transaction ID"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: adminpages/orders.php:748 adminpages/orders.php:428
|
2503 |
#: adminpages/orders.php:478 adminpages/orders.php:479
|
2504 |
#: adminpages/orders.php:551 adminpages/orders.php:580
|
2505 |
#: adminpages/orders.php:659 adminpages/orders.php:690
|
2507 |
msgid "Generated by the gateway. Useful to cross reference orders."
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: adminpages/orders.php:753 classes/class.memberorder.php:765
|
2511 |
+
#: includes/privacy.php:325 adminpages/orders.php:432 adminpages/orders.php:482
|
2512 |
#: adminpages/orders.php:483 adminpages/orders.php:555
|
2513 |
#: adminpages/orders.php:584 adminpages/orders.php:664
|
2514 |
#: adminpages/orders.php:695 adminpages/orders.php:706
|
2515 |
+
#: classes/class.memberorder.php:745 classes/class.memberorder.php:748
|
2516 |
msgid "Subscription Transaction ID"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: adminpages/orders.php:765 adminpages/orders.php:437
|
2520 |
#: adminpages/orders.php:487 adminpages/orders.php:488
|
2521 |
#: adminpages/orders.php:560 adminpages/orders.php:589
|
2522 |
#: adminpages/orders.php:674 adminpages/orders.php:705
|
2524 |
msgid "Generated by the gateway. Useful to cross reference subscriptions."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: adminpages/orders.php:770 adminpages/orders.php:1241 pages/invoice.php:100
|
2528 |
#: shortcodes/pmpro_account.php:127 adminpages/orders.php:442
|
2529 |
#: adminpages/orders.php:492 adminpages/orders.php:493
|
2530 |
#: adminpages/orders.php:565 adminpages/orders.php:594
|
2540 |
msgid "Date"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: adminpages/orders.php:812 adminpages/orders.php:477
|
2544 |
#: adminpages/orders.php:527 adminpages/orders.php:599
|
2545 |
#: adminpages/orders.php:628 adminpages/orders.php:716
|
2546 |
#: adminpages/orders.php:747 adminpages/orders.php:758
|
2547 |
msgid "Affiliate ID"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: adminpages/orders.php:826 adminpages/orders.php:485
|
2551 |
#: adminpages/orders.php:535 adminpages/orders.php:607
|
2552 |
#: adminpages/orders.php:636 adminpages/orders.php:728
|
2553 |
#: adminpages/orders.php:759 adminpages/orders.php:770
|
2554 |
msgid "Affiliate SubID"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: adminpages/orders.php:848
|
2558 |
+
msgid "TOS Consent"
|
2559 |
+
msgstr ""
|
2560 |
+
|
2561 |
+
#: adminpages/orders.php:865 adminpages/orders.php:495
|
2562 |
#: adminpages/orders.php:545 adminpages/orders.php:617
|
2563 |
#: adminpages/orders.php:646 adminpages/orders.php:742
|
2564 |
#: adminpages/orders.php:773 adminpages/orders.php:784
|
2565 |
msgid "Notes"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: adminpages/orders.php:893 adminpages/orders.php:510
|
2569 |
#: adminpages/orders.php:560 adminpages/orders.php:632
|
2570 |
#: adminpages/orders.php:661 adminpages/orders.php:764
|
2571 |
#: adminpages/orders.php:795 adminpages/orders.php:806
|
2572 |
msgid "Save Order"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: adminpages/orders.php:929 adminpages/orders.php:667
|
2576 |
#: adminpages/orders.php:696 adminpages/orders.php:800
|
2577 |
#: adminpages/orders.php:831 adminpages/orders.php:842
|
2578 |
msgid "Email Invoice"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: adminpages/orders.php:932 adminpages/orders.php:670
|
2582 |
#: adminpages/orders.php:699 adminpages/orders.php:803
|
2583 |
#: adminpages/orders.php:834 adminpages/orders.php:845
|
2584 |
msgid "Send an invoice for this order to: "
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: adminpages/orders.php:934 adminpages/orders.php:672
|
2588 |
#: adminpages/orders.php:701 adminpages/orders.php:805
|
2589 |
#: adminpages/orders.php:836 adminpages/orders.php:847
|
2590 |
msgid "Send Email"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: adminpages/orders.php:939 includes/adminpages.php:56
|
2594 |
#: includes/adminpages.php:172 adminpages/orders.php:520
|
2595 |
#: adminpages/orders.php:570 adminpages/orders.php:677
|
2596 |
#: adminpages/orders.php:706 adminpages/orders.php:810
|
2602 |
msgid "Orders"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: adminpages/orders.php:941 adminpages/orders.php:521
|
2606 |
#: adminpages/orders.php:571 adminpages/orders.php:678
|
2607 |
#: adminpages/orders.php:707 adminpages/orders.php:812
|
2608 |
#: adminpages/orders.php:843 adminpages/orders.php:854
|
2609 |
msgid "Add New Order"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: adminpages/orders.php:985 adminpages/orders.php:606
|
2613 |
#: adminpages/orders.php:713 adminpages/orders.php:742
|
2614 |
#: adminpages/orders.php:852 adminpages/orders.php:883
|
2615 |
#: adminpages/orders.php:894
|
2616 |
msgid "Within a Date Range"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: adminpages/orders.php:987 adminpages/orders.php:607
|
2620 |
#: adminpages/orders.php:714 adminpages/orders.php:743
|
2621 |
#: adminpages/orders.php:854 adminpages/orders.php:885
|
2622 |
#: adminpages/orders.php:896
|
2623 |
msgid "Predefined Date Range"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: adminpages/orders.php:989 adminpages/orders.php:608
|
2627 |
#: adminpages/orders.php:715 adminpages/orders.php:744
|
2628 |
#: adminpages/orders.php:856 adminpages/orders.php:887
|
2629 |
#: adminpages/orders.php:898
|
2630 |
msgid "Within a Level"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: adminpages/orders.php:991 adminpages/orders.php:609
|
2634 |
#: adminpages/orders.php:716 adminpages/orders.php:745
|
2635 |
#: adminpages/orders.php:858 adminpages/orders.php:889
|
2636 |
#: adminpages/orders.php:900
|
2637 |
msgid "Within a Status"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: adminpages/orders.php:994 adminpages/orders.php:612
|
2641 |
#: adminpages/orders.php:719 adminpages/orders.php:748
|
2642 |
#: adminpages/orders.php:861 adminpages/orders.php:892
|
2643 |
#: adminpages/orders.php:903
|
2644 |
msgid "From"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: adminpages/orders.php:1009 adminpages/orders.php:624
|
2648 |
#: adminpages/orders.php:731 adminpages/orders.php:760
|
2649 |
#: adminpages/orders.php:876 adminpages/orders.php:907
|
2650 |
#: adminpages/orders.php:918
|
2651 |
msgid "To"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: adminpages/orders.php:1022 adminpages/orders.php:636
|
2655 |
#: adminpages/orders.php:743 adminpages/orders.php:772
|
2656 |
#: adminpages/orders.php:889 adminpages/orders.php:920
|
2657 |
#: adminpages/orders.php:931
|
2658 |
msgid "filter by "
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: adminpages/orders.php:1060 adminpages/orders.php:674
|
2662 |
#: adminpages/orders.php:780 adminpages/orders.php:809
|
2663 |
#: adminpages/orders.php:932 adminpages/orders.php:963
|
2664 |
#: adminpages/orders.php:969
|
2665 |
msgid "Filter"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: adminpages/orders.php:1157 adminpages/orders.php:1160
|
2669 |
#: adminpages/orders.php:535 adminpages/orders.php:538
|
2670 |
#: adminpages/orders.php:777 adminpages/orders.php:780
|
2671 |
#: adminpages/orders.php:883 adminpages/orders.php:886
|
2676 |
msgid "Search Orders"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: adminpages/orders.php:1224 adminpages/orders.php:590
|
2680 |
#: adminpages/orders.php:893 adminpages/orders.php:903
|
2681 |
#: adminpages/orders.php:930 adminpages/orders.php:959
|
2682 |
#: adminpages/orders.php:1096 adminpages/orders.php:1127
|
2685 |
msgid "%d orders found."
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: adminpages/orders.php:1233 adminpages/reports/login.php:163
|
2689 |
#: classes/gateways/class.pmprogateway_payflowpro.php:116
|
2690 |
#: adminpages/orders.php:599 adminpages/orders.php:902
|
2691 |
#: adminpages/orders.php:912 adminpages/orders.php:939
|
2699 |
msgid "User"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: adminpages/orders.php:1235 includes/init.php:244 includes/profile.php:36
|
2703 |
#: pages/checkout.php:34 pages/confirmation.php:53 pages/confirmation.php:124
|
2704 |
#: pages/invoice.php:28 adminpages/orders.php:601 adminpages/orders.php:904
|
2705 |
#: adminpages/orders.php:914 adminpages/orders.php:941
|
2721 |
msgid "Membership Level"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: adminpages/orders.php:1237 adminpages/orders.php:1335
|
2725 |
#: adminpages/orders.php:603 adminpages/orders.php:651
|
2726 |
#: adminpages/orders.php:906 adminpages/orders.php:916
|
2727 |
#: adminpages/orders.php:943 adminpages/orders.php:954
|
2733 |
msgid "Payment"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: adminpages/orders.php:1239 adminpages/orders.php:605
|
2737 |
#: adminpages/orders.php:908 adminpages/orders.php:918
|
2738 |
#: adminpages/orders.php:945 adminpages/orders.php:974
|
2739 |
#: adminpages/orders.php:1111 adminpages/orders.php:1142
|
2741 |
msgid "Transaction IDs"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: adminpages/orders.php:1273 adminpages/orders.php:630
|
2745 |
#: adminpages/orders.php:933 adminpages/orders.php:943
|
2746 |
#: adminpages/orders.php:972 adminpages/orders.php:1001
|
2747 |
#: adminpages/orders.php:1141 adminpages/orders.php:1172
|
2749 |
msgid "deleted"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: adminpages/orders.php:1275
|
2753 |
+
msgid "none"
|
2754 |
+
msgstr ""
|
2755 |
+
|
2756 |
+
#: adminpages/orders.php:1344 adminpages/orders.php:653
|
2757 |
#: adminpages/orders.php:956 adminpages/orders.php:974
|
2758 |
#: adminpages/orders.php:984 adminpages/orders.php:1013
|
2759 |
#: adminpages/orders.php:1042 adminpages/orders.php:1192
|
2761 |
msgid "Subscription"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: adminpages/orders.php:1366 adminpages/orders.php:664
|
2765 |
#: adminpages/orders.php:967 adminpages/orders.php:985
|
2766 |
#: adminpages/orders.php:995 adminpages/orders.php:998
|
2767 |
#: adminpages/orders.php:1027 adminpages/orders.php:1056
|
2773 |
"want to delete order %s?"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: adminpages/orders.php:1370 adminpages/orders.php:1030
|
2777 |
#: adminpages/orders.php:1059 adminpages/orders.php:1215
|
2778 |
#: adminpages/orders.php:1249 adminpages/orders.php:1255
|
2779 |
msgid "print"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: adminpages/orders.php:1374 adminpages/orders.php:1033
|
2783 |
#: adminpages/orders.php:1062 adminpages/orders.php:1219
|
2784 |
#: adminpages/orders.php:1253 adminpages/orders.php:1259
|
2785 |
msgid "email"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: adminpages/orders.php:1383 adminpages/orders.php:674
|
2789 |
#: adminpages/orders.php:977 adminpages/orders.php:995
|
2790 |
#: adminpages/orders.php:1005 adminpages/orders.php:1008
|
2791 |
#: adminpages/orders.php:1043 adminpages/orders.php:1072
|
3103 |
msgid "Sales Tax"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: adminpages/paymentsettings.php:205 pages/billing.php:117
|
3107 |
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:205
|
3108 |
#: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
|
3109 |
#: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
|
3546 |
"site's plugin page."
|
3547 |
msgstr ""
|
3548 |
|
3549 |
+
#: classes/class.memberorder.php:760 classes/class.memberorder.php:553
|
3550 |
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
3551 |
#: classes/class.memberorder.php:573 classes/class.memberorder.php:644
|
3552 |
#: classes/class.memberorder.php:697 classes/class.memberorder.php:699
|
3561 |
"active."
|
3562 |
msgstr ""
|
3563 |
|
3564 |
+
#: classes/class.memberorder.php:761 classes/class.memberorder.php:741
|
3565 |
+
#: classes/class.memberorder.php:744
|
3566 |
msgid "User Email"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
+
#: classes/class.memberorder.php:762 classes/class.memberorder.php:742
|
3570 |
+
#: classes/class.memberorder.php:745
|
3571 |
msgid "User Display Name"
|
3572 |
msgstr ""
|
3573 |
|
3579 |
#: classes/class.pmproemail.php:143 classes/class.pmproemail.php:120
|
3580 |
#: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
|
3581 |
#: classes/class.pmproemail.php:134 classes/class.pmproemail.php:136
|
3582 |
+
#: classes/class.pmproemail.php:143
|
3583 |
#, php-format
|
3584 |
msgid "Your membership at %s has been CANCELLED"
|
3585 |
msgstr ""
|
3587 |
#: classes/class.pmproemail.php:176 classes/class.pmproemail.php:142
|
3588 |
#: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
|
3589 |
#: classes/class.pmproemail.php:156 classes/class.pmproemail.php:166
|
3590 |
+
#: classes/class.pmproemail.php:169 classes/class.pmproemail.php:176
|
3591 |
#, php-format
|
3592 |
msgid "Membership for %s at %s has been CANCELLED"
|
3593 |
msgstr ""
|
3596 |
#: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
|
3597 |
#: classes/class.pmproemail.php:178 classes/class.pmproemail.php:187
|
3598 |
#: classes/class.pmproemail.php:207 classes/class.pmproemail.php:212
|
3599 |
+
#: classes/class.pmproemail.php:219
|
3600 |
#, php-format
|
3601 |
msgid "Your membership confirmation for %s"
|
3602 |
msgstr ""
|
3606 |
#: classes/class.pmproemail.php:385 classes/class.pmproemail.php:703
|
3607 |
#: classes/class.pmproemail.php:705
|
3608 |
#: classes/gateways/class.pmprogateway_braintree.php:489
|
3609 |
+
#: classes/gateways/class.pmprogateway_stripe.php:652 pages/checkout.php:70
|
3610 |
#: pages/checkout.php:76 pages/checkout.php:498 pages/confirmation.php:58
|
3611 |
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
3612 |
#: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
|
3616 |
#: classes/class.pmproemail.php:240 classes/class.pmproemail.php:246
|
3617 |
#: classes/class.pmproemail.php:249 classes/class.pmproemail.php:258
|
3618 |
#: classes/class.pmproemail.php:260 classes/class.pmproemail.php:269
|
3619 |
+
#: classes/class.pmproemail.php:276 classes/class.pmproemail.php:278
|
3620 |
+
#: classes/class.pmproemail.php:285 classes/class.pmproemail.php:287
|
3621 |
+
#: classes/class.pmproemail.php:294 classes/class.pmproemail.php:304
|
3622 |
+
#: classes/class.pmproemail.php:307 classes/class.pmproemail.php:313
|
3623 |
+
#: classes/class.pmproemail.php:316 classes/class.pmproemail.php:325
|
3624 |
+
#: classes/class.pmproemail.php:328 classes/class.pmproemail.php:334
|
3625 |
+
#: classes/class.pmproemail.php:337 classes/class.pmproemail.php:346
|
3626 |
+
#: classes/class.pmproemail.php:357 classes/class.pmproemail.php:366
|
3627 |
+
#: classes/class.pmproemail.php:369 classes/class.pmproemail.php:376
|
3628 |
+
#: classes/class.pmproemail.php:378 classes/class.pmproemail.php:385
|
3629 |
+
#: classes/class.pmproemail.php:532 classes/class.pmproemail.php:580
|
3630 |
+
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:648
|
3631 |
+
#: classes/class.pmproemail.php:657 classes/class.pmproemail.php:659
|
3632 |
+
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:696
|
3633 |
+
#: classes/class.pmproemail.php:698 classes/class.pmproemail.php:703
|
3634 |
+
#: classes/class.pmproemail.php:705
|
3635 |
#: classes/gateways/class.pmprogateway_braintree.php:349
|
3636 |
#: classes/gateways/class.pmprogateway_braintree.php:362
|
3637 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
3655 |
#: classes/gateways/class.pmprogateway_stripe.php:611
|
3656 |
#: classes/gateways/class.pmprogateway_stripe.php:638
|
3657 |
#: classes/gateways/class.pmprogateway_stripe.php:644
|
3658 |
+
#: classes/gateways/class.pmprogateway_stripe.php:660
|
3659 |
+
#: classes/gateways/class.pmprogateway_stripe.php:661 pages/checkout.php:66
|
3660 |
#: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:70
|
3661 |
#: pages/checkout.php:75 pages/checkout.php:76 pages/checkout.php:77
|
3662 |
#: pages/checkout.php:78 pages/checkout.php:83 pages/checkout.php:85
|
3675 |
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
3676 |
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
|
3677 |
#: classes/class.pmproemail.php:285 classes/class.pmproemail.php:294
|
3678 |
+
#: classes/class.pmproemail.php:301 classes/class.pmproemail.php:325
|
3679 |
+
#: classes/class.pmproemail.php:328 classes/class.pmproemail.php:346
|
3680 |
+
#: classes/class.pmproemail.php:349 classes/class.pmproemail.php:358
|
3681 |
+
#: classes/class.pmproemail.php:378 classes/class.pmproemail.php:390
|
3682 |
+
#: classes/class.pmproemail.php:397 classes/class.pmproemail.php:538
|
3683 |
#: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
|
3684 |
#: classes/class.pmproemail.php:654 classes/class.pmproemail.php:663
|
3685 |
#: classes/class.pmproemail.php:665 classes/class.pmproemail.php:685
|
3686 |
+
#: classes/class.pmproemail.php:705 classes/class.pmproemail.php:712
|
3687 |
#, php-format
|
3688 |
msgid "This membership will expire on %s."
|
3689 |
msgstr ""
|
3692 |
#: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
|
3693 |
#: classes/class.pmproemail.php:278 classes/class.pmproemail.php:287
|
3694 |
#: classes/class.pmproemail.php:307 classes/class.pmproemail.php:316
|
3695 |
+
#: classes/class.pmproemail.php:323
|
3696 |
#, php-format
|
3697 |
msgid "Member Checkout for %s at %s"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
#: classes/class.pmproemail.php:414 classes/class.pmproemail.php:375
|
3701 |
#: classes/class.pmproemail.php:395 classes/class.pmproemail.php:407
|
3702 |
+
#: classes/class.pmproemail.php:414
|
3703 |
#, php-format
|
3704 |
msgid "Your billing information has been updated at %s"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:428
|
3708 |
#: classes/class.pmproemail.php:448 classes/class.pmproemail.php:461
|
3709 |
+
#: classes/class.pmproemail.php:468
|
3710 |
#, php-format
|
3711 |
msgid "Billing information has been updated for %s at %s"
|
3712 |
msgstr ""
|
3715 |
#: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
|
3716 |
#: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
|
3717 |
#: classes/class.pmproemail.php:496 classes/class.pmproemail.php:510
|
3718 |
+
#: classes/class.pmproemail.php:517
|
3719 |
#, php-format
|
3720 |
msgid "Membership Payment Failed at %s"
|
3721 |
msgstr ""
|
3724 |
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
|
3725 |
#: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
|
3726 |
#: classes/class.pmproemail.php:542 classes/class.pmproemail.php:557
|
3727 |
+
#: classes/class.pmproemail.php:564
|
3728 |
#, php-format
|
3729 |
msgid "Membership Payment Failed For %s at %s"
|
3730 |
msgstr ""
|
3732 |
#: classes/class.pmproemail.php:612 classes/class.pmproemail.php:508
|
3733 |
#: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
|
3734 |
#: classes/class.pmproemail.php:569 classes/class.pmproemail.php:589
|
3735 |
+
#: classes/class.pmproemail.php:605 classes/class.pmproemail.php:612
|
3736 |
#, php-format
|
3737 |
msgid "Credit Card on File Expiring Soon at %s"
|
3738 |
msgstr ""
|
3741 |
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
3742 |
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
|
3743 |
#: classes/class.pmproemail.php:619 classes/class.pmproemail.php:639
|
3744 |
+
#: classes/class.pmproemail.php:656 classes/class.pmproemail.php:663
|
3745 |
#, php-format
|
3746 |
msgid "INVOICE for %s membership"
|
3747 |
msgstr ""
|
3750 |
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
3751 |
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
|
3752 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:710
|
3753 |
+
#: classes/class.pmproemail.php:733 classes/class.pmproemail.php:740
|
3754 |
#, php-format
|
3755 |
msgid "Your trial at %s is ending soon"
|
3756 |
msgstr ""
|
3759 |
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
3760 |
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
|
3761 |
#: classes/class.pmproemail.php:724 classes/class.pmproemail.php:744
|
3762 |
+
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:776
|
3763 |
#, php-format
|
3764 |
msgid "Your membership at %s has ended"
|
3765 |
msgstr ""
|
3768 |
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
3769 |
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
|
3770 |
#: classes/class.pmproemail.php:749 classes/class.pmproemail.php:769
|
3771 |
+
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:803
|
3772 |
#, php-format
|
3773 |
msgid "Your membership at %s will end soon"
|
3774 |
msgstr ""
|
3777 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
3778 |
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
|
3779 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:789
|
3780 |
+
#: classes/class.pmproemail.php:818 classes/class.pmproemail.php:825
|
3781 |
#, php-format
|
3782 |
msgid "Your membership at %s has been changed"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#: classes/class.pmproemail.php:830 classes/class.pmproemail.php:877
|
3786 |
#: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
|
3787 |
#: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
|
3788 |
#: classes/class.pmproemail.php:793 classes/class.pmproemail.php:800
|
3789 |
#: classes/class.pmproemail.php:809 classes/class.pmproemail.php:810
|
3790 |
#: classes/class.pmproemail.php:811 classes/class.pmproemail.php:823
|
3791 |
#: classes/class.pmproemail.php:830 classes/class.pmproemail.php:863
|
3792 |
+
#: classes/class.pmproemail.php:870
|
3793 |
#, php-format
|
3794 |
msgid "The new level is %s"
|
3795 |
msgstr ""
|
3798 |
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
3799 |
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
|
3800 |
#: classes/class.pmproemail.php:775 classes/class.pmproemail.php:795
|
3801 |
+
#: classes/class.pmproemail.php:825 classes/class.pmproemail.php:832
|
3802 |
msgid "Your membership has been cancelled"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
+
#: classes/class.pmproemail.php:836 classes/class.pmproemail.php:884
|
3806 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
3807 |
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
3808 |
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
|
3812 |
#: classes/class.pmproemail.php:815 classes/class.pmproemail.php:816
|
3813 |
#: classes/class.pmproemail.php:817 classes/class.pmproemail.php:829
|
3814 |
#: classes/class.pmproemail.php:836 classes/class.pmproemail.php:869
|
3815 |
+
#: classes/class.pmproemail.php:876
|
3816 |
#, php-format
|
3817 |
msgid "This membership will expire on %s"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: classes/class.pmproemail.php:840 classes/class.pmproemail.php:888
|
3821 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
3822 |
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
3823 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
|
3827 |
#: classes/class.pmproemail.php:819 classes/class.pmproemail.php:820
|
3828 |
#: classes/class.pmproemail.php:821 classes/class.pmproemail.php:833
|
3829 |
#: classes/class.pmproemail.php:840 classes/class.pmproemail.php:873
|
3830 |
+
#: classes/class.pmproemail.php:880
|
3831 |
msgid "This membership does not expire"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: classes/class.pmproemail.php:868 includes/init.php:265
|
3835 |
+
#: includes/profile.php:48 includes/init.php:229 includes/init.php:232
|
3836 |
+
#: includes/init.php:233 includes/init.php:235 includes/init.php:237
|
3837 |
+
#: includes/init.php:245 includes/init.php:253 includes/init.php:258
|
3838 |
+
#: includes/init.php:259 includes/profile.php:37 includes/profile.php:39
|
3839 |
+
#: includes/profile.php:42 includes/profile.php:48
|
3840 |
+
msgid "None"
|
3841 |
+
msgstr ""
|
3842 |
+
|
3843 |
+
#: classes/class.pmproemail.php:872 classes/class.pmproemail.php:679
|
3844 |
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
3845 |
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
|
3846 |
#: classes/class.pmproemail.php:806 classes/class.pmproemail.php:807
|
3847 |
#: classes/class.pmproemail.php:826 classes/class.pmproemail.php:859
|
3848 |
+
#: classes/class.pmproemail.php:866
|
3849 |
#, php-format
|
3850 |
msgid "Membership for %s at %s has been changed"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
+
#: classes/class.pmproemail.php:879 classes/class.pmproemail.php:799
|
3854 |
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
|
3855 |
#: classes/class.pmproemail.php:812 classes/class.pmproemail.php:813
|
3856 |
#: classes/class.pmproemail.php:832 classes/class.pmproemail.php:865
|
3857 |
+
#: classes/class.pmproemail.php:872
|
3858 |
msgid "Membership has been cancelled"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
+
#: classes/class.pmproemail.php:919 classes/class.pmproemail.php:848
|
3862 |
#: classes/class.pmproemail.php:849 classes/class.pmproemail.php:850
|
3863 |
#: classes/class.pmproemail.php:869 classes/class.pmproemail.php:904
|
3864 |
+
#: classes/class.pmproemail.php:911
|
3865 |
msgid "Invoice for Order #: "
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: classes/class.pmproemail.php:963 classes/class.pmproemail.php:948
|
3869 |
+
#: classes/class.pmproemail.php:955
|
3870 |
msgid ""
|
3871 |
"<p>An administrator at !!sitename!! has changed your membership level.</p>\n"
|
3872 |
"\n"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
3975 |
+
#: paid-memberships-pro.php:136
|
3976 |
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
3977 |
#: paid-memberships-pro.php:122 paid-memberships-pro.php:123
|
3978 |
#: paid-memberships-pro.php:130 paid-memberships-pro.php:131
|
4062 |
msgstr ""
|
4063 |
|
4064 |
#: classes/gateways/class.pmprogateway_braintree.php:220
|
4065 |
+
#: paid-memberships-pro.php:137
|
4066 |
#: classes/gateways/class.pmprogateway_braintree.php:63
|
4067 |
#: classes/gateways/class.pmprogateway_braintree.php:76
|
4068 |
#: classes/gateways/class.pmprogateway_braintree.php:77
|
4145 |
msgstr ""
|
4146 |
|
4147 |
#: classes/gateways/class.pmprogateway_braintree.php:313
|
4148 |
+
#: classes/gateways/class.pmprogateway_stripe.php:297
|
4149 |
#: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
|
4150 |
#: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
|
4151 |
#: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
|
4168 |
#: classes/gateways/class.pmprogateway_stripe.php:257
|
4169 |
#: classes/gateways/class.pmprogateway_stripe.php:289
|
4170 |
#: classes/gateways/class.pmprogateway_stripe.php:305
|
4171 |
+
#: classes/gateways/class.pmprogateway_stripe.php:306
|
4172 |
msgid "Web Hook URL"
|
4173 |
msgstr ""
|
4174 |
|
4186 |
msgstr ""
|
4187 |
|
4188 |
#: classes/gateways/class.pmprogateway_braintree.php:434
|
4189 |
+
#: classes/gateways/class.pmprogateway_stripe.php:569 pages/checkout.php:411
|
4190 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
4191 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
4192 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
4210 |
#: classes/gateways/class.pmprogateway_stripe.php:499
|
4211 |
#: classes/gateways/class.pmprogateway_stripe.php:526
|
4212 |
#: classes/gateways/class.pmprogateway_stripe.php:561
|
4213 |
+
#: classes/gateways/class.pmprogateway_stripe.php:577
|
4214 |
+
#: classes/gateways/class.pmprogateway_stripe.php:578 pages/checkout.php:411
|
4215 |
#: pages/checkout.php:476 pages/checkout.php:478 pages/checkout.php:485
|
4216 |
#: pages/checkout.php:493 pages/checkout.php:494 pages/checkout.php:500
|
4217 |
#: pages/checkout.php:501 pages/checkout.php:503 pages/checkout.php:510
|
4220 |
msgstr ""
|
4221 |
|
4222 |
#: classes/gateways/class.pmprogateway_braintree.php:435
|
4223 |
+
#: classes/gateways/class.pmprogateway_stripe.php:570 pages/checkout.php:412
|
4224 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
4225 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
4226 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
4244 |
#: classes/gateways/class.pmprogateway_stripe.php:500
|
4245 |
#: classes/gateways/class.pmprogateway_stripe.php:527
|
4246 |
#: classes/gateways/class.pmprogateway_stripe.php:562
|
4247 |
+
#: classes/gateways/class.pmprogateway_stripe.php:578
|
4248 |
+
#: classes/gateways/class.pmprogateway_stripe.php:579 pages/checkout.php:412
|
4249 |
#: pages/checkout.php:476 pages/checkout.php:478 pages/checkout.php:485
|
4250 |
#: pages/checkout.php:493 pages/checkout.php:494 pages/checkout.php:500
|
4251 |
#: pages/checkout.php:502 pages/checkout.php:504 pages/checkout.php:511
|
4255 |
msgstr ""
|
4256 |
|
4257 |
#: classes/gateways/class.pmprogateway_braintree.php:455
|
4258 |
+
#: classes/gateways/class.pmprogateway_stripe.php:617 pages/billing.php:309
|
4259 |
#: pages/checkout.php:459 classes/gateways/class.pmprogateway_braintree.php:303
|
4260 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
4261 |
#: classes/gateways/class.pmprogateway_braintree.php:318
|
4278 |
#: classes/gateways/class.pmprogateway_stripe.php:565
|
4279 |
#: classes/gateways/class.pmprogateway_stripe.php:592
|
4280 |
#: classes/gateways/class.pmprogateway_stripe.php:609
|
4281 |
+
#: classes/gateways/class.pmprogateway_stripe.php:625
|
4282 |
+
#: classes/gateways/class.pmprogateway_stripe.php:626 pages/billing.php:244
|
4283 |
#: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
|
4284 |
#: pages/billing.php:263 pages/billing.php:305 pages/billing.php:311
|
4285 |
#: pages/billing.php:312 pages/billing.php:313 pages/billing.php:314
|
4290 |
msgid "Card Number"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
+
#: classes/gateways/class.pmprogateway_braintree.php:483 pages/billing.php:348
|
4294 |
#: classes/gateways/class.pmprogateway_braintree.php:340
|
4295 |
#: classes/gateways/class.pmprogateway_braintree.php:353
|
4296 |
#: classes/gateways/class.pmprogateway_braintree.php:355
|
4324 |
msgstr ""
|
4325 |
|
4326 |
#: classes/gateways/class.pmprogateway_braintree.php:484
|
4327 |
+
#: classes/gateways/class.pmprogateway_stripe.php:647 pages/billing.php:349
|
4328 |
#: pages/checkout.php:493 classes/gateways/class.pmprogateway_braintree.php:341
|
4329 |
#: classes/gateways/class.pmprogateway_braintree.php:354
|
4330 |
#: classes/gateways/class.pmprogateway_braintree.php:356
|
4347 |
#: classes/gateways/class.pmprogateway_stripe.php:603
|
4348 |
#: classes/gateways/class.pmprogateway_stripe.php:630
|
4349 |
#: classes/gateways/class.pmprogateway_stripe.php:639
|
4350 |
+
#: classes/gateways/class.pmprogateway_stripe.php:655
|
4351 |
+
#: classes/gateways/class.pmprogateway_stripe.php:656 pages/billing.php:282
|
4352 |
#: pages/billing.php:286 pages/billing.php:295 pages/billing.php:298
|
4353 |
#: pages/billing.php:302 pages/billing.php:344 pages/billing.php:352
|
4354 |
#: pages/billing.php:353 pages/billing.php:355 pages/billing.php:358
|
4361 |
msgstr ""
|
4362 |
|
4363 |
#: classes/gateways/class.pmprogateway_braintree.php:491
|
4364 |
+
#: classes/gateways/class.pmprogateway_stripe.php:654 pages/checkout.php:78
|
4365 |
#: pages/checkout.php:500 classes/gateways/class.pmprogateway_braintree.php:351
|
4366 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
4367 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
4385 |
#: classes/gateways/class.pmprogateway_stripe.php:613
|
4386 |
#: classes/gateways/class.pmprogateway_stripe.php:640
|
4387 |
#: classes/gateways/class.pmprogateway_stripe.php:646
|
4388 |
+
#: classes/gateways/class.pmprogateway_stripe.php:662
|
4389 |
+
#: classes/gateways/class.pmprogateway_stripe.php:663 pages/checkout.php:78
|
4390 |
#: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
|
4391 |
#: pages/checkout.php:88 pages/checkout.php:95 pages/checkout.php:98
|
4392 |
#: pages/checkout.php:500 pages/checkout.php:551 pages/checkout.php:567
|
4424 |
msgstr ""
|
4425 |
|
4426 |
#: classes/gateways/class.pmprogateway_braintree.php:554
|
4427 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1131
|
4428 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
4429 |
#: classes/gateways/class.pmprogateway_braintree.php:406
|
4430 |
#: classes/gateways/class.pmprogateway_braintree.php:419
|
4450 |
#: classes/gateways/class.pmprogateway_stripe.php:1105
|
4451 |
#: classes/gateways/class.pmprogateway_stripe.php:1123
|
4452 |
#: classes/gateways/class.pmprogateway_stripe.php:1139
|
4453 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1140
|
4454 |
#: classes/gateways/class.pmprogateway_stripe.php:1143
|
4455 |
#: classes/gateways/class.pmprogateway_stripe.php:1176
|
4456 |
msgid "Unknown error: Initial payment failed."
|
4629 |
msgstr ""
|
4630 |
|
4631 |
#: classes/gateways/class.pmprogateway_check.php:49
|
4632 |
+
#: paid-memberships-pro.php:130 adminpages/orders.php:399
|
4633 |
#: adminpages/orders.php:449 adminpages/paymentsettings.php:157
|
4634 |
#: adminpages/paymentsettings.php:159
|
4635 |
#: classes/gateways/class.pmprogateway_check.php:48
|
4753 |
msgstr ""
|
4754 |
|
4755 |
#: classes/gateways/class.pmprogateway_paypal.php:68
|
4756 |
+
#: paid-memberships-pro.php:133
|
4757 |
#: classes/gateways/class.pmprogateway_paypal.php:57
|
4758 |
#: classes/gateways/class.pmprogateway_paypal.php:68
|
4759 |
#: paid-memberships-pro.php:119 paid-memberships-pro.php:120
|
4897 |
msgstr ""
|
4898 |
|
4899 |
#: classes/gateways/class.pmprogateway_paypal.php:201
|
4900 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:444
|
4901 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:229
|
4902 |
#: pages/checkout.php:263 classes/gateways/class.pmprogateway_paypal.php:178
|
4903 |
#: classes/gateways/class.pmprogateway_paypal.php:201
|
4915 |
msgstr ""
|
4916 |
|
4917 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
4918 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:449
|
4919 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:234
|
4920 |
#: pages/checkout.php:598 classes/gateways/class.pmprogateway_paypal.php:184
|
4921 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
4934 |
msgstr ""
|
4935 |
|
4936 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
4937 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:449
|
4938 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:234
|
4939 |
#: classes/gateways/class.pmprogateway_twocheckout.php:203
|
4940 |
#: pages/checkout.php:598 classes/gateways/class.pmprogateway_paypal.php:184
|
4957 |
msgstr ""
|
4958 |
|
4959 |
#: classes/gateways/class.pmprogateway_paypal.php:631
|
4960 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:783
|
4961 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:575
|
4962 |
#: classes/gateways/class.pmprogateway_paypal.php:385
|
4963 |
#: classes/gateways/class.pmprogateway_paypal.php:605
|
4985 |
msgstr ""
|
4986 |
|
4987 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:84
|
4988 |
+
#: paid-memberships-pro.php:132
|
4989 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:63
|
4990 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:73
|
4991 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:84
|
5006 |
msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
|
5007 |
msgstr ""
|
5008 |
|
5009 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:307
|
5010 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:363
|
5011 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:268
|
5012 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:278
|
5013 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
5024 |
msgstr ""
|
5025 |
|
5026 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:71
|
5027 |
+
#: paid-memberships-pro.php:135
|
5028 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
5029 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:71
|
5030 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:122
|
5049 |
msgstr ""
|
5050 |
|
5051 |
#: classes/gateways/class.pmprogateway_stripe.php:201
|
5052 |
+
#: paid-memberships-pro.php:131
|
5053 |
#: classes/gateways/class.pmprogateway_stripe.php:93
|
5054 |
#: classes/gateways/class.pmprogateway_stripe.php:94
|
5055 |
#: classes/gateways/class.pmprogateway_stripe.php:104
|
5121 |
msgid "Secret Key"
|
5122 |
msgstr ""
|
5123 |
|
|
|
5124 |
#: classes/gateways/class.pmprogateway_stripe.php:285
|
|
|
|
|
|
|
|
|
5125 |
#: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
|
5126 |
#: adminpages/paymentsettings.php:432
|
5127 |
#: classes/gateways/class.pmprogateway_stripe.php:169
|
5135 |
#: classes/gateways/class.pmprogateway_stripe.php:245
|
5136 |
#: classes/gateways/class.pmprogateway_stripe.php:277
|
5137 |
#: classes/gateways/class.pmprogateway_stripe.php:293
|
5138 |
+
#: classes/gateways/class.pmprogateway_stripe.php:294
|
5139 |
msgid "Show Billing Address Fields"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
+
#: classes/gateways/class.pmprogateway_stripe.php:292
|
5143 |
#: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
|
5144 |
#: classes/gateways/class.pmprogateway_stripe.php:176
|
5145 |
#: classes/gateways/class.pmprogateway_stripe.php:177
|
5152 |
#: classes/gateways/class.pmprogateway_stripe.php:252
|
5153 |
#: classes/gateways/class.pmprogateway_stripe.php:284
|
5154 |
#: classes/gateways/class.pmprogateway_stripe.php:300
|
5155 |
+
#: classes/gateways/class.pmprogateway_stripe.php:301
|
5156 |
msgid ""
|
5157 |
"Stripe doesn't require billing address fields. Choose 'No' to hide them on "
|
5158 |
"the checkout page.<br /><strong>If No, make sure you disable address "
|
5159 |
"verification in the Stripe dashboard settings.</strong>"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
+
#: classes/gateways/class.pmprogateway_stripe.php:300
|
5163 |
#: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
|
5164 |
#: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
|
5165 |
#: classes/gateways/class.pmprogateway_stripe.php:184
|
5173 |
#: classes/gateways/class.pmprogateway_stripe.php:260
|
5174 |
#: classes/gateways/class.pmprogateway_stripe.php:292
|
5175 |
#: classes/gateways/class.pmprogateway_stripe.php:308
|
5176 |
+
#: classes/gateways/class.pmprogateway_stripe.php:309
|
5177 |
msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
+
#: classes/gateways/class.pmprogateway_stripe.php:646 pages/checkout.php:492
|
5181 |
#: classes/gateways/class.pmprogateway_stripe.php:638
|
5182 |
+
#: classes/gateways/class.pmprogateway_stripe.php:654
|
5183 |
+
#: classes/gateways/class.pmprogateway_stripe.php:655 pages/checkout.php:492
|
5184 |
msgid "Security Code (CVC)"
|
5185 |
msgstr ""
|
5186 |
|
5187 |
+
#: classes/gateways/class.pmprogateway_stripe.php:718
|
5188 |
#: classes/gateways/class.pmprogateway_stripe.php:703
|
5189 |
#: classes/gateways/class.pmprogateway_stripe.php:710
|
5190 |
#: classes/gateways/class.pmprogateway_stripe.php:726
|
5191 |
+
#: classes/gateways/class.pmprogateway_stripe.php:727
|
5192 |
#, php-format
|
5193 |
msgid ""
|
5194 |
"%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may "
|
5195 |
"have been deleted."
|
5196 |
msgstr ""
|
5197 |
|
5198 |
+
#: classes/gateways/class.pmprogateway_stripe.php:725
|
5199 |
#: classes/gateways/class.pmprogateway_stripe.php:567
|
5200 |
#: classes/gateways/class.pmprogateway_stripe.php:568
|
5201 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
5210 |
#: classes/gateways/class.pmprogateway_stripe.php:710
|
5211 |
#: classes/gateways/class.pmprogateway_stripe.php:717
|
5212 |
#: classes/gateways/class.pmprogateway_stripe.php:733
|
5213 |
+
#: classes/gateways/class.pmprogateway_stripe.php:734
|
5214 |
msgid "Subscription Updates"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
+
#: classes/gateways/class.pmprogateway_stripe.php:729
|
5218 |
#: classes/gateways/class.pmprogateway_stripe.php:571
|
5219 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
5220 |
#: classes/gateways/class.pmprogateway_stripe.php:582
|
5229 |
#: classes/gateways/class.pmprogateway_stripe.php:714
|
5230 |
#: classes/gateways/class.pmprogateway_stripe.php:721
|
5231 |
#: classes/gateways/class.pmprogateway_stripe.php:737
|
5232 |
+
#: classes/gateways/class.pmprogateway_stripe.php:738
|
5233 |
msgid ""
|
5234 |
"Subscription updates, allow you to change the member's subscription values "
|
5235 |
"at predefined times. Be sure to click Update Profile after making changes."
|
5236 |
msgstr ""
|
5237 |
|
5238 |
+
#: classes/gateways/class.pmprogateway_stripe.php:731
|
5239 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
5240 |
#: classes/gateways/class.pmprogateway_stripe.php:574
|
5241 |
#: classes/gateways/class.pmprogateway_stripe.php:584
|
5250 |
#: classes/gateways/class.pmprogateway_stripe.php:716
|
5251 |
#: classes/gateways/class.pmprogateway_stripe.php:723
|
5252 |
#: classes/gateways/class.pmprogateway_stripe.php:739
|
5253 |
+
#: classes/gateways/class.pmprogateway_stripe.php:740
|
5254 |
msgid ""
|
5255 |
"Subscription updates, allow you to change the member's subscription values "
|
5256 |
"at predefined times. Be sure to click Update User after making changes."
|
5257 |
msgstr ""
|
5258 |
|
5259 |
+
#: classes/gateways/class.pmprogateway_stripe.php:736 pages/billing.php:362
|
5260 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
5261 |
#: classes/gateways/class.pmprogateway_stripe.php:579
|
5262 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
5270 |
#: classes/gateways/class.pmprogateway_stripe.php:694
|
5271 |
#: classes/gateways/class.pmprogateway_stripe.php:721
|
5272 |
#: classes/gateways/class.pmprogateway_stripe.php:728
|
5273 |
+
#: classes/gateways/class.pmprogateway_stripe.php:744
|
5274 |
+
#: classes/gateways/class.pmprogateway_stripe.php:745 pages/billing.php:294
|
5275 |
#: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
|
5276 |
#: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
|
5277 |
#: pages/billing.php:363 pages/billing.php:364 pages/billing.php:370
|
5280 |
msgid "Update"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1127
|
5284 |
#: classes/gateways/class.pmprogateway_stripe.php:1119
|
5285 |
#: classes/gateways/class.pmprogateway_stripe.php:1135
|
5286 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1136
|
5287 |
#: classes/gateways/class.pmprogateway_stripe.php:1172
|
5288 |
msgid "Payment error: Please contact the webmaster (stripe-load-error)"
|
5289 |
msgstr ""
|
5290 |
|
5291 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1365
|
5292 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
5293 |
#: classes/gateways/class.pmprogateway_stripe.php:192
|
5294 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
5315 |
msgid "Error creating customer record with Stripe:"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1424
|
5319 |
#: classes/gateways/class.pmprogateway_stripe.php:1275
|
5320 |
#: classes/gateways/class.pmprogateway_stripe.php:1303
|
5321 |
#: classes/gateways/class.pmprogateway_stripe.php:1313
|
5332 |
msgid "Error getting subscription with Stripe:"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1580
|
5336 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
5337 |
#: classes/gateways/class.pmprogateway_stripe.php:279
|
5338 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
5367 |
msgid "Error creating plan with Stripe:"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1611
|
5371 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
5372 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
5373 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
5397 |
msgid "Error subscribing customer to plan with Stripe:"
|
5398 |
msgstr ""
|
5399 |
|
5400 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1706
|
5401 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
5402 |
#: classes/gateways/class.pmprogateway_stripe.php:770
|
5403 |
#: classes/gateways/class.pmprogateway_stripe.php:780
|
5412 |
#: classes/gateways/class.pmprogateway_stripe.php:914
|
5413 |
#: classes/gateways/class.pmprogateway_stripe.php:1698
|
5414 |
#: classes/gateways/class.pmprogateway_stripe.php:1714
|
5415 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1715
|
5416 |
msgid "Could not cancel the old subscription. Updates have not been processed."
|
5417 |
msgstr ""
|
5418 |
|
5419 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1809
|
5420 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
5421 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
5422 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
5440 |
#: classes/gateways/class.pmprogateway_stripe.php:1752
|
5441 |
#: classes/gateways/class.pmprogateway_stripe.php:1801
|
5442 |
#: classes/gateways/class.pmprogateway_stripe.php:1817
|
5443 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1818
|
5444 |
msgid "Could not cancel old subscription."
|
5445 |
msgstr ""
|
5446 |
|
5447 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1826
|
5448 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
5449 |
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
5450 |
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
5465 |
#: classes/gateways/class.pmprogateway_stripe.php:1769
|
5466 |
#: classes/gateways/class.pmprogateway_stripe.php:1818
|
5467 |
#: classes/gateways/class.pmprogateway_stripe.php:1834
|
5468 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1835
|
5469 |
msgid "Could not find the customer."
|
5470 |
msgstr ""
|
5471 |
|
5472 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1986
|
5473 |
#: classes/gateways/class.pmprogateway_stripe.php:1836
|
5474 |
#: classes/gateways/class.pmprogateway_stripe.php:1837
|
5475 |
#: classes/gateways/class.pmprogateway_stripe.php:1847
|
5477 |
#: classes/gateways/class.pmprogateway_stripe.php:1921
|
5478 |
#: classes/gateways/class.pmprogateway_stripe.php:1978
|
5479 |
#: classes/gateways/class.pmprogateway_stripe.php:1994
|
5480 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1995
|
5481 |
msgid "Error: "
|
5482 |
msgstr ""
|
5483 |
|
5484 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1999
|
5485 |
#: classes/gateways/class.pmprogateway_stripe.php:1849
|
5486 |
#: classes/gateways/class.pmprogateway_stripe.php:1850
|
5487 |
#: classes/gateways/class.pmprogateway_stripe.php:1860
|
5489 |
#: classes/gateways/class.pmprogateway_stripe.php:1934
|
5490 |
#: classes/gateways/class.pmprogateway_stripe.php:1991
|
5491 |
#: classes/gateways/class.pmprogateway_stripe.php:2007
|
5492 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2008
|
5493 |
#, php-format
|
5494 |
msgid "Error: Unkown error while refunding charge #%s"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
#: classes/gateways/class.pmprogateway_twocheckout.php:59
|
5498 |
+
#: paid-memberships-pro.php:138
|
5499 |
#: classes/gateways/class.pmprogateway_twocheckout.php:53
|
5500 |
#: classes/gateways/class.pmprogateway_twocheckout.php:59
|
5501 |
#: classes/gateways/class.pmprogateway_twocheckout.php:60
|
5574 |
msgid "Check Out with 2Checkout"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: includes/addons.php:225 includes/addons.php:222
|
5578 |
msgid ""
|
5579 |
"Important: This plugin requires a valid PMPro Plus license key to update."
|
5580 |
msgstr ""
|
5581 |
|
5582 |
+
#: includes/addons.php:278 includes/addons.php:274
|
5583 |
msgid ""
|
5584 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
5585 |
"utm_source=wp-admin&utm_pluginlink=bulkupdate\">valid PMPro Plus License "
|
5587 |
"updated:"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
+
#: includes/addons.php:296 includes/addons.php:292
|
5591 |
msgid "Update Plugin"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: includes/addons.php:298 includes/addons.php:294
|
5595 |
msgid ""
|
5596 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
5597 |
"utm_source=wp-admin&utm_pluginlink=addon_update\">valid PMPro Plus License "
|
5598 |
"Key</a> to update PMPro Plus add ons."
|
5599 |
msgstr ""
|
5600 |
|
5601 |
+
#: includes/addons.php:301 includes/addons.php:297
|
5602 |
msgid "Return to the PMPro Add Ons page"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
+
#: includes/addons.php:320 includes/addons.php:316
|
5606 |
msgid ""
|
5607 |
"You must enter a valid PMPro Plus License Key under Settings > PMPro License "
|
5608 |
"to update this add on."
|
6903 |
msgid "Vietnamese Dong"
|
6904 |
msgstr ""
|
6905 |
|
6906 |
+
#: includes/filters.php:224 includes/filters.php:217 includes/filters.php:224
|
6907 |
msgid ""
|
6908 |
"There was a potential issue while setting the 'Profile Start Date' for a "
|
6909 |
"user's subscription at checkout. PayPal does not allow one to set a Profile "
|
6920 |
"situations."
|
6921 |
msgstr ""
|
6922 |
|
6923 |
+
#: includes/filters.php:225 includes/filters.php:225
|
6924 |
#, php-format
|
6925 |
msgid ""
|
6926 |
"User: %1$s<br />Email: %2$s<br />Membership Level: %3$s<br />Order #: "
|
6928 |
"Date: %6$s<br />Trial Period: %7$s<br />Trial Frequency: %8$s<br />"
|
6929 |
msgstr ""
|
6930 |
|
6931 |
+
#: includes/filters.php:227 includes/filters.php:220 includes/filters.php:227
|
6932 |
#, php-format
|
6933 |
msgid "Profile Start Date Issue Detected and Fixed at %s"
|
6934 |
msgstr ""
|
6939 |
#: includes/functions.php:203 includes/functions.php:204
|
6940 |
#: includes/functions.php:207 includes/functions.php:243
|
6941 |
#: includes/functions.php:309 includes/functions.php:315
|
6942 |
+
#: includes/functions.php:320 includes/functions.php:321
|
6943 |
+
#: includes/functions.php:329 includes/functions.php:433
|
6944 |
#: includes/functions.php:455 includes/functions.php:464
|
6945 |
#, php-format
|
6946 |
msgid "The price for membership is <strong>%s</strong> now"
|
6951 |
#: includes/functions.php:205 includes/functions.php:206
|
6952 |
#: includes/functions.php:209 includes/functions.php:245
|
6953 |
#: includes/functions.php:311 includes/functions.php:317
|
6954 |
+
#: includes/functions.php:322 includes/functions.php:323
|
6955 |
+
#: includes/functions.php:331 includes/functions.php:435
|
6956 |
#: includes/functions.php:457 includes/functions.php:466
|
6957 |
#, php-format
|
6958 |
msgid "<strong>%s</strong> now"
|
6959 |
msgstr ""
|
6960 |
|
6961 |
+
#: includes/functions.php:330 includes/functions.php:330
|
6962 |
#, php-format
|
6963 |
msgid " and then <strong>%1$s per %2$s for %3$d more %4$s</strong>."
|
6964 |
msgstr ""
|
6965 |
|
6966 |
+
#: includes/functions.php:332 includes/functions.php:332
|
6967 |
#, php-format
|
6968 |
msgid " and then <strong>%1$s every %2$d %3$s for %4$d more payments</strong>."
|
6969 |
msgstr ""
|
6970 |
|
6971 |
+
#: includes/functions.php:335 includes/functions.php:335
|
6972 |
#, php-format
|
6973 |
msgid " and then <strong>%1$s after %2$d %3$s</strong>."
|
6974 |
msgstr ""
|
6975 |
|
6976 |
+
#: includes/functions.php:340 includes/functions.php:340
|
6977 |
#, php-format
|
6978 |
msgid "The price for membership is <strong>%1$s per %2$s</strong>."
|
6979 |
msgstr ""
|
6980 |
|
6981 |
+
#: includes/functions.php:342 includes/functions.php:342
|
6982 |
#, php-format
|
6983 |
msgid "<strong>%1$s per %2$s</strong>."
|
6984 |
msgstr ""
|
6985 |
|
6986 |
+
#: includes/functions.php:346 includes/functions.php:346
|
6987 |
#, php-format
|
6988 |
msgid "The price for membership is <strong>%1$s every %2$d %3$s</strong>."
|
6989 |
msgstr ""
|
6990 |
|
6991 |
+
#: includes/functions.php:348 includes/functions.php:348
|
6992 |
#, php-format
|
6993 |
msgid "<strong>%1$s every %2$d %3$s</strong>."
|
6994 |
msgstr ""
|
6995 |
|
6996 |
+
#: includes/functions.php:353 includes/functions.php:353
|
6997 |
#, php-format
|
6998 |
msgid " and then <strong>%1$s per %2$s</strong>."
|
6999 |
msgstr ""
|
7000 |
|
7001 |
+
#: includes/functions.php:355 includes/functions.php:355
|
7002 |
#, php-format
|
7003 |
msgid " and then <strong>%1$s every %2$d %3$s</strong>."
|
7004 |
msgstr ""
|
7008 |
#: includes/functions.php:260 includes/functions.php:261
|
7009 |
#: includes/functions.php:262 includes/functions.php:264
|
7010 |
#: includes/functions.php:267 includes/functions.php:271
|
7011 |
+
#: includes/functions.php:307 includes/functions.php:370
|
7012 |
+
#: includes/functions.php:373 includes/functions.php:379
|
7013 |
+
#: includes/functions.php:384 includes/functions.php:393 pages/levels.php:82
|
7014 |
msgid "After your initial payment, your first payment is Free."
|
7015 |
msgstr ""
|
7016 |
|
7019 |
#: includes/functions.php:264 includes/functions.php:265
|
7020 |
#: includes/functions.php:266 includes/functions.php:268
|
7021 |
#: includes/functions.php:271 includes/functions.php:275
|
7022 |
+
#: includes/functions.php:311 includes/functions.php:372
|
7023 |
+
#: includes/functions.php:377 includes/functions.php:383
|
7024 |
+
#: includes/functions.php:388 includes/functions.php:397 pages/levels.php:86
|
7025 |
#, php-format
|
7026 |
msgid "After your initial payment, your first %d payments are Free."
|
7027 |
msgstr ""
|
7031 |
#: includes/functions.php:271 includes/functions.php:272
|
7032 |
#: includes/functions.php:273 includes/functions.php:275
|
7033 |
#: includes/functions.php:278 includes/functions.php:282
|
7034 |
+
#: includes/functions.php:318 includes/functions.php:376
|
7035 |
+
#: includes/functions.php:384 includes/functions.php:390
|
7036 |
+
#: includes/functions.php:395 includes/functions.php:404 pages/levels.php:93
|
7037 |
#, php-format
|
7038 |
msgid "After your initial payment, your first payment will cost %s."
|
7039 |
msgstr ""
|
7040 |
|
7041 |
+
#: includes/functions.php:378 includes/functions.php:378
|
7042 |
#, php-format
|
7043 |
msgid "After your initial payment, your first %1$d payments will cost %2$s."
|
7044 |
msgstr ""
|
7045 |
|
7046 |
+
#: includes/functions.php:388 includes/functions.php:489
|
7047 |
#: includes/functions.php:388 includes/functions.php:489
|
7048 |
#, php-format
|
7049 |
msgid "Customers in %1$s will be charged %2$s%% tax."
|
7050 |
msgstr ""
|
7051 |
|
7052 |
+
#: includes/functions.php:446 includes/functions.php:446
|
7053 |
#, php-format
|
7054 |
msgid "<strong>%1$s per %2$s for %3$d more %4$s</strong>"
|
7055 |
msgstr ""
|
7056 |
|
7057 |
+
#: includes/functions.php:448 includes/functions.php:448
|
7058 |
#, php-format
|
7059 |
msgid "<strong>%1$s every %2$d %3$s for %4$d more payments</strong>"
|
7060 |
msgstr ""
|
7061 |
|
7062 |
+
#: includes/functions.php:451 includes/functions.php:451
|
7063 |
#, php-format
|
7064 |
msgid "<strong>%1$s after %2$d %3$s</strong>"
|
7065 |
msgstr ""
|
7066 |
|
7067 |
+
#: includes/functions.php:454 includes/functions.php:454
|
7068 |
#, php-format
|
7069 |
msgid "<strong>%1$s every %2$s</strong>"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
+
#: includes/functions.php:456 includes/functions.php:456
|
7073 |
#, php-format
|
7074 |
msgid "<strong>%1$s every %2$d %3$s</strong>"
|
7075 |
msgstr ""
|
7076 |
|
7077 |
+
#: includes/functions.php:478 includes/functions.php:478
|
7078 |
+
#: includes/functions.php:511 includes/functions.php:520
|
7079 |
msgid "Trial pricing has been applied to the first payment."
|
7080 |
msgstr ""
|
7081 |
|
7082 |
+
#: includes/functions.php:480 includes/functions.php:480
|
7083 |
+
#: includes/functions.php:513 includes/functions.php:522
|
7084 |
#, php-format
|
7085 |
msgid "Trial pricing has been applied to the first %d payments."
|
7086 |
msgstr ""
|
7087 |
|
7088 |
+
#: includes/functions.php:505 includes/functions.php:505
|
7089 |
#, php-format
|
7090 |
msgid "Membership expires after %1$d %2$s."
|
7091 |
msgstr ""
|
7092 |
|
7093 |
+
#: includes/functions.php:524 includes/functions.php:524
|
7094 |
#, php-format
|
7095 |
msgid "%1$s membership expires after %2$d %3$s"
|
7096 |
msgstr ""
|
7103 |
#: includes/functions.php:576 includes/functions.php:592
|
7104 |
#: includes/functions.php:615 includes/functions.php:694
|
7105 |
#: includes/functions.php:760 includes/functions.php:766
|
7106 |
+
#: includes/functions.php:877 includes/functions.php:945
|
7107 |
+
#: includes/functions.php:947 includes/functions.php:956
|
7108 |
msgid "User ID not found."
|
7109 |
msgstr ""
|
7110 |
|
7111 |
+
#: includes/functions.php:889 includes/functions.php:889
|
7112 |
msgid "No membership_id specified in pmpro_changeMembershipLevel."
|
7113 |
msgstr ""
|
7114 |
|
7121 |
#: includes/functions.php:596 includes/functions.php:612
|
7122 |
#: includes/functions.php:635 includes/functions.php:714
|
7123 |
#: includes/functions.php:780 includes/functions.php:786
|
7124 |
+
#: includes/functions.php:895 includes/functions.php:903
|
7125 |
#: includes/functions.php:965 includes/functions.php:967
|
7126 |
#: includes/functions.php:976
|
7127 |
msgid "Invalid level."
|
7135 |
#: includes/functions.php:600 includes/functions.php:607
|
7136 |
#: includes/functions.php:623 includes/functions.php:646
|
7137 |
#: includes/functions.php:725 includes/functions.php:791
|
7138 |
+
#: includes/functions.php:797 includes/functions.php:914
|
7139 |
+
#: includes/functions.php:976 includes/functions.php:978
|
7140 |
+
#: includes/functions.php:987
|
7141 |
msgid "not changing?"
|
7142 |
msgstr ""
|
7143 |
|
7164 |
#: includes/functions.php:815 includes/functions.php:839
|
7165 |
#: includes/functions.php:881 includes/functions.php:887
|
7166 |
#: includes/functions.php:905 includes/functions.php:911
|
7167 |
+
#: includes/functions.php:970 includes/functions.php:1017
|
7168 |
+
#: includes/functions.php:1037 includes/functions.php:1046
|
7169 |
msgid "Error interacting with database"
|
7170 |
msgstr ""
|
7171 |
|
7172 |
#: includes/functions.php:1067 includes/functions.php:907
|
7173 |
+
#: includes/functions.php:1067 includes/functions.php:1123
|
7174 |
+
#: includes/functions.php:1127 includes/functions.php:1129
|
7175 |
+
#: includes/functions.php:1138
|
7176 |
#, php-format
|
7177 |
msgid "Error interacting with database: %s"
|
7178 |
msgstr ""
|
7195 |
#: includes/functions.php:920 includes/functions.php:947
|
7196 |
#: includes/functions.php:948 includes/functions.php:953
|
7197 |
#: includes/functions.php:986 includes/functions.php:987
|
7198 |
+
#: includes/functions.php:992 includes/functions.php:1141
|
7199 |
+
#: includes/functions.php:1179 includes/functions.php:1198
|
7200 |
#: includes/functions.php:1202 includes/functions.php:1204
|
7201 |
#: includes/functions.php:1213 includes/functions.php:1237
|
7202 |
#: includes/functions.php:1241 includes/functions.php:1243
|
7211 |
#: includes/functions.php:1173 includes/functions.php:1196
|
7212 |
#: includes/functions.php:1290 includes/functions.php:1356
|
7213 |
#: includes/functions.php:1357 includes/functions.php:1362
|
7214 |
+
#: includes/functions.php:1533 includes/functions.php:1605
|
7215 |
+
#: includes/functions.php:1609 includes/functions.php:1611
|
7216 |
+
#: includes/functions.php:1620
|
7217 |
msgid "No code was given to check."
|
7218 |
msgstr ""
|
7219 |
|
7227 |
#: includes/functions.php:1166 includes/functions.php:1182
|
7228 |
#: includes/functions.php:1205 includes/functions.php:1299
|
7229 |
#: includes/functions.php:1365 includes/functions.php:1366
|
7230 |
+
#: includes/functions.php:1371 includes/functions.php:1542
|
7231 |
+
#: includes/functions.php:1614 includes/functions.php:1618
|
7232 |
+
#: includes/functions.php:1620 includes/functions.php:1629
|
7233 |
msgid "The discount code could not be found."
|
7234 |
msgstr ""
|
7235 |
|
7243 |
#: includes/functions.php:1181 includes/functions.php:1197
|
7244 |
#: includes/functions.php:1220 includes/functions.php:1314
|
7245 |
#: includes/functions.php:1380 includes/functions.php:1381
|
7246 |
+
#: includes/functions.php:1386 includes/functions.php:1557
|
7247 |
+
#: includes/functions.php:1629 includes/functions.php:1633
|
7248 |
+
#: includes/functions.php:1635 includes/functions.php:1644
|
7249 |
#, php-format
|
7250 |
msgid "This discount code goes into effect on %s."
|
7251 |
msgstr ""
|
7260 |
#: includes/functions.php:1188 includes/functions.php:1204
|
7261 |
#: includes/functions.php:1227 includes/functions.php:1321
|
7262 |
#: includes/functions.php:1387 includes/functions.php:1388
|
7263 |
+
#: includes/functions.php:1393 includes/functions.php:1564
|
7264 |
+
#: includes/functions.php:1636 includes/functions.php:1640
|
7265 |
+
#: includes/functions.php:1642 includes/functions.php:1651
|
7266 |
#, php-format
|
7267 |
msgid "This discount code expired on %s."
|
7268 |
msgstr ""
|
7277 |
#: includes/functions.php:1198 includes/functions.php:1214
|
7278 |
#: includes/functions.php:1237 includes/functions.php:1331
|
7279 |
#: includes/functions.php:1397 includes/functions.php:1398
|
7280 |
+
#: includes/functions.php:1403 includes/functions.php:1573
|
7281 |
+
#: includes/functions.php:1646 includes/functions.php:1650
|
7282 |
+
#: includes/functions.php:1652 includes/functions.php:1661
|
7283 |
msgid "This discount code is no longer valid."
|
7284 |
msgstr ""
|
7285 |
|
7293 |
#: includes/functions.php:1227 includes/functions.php:1250
|
7294 |
#: includes/functions.php:1344 includes/functions.php:1410
|
7295 |
#: includes/functions.php:1411 includes/functions.php:1416
|
7296 |
+
#: includes/functions.php:1592 includes/functions.php:1666
|
7297 |
+
#: includes/functions.php:1670 includes/functions.php:1672
|
7298 |
+
#: includes/functions.php:1681
|
7299 |
msgid "This discount code does not apply to this membership level."
|
7300 |
msgstr ""
|
7301 |
|
7309 |
#: includes/functions.php:1237 includes/functions.php:1253
|
7310 |
#: includes/functions.php:1276 includes/functions.php:1370
|
7311 |
#: includes/functions.php:1436 includes/functions.php:1442
|
7312 |
+
#: includes/functions.php:1448 includes/functions.php:1630
|
7313 |
+
#: includes/functions.php:1703 includes/functions.php:1707
|
7314 |
+
#: includes/functions.php:1709 includes/functions.php:1718
|
7315 |
msgid "This discount code is okay."
|
7316 |
msgstr ""
|
7317 |
|
7325 |
#: includes/functions.php:1278 includes/functions.php:1301
|
7326 |
#: includes/functions.php:1395 includes/functions.php:1397
|
7327 |
#: includes/functions.php:1463 includes/functions.php:1469
|
7328 |
+
#: includes/functions.php:1475 includes/functions.php:1658
|
7329 |
+
#: includes/functions.php:1730 includes/functions.php:1734
|
7330 |
+
#: includes/functions.php:1736 includes/functions.php:1745
|
7331 |
msgid "and"
|
7332 |
msgstr ""
|
7333 |
|
7342 |
#: includes/functions.php:1501 includes/functions.php:1620
|
7343 |
#: includes/functions.php:1624 includes/functions.php:1691
|
7344 |
#: includes/functions.php:1697 includes/functions.php:1703
|
7345 |
+
#: includes/functions.php:1977 includes/functions.php:2015
|
7346 |
+
#: includes/functions.php:2019 includes/functions.php:2022
|
7347 |
+
#: includes/functions.php:2024 includes/functions.php:2033
|
7348 |
+
#: includes/functions.php:2034
|
7349 |
msgid "Sign Up for !!name!! Now"
|
7350 |
msgstr ""
|
7351 |
|
7360 |
#: includes/functions.php:1507 includes/functions.php:1626
|
7361 |
#: includes/functions.php:1630 includes/functions.php:1697
|
7362 |
#: includes/functions.php:1703 includes/functions.php:1709
|
7363 |
+
#: includes/functions.php:1985 includes/functions.php:2021
|
7364 |
+
#: includes/functions.php:2025 includes/functions.php:2028
|
7365 |
+
#: includes/functions.php:2030 includes/functions.php:2039
|
7366 |
+
#: includes/functions.php:2040
|
7367 |
msgid "Please specify a level id."
|
7368 |
msgstr ""
|
7369 |
|
7370 |
+
#: includes/functions.php:1991 includes/functions.php:1991
|
7371 |
+
#: includes/functions.php:2046 includes/functions.php:2047
|
7372 |
#, php-format
|
7373 |
msgid "Level #%s not found."
|
7374 |
msgstr ""
|
7375 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7376 |
#: includes/license.php:54 includes/license.php:51 includes/license.php:54
|
7377 |
msgid "Your license key has been validated."
|
7378 |
msgstr ""
|
7506 |
"Only members of these levels will be able to view posts in this category."
|
7507 |
msgstr ""
|
7508 |
|
7509 |
+
#: includes/privacy.php:19
|
7510 |
+
msgid "Data Collected to Manage Your Membership"
|
7511 |
+
msgstr ""
|
7512 |
+
|
7513 |
+
#: includes/privacy.php:20
|
7514 |
+
msgid ""
|
7515 |
+
"At checkout, we will collect your name, email address, username, and "
|
7516 |
+
"password. This information is used to setup your account for our site. If "
|
7517 |
+
"you are redirected to an offsite payment gateway to complete your payment, "
|
7518 |
+
"we may store this information in a temporary session variable to setup your "
|
7519 |
+
"account when you return to our site."
|
7520 |
+
msgstr ""
|
7521 |
+
|
7522 |
+
#: includes/privacy.php:21
|
7523 |
+
msgid ""
|
7524 |
+
"At checkout, we may also collect your billing address and phone number. This "
|
7525 |
+
"information is used to confirm your credit card. The billing address and "
|
7526 |
+
"phone number are saved by our site to prepopulate the checkout form for "
|
7527 |
+
"future purchases and so we can get in touch with you if needed to discuss "
|
7528 |
+
"your order."
|
7529 |
+
msgstr ""
|
7530 |
+
|
7531 |
+
#: includes/privacy.php:22
|
7532 |
+
msgid ""
|
7533 |
+
"At checkout, we may also collect your credit card number, expiration date, "
|
7534 |
+
"and security code. This information is passed to our payment gateway to "
|
7535 |
+
"process your purchase. The last 4 digits of your credit card number and the "
|
7536 |
+
"expiration date are saved by our site to use for reference and to send you "
|
7537 |
+
"an email if your credit card will expire before the next recurring payment."
|
7538 |
+
msgstr ""
|
7539 |
+
|
7540 |
+
#: includes/privacy.php:23
|
7541 |
+
msgid ""
|
7542 |
+
"When logged in, we use cookies to track some of your activity on our site "
|
7543 |
+
"including logins, visits, and page views."
|
7544 |
+
msgstr ""
|
7545 |
+
|
7546 |
+
#: includes/privacy.php:35 includes/privacy.php:109
|
7547 |
+
msgid "Paid Memberships Pro Data"
|
7548 |
+
msgstr ""
|
7549 |
+
|
7550 |
+
#: includes/privacy.php:81
|
7551 |
+
msgid "1 PMPro order was retained for business records."
|
7552 |
+
msgstr ""
|
7553 |
+
|
7554 |
+
#: includes/privacy.php:83
|
7555 |
+
#, php-format
|
7556 |
+
msgid "%d PMPro orders were retained for business records."
|
7557 |
+
msgstr ""
|
7558 |
+
|
7559 |
+
#: includes/privacy.php:88
|
7560 |
+
msgid ""
|
7561 |
+
"Please note that data erasure will not cancel a user's membership level or "
|
7562 |
+
"any active subscriptions. Please edit or delete the user through the "
|
7563 |
+
"WordPress dashboard."
|
7564 |
+
msgstr ""
|
7565 |
+
|
7566 |
+
#: includes/privacy.php:160
|
7567 |
+
msgid "Paid Memberships Pro User Data"
|
7568 |
+
msgstr ""
|
7569 |
+
|
7570 |
+
#: includes/privacy.php:175 adminpages/memberslist.php:184
|
7571 |
+
#: adminpages/memberslist.php:212
|
7572 |
+
msgid "Never"
|
7573 |
+
msgstr ""
|
7574 |
+
|
7575 |
+
#: includes/privacy.php:182
|
7576 |
+
msgid "Level ID"
|
7577 |
+
msgstr ""
|
7578 |
+
|
7579 |
+
#: includes/privacy.php:190
|
7580 |
+
msgid "Date Modified"
|
7581 |
+
msgstr ""
|
7582 |
+
|
7583 |
+
#: includes/privacy.php:194
|
7584 |
+
msgid "End Date"
|
7585 |
+
msgstr ""
|
7586 |
+
|
7587 |
+
#: includes/privacy.php:198
|
7588 |
+
msgid "Level Cost"
|
7589 |
+
msgstr ""
|
7590 |
+
|
7591 |
+
#: includes/privacy.php:209
|
7592 |
+
msgid "Paid Memberships Pro Membership History"
|
7593 |
+
msgstr ""
|
7594 |
+
|
7595 |
+
#: includes/privacy.php:229
|
7596 |
+
msgid "Order ID"
|
7597 |
+
msgstr ""
|
7598 |
+
|
7599 |
+
#: includes/privacy.php:233
|
7600 |
+
msgid "Order Code"
|
7601 |
+
msgstr ""
|
7602 |
+
|
7603 |
+
#: includes/privacy.php:237
|
7604 |
+
msgid "Order Date"
|
7605 |
+
msgstr ""
|
7606 |
+
|
7607 |
+
#: includes/privacy.php:241 pages/billing.php:41 pages/cancel.php:61
|
7608 |
+
#: pages/invoice.php:102 pages/levels.php:35 shortcodes/pmpro_account.php:44
|
7609 |
+
#: shortcodes/pmpro_account.php:128 pages/account.php:12 pages/account.php:18
|
7610 |
+
#: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
|
7611 |
+
#: pages/billing.php:27 pages/billing.php:28 pages/billing.php:30
|
7612 |
+
#: pages/billing.php:44 pages/billing.php:45 pages/cancel.php:52
|
7613 |
+
#: pages/cancel.php:60 pages/cancel.php:61 pages/invoice.php:89
|
7614 |
+
#: pages/invoice.php:102 pages/invoice.php:109 pages/levels.php:13
|
7615 |
+
#: pages/levels.php:35 shortcodes/pmpro_account.php:43
|
7616 |
+
#: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
|
7617 |
+
#: shortcodes/pmpro_account.php:125 shortcodes/pmpro_account.php:126
|
7618 |
+
#: shortcodes/pmpro_account.php:128
|
7619 |
+
msgid "Level"
|
7620 |
+
msgstr ""
|
7621 |
+
|
7622 |
+
#: includes/privacy.php:333
|
7623 |
+
msgid "Paid Memberships Pro Order History"
|
7624 |
+
msgstr ""
|
7625 |
+
|
7626 |
+
#: includes/privacy.php:354
|
7627 |
+
msgid "Billing First Name"
|
7628 |
+
msgstr ""
|
7629 |
+
|
7630 |
+
#: includes/privacy.php:355
|
7631 |
+
msgid "Billing Last Name"
|
7632 |
+
msgstr ""
|
7633 |
+
|
7634 |
+
#: includes/privacy.php:356
|
7635 |
+
msgid "Billing Address 1"
|
7636 |
+
msgstr ""
|
7637 |
+
|
7638 |
+
#: includes/privacy.php:357
|
7639 |
+
msgid "Billing Address 2"
|
7640 |
+
msgstr ""
|
7641 |
+
|
7642 |
+
#: includes/privacy.php:359
|
7643 |
+
msgid "Billing State/Province"
|
7644 |
+
msgstr ""
|
7645 |
+
|
7646 |
+
#: includes/privacy.php:361
|
7647 |
+
msgid "Billing Phone Number"
|
7648 |
+
msgstr ""
|
7649 |
+
|
7650 |
+
#: includes/privacy.php:363
|
7651 |
+
msgid "Credit Card Type"
|
7652 |
+
msgstr ""
|
7653 |
+
|
7654 |
+
#: includes/privacy.php:364
|
7655 |
+
msgid "Credit Card Account Number"
|
7656 |
+
msgstr ""
|
7657 |
+
|
7658 |
+
#: includes/privacy.php:365
|
7659 |
+
msgid "Credit Card Expiration Month"
|
7660 |
+
msgstr ""
|
7661 |
+
|
7662 |
+
#: includes/privacy.php:366
|
7663 |
+
msgid "Credit Card Expiration Year"
|
7664 |
+
msgstr ""
|
7665 |
+
|
7666 |
+
#: includes/privacy.php:367
|
7667 |
+
msgid "Login Data"
|
7668 |
+
msgstr ""
|
7669 |
+
|
7670 |
+
#: includes/privacy.php:368
|
7671 |
+
msgid "Visits Data"
|
7672 |
+
msgstr ""
|
7673 |
+
|
7674 |
+
#: includes/privacy.php:369
|
7675 |
+
msgid "Views Data"
|
7676 |
+
msgstr ""
|
7677 |
+
|
7678 |
+
#: includes/privacy.php:507
|
7679 |
+
#, php-format
|
7680 |
+
msgid "%s agreed to %s (ID #%d, last modified %s) on %s."
|
7681 |
+
msgstr ""
|
7682 |
+
|
7683 |
+
#: includes/privacy.php:515
|
7684 |
+
msgid "That post has since been updated."
|
7685 |
+
msgstr ""
|
7686 |
+
|
7687 |
#: includes/profile.php:45 includes/profile.php:34 includes/profile.php:36
|
7688 |
#: includes/profile.php:39 includes/profile.php:45
|
7689 |
msgid "Current Level"
|
7690 |
msgstr ""
|
7691 |
|
7692 |
+
#: includes/profile.php:74 includes/profile.php:221 includes/profile.php:268
|
7693 |
#: includes/profile.php:54 includes/profile.php:60 includes/profile.php:65
|
7694 |
#: includes/profile.php:68 includes/profile.php:74 includes/profile.php:195
|
7695 |
#: includes/profile.php:242
|
7711 |
msgid "Cancel this user's subscription at the gateway."
|
7712 |
msgstr ""
|
7713 |
|
7714 |
+
#: includes/profile.php:176
|
7715 |
+
msgid "TOS Consent History"
|
7716 |
+
msgstr ""
|
7717 |
+
|
7718 |
#: includes/updates.php:110 includes/updates.php:97 includes/updates.php:110
|
7719 |
msgid "Paid Memberships Pro Data Update Required"
|
7720 |
msgstr ""
|
7777 |
"the issues</a>."
|
7778 |
msgstr ""
|
7779 |
|
7780 |
+
#: pages/billing.php:23 pages/billing.php:14 pages/billing.php:23
|
7781 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
7782 |
#: pages/billing.php:28
|
7783 |
#, php-format
|
7784 |
msgid "Logged in as <strong>%s</strong>."
|
7785 |
msgstr ""
|
7786 |
|
7787 |
+
#: pages/billing.php:23 pages/billing.php:14 pages/billing.php:23
|
7788 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
7789 |
#: pages/billing.php:28
|
7790 |
msgid "logout"
|
7791 |
msgstr ""
|
7792 |
|
7793 |
+
#: pages/billing.php:43 pages/account.php:14 pages/billing.php:18
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7794 |
#: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
|
7795 |
#: pages/billing.php:32 pages/billing.php:46 pages/billing.php:47
|
7796 |
msgid "Membership Fee"
|
7797 |
msgstr ""
|
7798 |
|
7799 |
+
#: pages/billing.php:47 pages/account.php:18 pages/billing.php:22
|
7800 |
#: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
|
7801 |
#: pages/billing.php:36 pages/billing.php:50 pages/billing.php:51
|
7802 |
#: pages/levels.php:70
|
7804 |
msgid "%s every %d %s."
|
7805 |
msgstr ""
|
7806 |
|
7807 |
+
#: pages/billing.php:49 pages/account.php:20 pages/billing.php:24
|
7808 |
#: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
|
7809 |
#: pages/billing.php:38 pages/billing.php:52 pages/billing.php:53
|
7810 |
#: pages/levels.php:66
|
7812 |
msgid "%s per %s."
|
7813 |
msgstr ""
|
7814 |
|
7815 |
+
#: pages/billing.php:59 pages/account.php:25 pages/account.php:29
|
7816 |
#: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
|
7817 |
#: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
|
7818 |
#: pages/billing.php:62 pages/billing.php:63
|
7819 |
msgid "Duration"
|
7820 |
msgstr ""
|
7821 |
|
7822 |
+
#: pages/billing.php:77 pages/billing.php:39 pages/billing.php:43
|
7823 |
#: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
|
7824 |
#: pages/billing.php:57 pages/billing.php:80 pages/billing.php:81
|
7825 |
msgid ""
|
7827 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
7828 |
msgstr ""
|
7829 |
|
7830 |
+
#: pages/billing.php:104 pages/checkout.php:279 pages/billing.php:65
|
7831 |
#: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
|
7832 |
#: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
|
7833 |
#: pages/billing.php:107 pages/billing.php:108 pages/billing.php:110
|
7838 |
msgid "First Name"
|
7839 |
msgstr ""
|
7840 |
|
7841 |
+
#: pages/billing.php:108 pages/checkout.php:283 pages/billing.php:69
|
7842 |
#: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
|
7843 |
#: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
|
7844 |
#: pages/billing.php:111 pages/billing.php:112 pages/billing.php:114
|
7849 |
msgid "Last Name"
|
7850 |
msgstr ""
|
7851 |
|
7852 |
+
#: pages/billing.php:112 pages/checkout.php:287 pages/billing.php:73
|
7853 |
#: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
|
7854 |
#: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
|
7855 |
#: pages/billing.php:115 pages/billing.php:116 pages/billing.php:118
|
7860 |
msgid "Address 1"
|
7861 |
msgstr ""
|
7862 |
|
7863 |
+
#: pages/billing.php:116 pages/checkout.php:291 pages/billing.php:77
|
7864 |
#: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
|
7865 |
#: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
|
7866 |
#: pages/billing.php:119 pages/billing.php:120 pages/billing.php:122
|
7871 |
msgid "Address 2"
|
7872 |
msgstr ""
|
7873 |
|
7874 |
+
#: pages/billing.php:126 pages/checkout.php:298 pages/billing.php:87
|
7875 |
#: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
|
7876 |
#: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
|
7877 |
#: pages/billing.php:129 pages/billing.php:130 pages/billing.php:132
|
7882 |
msgid "City"
|
7883 |
msgstr ""
|
7884 |
|
7885 |
+
#: pages/billing.php:130 pages/checkout.php:302 pages/billing.php:91
|
7886 |
#: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
|
7887 |
#: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
|
7888 |
#: pages/billing.php:133 pages/billing.php:134 pages/billing.php:136
|
7893 |
msgid "State"
|
7894 |
msgstr ""
|
7895 |
|
7896 |
+
#: pages/billing.php:134 pages/checkout.php:306 pages/billing.php:95
|
7897 |
#: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
|
7898 |
#: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
|
7899 |
#: pages/billing.php:137 pages/billing.php:138 pages/billing.php:140
|
7904 |
msgid "Postal Code"
|
7905 |
msgstr ""
|
7906 |
|
7907 |
+
#: pages/billing.php:143 pages/checkout.php:311 pages/billing.php:104
|
7908 |
#: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
|
7909 |
#: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
|
7910 |
#: pages/billing.php:146 pages/billing.php:147 pages/billing.php:149
|
7915 |
msgid "City, State Zip"
|
7916 |
msgstr ""
|
7917 |
|
7918 |
+
#: pages/billing.php:196 pages/checkout.php:348 pages/billing.php:157
|
7919 |
#: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
|
7920 |
#: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
|
7921 |
#: pages/billing.php:199 pages/billing.php:200 pages/billing.php:202
|
7926 |
msgid "Country"
|
7927 |
msgstr ""
|
7928 |
|
7929 |
+
#: pages/billing.php:221 pages/checkout.php:364 pages/billing.php:182
|
7930 |
#: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
|
7931 |
#: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
|
7932 |
#: pages/billing.php:224 pages/billing.php:225 pages/billing.php:227
|
7937 |
msgid "Phone"
|
7938 |
msgstr ""
|
7939 |
|
7940 |
+
#: pages/billing.php:232 pages/checkout.php:197 pages/checkout.php:379
|
7941 |
#: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
|
7942 |
#: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
|
7943 |
#: pages/billing.php:215 pages/billing.php:235 pages/billing.php:236
|
7951 |
msgid "E-mail Address"
|
7952 |
msgstr ""
|
7953 |
|
7954 |
+
#: pages/billing.php:236 pages/checkout.php:386 pages/billing.php:197
|
7955 |
#: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
|
7956 |
#: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
|
7957 |
#: pages/billing.php:239 pages/billing.php:240 pages/billing.php:242
|
7962 |
msgid "Confirm E-mail"
|
7963 |
msgstr ""
|
7964 |
|
7965 |
+
#: pages/billing.php:259 pages/billing.php:217 pages/billing.php:221
|
7966 |
#: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
|
7967 |
#: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
|
7968 |
#: pages/billing.php:262 pages/billing.php:263 pages/billing.php:270
|
7969 |
msgid "Credit Card Information"
|
7970 |
msgstr ""
|
7971 |
|
7972 |
+
#: pages/billing.php:260 pages/billing.php:217 pages/billing.php:221
|
7973 |
#: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
|
7974 |
#: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
|
7975 |
#: pages/billing.php:263 pages/billing.php:264 pages/billing.php:271
|
7977 |
msgid "We accept %s"
|
7978 |
msgstr ""
|
7979 |
|
7980 |
+
#: pages/billing.php:378 pages/billing.php:309 pages/billing.php:313
|
7981 |
#: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
|
7982 |
#: pages/billing.php:360 pages/billing.php:364 pages/billing.php:380
|
7983 |
+
#: pages/billing.php:381 pages/billing.php:385 pages/billing.php:387
|
7984 |
+
#: pages/billing.php:408 pages/billing.php:413 pages/billing.php:417
|
7985 |
+
#: pages/billing.php:422
|
7986 |
msgid ""
|
7987 |
"This subscription is not recurring. So you don't need to update your billing "
|
7988 |
"information."
|
8322 |
msgid "← Return to Home"
|
8323 |
msgstr ""
|
8324 |
|
8325 |
+
#: paid-memberships-pro.php:129 adminpages/orders.php:398
|
8326 |
#: adminpages/orders.php:448 paid-memberships-pro.php:115
|
8327 |
#: paid-memberships-pro.php:116 paid-memberships-pro.php:123
|
8328 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
8331 |
msgid "Testing Only"
|
8332 |
msgstr ""
|
8333 |
|
8334 |
+
#: paid-memberships-pro.php:134 paid-memberships-pro.php:120
|
8335 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:128
|
8336 |
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
8337 |
#: paid-memberships-pro.php:131 paid-memberships-pro.php:132
|
8339 |
msgid "PayPal Payflow Pro/PayPal Pro"
|
8340 |
msgstr ""
|
8341 |
|
8342 |
+
#: paid-memberships-pro.php:139 paid-memberships-pro.php:125
|
8343 |
#: paid-memberships-pro.php:126 paid-memberships-pro.php:133
|
8344 |
#: paid-memberships-pro.php:134 paid-memberships-pro.php:135
|
8345 |
#: paid-memberships-pro.php:136 paid-memberships-pro.php:137
|
8347 |
msgid "Cybersource"
|
8348 |
msgstr ""
|
8349 |
|
8350 |
+
#: paid-memberships-pro.php:160 paid-memberships-pro.php:156
|
8351 |
#: paid-memberships-pro.php:157 paid-memberships-pro.php:158
|
8352 |
#: paid-memberships-pro.php:159 paid-memberships-pro.php:166
|
8353 |
msgid "Once a month"
|
8366 |
"moments."
|
8367 |
msgstr ""
|
8368 |
|
8369 |
+
#: preheaders/billing.php:151 preheaders/checkout.php:322
|
8370 |
#: preheaders/billing.php:145 preheaders/billing.php:147
|
8371 |
#: preheaders/billing.php:258 preheaders/billing.php:265
|
8372 |
#: preheaders/billing.php:266 preheaders/billing.php:270
|
8379 |
msgid "Please complete all required fields."
|
8380 |
msgstr ""
|
8381 |
|
8382 |
+
#: preheaders/billing.php:154 preheaders/checkout.php:330
|
8383 |
#: preheaders/billing.php:148 preheaders/billing.php:150
|
8384 |
#: preheaders/billing.php:263 preheaders/billing.php:268
|
8385 |
#: preheaders/billing.php:269 preheaders/billing.php:273
|
8392 |
msgid "Your email addresses do not match. Please try again."
|
8393 |
msgstr ""
|
8394 |
|
8395 |
+
#: preheaders/billing.php:157 preheaders/checkout.php:335
|
8396 |
#: preheaders/billing.php:151 preheaders/billing.php:153
|
8397 |
#: preheaders/billing.php:268 preheaders/billing.php:271
|
8398 |
#: preheaders/billing.php:272 preheaders/billing.php:276
|
8405 |
msgid "The email address entered is in an invalid format. Please try again."
|
8406 |
msgstr ""
|
8407 |
|
8408 |
+
#: preheaders/billing.php:161 preheaders/billing.php:155
|
8409 |
#: preheaders/billing.php:157 preheaders/billing.php:274
|
8410 |
#: preheaders/billing.php:275 preheaders/billing.php:276
|
8411 |
#: preheaders/billing.php:280 preheaders/billing.php:283
|
8413 |
msgid "All good!"
|
8414 |
msgstr ""
|
8415 |
|
8416 |
+
#: preheaders/billing.php:228 preheaders/billing.php:222
|
8417 |
#: preheaders/billing.php:224 preheaders/billing.php:340
|
8418 |
#: preheaders/billing.php:345 preheaders/billing.php:346
|
8419 |
#: preheaders/billing.php:350 preheaders/billing.php:353
|
8422 |
msgid "Information updated. <a href=\"%s\">« back to my account</a>"
|
8423 |
msgstr ""
|
8424 |
|
8425 |
+
#: preheaders/billing.php:234 preheaders/billing.php:228
|
8426 |
#: preheaders/billing.php:230 preheaders/billing.php:347
|
8427 |
#: preheaders/billing.php:351 preheaders/billing.php:352
|
8428 |
#: preheaders/billing.php:356 preheaders/billing.php:359
|
8829 |
msgid "every"
|
8830 |
msgstr ""
|
8831 |
|
|
|
|
|
|
|
|
|
8832 |
#: adminpages/pagesettings.php:73
|
8833 |
#, php-format
|
8834 |
msgid "Membership %s"
|
8967 |
"your hosting provider to enable it"
|
8968 |
msgstr ""
|
8969 |
|
8970 |
+
#: classes/gateways/class.pmprogateway_stripe.php:285
|
8971 |
+
#: classes/gateways/class.pmprogateway_stripe.php:286
|
8972 |
+
msgid "Your Secret Key appears incorrect."
|
8973 |
+
msgstr ""
|
8974 |
+
|
8975 |
#: classes/gateways/class.pmprogateway_twocheckout.php:139
|
8976 |
msgid "API Private Key"
|
8977 |
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: jason@strangerstudios.com\n"
|
9 |
-
"POT-Creation-Date: 2018-
|
10 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11 |
"Last-Translator: \n"
|
12 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
@@ -57,7 +57,7 @@ msgstr ""
|
|
57 |
msgid "Check Again"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: adminpages/addons.php:79 adminpages/orders.php:
|
61 |
#: adminpages/addons.php:79 adminpages/addons.php:92 adminpages/orders.php:605
|
62 |
#: adminpages/orders.php:712 adminpages/orders.php:741
|
63 |
#: adminpages/orders.php:850 adminpages/orders.php:881
|
@@ -188,7 +188,9 @@ msgstr ""
|
|
188 |
msgid "WordPress.org"
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: adminpages/addons.php:234
|
|
|
|
|
192 |
#: adminpages/addons.php:231 adminpages/addons.php:234
|
193 |
#: adminpages/addons.php:247 shortcodes/pmpro_account.php:145
|
194 |
#: shortcodes/pmpro_account.php:146 shortcodes/pmpro_account.php:148
|
@@ -539,7 +541,7 @@ msgstr ""
|
|
539 |
#: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:226
|
540 |
#: adminpages/advancedsettings.php:238 adminpages/membershiplevels.php:694
|
541 |
#: adminpages/paymentsettings.php:236
|
542 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
543 |
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
|
544 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:151
|
545 |
#: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:187
|
@@ -569,7 +571,8 @@ msgstr ""
|
|
569 |
#: classes/gateways/class.pmprogateway_stripe.php:222
|
570 |
#: classes/gateways/class.pmprogateway_stripe.php:249
|
571 |
#: classes/gateways/class.pmprogateway_stripe.php:281
|
572 |
-
#: classes/gateways/class.pmprogateway_stripe.php:297
|
|
|
573 |
#: includes/profile.php:105 includes/profile.php:110 includes/profile.php:117
|
574 |
#: includes/profile.php:121 includes/profile.php:123 includes/profile.php:125
|
575 |
msgid "No"
|
@@ -619,7 +622,7 @@ msgstr ""
|
|
619 |
|
620 |
#: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:694
|
621 |
#: adminpages/paymentsettings.php:237
|
622 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
623 |
#: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
|
624 |
#: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:211
|
625 |
#: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:563
|
@@ -645,7 +648,8 @@ msgstr ""
|
|
645 |
#: classes/gateways/class.pmprogateway_stripe.php:223
|
646 |
#: classes/gateways/class.pmprogateway_stripe.php:250
|
647 |
#: classes/gateways/class.pmprogateway_stripe.php:282
|
648 |
-
#: classes/gateways/class.pmprogateway_stripe.php:298
|
|
|
649 |
#: includes/profile.php:106 includes/profile.php:111 includes/profile.php:118
|
650 |
#: includes/profile.php:122 includes/profile.php:124 includes/profile.php:126
|
651 |
msgid "Yes"
|
@@ -681,11 +685,11 @@ msgstr ""
|
|
681 |
msgid "Click here to signup for reCAPTCHA"
|
682 |
msgstr ""
|
683 |
|
684 |
-
#: adminpages/advancedsettings.php:248
|
685 |
msgid "reCAPTCHA Site Key"
|
686 |
msgstr ""
|
687 |
|
688 |
-
#: adminpages/advancedsettings.php:251
|
689 |
msgid "reCAPTCHA Secret Key"
|
690 |
msgstr ""
|
691 |
|
@@ -809,7 +813,7 @@ msgstr ""
|
|
809 |
|
810 |
#: adminpages/discountcodes.php:422 adminpages/discountcodes.php:719
|
811 |
#: adminpages/membershiplevels.php:322 adminpages/membershiplevels.php:663
|
812 |
-
#: adminpages/memberslist.php:164 adminpages/orders.php:
|
813 |
#: adminpages/reports/login.php:162 adminpages/templates/orders-email.php:46
|
814 |
#: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
|
815 |
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
|
@@ -841,7 +845,7 @@ msgstr ""
|
|
841 |
msgid "ID"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: adminpages/discountcodes.php:423 adminpages/orders.php:
|
845 |
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
846 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
|
847 |
#: adminpages/discountcodes.php:317 adminpages/discountcodes.php:382
|
@@ -853,7 +857,7 @@ msgid "This will be generated when you save."
|
|
853 |
msgstr ""
|
854 |
|
855 |
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:720
|
856 |
-
#: adminpages/orders.php:
|
857 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
858 |
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
|
859 |
#: adminpages/discountcodes.php:321 adminpages/discountcodes.php:386
|
@@ -872,16 +876,17 @@ msgstr ""
|
|
872 |
msgid "Code"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: adminpages/discountcodes.php:465
|
876 |
-
#: adminpages/discountcodes.php:
|
877 |
-
#: adminpages/discountcodes.php:
|
878 |
-
#: adminpages/discountcodes.php:
|
|
|
879 |
msgid "Start Date"
|
880 |
msgstr ""
|
881 |
|
882 |
#: adminpages/discountcodes.php:483
|
883 |
#: classes/gateways/class.pmprogateway_braintree.php:459
|
884 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
885 |
#: pages/checkout.php:463 adminpages/discountcodes.php:367
|
886 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
887 |
#: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
|
@@ -908,7 +913,8 @@ msgstr ""
|
|
908 |
#: classes/gateways/class.pmprogateway_stripe.php:570
|
909 |
#: classes/gateways/class.pmprogateway_stripe.php:597
|
910 |
#: classes/gateways/class.pmprogateway_stripe.php:613
|
911 |
-
#: classes/gateways/class.pmprogateway_stripe.php:629
|
|
|
912 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
|
913 |
#: pages/billing.php:268 pages/billing.php:310 pages/billing.php:316
|
914 |
#: pages/billing.php:317 pages/billing.php:319 pages/billing.php:342
|
@@ -1007,7 +1013,7 @@ msgstr ""
|
|
1007 |
|
1008 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1009 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1010 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1011 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1012 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1013 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -1036,12 +1042,13 @@ msgstr ""
|
|
1036 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1037 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1038 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
|
|
1039 |
msgid "Day(s)"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1043 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1044 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1045 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1046 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1047 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -1070,12 +1077,13 @@ msgstr ""
|
|
1070 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1071 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1072 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
|
|
1073 |
msgid "Month(s)"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1077 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1078 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1079 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1080 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1081 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -1104,12 +1112,13 @@ msgstr ""
|
|
1104 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1105 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1106 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
|
|
1107 |
msgid "Week(s)"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1111 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1112 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1113 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1114 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1115 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
@@ -1138,6 +1147,7 @@ msgstr ""
|
|
1138 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1139 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1140 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
|
|
1141 |
msgid "Year(s)"
|
1142 |
msgstr ""
|
1143 |
|
@@ -1375,7 +1385,7 @@ msgid ""
|
|
1375 |
msgstr ""
|
1376 |
|
1377 |
#: adminpages/discountcodes.php:789 adminpages/membershiplevels.php:696
|
1378 |
-
#: adminpages/orders.php:
|
1379 |
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
1380 |
#: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
|
1381 |
#: adminpages/discountcodes.php:650 adminpages/discountcodes.php:655
|
@@ -1408,7 +1418,7 @@ msgid ""
|
|
1408 |
msgstr ""
|
1409 |
|
1410 |
#: adminpages/discountcodes.php:792 adminpages/membershiplevels.php:696
|
1411 |
-
#: adminpages/orders.php:
|
1412 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
1413 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
1414 |
#: adminpages/discountcodes.php:653 adminpages/discountcodes.php:658
|
@@ -1657,7 +1667,7 @@ msgid "Billing Details"
|
|
1657 |
msgstr ""
|
1658 |
|
1659 |
#: adminpages/membershiplevels.php:406
|
1660 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
1661 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
1662 |
#: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
|
1663 |
#: adminpages/membershiplevels.php:373 adminpages/membershiplevels.php:396
|
@@ -1676,6 +1686,7 @@ msgstr ""
|
|
1676 |
#: classes/gateways/class.pmprogateway_stripe.php:762
|
1677 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
1678 |
#: classes/gateways/class.pmprogateway_stripe.php:785
|
|
|
1679 |
msgid "per"
|
1680 |
msgstr ""
|
1681 |
|
@@ -1835,8 +1846,8 @@ msgstr ""
|
|
1835 |
msgid "Save Level"
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#: adminpages/membershiplevels.php:540 adminpages/orders.php:
|
1839 |
-
#: pages/billing.php:
|
1840 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
|
1841 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
|
1842 |
#: adminpages/membershiplevels.php:530 adminpages/membershiplevels.php:540
|
@@ -1947,7 +1958,7 @@ msgid ""
|
|
1947 |
"be cancelled."
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: adminpages/membershiplevels.php:696 adminpages/orders.php:
|
1951 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
|
1952 |
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
|
1953 |
#: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
|
@@ -1972,7 +1983,7 @@ msgstr ""
|
|
1972 |
msgid "Members List"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: adminpages/memberslist.php:26 adminpages/orders.php:
|
1976 |
#: adminpages/memberslist.php:26 adminpages/orders.php:522
|
1977 |
#: adminpages/orders.php:591 adminpages/orders.php:698
|
1978 |
#: adminpages/orders.php:727 adminpages/orders.php:833
|
@@ -1980,7 +1991,7 @@ msgstr ""
|
|
1980 |
msgid "Export to CSV"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: adminpages/memberslist.php:30 adminpages/orders.php:
|
1984 |
#: adminpages/reports/login.php:87 adminpages/reports/memberships.php:328
|
1985 |
#: adminpages/reports/sales.php:203 adminpages/memberslist.php:30
|
1986 |
#: adminpages/orders.php:603 adminpages/orders.php:710
|
@@ -2013,7 +2024,8 @@ msgstr ""
|
|
2013 |
#: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
|
2014 |
#: adminpages/reports/sales.php:225 adminpages/reports/sales.php:226
|
2015 |
#: classes/class.pmproemail.php:145 classes/class.pmproemail.php:147
|
2016 |
-
#: classes/class.pmproemail.php:
|
|
|
2017 |
msgid "All Levels"
|
2018 |
msgstr ""
|
2019 |
|
@@ -2069,7 +2081,7 @@ msgstr ""
|
|
2069 |
msgid "Last Name"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: adminpages/memberslist.php:170 pages/billing.php:
|
2073 |
#: pages/confirmation.php:66 pages/invoice.php:48
|
2074 |
#: adminpages/memberslist.php:117 adminpages/memberslist.php:150
|
2075 |
#: adminpages/memberslist.php:160 adminpages/memberslist.php:170
|
@@ -2163,181 +2175,187 @@ msgstr ""
|
|
2163 |
msgid "Error deleting order."
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: adminpages/orders.php:
|
2167 |
#: adminpages/orders.php:169 adminpages/orders.php:270
|
2168 |
#: adminpages/orders.php:284 adminpages/orders.php:285
|
2169 |
#: adminpages/orders.php:295
|
2170 |
msgid "Order saved successfully."
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#: adminpages/orders.php:
|
2174 |
#: adminpages/orders.php:174 adminpages/orders.php:275
|
2175 |
#: adminpages/orders.php:287 adminpages/orders.php:288
|
2176 |
#: adminpages/orders.php:298
|
2177 |
msgid "Error updating order timestamp."
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: adminpages/orders.php:
|
2181 |
#: adminpages/orders.php:180 adminpages/orders.php:281
|
2182 |
#: adminpages/orders.php:291 adminpages/orders.php:292
|
2183 |
#: adminpages/orders.php:302
|
2184 |
msgid "Error saving order."
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: adminpages/orders.php:
|
2188 |
#: adminpages/orders.php:195 adminpages/orders.php:245
|
2189 |
#: adminpages/orders.php:317 adminpages/orders.php:321
|
2190 |
#: adminpages/orders.php:346 adminpages/orders.php:352
|
2191 |
-
#: adminpages/orders.php:362 classes/class.memberorder.php:
|
|
|
2192 |
msgid "Order"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: adminpages/orders.php:
|
2196 |
#: adminpages/orders.php:247 adminpages/orders.php:319
|
2197 |
#: adminpages/orders.php:323 adminpages/orders.php:348
|
2198 |
#: adminpages/orders.php:354 adminpages/orders.php:364
|
2199 |
msgid "New Order"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: adminpages/orders.php:
|
2203 |
#: adminpages/orders.php:270 adminpages/orders.php:342
|
2204 |
#: adminpages/orders.php:359 adminpages/orders.php:371
|
2205 |
#: adminpages/orders.php:390 adminpages/orders.php:401
|
2206 |
msgid "Randomly generated for you."
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#: adminpages/orders.php:
|
2210 |
#: adminpages/orders.php:275 adminpages/orders.php:347
|
2211 |
#: adminpages/orders.php:364 adminpages/orders.php:376
|
2212 |
#: adminpages/orders.php:395 adminpages/orders.php:406
|
2213 |
msgid "User ID"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: adminpages/orders.php:
|
2217 |
#: adminpages/orders.php:284 adminpages/orders.php:356
|
2218 |
#: adminpages/orders.php:376 adminpages/orders.php:385
|
2219 |
#: adminpages/orders.php:407 adminpages/orders.php:418
|
2220 |
msgid "Membership Level ID"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: adminpages/orders.php:
|
2224 |
#: adminpages/orders.php:293 adminpages/orders.php:365
|
2225 |
#: adminpages/orders.php:389 adminpages/orders.php:394
|
2226 |
#: adminpages/orders.php:420 adminpages/orders.php:431
|
2227 |
msgid "Billing Name"
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: adminpages/orders.php:
|
2231 |
#: adminpages/orders.php:301 adminpages/orders.php:373
|
2232 |
#: adminpages/orders.php:401 adminpages/orders.php:402
|
2233 |
#: adminpages/orders.php:432 adminpages/orders.php:443
|
2234 |
msgid "Billing Street"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
-
#: adminpages/orders.php:
|
2238 |
-
#: adminpages/orders.php:
|
2239 |
-
#: adminpages/orders.php:
|
2240 |
-
#: adminpages/orders.php:
|
|
|
2241 |
msgid "Billing City"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
-
#: adminpages/orders.php:
|
2245 |
#: adminpages/orders.php:315 adminpages/orders.php:387
|
2246 |
#: adminpages/orders.php:416 adminpages/orders.php:423
|
2247 |
#: adminpages/orders.php:454 adminpages/orders.php:465
|
2248 |
msgid "Billing State"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: adminpages/orders.php:
|
2252 |
-
#: adminpages/orders.php:
|
2253 |
-
#: adminpages/orders.php:
|
2254 |
-
#: adminpages/orders.php:
|
|
|
2255 |
msgid "Billing Postal Code"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: adminpages/orders.php:
|
2259 |
-
#: adminpages/orders.php:
|
2260 |
-
#: adminpages/orders.php:
|
2261 |
-
#: adminpages/orders.php:
|
|
|
2262 |
msgid "Billing Country"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: adminpages/orders.php:
|
2266 |
#: adminpages/orders.php:337 adminpages/orders.php:409
|
2267 |
#: adminpages/orders.php:438 adminpages/orders.php:457
|
2268 |
#: adminpages/orders.php:488 adminpages/orders.php:499
|
2269 |
msgid "Billing Phone"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: adminpages/orders.php:
|
2273 |
#: adminpages/orders.php:346 adminpages/orders.php:418
|
2274 |
#: adminpages/orders.php:447 adminpages/orders.php:470
|
2275 |
#: adminpages/orders.php:501 adminpages/orders.php:512
|
2276 |
msgid "Sub Total"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#: adminpages/orders.php:
|
2280 |
-
#: adminpages/templates/orders-print.php:89
|
2281 |
-
#: pages/
|
2282 |
-
#: adminpages/orders.php:
|
2283 |
-
#: adminpages/orders.php:
|
2284 |
-
#: adminpages/orders.php:
|
|
|
2285 |
#: adminpages/templates/orders-print.php:89 pages/confirmation.php:92
|
2286 |
#: pages/invoice.php:74 pages/invoice.php:78 pages/invoice.php:80
|
2287 |
msgid "Tax"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: adminpages/orders.php:
|
2291 |
#: adminpages/orders.php:362 adminpages/orders.php:434
|
2292 |
#: adminpages/orders.php:463 adminpages/orders.php:492
|
2293 |
#: adminpages/orders.php:523 adminpages/orders.php:534
|
2294 |
msgid "Coupon Amount"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: adminpages/orders.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2298 |
#: adminpages/templates/orders-email.php:64
|
2299 |
-
#: adminpages/templates/orders-print.php:93 pages/confirmation.php:96
|
2300 |
-
#: pages/invoice.php:78 adminpages/orders.php:320 adminpages/orders.php:370
|
2301 |
-
#: adminpages/orders.php:442 adminpages/orders.php:471
|
2302 |
-
#: adminpages/orders.php:504 adminpages/orders.php:535
|
2303 |
-
#: adminpages/orders.php:546 adminpages/orders.php:602
|
2304 |
-
#: adminpages/orders.php:905 adminpages/orders.php:915
|
2305 |
-
#: adminpages/orders.php:942 adminpages/orders.php:971
|
2306 |
-
#: adminpages/orders.php:1108 adminpages/orders.php:1139
|
2307 |
-
#: adminpages/orders.php:1145 adminpages/templates/orders-email.php:64
|
2308 |
#: adminpages/templates/orders-print.php:93 pages/confirmation.php:96
|
2309 |
#: pages/invoice.php:78 pages/invoice.php:82 pages/invoice.php:84
|
2310 |
msgid "Total"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: adminpages/orders.php:
|
2314 |
#: adminpages/orders.php:375 adminpages/orders.php:447
|
2315 |
#: adminpages/orders.php:476 adminpages/orders.php:513
|
2316 |
#: adminpages/orders.php:544 adminpages/orders.php:555
|
2317 |
msgid "Should be subtotal + tax - couponamount."
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: adminpages/orders.php:
|
2321 |
#: adminpages/orders.php:380 adminpages/orders.php:452
|
2322 |
#: adminpages/orders.php:481 adminpages/orders.php:518
|
2323 |
#: adminpages/orders.php:549 adminpages/orders.php:560
|
2324 |
msgid "Payment Type"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: adminpages/orders.php:
|
2328 |
#: adminpages/orders.php:385 adminpages/orders.php:457
|
2329 |
#: adminpages/orders.php:486 adminpages/orders.php:528
|
2330 |
#: adminpages/orders.php:559 adminpages/orders.php:570
|
2331 |
msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: adminpages/orders.php:
|
2335 |
#: classes/gateways/class.pmprogateway_braintree.php:446
|
2336 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
2337 |
-
#: pages/
|
2338 |
-
#: adminpages/orders.php:
|
2339 |
-
#: adminpages/orders.php:
|
2340 |
-
#: adminpages/orders.php:574
|
2341 |
#: classes/gateways/class.pmprogateway_braintree.php:291
|
2342 |
#: classes/gateways/class.pmprogateway_braintree.php:304
|
2343 |
#: classes/gateways/class.pmprogateway_braintree.php:306
|
@@ -2361,7 +2379,8 @@ msgstr ""
|
|
2361 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2362 |
#: classes/gateways/class.pmprogateway_stripe.php:549
|
2363 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
2364 |
-
#: classes/gateways/class.pmprogateway_stripe.php:589
|
|
|
2365 |
#: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
|
2366 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:268
|
2367 |
#: pages/billing.php:271 pages/billing.php:274 pages/billing.php:275
|
@@ -2372,16 +2391,16 @@ msgstr ""
|
|
2372 |
msgid "Card Type"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: adminpages/orders.php:
|
2376 |
#: adminpages/orders.php:394 adminpages/orders.php:466
|
2377 |
#: adminpages/orders.php:495 adminpages/orders.php:540
|
2378 |
#: adminpages/orders.php:571 adminpages/orders.php:582
|
2379 |
msgid "e.g. Visa, MasterCard, AMEX, etc"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: adminpages/orders.php:
|
2383 |
#: classes/gateways/class.pmprogateway_twocheckout.php:137
|
2384 |
-
#: adminpages/orders.php:348 adminpages/orders.php:398
|
2385 |
#: adminpages/orders.php:470 adminpages/orders.php:499
|
2386 |
#: adminpages/orders.php:544 adminpages/orders.php:575
|
2387 |
#: adminpages/orders.php:586 adminpages/paymentsettings.php:347
|
@@ -2392,54 +2411,55 @@ msgstr ""
|
|
2392 |
msgid "Account Number"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: adminpages/orders.php:
|
2396 |
#: adminpages/orders.php:403 adminpages/orders.php:475
|
2397 |
#: adminpages/orders.php:504 adminpages/orders.php:553
|
2398 |
#: adminpages/orders.php:584 adminpages/orders.php:595
|
2399 |
msgid "Obscure all but last 4 digits."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: adminpages/orders.php:
|
2403 |
#: adminpages/orders.php:408 adminpages/orders.php:480
|
2404 |
#: adminpages/orders.php:509 adminpages/orders.php:561
|
2405 |
#: adminpages/orders.php:592 adminpages/orders.php:603
|
2406 |
msgid "Expiration Month"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: adminpages/orders.php:
|
2410 |
#: adminpages/orders.php:415 adminpages/orders.php:487
|
2411 |
#: adminpages/orders.php:516 adminpages/orders.php:569
|
2412 |
#: adminpages/orders.php:600 adminpages/orders.php:611
|
2413 |
msgid "Expiration Year"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
-
#: adminpages/orders.php:
|
2417 |
-
#:
|
2418 |
-
#: adminpages/orders.php:
|
2419 |
-
#: adminpages/orders.php:
|
2420 |
-
#: adminpages/orders.php:
|
2421 |
-
#: adminpages/orders.php:
|
2422 |
-
#: adminpages/orders.php:
|
2423 |
-
#: adminpages/orders.php:
|
2424 |
-
#: adminpages/orders.php:1149
|
2425 |
msgid "Status"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: adminpages/orders.php:
|
2429 |
-
#: classes/class.memberorder.php:
|
2430 |
-
#: adminpages/orders.php:
|
2431 |
-
#: adminpages/orders.php:
|
2432 |
-
#: adminpages/orders.php:
|
2433 |
-
#: adminpages/orders.php:
|
2434 |
-
#: adminpages/orders.php:
|
2435 |
-
#: adminpages/orders.php:
|
2436 |
-
#: adminpages/orders.php:
|
|
|
2437 |
#: classes/class.memberorder.php:747
|
2438 |
msgid "Gateway"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: adminpages/orders.php:
|
2442 |
-
#: adminpages/orders.php:411 adminpages/orders.php:461
|
2443 |
#: adminpages/orders.php:462 adminpages/orders.php:534
|
2444 |
#: adminpages/orders.php:563 adminpages/orders.php:633
|
2445 |
#: adminpages/orders.php:664 adminpages/orders.php:675
|
@@ -2449,7 +2469,7 @@ msgstr ""
|
|
2449 |
msgid "Gateway Environment"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
#: adminpages/orders.php:
|
2453 |
#: adminpages/orders.php:415 adminpages/orders.php:465
|
2454 |
#: adminpages/orders.php:466 adminpages/orders.php:538
|
2455 |
#: adminpages/orders.php:567 adminpages/orders.php:640
|
@@ -2460,7 +2480,7 @@ msgstr ""
|
|
2460 |
msgid "Sandbox/Testing"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: adminpages/orders.php:
|
2464 |
#: adminpages/orders.php:416 adminpages/orders.php:466
|
2465 |
#: adminpages/orders.php:467 adminpages/orders.php:539
|
2466 |
#: adminpages/orders.php:568 adminpages/orders.php:642
|
@@ -2471,7 +2491,7 @@ msgstr ""
|
|
2471 |
msgid "Live/Production"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: adminpages/orders.php:
|
2475 |
#: adminpages/orders.php:473 adminpages/orders.php:474
|
2476 |
#: adminpages/orders.php:546 adminpages/orders.php:575
|
2477 |
#: adminpages/orders.php:650 adminpages/orders.php:681
|
@@ -2479,7 +2499,7 @@ msgstr ""
|
|
2479 |
msgid "Payment Transaction ID"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: adminpages/orders.php:
|
2483 |
#: adminpages/orders.php:478 adminpages/orders.php:479
|
2484 |
#: adminpages/orders.php:551 adminpages/orders.php:580
|
2485 |
#: adminpages/orders.php:659 adminpages/orders.php:690
|
@@ -2487,16 +2507,16 @@ msgstr ""
|
|
2487 |
msgid "Generated by the gateway. Useful to cross reference orders."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: adminpages/orders.php:
|
2491 |
-
#: adminpages/orders.php:432 adminpages/orders.php:482
|
2492 |
#: adminpages/orders.php:483 adminpages/orders.php:555
|
2493 |
#: adminpages/orders.php:584 adminpages/orders.php:664
|
2494 |
#: adminpages/orders.php:695 adminpages/orders.php:706
|
2495 |
-
#: classes/class.memberorder.php:748
|
2496 |
msgid "Subscription Transaction ID"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: adminpages/orders.php:
|
2500 |
#: adminpages/orders.php:487 adminpages/orders.php:488
|
2501 |
#: adminpages/orders.php:560 adminpages/orders.php:589
|
2502 |
#: adminpages/orders.php:674 adminpages/orders.php:705
|
@@ -2504,7 +2524,7 @@ msgstr ""
|
|
2504 |
msgid "Generated by the gateway. Useful to cross reference subscriptions."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: adminpages/orders.php:
|
2508 |
#: shortcodes/pmpro_account.php:127 adminpages/orders.php:442
|
2509 |
#: adminpages/orders.php:492 adminpages/orders.php:493
|
2510 |
#: adminpages/orders.php:565 adminpages/orders.php:594
|
@@ -2520,53 +2540,57 @@ msgstr ""
|
|
2520 |
msgid "Date"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: adminpages/orders.php:
|
2524 |
#: adminpages/orders.php:527 adminpages/orders.php:599
|
2525 |
#: adminpages/orders.php:628 adminpages/orders.php:716
|
2526 |
#: adminpages/orders.php:747 adminpages/orders.php:758
|
2527 |
msgid "Affiliate ID"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: adminpages/orders.php:
|
2531 |
#: adminpages/orders.php:535 adminpages/orders.php:607
|
2532 |
#: adminpages/orders.php:636 adminpages/orders.php:728
|
2533 |
#: adminpages/orders.php:759 adminpages/orders.php:770
|
2534 |
msgid "Affiliate SubID"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: adminpages/orders.php:
|
|
|
|
|
|
|
|
|
2538 |
#: adminpages/orders.php:545 adminpages/orders.php:617
|
2539 |
#: adminpages/orders.php:646 adminpages/orders.php:742
|
2540 |
#: adminpages/orders.php:773 adminpages/orders.php:784
|
2541 |
msgid "Notes"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
#: adminpages/orders.php:
|
2545 |
#: adminpages/orders.php:560 adminpages/orders.php:632
|
2546 |
#: adminpages/orders.php:661 adminpages/orders.php:764
|
2547 |
#: adminpages/orders.php:795 adminpages/orders.php:806
|
2548 |
msgid "Save Order"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
-
#: adminpages/orders.php:
|
2552 |
#: adminpages/orders.php:696 adminpages/orders.php:800
|
2553 |
#: adminpages/orders.php:831 adminpages/orders.php:842
|
2554 |
msgid "Email Invoice"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: adminpages/orders.php:
|
2558 |
#: adminpages/orders.php:699 adminpages/orders.php:803
|
2559 |
#: adminpages/orders.php:834 adminpages/orders.php:845
|
2560 |
msgid "Send an invoice for this order to: "
|
2561 |
msgstr ""
|
2562 |
|
2563 |
-
#: adminpages/orders.php:
|
2564 |
#: adminpages/orders.php:701 adminpages/orders.php:805
|
2565 |
#: adminpages/orders.php:836 adminpages/orders.php:847
|
2566 |
msgid "Send Email"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: adminpages/orders.php:
|
2570 |
#: includes/adminpages.php:172 adminpages/orders.php:520
|
2571 |
#: adminpages/orders.php:570 adminpages/orders.php:677
|
2572 |
#: adminpages/orders.php:706 adminpages/orders.php:810
|
@@ -2578,70 +2602,70 @@ msgstr ""
|
|
2578 |
msgid "Orders"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: adminpages/orders.php:
|
2582 |
#: adminpages/orders.php:571 adminpages/orders.php:678
|
2583 |
#: adminpages/orders.php:707 adminpages/orders.php:812
|
2584 |
#: adminpages/orders.php:843 adminpages/orders.php:854
|
2585 |
msgid "Add New Order"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: adminpages/orders.php:
|
2589 |
#: adminpages/orders.php:713 adminpages/orders.php:742
|
2590 |
#: adminpages/orders.php:852 adminpages/orders.php:883
|
2591 |
#: adminpages/orders.php:894
|
2592 |
msgid "Within a Date Range"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
-
#: adminpages/orders.php:
|
2596 |
#: adminpages/orders.php:714 adminpages/orders.php:743
|
2597 |
#: adminpages/orders.php:854 adminpages/orders.php:885
|
2598 |
#: adminpages/orders.php:896
|
2599 |
msgid "Predefined Date Range"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: adminpages/orders.php:
|
2603 |
#: adminpages/orders.php:715 adminpages/orders.php:744
|
2604 |
#: adminpages/orders.php:856 adminpages/orders.php:887
|
2605 |
#: adminpages/orders.php:898
|
2606 |
msgid "Within a Level"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: adminpages/orders.php:
|
2610 |
#: adminpages/orders.php:716 adminpages/orders.php:745
|
2611 |
#: adminpages/orders.php:858 adminpages/orders.php:889
|
2612 |
#: adminpages/orders.php:900
|
2613 |
msgid "Within a Status"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: adminpages/orders.php:
|
2617 |
#: adminpages/orders.php:719 adminpages/orders.php:748
|
2618 |
#: adminpages/orders.php:861 adminpages/orders.php:892
|
2619 |
#: adminpages/orders.php:903
|
2620 |
msgid "From"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#: adminpages/orders.php:
|
2624 |
#: adminpages/orders.php:731 adminpages/orders.php:760
|
2625 |
#: adminpages/orders.php:876 adminpages/orders.php:907
|
2626 |
#: adminpages/orders.php:918
|
2627 |
msgid "To"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: adminpages/orders.php:
|
2631 |
#: adminpages/orders.php:743 adminpages/orders.php:772
|
2632 |
#: adminpages/orders.php:889 adminpages/orders.php:920
|
2633 |
#: adminpages/orders.php:931
|
2634 |
msgid "filter by "
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: adminpages/orders.php:
|
2638 |
#: adminpages/orders.php:780 adminpages/orders.php:809
|
2639 |
#: adminpages/orders.php:932 adminpages/orders.php:963
|
2640 |
#: adminpages/orders.php:969
|
2641 |
msgid "Filter"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: adminpages/orders.php:
|
2645 |
#: adminpages/orders.php:535 adminpages/orders.php:538
|
2646 |
#: adminpages/orders.php:777 adminpages/orders.php:780
|
2647 |
#: adminpages/orders.php:883 adminpages/orders.php:886
|
@@ -2652,7 +2676,7 @@ msgstr ""
|
|
2652 |
msgid "Search Orders"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: adminpages/orders.php:
|
2656 |
#: adminpages/orders.php:893 adminpages/orders.php:903
|
2657 |
#: adminpages/orders.php:930 adminpages/orders.php:959
|
2658 |
#: adminpages/orders.php:1096 adminpages/orders.php:1127
|
@@ -2661,7 +2685,7 @@ msgstr ""
|
|
2661 |
msgid "%d orders found."
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: adminpages/orders.php:
|
2665 |
#: classes/gateways/class.pmprogateway_payflowpro.php:116
|
2666 |
#: adminpages/orders.php:599 adminpages/orders.php:902
|
2667 |
#: adminpages/orders.php:912 adminpages/orders.php:939
|
@@ -2675,7 +2699,7 @@ msgstr ""
|
|
2675 |
msgid "User"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: adminpages/orders.php:
|
2679 |
#: pages/checkout.php:34 pages/confirmation.php:53 pages/confirmation.php:124
|
2680 |
#: pages/invoice.php:28 adminpages/orders.php:601 adminpages/orders.php:904
|
2681 |
#: adminpages/orders.php:914 adminpages/orders.php:941
|
@@ -2697,7 +2721,7 @@ msgstr ""
|
|
2697 |
msgid "Membership Level"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: adminpages/orders.php:
|
2701 |
#: adminpages/orders.php:603 adminpages/orders.php:651
|
2702 |
#: adminpages/orders.php:906 adminpages/orders.php:916
|
2703 |
#: adminpages/orders.php:943 adminpages/orders.php:954
|
@@ -2709,7 +2733,7 @@ msgstr ""
|
|
2709 |
msgid "Payment"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: adminpages/orders.php:
|
2713 |
#: adminpages/orders.php:908 adminpages/orders.php:918
|
2714 |
#: adminpages/orders.php:945 adminpages/orders.php:974
|
2715 |
#: adminpages/orders.php:1111 adminpages/orders.php:1142
|
@@ -2717,7 +2741,7 @@ msgstr ""
|
|
2717 |
msgid "Transaction IDs"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: adminpages/orders.php:
|
2721 |
#: adminpages/orders.php:933 adminpages/orders.php:943
|
2722 |
#: adminpages/orders.php:972 adminpages/orders.php:1001
|
2723 |
#: adminpages/orders.php:1141 adminpages/orders.php:1172
|
@@ -2725,7 +2749,11 @@ msgstr ""
|
|
2725 |
msgid "deleted"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: adminpages/orders.php:
|
|
|
|
|
|
|
|
|
2729 |
#: adminpages/orders.php:956 adminpages/orders.php:974
|
2730 |
#: adminpages/orders.php:984 adminpages/orders.php:1013
|
2731 |
#: adminpages/orders.php:1042 adminpages/orders.php:1192
|
@@ -2733,7 +2761,7 @@ msgstr ""
|
|
2733 |
msgid "Subscription"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: adminpages/orders.php:
|
2737 |
#: adminpages/orders.php:967 adminpages/orders.php:985
|
2738 |
#: adminpages/orders.php:995 adminpages/orders.php:998
|
2739 |
#: adminpages/orders.php:1027 adminpages/orders.php:1056
|
@@ -2745,19 +2773,19 @@ msgid ""
|
|
2745 |
"want to delete order %s?"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: adminpages/orders.php:
|
2749 |
#: adminpages/orders.php:1059 adminpages/orders.php:1215
|
2750 |
#: adminpages/orders.php:1249 adminpages/orders.php:1255
|
2751 |
msgid "print"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: adminpages/orders.php:
|
2755 |
#: adminpages/orders.php:1062 adminpages/orders.php:1219
|
2756 |
#: adminpages/orders.php:1253 adminpages/orders.php:1259
|
2757 |
msgid "email"
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: adminpages/orders.php:
|
2761 |
#: adminpages/orders.php:977 adminpages/orders.php:995
|
2762 |
#: adminpages/orders.php:1005 adminpages/orders.php:1008
|
2763 |
#: adminpages/orders.php:1043 adminpages/orders.php:1072
|
@@ -3075,7 +3103,7 @@ msgstr ""
|
|
3075 |
msgid "Sales Tax"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: adminpages/paymentsettings.php:205 pages/billing.php:
|
3079 |
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:205
|
3080 |
#: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
|
3081 |
#: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
|
@@ -3518,7 +3546,7 @@ msgid ""
|
|
3518 |
"site's plugin page."
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#: classes/class.memberorder.php:
|
3522 |
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
3523 |
#: classes/class.memberorder.php:573 classes/class.memberorder.php:644
|
3524 |
#: classes/class.memberorder.php:697 classes/class.memberorder.php:699
|
@@ -3533,11 +3561,13 @@ msgid ""
|
|
3533 |
"active."
|
3534 |
msgstr ""
|
3535 |
|
3536 |
-
#: classes/class.memberorder.php:
|
|
|
3537 |
msgid "User Email"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: classes/class.memberorder.php:
|
|
|
3541 |
msgid "User Display Name"
|
3542 |
msgstr ""
|
3543 |
|
@@ -3549,6 +3579,7 @@ msgstr ""
|
|
3549 |
#: classes/class.pmproemail.php:143 classes/class.pmproemail.php:120
|
3550 |
#: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
|
3551 |
#: classes/class.pmproemail.php:134 classes/class.pmproemail.php:136
|
|
|
3552 |
#, php-format
|
3553 |
msgid "Your membership at %s has been CANCELLED"
|
3554 |
msgstr ""
|
@@ -3556,7 +3587,7 @@ msgstr ""
|
|
3556 |
#: classes/class.pmproemail.php:176 classes/class.pmproemail.php:142
|
3557 |
#: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
|
3558 |
#: classes/class.pmproemail.php:156 classes/class.pmproemail.php:166
|
3559 |
-
#: classes/class.pmproemail.php:169
|
3560 |
#, php-format
|
3561 |
msgid "Membership for %s at %s has been CANCELLED"
|
3562 |
msgstr ""
|
@@ -3565,6 +3596,7 @@ msgstr ""
|
|
3565 |
#: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
|
3566 |
#: classes/class.pmproemail.php:178 classes/class.pmproemail.php:187
|
3567 |
#: classes/class.pmproemail.php:207 classes/class.pmproemail.php:212
|
|
|
3568 |
#, php-format
|
3569 |
msgid "Your membership confirmation for %s"
|
3570 |
msgstr ""
|
@@ -3574,7 +3606,7 @@ msgstr ""
|
|
3574 |
#: classes/class.pmproemail.php:385 classes/class.pmproemail.php:703
|
3575 |
#: classes/class.pmproemail.php:705
|
3576 |
#: classes/gateways/class.pmprogateway_braintree.php:489
|
3577 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
3578 |
#: pages/checkout.php:76 pages/checkout.php:498 pages/confirmation.php:58
|
3579 |
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
3580 |
#: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
|
@@ -3584,18 +3616,22 @@ msgstr ""
|
|
3584 |
#: classes/class.pmproemail.php:240 classes/class.pmproemail.php:246
|
3585 |
#: classes/class.pmproemail.php:249 classes/class.pmproemail.php:258
|
3586 |
#: classes/class.pmproemail.php:260 classes/class.pmproemail.php:269
|
3587 |
-
#: classes/class.pmproemail.php:
|
3588 |
-
#: classes/class.pmproemail.php:
|
3589 |
-
#: classes/class.pmproemail.php:
|
3590 |
-
#: classes/class.pmproemail.php:
|
3591 |
-
#: classes/class.pmproemail.php:
|
3592 |
-
#: classes/class.pmproemail.php:
|
3593 |
-
#: classes/class.pmproemail.php:
|
3594 |
-
#: classes/class.pmproemail.php:
|
3595 |
-
#: classes/class.pmproemail.php:
|
3596 |
-
#: classes/class.pmproemail.php:
|
3597 |
-
#: classes/class.pmproemail.php:
|
3598 |
-
#: classes/class.pmproemail.php:
|
|
|
|
|
|
|
|
|
3599 |
#: classes/gateways/class.pmprogateway_braintree.php:349
|
3600 |
#: classes/gateways/class.pmprogateway_braintree.php:362
|
3601 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
@@ -3619,7 +3655,8 @@ msgstr ""
|
|
3619 |
#: classes/gateways/class.pmprogateway_stripe.php:611
|
3620 |
#: classes/gateways/class.pmprogateway_stripe.php:638
|
3621 |
#: classes/gateways/class.pmprogateway_stripe.php:644
|
3622 |
-
#: classes/gateways/class.pmprogateway_stripe.php:660
|
|
|
3623 |
#: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:70
|
3624 |
#: pages/checkout.php:75 pages/checkout.php:76 pages/checkout.php:77
|
3625 |
#: pages/checkout.php:78 pages/checkout.php:83 pages/checkout.php:85
|
@@ -3638,14 +3675,15 @@ msgstr ""
|
|
3638 |
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
3639 |
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
|
3640 |
#: classes/class.pmproemail.php:285 classes/class.pmproemail.php:294
|
3641 |
-
#: classes/class.pmproemail.php:
|
3642 |
-
#: classes/class.pmproemail.php:
|
3643 |
-
#: classes/class.pmproemail.php:
|
3644 |
-
#: classes/class.pmproemail.php:
|
|
|
3645 |
#: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
|
3646 |
#: classes/class.pmproemail.php:654 classes/class.pmproemail.php:663
|
3647 |
#: classes/class.pmproemail.php:665 classes/class.pmproemail.php:685
|
3648 |
-
#: classes/class.pmproemail.php:705
|
3649 |
#, php-format
|
3650 |
msgid "This membership will expire on %s."
|
3651 |
msgstr ""
|
@@ -3654,18 +3692,21 @@ msgstr ""
|
|
3654 |
#: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
|
3655 |
#: classes/class.pmproemail.php:278 classes/class.pmproemail.php:287
|
3656 |
#: classes/class.pmproemail.php:307 classes/class.pmproemail.php:316
|
|
|
3657 |
#, php-format
|
3658 |
msgid "Member Checkout for %s at %s"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
#: classes/class.pmproemail.php:414 classes/class.pmproemail.php:375
|
3662 |
#: classes/class.pmproemail.php:395 classes/class.pmproemail.php:407
|
|
|
3663 |
#, php-format
|
3664 |
msgid "Your billing information has been updated at %s"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:428
|
3668 |
#: classes/class.pmproemail.php:448 classes/class.pmproemail.php:461
|
|
|
3669 |
#, php-format
|
3670 |
msgid "Billing information has been updated for %s at %s"
|
3671 |
msgstr ""
|
@@ -3674,6 +3715,7 @@ msgstr ""
|
|
3674 |
#: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
|
3675 |
#: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
|
3676 |
#: classes/class.pmproemail.php:496 classes/class.pmproemail.php:510
|
|
|
3677 |
#, php-format
|
3678 |
msgid "Membership Payment Failed at %s"
|
3679 |
msgstr ""
|
@@ -3682,6 +3724,7 @@ msgstr ""
|
|
3682 |
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
|
3683 |
#: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
|
3684 |
#: classes/class.pmproemail.php:542 classes/class.pmproemail.php:557
|
|
|
3685 |
#, php-format
|
3686 |
msgid "Membership Payment Failed For %s at %s"
|
3687 |
msgstr ""
|
@@ -3689,7 +3732,7 @@ msgstr ""
|
|
3689 |
#: classes/class.pmproemail.php:612 classes/class.pmproemail.php:508
|
3690 |
#: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
|
3691 |
#: classes/class.pmproemail.php:569 classes/class.pmproemail.php:589
|
3692 |
-
#: classes/class.pmproemail.php:605
|
3693 |
#, php-format
|
3694 |
msgid "Credit Card on File Expiring Soon at %s"
|
3695 |
msgstr ""
|
@@ -3698,7 +3741,7 @@ msgstr ""
|
|
3698 |
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
3699 |
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
|
3700 |
#: classes/class.pmproemail.php:619 classes/class.pmproemail.php:639
|
3701 |
-
#: classes/class.pmproemail.php:656
|
3702 |
#, php-format
|
3703 |
msgid "INVOICE for %s membership"
|
3704 |
msgstr ""
|
@@ -3707,7 +3750,7 @@ msgstr ""
|
|
3707 |
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
3708 |
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
|
3709 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:710
|
3710 |
-
#: classes/class.pmproemail.php:733
|
3711 |
#, php-format
|
3712 |
msgid "Your trial at %s is ending soon"
|
3713 |
msgstr ""
|
@@ -3716,7 +3759,7 @@ msgstr ""
|
|
3716 |
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
3717 |
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
|
3718 |
#: classes/class.pmproemail.php:724 classes/class.pmproemail.php:744
|
3719 |
-
#: classes/class.pmproemail.php:769
|
3720 |
#, php-format
|
3721 |
msgid "Your membership at %s has ended"
|
3722 |
msgstr ""
|
@@ -3725,7 +3768,7 @@ msgstr ""
|
|
3725 |
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
3726 |
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
|
3727 |
#: classes/class.pmproemail.php:749 classes/class.pmproemail.php:769
|
3728 |
-
#: classes/class.pmproemail.php:796
|
3729 |
#, php-format
|
3730 |
msgid "Your membership at %s will end soon"
|
3731 |
msgstr ""
|
@@ -3734,18 +3777,19 @@ msgstr ""
|
|
3734 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
3735 |
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
|
3736 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:789
|
3737 |
-
#: classes/class.pmproemail.php:818
|
3738 |
#, php-format
|
3739 |
msgid "Your membership at %s has been changed"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: classes/class.pmproemail.php:830 classes/class.pmproemail.php:
|
3743 |
#: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
|
3744 |
#: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
|
3745 |
#: classes/class.pmproemail.php:793 classes/class.pmproemail.php:800
|
3746 |
#: classes/class.pmproemail.php:809 classes/class.pmproemail.php:810
|
3747 |
#: classes/class.pmproemail.php:811 classes/class.pmproemail.php:823
|
3748 |
#: classes/class.pmproemail.php:830 classes/class.pmproemail.php:863
|
|
|
3749 |
#, php-format
|
3750 |
msgid "The new level is %s"
|
3751 |
msgstr ""
|
@@ -3754,11 +3798,11 @@ msgstr ""
|
|
3754 |
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
3755 |
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
|
3756 |
#: classes/class.pmproemail.php:775 classes/class.pmproemail.php:795
|
3757 |
-
#: classes/class.pmproemail.php:825
|
3758 |
msgid "Your membership has been cancelled"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: classes/class.pmproemail.php:836 classes/class.pmproemail.php:
|
3762 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
3763 |
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
3764 |
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
|
@@ -3768,11 +3812,12 @@ msgstr ""
|
|
3768 |
#: classes/class.pmproemail.php:815 classes/class.pmproemail.php:816
|
3769 |
#: classes/class.pmproemail.php:817 classes/class.pmproemail.php:829
|
3770 |
#: classes/class.pmproemail.php:836 classes/class.pmproemail.php:869
|
|
|
3771 |
#, php-format
|
3772 |
msgid "This membership will expire on %s"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: classes/class.pmproemail.php:840 classes/class.pmproemail.php:
|
3776 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
3777 |
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
3778 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
|
@@ -3782,32 +3827,46 @@ msgstr ""
|
|
3782 |
#: classes/class.pmproemail.php:819 classes/class.pmproemail.php:820
|
3783 |
#: classes/class.pmproemail.php:821 classes/class.pmproemail.php:833
|
3784 |
#: classes/class.pmproemail.php:840 classes/class.pmproemail.php:873
|
|
|
3785 |
msgid "This membership does not expire"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: classes/class.pmproemail.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3789 |
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
3790 |
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
|
3791 |
#: classes/class.pmproemail.php:806 classes/class.pmproemail.php:807
|
3792 |
#: classes/class.pmproemail.php:826 classes/class.pmproemail.php:859
|
|
|
3793 |
#, php-format
|
3794 |
msgid "Membership for %s at %s has been changed"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#: classes/class.pmproemail.php:
|
3798 |
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
|
3799 |
#: classes/class.pmproemail.php:812 classes/class.pmproemail.php:813
|
3800 |
#: classes/class.pmproemail.php:832 classes/class.pmproemail.php:865
|
|
|
3801 |
msgid "Membership has been cancelled"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#: classes/class.pmproemail.php:
|
3805 |
#: classes/class.pmproemail.php:849 classes/class.pmproemail.php:850
|
3806 |
#: classes/class.pmproemail.php:869 classes/class.pmproemail.php:904
|
|
|
3807 |
msgid "Invoice for Order #: "
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: classes/class.pmproemail.php:
|
|
|
3811 |
msgid ""
|
3812 |
"<p>An administrator at !!sitename!! has changed your membership level.</p>\n"
|
3813 |
"\n"
|
@@ -3913,7 +3972,7 @@ msgid ""
|
|
3913 |
msgstr ""
|
3914 |
|
3915 |
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
3916 |
-
#: paid-memberships-pro.php:
|
3917 |
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
3918 |
#: paid-memberships-pro.php:122 paid-memberships-pro.php:123
|
3919 |
#: paid-memberships-pro.php:130 paid-memberships-pro.php:131
|
@@ -4003,7 +4062,7 @@ msgid ""
|
|
4003 |
msgstr ""
|
4004 |
|
4005 |
#: classes/gateways/class.pmprogateway_braintree.php:220
|
4006 |
-
#: paid-memberships-pro.php:
|
4007 |
#: classes/gateways/class.pmprogateway_braintree.php:63
|
4008 |
#: classes/gateways/class.pmprogateway_braintree.php:76
|
4009 |
#: classes/gateways/class.pmprogateway_braintree.php:77
|
@@ -4086,7 +4145,7 @@ msgid "Client-Side Encryption Key"
|
|
4086 |
msgstr ""
|
4087 |
|
4088 |
#: classes/gateways/class.pmprogateway_braintree.php:313
|
4089 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4090 |
#: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
|
4091 |
#: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
|
4092 |
#: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
|
@@ -4109,6 +4168,7 @@ msgstr ""
|
|
4109 |
#: classes/gateways/class.pmprogateway_stripe.php:257
|
4110 |
#: classes/gateways/class.pmprogateway_stripe.php:289
|
4111 |
#: classes/gateways/class.pmprogateway_stripe.php:305
|
|
|
4112 |
msgid "Web Hook URL"
|
4113 |
msgstr ""
|
4114 |
|
@@ -4126,7 +4186,7 @@ msgid "To fully integrate with Braintree, be sure to set your Web Hook URL to"
|
|
4126 |
msgstr ""
|
4127 |
|
4128 |
#: classes/gateways/class.pmprogateway_braintree.php:434
|
4129 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4130 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
4131 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
4132 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -4150,7 +4210,8 @@ msgstr ""
|
|
4150 |
#: classes/gateways/class.pmprogateway_stripe.php:499
|
4151 |
#: classes/gateways/class.pmprogateway_stripe.php:526
|
4152 |
#: classes/gateways/class.pmprogateway_stripe.php:561
|
4153 |
-
#: classes/gateways/class.pmprogateway_stripe.php:577
|
|
|
4154 |
#: pages/checkout.php:476 pages/checkout.php:478 pages/checkout.php:485
|
4155 |
#: pages/checkout.php:493 pages/checkout.php:494 pages/checkout.php:500
|
4156 |
#: pages/checkout.php:501 pages/checkout.php:503 pages/checkout.php:510
|
@@ -4159,7 +4220,7 @@ msgid "Payment Information"
|
|
4159 |
msgstr ""
|
4160 |
|
4161 |
#: classes/gateways/class.pmprogateway_braintree.php:435
|
4162 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4163 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
4164 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
4165 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
@@ -4183,7 +4244,8 @@ msgstr ""
|
|
4183 |
#: classes/gateways/class.pmprogateway_stripe.php:500
|
4184 |
#: classes/gateways/class.pmprogateway_stripe.php:527
|
4185 |
#: classes/gateways/class.pmprogateway_stripe.php:562
|
4186 |
-
#: classes/gateways/class.pmprogateway_stripe.php:578
|
|
|
4187 |
#: pages/checkout.php:476 pages/checkout.php:478 pages/checkout.php:485
|
4188 |
#: pages/checkout.php:493 pages/checkout.php:494 pages/checkout.php:500
|
4189 |
#: pages/checkout.php:502 pages/checkout.php:504 pages/checkout.php:511
|
@@ -4193,7 +4255,7 @@ msgid "We Accept %s"
|
|
4193 |
msgstr ""
|
4194 |
|
4195 |
#: classes/gateways/class.pmprogateway_braintree.php:455
|
4196 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4197 |
#: pages/checkout.php:459 classes/gateways/class.pmprogateway_braintree.php:303
|
4198 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
4199 |
#: classes/gateways/class.pmprogateway_braintree.php:318
|
@@ -4216,7 +4278,8 @@ msgstr ""
|
|
4216 |
#: classes/gateways/class.pmprogateway_stripe.php:565
|
4217 |
#: classes/gateways/class.pmprogateway_stripe.php:592
|
4218 |
#: classes/gateways/class.pmprogateway_stripe.php:609
|
4219 |
-
#: classes/gateways/class.pmprogateway_stripe.php:625
|
|
|
4220 |
#: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
|
4221 |
#: pages/billing.php:263 pages/billing.php:305 pages/billing.php:311
|
4222 |
#: pages/billing.php:312 pages/billing.php:313 pages/billing.php:314
|
@@ -4227,7 +4290,7 @@ msgstr ""
|
|
4227 |
msgid "Card Number"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
-
#: classes/gateways/class.pmprogateway_braintree.php:483 pages/billing.php:
|
4231 |
#: classes/gateways/class.pmprogateway_braintree.php:340
|
4232 |
#: classes/gateways/class.pmprogateway_braintree.php:353
|
4233 |
#: classes/gateways/class.pmprogateway_braintree.php:355
|
@@ -4261,7 +4324,7 @@ msgid "CVV"
|
|
4261 |
msgstr ""
|
4262 |
|
4263 |
#: classes/gateways/class.pmprogateway_braintree.php:484
|
4264 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4265 |
#: pages/checkout.php:493 classes/gateways/class.pmprogateway_braintree.php:341
|
4266 |
#: classes/gateways/class.pmprogateway_braintree.php:354
|
4267 |
#: classes/gateways/class.pmprogateway_braintree.php:356
|
@@ -4284,7 +4347,8 @@ msgstr ""
|
|
4284 |
#: classes/gateways/class.pmprogateway_stripe.php:603
|
4285 |
#: classes/gateways/class.pmprogateway_stripe.php:630
|
4286 |
#: classes/gateways/class.pmprogateway_stripe.php:639
|
4287 |
-
#: classes/gateways/class.pmprogateway_stripe.php:655
|
|
|
4288 |
#: pages/billing.php:286 pages/billing.php:295 pages/billing.php:298
|
4289 |
#: pages/billing.php:302 pages/billing.php:344 pages/billing.php:352
|
4290 |
#: pages/billing.php:353 pages/billing.php:355 pages/billing.php:358
|
@@ -4297,7 +4361,7 @@ msgid "what's this?"
|
|
4297 |
msgstr ""
|
4298 |
|
4299 |
#: classes/gateways/class.pmprogateway_braintree.php:491
|
4300 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4301 |
#: pages/checkout.php:500 classes/gateways/class.pmprogateway_braintree.php:351
|
4302 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
4303 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
@@ -4321,7 +4385,8 @@ msgstr ""
|
|
4321 |
#: classes/gateways/class.pmprogateway_stripe.php:613
|
4322 |
#: classes/gateways/class.pmprogateway_stripe.php:640
|
4323 |
#: classes/gateways/class.pmprogateway_stripe.php:646
|
4324 |
-
#: classes/gateways/class.pmprogateway_stripe.php:662
|
|
|
4325 |
#: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
|
4326 |
#: pages/checkout.php:88 pages/checkout.php:95 pages/checkout.php:98
|
4327 |
#: pages/checkout.php:500 pages/checkout.php:551 pages/checkout.php:567
|
@@ -4359,7 +4424,7 @@ msgid "Payment error: Please contact the webmaster (braintree-load-error)"
|
|
4359 |
msgstr ""
|
4360 |
|
4361 |
#: classes/gateways/class.pmprogateway_braintree.php:554
|
4362 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
4363 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
4364 |
#: classes/gateways/class.pmprogateway_braintree.php:406
|
4365 |
#: classes/gateways/class.pmprogateway_braintree.php:419
|
@@ -4385,6 +4450,7 @@ msgstr ""
|
|
4385 |
#: classes/gateways/class.pmprogateway_stripe.php:1105
|
4386 |
#: classes/gateways/class.pmprogateway_stripe.php:1123
|
4387 |
#: classes/gateways/class.pmprogateway_stripe.php:1139
|
|
|
4388 |
#: classes/gateways/class.pmprogateway_stripe.php:1143
|
4389 |
#: classes/gateways/class.pmprogateway_stripe.php:1176
|
4390 |
msgid "Unknown error: Initial payment failed."
|
@@ -4563,7 +4629,7 @@ msgid "Could not find the subscription."
|
|
4563 |
msgstr ""
|
4564 |
|
4565 |
#: classes/gateways/class.pmprogateway_check.php:49
|
4566 |
-
#: paid-memberships-pro.php:
|
4567 |
#: adminpages/orders.php:449 adminpages/paymentsettings.php:157
|
4568 |
#: adminpages/paymentsettings.php:159
|
4569 |
#: classes/gateways/class.pmprogateway_check.php:48
|
@@ -4687,7 +4753,7 @@ msgid ""
|
|
4687 |
msgstr ""
|
4688 |
|
4689 |
#: classes/gateways/class.pmprogateway_paypal.php:68
|
4690 |
-
#: paid-memberships-pro.php:
|
4691 |
#: classes/gateways/class.pmprogateway_paypal.php:57
|
4692 |
#: classes/gateways/class.pmprogateway_paypal.php:68
|
4693 |
#: paid-memberships-pro.php:119 paid-memberships-pro.php:120
|
@@ -4831,7 +4897,7 @@ msgid ""
|
|
4831 |
msgstr ""
|
4832 |
|
4833 |
#: classes/gateways/class.pmprogateway_paypal.php:201
|
4834 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
4835 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:229
|
4836 |
#: pages/checkout.php:263 classes/gateways/class.pmprogateway_paypal.php:178
|
4837 |
#: classes/gateways/class.pmprogateway_paypal.php:201
|
@@ -4849,7 +4915,7 @@ msgid "Check Out with PayPal"
|
|
4849 |
msgstr ""
|
4850 |
|
4851 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
4852 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
4853 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:234
|
4854 |
#: pages/checkout.php:598 classes/gateways/class.pmprogateway_paypal.php:184
|
4855 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
@@ -4868,7 +4934,7 @@ msgid "Submit and Check Out"
|
|
4868 |
msgstr ""
|
4869 |
|
4870 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
4871 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
4872 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:234
|
4873 |
#: classes/gateways/class.pmprogateway_twocheckout.php:203
|
4874 |
#: pages/checkout.php:598 classes/gateways/class.pmprogateway_paypal.php:184
|
@@ -4891,7 +4957,7 @@ msgid "Submit and Confirm"
|
|
4891 |
msgstr ""
|
4892 |
|
4893 |
#: classes/gateways/class.pmprogateway_paypal.php:631
|
4894 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
4895 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:575
|
4896 |
#: classes/gateways/class.pmprogateway_paypal.php:385
|
4897 |
#: classes/gateways/class.pmprogateway_paypal.php:605
|
@@ -4919,7 +4985,7 @@ msgid ""
|
|
4919 |
msgstr ""
|
4920 |
|
4921 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:84
|
4922 |
-
#: paid-memberships-pro.php:
|
4923 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:63
|
4924 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:73
|
4925 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:84
|
@@ -4940,8 +5006,8 @@ msgstr ""
|
|
4940 |
msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
|
4941 |
msgstr ""
|
4942 |
|
4943 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
4944 |
-
#: classes/gateways/class.pmprogateway_paypalexpress.php:
|
4945 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:268
|
4946 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:278
|
4947 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
@@ -4958,7 +5024,7 @@ msgid "The PayPal Token was lost."
|
|
4958 |
msgstr ""
|
4959 |
|
4960 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:71
|
4961 |
-
#: paid-memberships-pro.php:
|
4962 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
4963 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:71
|
4964 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:122
|
@@ -4983,7 +5049,7 @@ msgid "User requested cancellation"
|
|
4983 |
msgstr ""
|
4984 |
|
4985 |
#: classes/gateways/class.pmprogateway_stripe.php:201
|
4986 |
-
#: paid-memberships-pro.php:
|
4987 |
#: classes/gateways/class.pmprogateway_stripe.php:93
|
4988 |
#: classes/gateways/class.pmprogateway_stripe.php:94
|
4989 |
#: classes/gateways/class.pmprogateway_stripe.php:104
|
@@ -5055,12 +5121,7 @@ msgstr ""
|
|
5055 |
msgid "Secret Key"
|
5056 |
msgstr ""
|
5057 |
|
5058 |
-
#: classes/gateways/class.pmprogateway_stripe.php:286
|
5059 |
#: classes/gateways/class.pmprogateway_stripe.php:285
|
5060 |
-
msgid "Your Secret Key appears incorrect."
|
5061 |
-
msgstr ""
|
5062 |
-
|
5063 |
-
#: classes/gateways/class.pmprogateway_stripe.php:294
|
5064 |
#: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
|
5065 |
#: adminpages/paymentsettings.php:432
|
5066 |
#: classes/gateways/class.pmprogateway_stripe.php:169
|
@@ -5074,10 +5135,11 @@ msgstr ""
|
|
5074 |
#: classes/gateways/class.pmprogateway_stripe.php:245
|
5075 |
#: classes/gateways/class.pmprogateway_stripe.php:277
|
5076 |
#: classes/gateways/class.pmprogateway_stripe.php:293
|
|
|
5077 |
msgid "Show Billing Address Fields"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5081 |
#: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
|
5082 |
#: classes/gateways/class.pmprogateway_stripe.php:176
|
5083 |
#: classes/gateways/class.pmprogateway_stripe.php:177
|
@@ -5090,13 +5152,14 @@ msgstr ""
|
|
5090 |
#: classes/gateways/class.pmprogateway_stripe.php:252
|
5091 |
#: classes/gateways/class.pmprogateway_stripe.php:284
|
5092 |
#: classes/gateways/class.pmprogateway_stripe.php:300
|
|
|
5093 |
msgid ""
|
5094 |
"Stripe doesn't require billing address fields. Choose 'No' to hide them on "
|
5095 |
"the checkout page.<br /><strong>If No, make sure you disable address "
|
5096 |
"verification in the Stripe dashboard settings.</strong>"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5100 |
#: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
|
5101 |
#: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
|
5102 |
#: classes/gateways/class.pmprogateway_stripe.php:184
|
@@ -5110,26 +5173,29 @@ msgstr ""
|
|
5110 |
#: classes/gateways/class.pmprogateway_stripe.php:260
|
5111 |
#: classes/gateways/class.pmprogateway_stripe.php:292
|
5112 |
#: classes/gateways/class.pmprogateway_stripe.php:308
|
|
|
5113 |
msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
|
5114 |
msgstr ""
|
5115 |
|
5116 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5117 |
#: classes/gateways/class.pmprogateway_stripe.php:638
|
5118 |
-
#: classes/gateways/class.pmprogateway_stripe.php:654
|
|
|
5119 |
msgid "Security Code (CVC)"
|
5120 |
msgstr ""
|
5121 |
|
5122 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5123 |
#: classes/gateways/class.pmprogateway_stripe.php:703
|
5124 |
#: classes/gateways/class.pmprogateway_stripe.php:710
|
5125 |
#: classes/gateways/class.pmprogateway_stripe.php:726
|
|
|
5126 |
#, php-format
|
5127 |
msgid ""
|
5128 |
"%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may "
|
5129 |
"have been deleted."
|
5130 |
msgstr ""
|
5131 |
|
5132 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5133 |
#: classes/gateways/class.pmprogateway_stripe.php:567
|
5134 |
#: classes/gateways/class.pmprogateway_stripe.php:568
|
5135 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
@@ -5144,10 +5210,11 @@ msgstr ""
|
|
5144 |
#: classes/gateways/class.pmprogateway_stripe.php:710
|
5145 |
#: classes/gateways/class.pmprogateway_stripe.php:717
|
5146 |
#: classes/gateways/class.pmprogateway_stripe.php:733
|
|
|
5147 |
msgid "Subscription Updates"
|
5148 |
msgstr ""
|
5149 |
|
5150 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5151 |
#: classes/gateways/class.pmprogateway_stripe.php:571
|
5152 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
5153 |
#: classes/gateways/class.pmprogateway_stripe.php:582
|
@@ -5162,12 +5229,13 @@ msgstr ""
|
|
5162 |
#: classes/gateways/class.pmprogateway_stripe.php:714
|
5163 |
#: classes/gateways/class.pmprogateway_stripe.php:721
|
5164 |
#: classes/gateways/class.pmprogateway_stripe.php:737
|
|
|
5165 |
msgid ""
|
5166 |
"Subscription updates, allow you to change the member's subscription values "
|
5167 |
"at predefined times. Be sure to click Update Profile after making changes."
|
5168 |
msgstr ""
|
5169 |
|
5170 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5171 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
5172 |
#: classes/gateways/class.pmprogateway_stripe.php:574
|
5173 |
#: classes/gateways/class.pmprogateway_stripe.php:584
|
@@ -5182,12 +5250,13 @@ msgstr ""
|
|
5182 |
#: classes/gateways/class.pmprogateway_stripe.php:716
|
5183 |
#: classes/gateways/class.pmprogateway_stripe.php:723
|
5184 |
#: classes/gateways/class.pmprogateway_stripe.php:739
|
|
|
5185 |
msgid ""
|
5186 |
"Subscription updates, allow you to change the member's subscription values "
|
5187 |
"at predefined times. Be sure to click Update User after making changes."
|
5188 |
msgstr ""
|
5189 |
|
5190 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5191 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
5192 |
#: classes/gateways/class.pmprogateway_stripe.php:579
|
5193 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
@@ -5201,7 +5270,8 @@ msgstr ""
|
|
5201 |
#: classes/gateways/class.pmprogateway_stripe.php:694
|
5202 |
#: classes/gateways/class.pmprogateway_stripe.php:721
|
5203 |
#: classes/gateways/class.pmprogateway_stripe.php:728
|
5204 |
-
#: classes/gateways/class.pmprogateway_stripe.php:744
|
|
|
5205 |
#: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
|
5206 |
#: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
|
5207 |
#: pages/billing.php:363 pages/billing.php:364 pages/billing.php:370
|
@@ -5210,14 +5280,15 @@ msgstr ""
|
|
5210 |
msgid "Update"
|
5211 |
msgstr ""
|
5212 |
|
5213 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5214 |
#: classes/gateways/class.pmprogateway_stripe.php:1119
|
5215 |
#: classes/gateways/class.pmprogateway_stripe.php:1135
|
|
|
5216 |
#: classes/gateways/class.pmprogateway_stripe.php:1172
|
5217 |
msgid "Payment error: Please contact the webmaster (stripe-load-error)"
|
5218 |
msgstr ""
|
5219 |
|
5220 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5221 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
5222 |
#: classes/gateways/class.pmprogateway_stripe.php:192
|
5223 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
@@ -5244,7 +5315,7 @@ msgstr ""
|
|
5244 |
msgid "Error creating customer record with Stripe:"
|
5245 |
msgstr ""
|
5246 |
|
5247 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5248 |
#: classes/gateways/class.pmprogateway_stripe.php:1275
|
5249 |
#: classes/gateways/class.pmprogateway_stripe.php:1303
|
5250 |
#: classes/gateways/class.pmprogateway_stripe.php:1313
|
@@ -5261,7 +5332,7 @@ msgstr ""
|
|
5261 |
msgid "Error getting subscription with Stripe:"
|
5262 |
msgstr ""
|
5263 |
|
5264 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5265 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
5266 |
#: classes/gateways/class.pmprogateway_stripe.php:279
|
5267 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
@@ -5296,7 +5367,7 @@ msgstr ""
|
|
5296 |
msgid "Error creating plan with Stripe:"
|
5297 |
msgstr ""
|
5298 |
|
5299 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5300 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
5301 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
5302 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
@@ -5326,7 +5397,7 @@ msgstr ""
|
|
5326 |
msgid "Error subscribing customer to plan with Stripe:"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5330 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
5331 |
#: classes/gateways/class.pmprogateway_stripe.php:770
|
5332 |
#: classes/gateways/class.pmprogateway_stripe.php:780
|
@@ -5341,10 +5412,11 @@ msgstr ""
|
|
5341 |
#: classes/gateways/class.pmprogateway_stripe.php:914
|
5342 |
#: classes/gateways/class.pmprogateway_stripe.php:1698
|
5343 |
#: classes/gateways/class.pmprogateway_stripe.php:1714
|
|
|
5344 |
msgid "Could not cancel the old subscription. Updates have not been processed."
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5348 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
5349 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
5350 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
@@ -5368,10 +5440,11 @@ msgstr ""
|
|
5368 |
#: classes/gateways/class.pmprogateway_stripe.php:1752
|
5369 |
#: classes/gateways/class.pmprogateway_stripe.php:1801
|
5370 |
#: classes/gateways/class.pmprogateway_stripe.php:1817
|
|
|
5371 |
msgid "Could not cancel old subscription."
|
5372 |
msgstr ""
|
5373 |
|
5374 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5375 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
5376 |
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
5377 |
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
@@ -5392,10 +5465,11 @@ msgstr ""
|
|
5392 |
#: classes/gateways/class.pmprogateway_stripe.php:1769
|
5393 |
#: classes/gateways/class.pmprogateway_stripe.php:1818
|
5394 |
#: classes/gateways/class.pmprogateway_stripe.php:1834
|
|
|
5395 |
msgid "Could not find the customer."
|
5396 |
msgstr ""
|
5397 |
|
5398 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5399 |
#: classes/gateways/class.pmprogateway_stripe.php:1836
|
5400 |
#: classes/gateways/class.pmprogateway_stripe.php:1837
|
5401 |
#: classes/gateways/class.pmprogateway_stripe.php:1847
|
@@ -5403,10 +5477,11 @@ msgstr ""
|
|
5403 |
#: classes/gateways/class.pmprogateway_stripe.php:1921
|
5404 |
#: classes/gateways/class.pmprogateway_stripe.php:1978
|
5405 |
#: classes/gateways/class.pmprogateway_stripe.php:1994
|
|
|
5406 |
msgid "Error: "
|
5407 |
msgstr ""
|
5408 |
|
5409 |
-
#: classes/gateways/class.pmprogateway_stripe.php:
|
5410 |
#: classes/gateways/class.pmprogateway_stripe.php:1849
|
5411 |
#: classes/gateways/class.pmprogateway_stripe.php:1850
|
5412 |
#: classes/gateways/class.pmprogateway_stripe.php:1860
|
@@ -5414,12 +5489,13 @@ msgstr ""
|
|
5414 |
#: classes/gateways/class.pmprogateway_stripe.php:1934
|
5415 |
#: classes/gateways/class.pmprogateway_stripe.php:1991
|
5416 |
#: classes/gateways/class.pmprogateway_stripe.php:2007
|
|
|
5417 |
#, php-format
|
5418 |
msgid "Error: Unkown error while refunding charge #%s"
|
5419 |
msgstr ""
|
5420 |
|
5421 |
#: classes/gateways/class.pmprogateway_twocheckout.php:59
|
5422 |
-
#: paid-memberships-pro.php:
|
5423 |
#: classes/gateways/class.pmprogateway_twocheckout.php:53
|
5424 |
#: classes/gateways/class.pmprogateway_twocheckout.php:59
|
5425 |
#: classes/gateways/class.pmprogateway_twocheckout.php:60
|
@@ -5498,12 +5574,12 @@ msgstr ""
|
|
5498 |
msgid "Check Out with 2Checkout"
|
5499 |
msgstr ""
|
5500 |
|
5501 |
-
#: includes/addons.php:
|
5502 |
msgid ""
|
5503 |
"Important: This plugin requires a valid PMPro Plus license key to update."
|
5504 |
msgstr ""
|
5505 |
|
5506 |
-
#: includes/addons.php:
|
5507 |
msgid ""
|
5508 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
5509 |
"utm_source=wp-admin&utm_pluginlink=bulkupdate\">valid PMPro Plus License "
|
@@ -5511,22 +5587,22 @@ msgid ""
|
|
5511 |
"updated:"
|
5512 |
msgstr ""
|
5513 |
|
5514 |
-
#: includes/addons.php:
|
5515 |
msgid "Update Plugin"
|
5516 |
msgstr ""
|
5517 |
|
5518 |
-
#: includes/addons.php:
|
5519 |
msgid ""
|
5520 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
5521 |
"utm_source=wp-admin&utm_pluginlink=addon_update\">valid PMPro Plus License "
|
5522 |
"Key</a> to update PMPro Plus add ons."
|
5523 |
msgstr ""
|
5524 |
|
5525 |
-
#: includes/addons.php:
|
5526 |
msgid "Return to the PMPro Add Ons page"
|
5527 |
msgstr ""
|
5528 |
|
5529 |
-
#: includes/addons.php:
|
5530 |
msgid ""
|
5531 |
"You must enter a valid PMPro Plus License Key under Settings > PMPro License "
|
5532 |
"to update this add on."
|
@@ -6827,7 +6903,7 @@ msgstr ""
|
|
6827 |
msgid "Vietnamese Dong"
|
6828 |
msgstr ""
|
6829 |
|
6830 |
-
#: includes/filters.php:224 includes/filters.php:217
|
6831 |
msgid ""
|
6832 |
"There was a potential issue while setting the 'Profile Start Date' for a "
|
6833 |
"user's subscription at checkout. PayPal does not allow one to set a Profile "
|
@@ -6844,7 +6920,7 @@ msgid ""
|
|
6844 |
"situations."
|
6845 |
msgstr ""
|
6846 |
|
6847 |
-
#: includes/filters.php:225
|
6848 |
#, php-format
|
6849 |
msgid ""
|
6850 |
"User: %1$s<br />Email: %2$s<br />Membership Level: %3$s<br />Order #: "
|
@@ -6852,7 +6928,7 @@ msgid ""
|
|
6852 |
"Date: %6$s<br />Trial Period: %7$s<br />Trial Frequency: %8$s<br />"
|
6853 |
msgstr ""
|
6854 |
|
6855 |
-
#: includes/filters.php:227 includes/filters.php:220
|
6856 |
#, php-format
|
6857 |
msgid "Profile Start Date Issue Detected and Fixed at %s"
|
6858 |
msgstr ""
|
@@ -6863,7 +6939,8 @@ msgstr ""
|
|
6863 |
#: includes/functions.php:203 includes/functions.php:204
|
6864 |
#: includes/functions.php:207 includes/functions.php:243
|
6865 |
#: includes/functions.php:309 includes/functions.php:315
|
6866 |
-
#: includes/functions.php:320 includes/functions.php:
|
|
|
6867 |
#: includes/functions.php:455 includes/functions.php:464
|
6868 |
#, php-format
|
6869 |
msgid "The price for membership is <strong>%s</strong> now"
|
@@ -6874,53 +6951,54 @@ msgstr ""
|
|
6874 |
#: includes/functions.php:205 includes/functions.php:206
|
6875 |
#: includes/functions.php:209 includes/functions.php:245
|
6876 |
#: includes/functions.php:311 includes/functions.php:317
|
6877 |
-
#: includes/functions.php:322 includes/functions.php:
|
|
|
6878 |
#: includes/functions.php:457 includes/functions.php:466
|
6879 |
#, php-format
|
6880 |
msgid "<strong>%s</strong> now"
|
6881 |
msgstr ""
|
6882 |
|
6883 |
-
#: includes/functions.php:330
|
6884 |
#, php-format
|
6885 |
msgid " and then <strong>%1$s per %2$s for %3$d more %4$s</strong>."
|
6886 |
msgstr ""
|
6887 |
|
6888 |
-
#: includes/functions.php:332
|
6889 |
#, php-format
|
6890 |
msgid " and then <strong>%1$s every %2$d %3$s for %4$d more payments</strong>."
|
6891 |
msgstr ""
|
6892 |
|
6893 |
-
#: includes/functions.php:335
|
6894 |
#, php-format
|
6895 |
msgid " and then <strong>%1$s after %2$d %3$s</strong>."
|
6896 |
msgstr ""
|
6897 |
|
6898 |
-
#: includes/functions.php:340
|
6899 |
#, php-format
|
6900 |
msgid "The price for membership is <strong>%1$s per %2$s</strong>."
|
6901 |
msgstr ""
|
6902 |
|
6903 |
-
#: includes/functions.php:342
|
6904 |
#, php-format
|
6905 |
msgid "<strong>%1$s per %2$s</strong>."
|
6906 |
msgstr ""
|
6907 |
|
6908 |
-
#: includes/functions.php:346
|
6909 |
#, php-format
|
6910 |
msgid "The price for membership is <strong>%1$s every %2$d %3$s</strong>."
|
6911 |
msgstr ""
|
6912 |
|
6913 |
-
#: includes/functions.php:348
|
6914 |
#, php-format
|
6915 |
msgid "<strong>%1$s every %2$d %3$s</strong>."
|
6916 |
msgstr ""
|
6917 |
|
6918 |
-
#: includes/functions.php:353
|
6919 |
#, php-format
|
6920 |
msgid " and then <strong>%1$s per %2$s</strong>."
|
6921 |
msgstr ""
|
6922 |
|
6923 |
-
#: includes/functions.php:355
|
6924 |
#, php-format
|
6925 |
msgid " and then <strong>%1$s every %2$d %3$s</strong>."
|
6926 |
msgstr ""
|
@@ -6930,9 +7008,9 @@ msgstr ""
|
|
6930 |
#: includes/functions.php:260 includes/functions.php:261
|
6931 |
#: includes/functions.php:262 includes/functions.php:264
|
6932 |
#: includes/functions.php:267 includes/functions.php:271
|
6933 |
-
#: includes/functions.php:307 includes/functions.php:
|
6934 |
-
#: includes/functions.php:
|
6935 |
-
#: includes/functions.php:393 pages/levels.php:82
|
6936 |
msgid "After your initial payment, your first payment is Free."
|
6937 |
msgstr ""
|
6938 |
|
@@ -6941,9 +7019,9 @@ msgstr ""
|
|
6941 |
#: includes/functions.php:264 includes/functions.php:265
|
6942 |
#: includes/functions.php:266 includes/functions.php:268
|
6943 |
#: includes/functions.php:271 includes/functions.php:275
|
6944 |
-
#: includes/functions.php:311 includes/functions.php:
|
6945 |
-
#: includes/functions.php:
|
6946 |
-
#: includes/functions.php:397 pages/levels.php:86
|
6947 |
#, php-format
|
6948 |
msgid "After your initial payment, your first %d payments are Free."
|
6949 |
msgstr ""
|
@@ -6953,65 +7031,66 @@ msgstr ""
|
|
6953 |
#: includes/functions.php:271 includes/functions.php:272
|
6954 |
#: includes/functions.php:273 includes/functions.php:275
|
6955 |
#: includes/functions.php:278 includes/functions.php:282
|
6956 |
-
#: includes/functions.php:318 includes/functions.php:
|
6957 |
-
#: includes/functions.php:
|
6958 |
-
#: includes/functions.php:404 pages/levels.php:93
|
6959 |
#, php-format
|
6960 |
msgid "After your initial payment, your first payment will cost %s."
|
6961 |
msgstr ""
|
6962 |
|
6963 |
-
#: includes/functions.php:378
|
6964 |
#, php-format
|
6965 |
msgid "After your initial payment, your first %1$d payments will cost %2$s."
|
6966 |
msgstr ""
|
6967 |
|
|
|
6968 |
#: includes/functions.php:388 includes/functions.php:489
|
6969 |
#, php-format
|
6970 |
msgid "Customers in %1$s will be charged %2$s%% tax."
|
6971 |
msgstr ""
|
6972 |
|
6973 |
-
#: includes/functions.php:446
|
6974 |
#, php-format
|
6975 |
msgid "<strong>%1$s per %2$s for %3$d more %4$s</strong>"
|
6976 |
msgstr ""
|
6977 |
|
6978 |
-
#: includes/functions.php:448
|
6979 |
#, php-format
|
6980 |
msgid "<strong>%1$s every %2$d %3$s for %4$d more payments</strong>"
|
6981 |
msgstr ""
|
6982 |
|
6983 |
-
#: includes/functions.php:451
|
6984 |
#, php-format
|
6985 |
msgid "<strong>%1$s after %2$d %3$s</strong>"
|
6986 |
msgstr ""
|
6987 |
|
6988 |
-
#: includes/functions.php:454
|
6989 |
#, php-format
|
6990 |
msgid "<strong>%1$s every %2$s</strong>"
|
6991 |
msgstr ""
|
6992 |
|
6993 |
-
#: includes/functions.php:456
|
6994 |
#, php-format
|
6995 |
msgid "<strong>%1$s every %2$d %3$s</strong>"
|
6996 |
msgstr ""
|
6997 |
|
6998 |
-
#: includes/functions.php:478 includes/functions.php:
|
6999 |
-
#: includes/functions.php:520
|
7000 |
msgid "Trial pricing has been applied to the first payment."
|
7001 |
msgstr ""
|
7002 |
|
7003 |
-
#: includes/functions.php:480 includes/functions.php:
|
7004 |
-
#: includes/functions.php:522
|
7005 |
#, php-format
|
7006 |
msgid "Trial pricing has been applied to the first %d payments."
|
7007 |
msgstr ""
|
7008 |
|
7009 |
-
#: includes/functions.php:505
|
7010 |
#, php-format
|
7011 |
msgid "Membership expires after %1$d %2$s."
|
7012 |
msgstr ""
|
7013 |
|
7014 |
-
#: includes/functions.php:524
|
7015 |
#, php-format
|
7016 |
msgid "%1$s membership expires after %2$d %3$s"
|
7017 |
msgstr ""
|
@@ -7024,12 +7103,12 @@ msgstr ""
|
|
7024 |
#: includes/functions.php:576 includes/functions.php:592
|
7025 |
#: includes/functions.php:615 includes/functions.php:694
|
7026 |
#: includes/functions.php:760 includes/functions.php:766
|
7027 |
-
#: includes/functions.php:
|
7028 |
-
#: includes/functions.php:956
|
7029 |
msgid "User ID not found."
|
7030 |
msgstr ""
|
7031 |
|
7032 |
-
#: includes/functions.php:889
|
7033 |
msgid "No membership_id specified in pmpro_changeMembershipLevel."
|
7034 |
msgstr ""
|
7035 |
|
@@ -7042,6 +7121,7 @@ msgstr ""
|
|
7042 |
#: includes/functions.php:596 includes/functions.php:612
|
7043 |
#: includes/functions.php:635 includes/functions.php:714
|
7044 |
#: includes/functions.php:780 includes/functions.php:786
|
|
|
7045 |
#: includes/functions.php:965 includes/functions.php:967
|
7046 |
#: includes/functions.php:976
|
7047 |
msgid "Invalid level."
|
@@ -7055,8 +7135,9 @@ msgstr ""
|
|
7055 |
#: includes/functions.php:600 includes/functions.php:607
|
7056 |
#: includes/functions.php:623 includes/functions.php:646
|
7057 |
#: includes/functions.php:725 includes/functions.php:791
|
7058 |
-
#: includes/functions.php:797 includes/functions.php:
|
7059 |
-
#: includes/functions.php:
|
|
|
7060 |
msgid "not changing?"
|
7061 |
msgstr ""
|
7062 |
|
@@ -7083,14 +7164,15 @@ msgstr ""
|
|
7083 |
#: includes/functions.php:815 includes/functions.php:839
|
7084 |
#: includes/functions.php:881 includes/functions.php:887
|
7085 |
#: includes/functions.php:905 includes/functions.php:911
|
7086 |
-
#: includes/functions.php:
|
7087 |
-
#: includes/functions.php:1046
|
7088 |
msgid "Error interacting with database"
|
7089 |
msgstr ""
|
7090 |
|
7091 |
#: includes/functions.php:1067 includes/functions.php:907
|
7092 |
-
#: includes/functions.php:
|
7093 |
-
#: includes/functions.php:
|
|
|
7094 |
#, php-format
|
7095 |
msgid "Error interacting with database: %s"
|
7096 |
msgstr ""
|
@@ -7113,7 +7195,8 @@ msgstr ""
|
|
7113 |
#: includes/functions.php:920 includes/functions.php:947
|
7114 |
#: includes/functions.php:948 includes/functions.php:953
|
7115 |
#: includes/functions.php:986 includes/functions.php:987
|
7116 |
-
#: includes/functions.php:992 includes/functions.php:
|
|
|
7117 |
#: includes/functions.php:1202 includes/functions.php:1204
|
7118 |
#: includes/functions.php:1213 includes/functions.php:1237
|
7119 |
#: includes/functions.php:1241 includes/functions.php:1243
|
@@ -7128,8 +7211,9 @@ msgstr ""
|
|
7128 |
#: includes/functions.php:1173 includes/functions.php:1196
|
7129 |
#: includes/functions.php:1290 includes/functions.php:1356
|
7130 |
#: includes/functions.php:1357 includes/functions.php:1362
|
7131 |
-
#: includes/functions.php:
|
7132 |
-
#: includes/functions.php:
|
|
|
7133 |
msgid "No code was given to check."
|
7134 |
msgstr ""
|
7135 |
|
@@ -7143,9 +7227,9 @@ msgstr ""
|
|
7143 |
#: includes/functions.php:1166 includes/functions.php:1182
|
7144 |
#: includes/functions.php:1205 includes/functions.php:1299
|
7145 |
#: includes/functions.php:1365 includes/functions.php:1366
|
7146 |
-
#: includes/functions.php:1371 includes/functions.php:
|
7147 |
-
#: includes/functions.php:
|
7148 |
-
#: includes/functions.php:1629
|
7149 |
msgid "The discount code could not be found."
|
7150 |
msgstr ""
|
7151 |
|
@@ -7159,9 +7243,9 @@ msgstr ""
|
|
7159 |
#: includes/functions.php:1181 includes/functions.php:1197
|
7160 |
#: includes/functions.php:1220 includes/functions.php:1314
|
7161 |
#: includes/functions.php:1380 includes/functions.php:1381
|
7162 |
-
#: includes/functions.php:1386 includes/functions.php:
|
7163 |
-
#: includes/functions.php:
|
7164 |
-
#: includes/functions.php:1644
|
7165 |
#, php-format
|
7166 |
msgid "This discount code goes into effect on %s."
|
7167 |
msgstr ""
|
@@ -7176,9 +7260,9 @@ msgstr ""
|
|
7176 |
#: includes/functions.php:1188 includes/functions.php:1204
|
7177 |
#: includes/functions.php:1227 includes/functions.php:1321
|
7178 |
#: includes/functions.php:1387 includes/functions.php:1388
|
7179 |
-
#: includes/functions.php:1393 includes/functions.php:
|
7180 |
-
#: includes/functions.php:
|
7181 |
-
#: includes/functions.php:1651
|
7182 |
#, php-format
|
7183 |
msgid "This discount code expired on %s."
|
7184 |
msgstr ""
|
@@ -7193,9 +7277,9 @@ msgstr ""
|
|
7193 |
#: includes/functions.php:1198 includes/functions.php:1214
|
7194 |
#: includes/functions.php:1237 includes/functions.php:1331
|
7195 |
#: includes/functions.php:1397 includes/functions.php:1398
|
7196 |
-
#: includes/functions.php:1403 includes/functions.php:
|
7197 |
-
#: includes/functions.php:
|
7198 |
-
#: includes/functions.php:1661
|
7199 |
msgid "This discount code is no longer valid."
|
7200 |
msgstr ""
|
7201 |
|
@@ -7209,8 +7293,9 @@ msgstr ""
|
|
7209 |
#: includes/functions.php:1227 includes/functions.php:1250
|
7210 |
#: includes/functions.php:1344 includes/functions.php:1410
|
7211 |
#: includes/functions.php:1411 includes/functions.php:1416
|
7212 |
-
#: includes/functions.php:
|
7213 |
-
#: includes/functions.php:
|
|
|
7214 |
msgid "This discount code does not apply to this membership level."
|
7215 |
msgstr ""
|
7216 |
|
@@ -7224,9 +7309,9 @@ msgstr ""
|
|
7224 |
#: includes/functions.php:1237 includes/functions.php:1253
|
7225 |
#: includes/functions.php:1276 includes/functions.php:1370
|
7226 |
#: includes/functions.php:1436 includes/functions.php:1442
|
7227 |
-
#: includes/functions.php:1448 includes/functions.php:
|
7228 |
-
#: includes/functions.php:
|
7229 |
-
#: includes/functions.php:1718
|
7230 |
msgid "This discount code is okay."
|
7231 |
msgstr ""
|
7232 |
|
@@ -7240,9 +7325,9 @@ msgstr ""
|
|
7240 |
#: includes/functions.php:1278 includes/functions.php:1301
|
7241 |
#: includes/functions.php:1395 includes/functions.php:1397
|
7242 |
#: includes/functions.php:1463 includes/functions.php:1469
|
7243 |
-
#: includes/functions.php:1475 includes/functions.php:
|
7244 |
-
#: includes/functions.php:
|
7245 |
-
#: includes/functions.php:1745
|
7246 |
msgid "and"
|
7247 |
msgstr ""
|
7248 |
|
@@ -7257,9 +7342,10 @@ msgstr ""
|
|
7257 |
#: includes/functions.php:1501 includes/functions.php:1620
|
7258 |
#: includes/functions.php:1624 includes/functions.php:1691
|
7259 |
#: includes/functions.php:1697 includes/functions.php:1703
|
7260 |
-
#: includes/functions.php:
|
7261 |
-
#: includes/functions.php:
|
7262 |
-
#: includes/functions.php:
|
|
|
7263 |
msgid "Sign Up for !!name!! Now"
|
7264 |
msgstr ""
|
7265 |
|
@@ -7274,26 +7360,19 @@ msgstr ""
|
|
7274 |
#: includes/functions.php:1507 includes/functions.php:1626
|
7275 |
#: includes/functions.php:1630 includes/functions.php:1697
|
7276 |
#: includes/functions.php:1703 includes/functions.php:1709
|
7277 |
-
#: includes/functions.php:
|
7278 |
-
#: includes/functions.php:
|
7279 |
-
#: includes/functions.php:
|
|
|
7280 |
msgid "Please specify a level id."
|
7281 |
msgstr ""
|
7282 |
|
7283 |
-
#: includes/functions.php:1991 includes/functions.php:
|
7284 |
-
#: includes/functions.php:2047
|
7285 |
#, php-format
|
7286 |
msgid "Level #%s not found."
|
7287 |
msgstr ""
|
7288 |
|
7289 |
-
#: includes/init.php:259 includes/profile.php:48 includes/init.php:229
|
7290 |
-
#: includes/init.php:232 includes/init.php:233 includes/init.php:235
|
7291 |
-
#: includes/init.php:237 includes/init.php:245 includes/init.php:253
|
7292 |
-
#: includes/init.php:258 includes/init.php:259 includes/profile.php:37
|
7293 |
-
#: includes/profile.php:39 includes/profile.php:42 includes/profile.php:48
|
7294 |
-
msgid "None"
|
7295 |
-
msgstr ""
|
7296 |
-
|
7297 |
#: includes/license.php:54 includes/license.php:51 includes/license.php:54
|
7298 |
msgid "Your license key has been validated."
|
7299 |
msgstr ""
|
@@ -7427,12 +7506,190 @@ msgid ""
|
|
7427 |
"Only members of these levels will be able to view posts in this category."
|
7428 |
msgstr ""
|
7429 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7430 |
#: includes/profile.php:45 includes/profile.php:34 includes/profile.php:36
|
7431 |
#: includes/profile.php:39 includes/profile.php:45
|
7432 |
msgid "Current Level"
|
7433 |
msgstr ""
|
7434 |
|
7435 |
-
#: includes/profile.php:74 includes/profile.php:
|
7436 |
#: includes/profile.php:54 includes/profile.php:60 includes/profile.php:65
|
7437 |
#: includes/profile.php:68 includes/profile.php:74 includes/profile.php:195
|
7438 |
#: includes/profile.php:242
|
@@ -7454,6 +7711,10 @@ msgstr ""
|
|
7454 |
msgid "Cancel this user's subscription at the gateway."
|
7455 |
msgstr ""
|
7456 |
|
|
|
|
|
|
|
|
|
7457 |
#: includes/updates.php:110 includes/updates.php:97 includes/updates.php:110
|
7458 |
msgid "Paid Memberships Pro Data Update Required"
|
7459 |
msgstr ""
|
@@ -7516,41 +7777,26 @@ msgid ""
|
|
7516 |
"the issues</a>."
|
7517 |
msgstr ""
|
7518 |
|
7519 |
-
#: pages/billing.php:
|
7520 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
7521 |
#: pages/billing.php:28
|
7522 |
#, php-format
|
7523 |
msgid "Logged in as <strong>%s</strong>."
|
7524 |
msgstr ""
|
7525 |
|
7526 |
-
#: pages/billing.php:
|
7527 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
7528 |
#: pages/billing.php:28
|
7529 |
msgid "logout"
|
7530 |
msgstr ""
|
7531 |
|
7532 |
-
#: pages/billing.php:
|
7533 |
-
#: pages/levels.php:35 shortcodes/pmpro_account.php:44
|
7534 |
-
#: shortcodes/pmpro_account.php:128 pages/account.php:12 pages/account.php:18
|
7535 |
-
#: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
|
7536 |
-
#: pages/billing.php:27 pages/billing.php:28 pages/billing.php:30
|
7537 |
-
#: pages/billing.php:44 pages/billing.php:45 pages/cancel.php:52
|
7538 |
-
#: pages/cancel.php:60 pages/cancel.php:61 pages/invoice.php:89
|
7539 |
-
#: pages/invoice.php:102 pages/invoice.php:109 pages/levels.php:13
|
7540 |
-
#: pages/levels.php:35 shortcodes/pmpro_account.php:43
|
7541 |
-
#: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
|
7542 |
-
#: shortcodes/pmpro_account.php:125 shortcodes/pmpro_account.php:126
|
7543 |
-
#: shortcodes/pmpro_account.php:128
|
7544 |
-
msgid "Level"
|
7545 |
-
msgstr ""
|
7546 |
-
|
7547 |
-
#: pages/billing.php:47 pages/account.php:14 pages/billing.php:18
|
7548 |
#: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
|
7549 |
#: pages/billing.php:32 pages/billing.php:46 pages/billing.php:47
|
7550 |
msgid "Membership Fee"
|
7551 |
msgstr ""
|
7552 |
|
7553 |
-
#: pages/billing.php:
|
7554 |
#: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
|
7555 |
#: pages/billing.php:36 pages/billing.php:50 pages/billing.php:51
|
7556 |
#: pages/levels.php:70
|
@@ -7558,7 +7804,7 @@ msgstr ""
|
|
7558 |
msgid "%s every %d %s."
|
7559 |
msgstr ""
|
7560 |
|
7561 |
-
#: pages/billing.php:
|
7562 |
#: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
|
7563 |
#: pages/billing.php:38 pages/billing.php:52 pages/billing.php:53
|
7564 |
#: pages/levels.php:66
|
@@ -7566,14 +7812,14 @@ msgstr ""
|
|
7566 |
msgid "%s per %s."
|
7567 |
msgstr ""
|
7568 |
|
7569 |
-
#: pages/billing.php:
|
7570 |
#: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
|
7571 |
#: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
|
7572 |
#: pages/billing.php:62 pages/billing.php:63
|
7573 |
msgid "Duration"
|
7574 |
msgstr ""
|
7575 |
|
7576 |
-
#: pages/billing.php:
|
7577 |
#: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
|
7578 |
#: pages/billing.php:57 pages/billing.php:80 pages/billing.php:81
|
7579 |
msgid ""
|
@@ -7581,7 +7827,7 @@ msgid ""
|
|
7581 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
7582 |
msgstr ""
|
7583 |
|
7584 |
-
#: pages/billing.php:
|
7585 |
#: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
|
7586 |
#: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
|
7587 |
#: pages/billing.php:107 pages/billing.php:108 pages/billing.php:110
|
@@ -7592,7 +7838,7 @@ msgstr ""
|
|
7592 |
msgid "First Name"
|
7593 |
msgstr ""
|
7594 |
|
7595 |
-
#: pages/billing.php:
|
7596 |
#: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
|
7597 |
#: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
|
7598 |
#: pages/billing.php:111 pages/billing.php:112 pages/billing.php:114
|
@@ -7603,7 +7849,7 @@ msgstr ""
|
|
7603 |
msgid "Last Name"
|
7604 |
msgstr ""
|
7605 |
|
7606 |
-
#: pages/billing.php:
|
7607 |
#: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
|
7608 |
#: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
|
7609 |
#: pages/billing.php:115 pages/billing.php:116 pages/billing.php:118
|
@@ -7614,7 +7860,7 @@ msgstr ""
|
|
7614 |
msgid "Address 1"
|
7615 |
msgstr ""
|
7616 |
|
7617 |
-
#: pages/billing.php:
|
7618 |
#: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
|
7619 |
#: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
|
7620 |
#: pages/billing.php:119 pages/billing.php:120 pages/billing.php:122
|
@@ -7625,7 +7871,7 @@ msgstr ""
|
|
7625 |
msgid "Address 2"
|
7626 |
msgstr ""
|
7627 |
|
7628 |
-
#: pages/billing.php:
|
7629 |
#: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
|
7630 |
#: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
|
7631 |
#: pages/billing.php:129 pages/billing.php:130 pages/billing.php:132
|
@@ -7636,7 +7882,7 @@ msgstr ""
|
|
7636 |
msgid "City"
|
7637 |
msgstr ""
|
7638 |
|
7639 |
-
#: pages/billing.php:
|
7640 |
#: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
|
7641 |
#: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
|
7642 |
#: pages/billing.php:133 pages/billing.php:134 pages/billing.php:136
|
@@ -7647,7 +7893,7 @@ msgstr ""
|
|
7647 |
msgid "State"
|
7648 |
msgstr ""
|
7649 |
|
7650 |
-
#: pages/billing.php:
|
7651 |
#: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
|
7652 |
#: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
|
7653 |
#: pages/billing.php:137 pages/billing.php:138 pages/billing.php:140
|
@@ -7658,7 +7904,7 @@ msgstr ""
|
|
7658 |
msgid "Postal Code"
|
7659 |
msgstr ""
|
7660 |
|
7661 |
-
#: pages/billing.php:
|
7662 |
#: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
|
7663 |
#: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
|
7664 |
#: pages/billing.php:146 pages/billing.php:147 pages/billing.php:149
|
@@ -7669,7 +7915,7 @@ msgstr ""
|
|
7669 |
msgid "City, State Zip"
|
7670 |
msgstr ""
|
7671 |
|
7672 |
-
#: pages/billing.php:
|
7673 |
#: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
|
7674 |
#: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
|
7675 |
#: pages/billing.php:199 pages/billing.php:200 pages/billing.php:202
|
@@ -7680,7 +7926,7 @@ msgstr ""
|
|
7680 |
msgid "Country"
|
7681 |
msgstr ""
|
7682 |
|
7683 |
-
#: pages/billing.php:
|
7684 |
#: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
|
7685 |
#: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
|
7686 |
#: pages/billing.php:224 pages/billing.php:225 pages/billing.php:227
|
@@ -7691,7 +7937,7 @@ msgstr ""
|
|
7691 |
msgid "Phone"
|
7692 |
msgstr ""
|
7693 |
|
7694 |
-
#: pages/billing.php:
|
7695 |
#: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
|
7696 |
#: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
|
7697 |
#: pages/billing.php:215 pages/billing.php:235 pages/billing.php:236
|
@@ -7705,7 +7951,7 @@ msgstr ""
|
|
7705 |
msgid "E-mail Address"
|
7706 |
msgstr ""
|
7707 |
|
7708 |
-
#: pages/billing.php:
|
7709 |
#: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
|
7710 |
#: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
|
7711 |
#: pages/billing.php:239 pages/billing.php:240 pages/billing.php:242
|
@@ -7716,14 +7962,14 @@ msgstr ""
|
|
7716 |
msgid "Confirm E-mail"
|
7717 |
msgstr ""
|
7718 |
|
7719 |
-
#: pages/billing.php:
|
7720 |
#: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
|
7721 |
#: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
|
7722 |
#: pages/billing.php:262 pages/billing.php:263 pages/billing.php:270
|
7723 |
msgid "Credit Card Information"
|
7724 |
msgstr ""
|
7725 |
|
7726 |
-
#: pages/billing.php:
|
7727 |
#: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
|
7728 |
#: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
|
7729 |
#: pages/billing.php:263 pages/billing.php:264 pages/billing.php:271
|
@@ -7731,11 +7977,12 @@ msgstr ""
|
|
7731 |
msgid "We accept %s"
|
7732 |
msgstr ""
|
7733 |
|
7734 |
-
#: pages/billing.php:
|
7735 |
#: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
|
7736 |
#: pages/billing.php:360 pages/billing.php:364 pages/billing.php:380
|
7737 |
-
#: pages/billing.php:381 pages/billing.php:
|
7738 |
-
#: pages/billing.php:
|
|
|
7739 |
msgid ""
|
7740 |
"This subscription is not recurring. So you don't need to update your billing "
|
7741 |
"information."
|
@@ -8075,7 +8322,7 @@ msgstr ""
|
|
8075 |
msgid "← Return to Home"
|
8076 |
msgstr ""
|
8077 |
|
8078 |
-
#: paid-memberships-pro.php:
|
8079 |
#: adminpages/orders.php:448 paid-memberships-pro.php:115
|
8080 |
#: paid-memberships-pro.php:116 paid-memberships-pro.php:123
|
8081 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
@@ -8084,7 +8331,7 @@ msgstr ""
|
|
8084 |
msgid "Testing Only"
|
8085 |
msgstr ""
|
8086 |
|
8087 |
-
#: paid-memberships-pro.php:
|
8088 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:128
|
8089 |
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
8090 |
#: paid-memberships-pro.php:131 paid-memberships-pro.php:132
|
@@ -8092,7 +8339,7 @@ msgstr ""
|
|
8092 |
msgid "PayPal Payflow Pro/PayPal Pro"
|
8093 |
msgstr ""
|
8094 |
|
8095 |
-
#: paid-memberships-pro.php:
|
8096 |
#: paid-memberships-pro.php:126 paid-memberships-pro.php:133
|
8097 |
#: paid-memberships-pro.php:134 paid-memberships-pro.php:135
|
8098 |
#: paid-memberships-pro.php:136 paid-memberships-pro.php:137
|
@@ -8100,7 +8347,7 @@ msgstr ""
|
|
8100 |
msgid "Cybersource"
|
8101 |
msgstr ""
|
8102 |
|
8103 |
-
#: paid-memberships-pro.php:
|
8104 |
#: paid-memberships-pro.php:157 paid-memberships-pro.php:158
|
8105 |
#: paid-memberships-pro.php:159 paid-memberships-pro.php:166
|
8106 |
msgid "Once a month"
|
@@ -8119,7 +8366,7 @@ msgid ""
|
|
8119 |
"moments."
|
8120 |
msgstr ""
|
8121 |
|
8122 |
-
#: preheaders/billing.php:
|
8123 |
#: preheaders/billing.php:145 preheaders/billing.php:147
|
8124 |
#: preheaders/billing.php:258 preheaders/billing.php:265
|
8125 |
#: preheaders/billing.php:266 preheaders/billing.php:270
|
@@ -8132,7 +8379,7 @@ msgstr ""
|
|
8132 |
msgid "Please complete all required fields."
|
8133 |
msgstr ""
|
8134 |
|
8135 |
-
#: preheaders/billing.php:
|
8136 |
#: preheaders/billing.php:148 preheaders/billing.php:150
|
8137 |
#: preheaders/billing.php:263 preheaders/billing.php:268
|
8138 |
#: preheaders/billing.php:269 preheaders/billing.php:273
|
@@ -8145,7 +8392,7 @@ msgstr ""
|
|
8145 |
msgid "Your email addresses do not match. Please try again."
|
8146 |
msgstr ""
|
8147 |
|
8148 |
-
#: preheaders/billing.php:
|
8149 |
#: preheaders/billing.php:151 preheaders/billing.php:153
|
8150 |
#: preheaders/billing.php:268 preheaders/billing.php:271
|
8151 |
#: preheaders/billing.php:272 preheaders/billing.php:276
|
@@ -8158,7 +8405,7 @@ msgstr ""
|
|
8158 |
msgid "The email address entered is in an invalid format. Please try again."
|
8159 |
msgstr ""
|
8160 |
|
8161 |
-
#: preheaders/billing.php:
|
8162 |
#: preheaders/billing.php:157 preheaders/billing.php:274
|
8163 |
#: preheaders/billing.php:275 preheaders/billing.php:276
|
8164 |
#: preheaders/billing.php:280 preheaders/billing.php:283
|
@@ -8166,7 +8413,7 @@ msgstr ""
|
|
8166 |
msgid "All good!"
|
8167 |
msgstr ""
|
8168 |
|
8169 |
-
#: preheaders/billing.php:
|
8170 |
#: preheaders/billing.php:224 preheaders/billing.php:340
|
8171 |
#: preheaders/billing.php:345 preheaders/billing.php:346
|
8172 |
#: preheaders/billing.php:350 preheaders/billing.php:353
|
@@ -8175,7 +8422,7 @@ msgstr ""
|
|
8175 |
msgid "Information updated. <a href=\"%s\">« back to my account</a>"
|
8176 |
msgstr ""
|
8177 |
|
8178 |
-
#: preheaders/billing.php:
|
8179 |
#: preheaders/billing.php:230 preheaders/billing.php:347
|
8180 |
#: preheaders/billing.php:351 preheaders/billing.php:352
|
8181 |
#: preheaders/billing.php:356 preheaders/billing.php:359
|
@@ -8582,10 +8829,6 @@ msgstr ""
|
|
8582 |
msgid "every"
|
8583 |
msgstr ""
|
8584 |
|
8585 |
-
#: adminpages/memberslist.php:184 adminpages/memberslist.php:212
|
8586 |
-
msgid "Never"
|
8587 |
-
msgstr ""
|
8588 |
-
|
8589 |
#: adminpages/pagesettings.php:73
|
8590 |
#, php-format
|
8591 |
msgid "Membership %s"
|
@@ -8724,6 +8967,11 @@ msgid ""
|
|
8724 |
"your hosting provider to enable it"
|
8725 |
msgstr ""
|
8726 |
|
|
|
|
|
|
|
|
|
|
|
8727 |
#: classes/gateways/class.pmprogateway_twocheckout.php:139
|
8728 |
msgid "API Private Key"
|
8729 |
msgstr ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: paid-memberships-pro\n"
|
8 |
"Report-Msgid-Bugs-To: jason@strangerstudios.com\n"
|
9 |
+
"POT-Creation-Date: 2018-05-24 14:48-0400\n"
|
10 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
11 |
"Last-Translator: \n"
|
12 |
"Language-Team: Stranger Studios <jason@strangerstudios.com>\n"
|
57 |
msgid "Check Again"
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: adminpages/addons.php:79 adminpages/orders.php:983 adminpages/addons.php:76
|
61 |
#: adminpages/addons.php:79 adminpages/addons.php:92 adminpages/orders.php:605
|
62 |
#: adminpages/orders.php:712 adminpages/orders.php:741
|
63 |
#: adminpages/orders.php:850 adminpages/orders.php:881
|
188 |
msgid "WordPress.org"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: adminpages/addons.php:234 adminpages/orders.php:855
|
192 |
+
#: adminpages/orders.php:1340 adminpages/orders.php:1350
|
193 |
+
#: includes/profile.php:186 shortcodes/pmpro_account.php:148
|
194 |
#: adminpages/addons.php:231 adminpages/addons.php:234
|
195 |
#: adminpages/addons.php:247 shortcodes/pmpro_account.php:145
|
196 |
#: shortcodes/pmpro_account.php:146 shortcodes/pmpro_account.php:148
|
541 |
#: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:226
|
542 |
#: adminpages/advancedsettings.php:238 adminpages/membershiplevels.php:694
|
543 |
#: adminpages/paymentsettings.php:236
|
544 |
+
#: classes/gateways/class.pmprogateway_stripe.php:289 includes/profile.php:125
|
545 |
#: adminpages/advancedsettings.php:128 adminpages/advancedsettings.php:135
|
546 |
#: adminpages/advancedsettings.php:148 adminpages/advancedsettings.php:151
|
547 |
#: adminpages/advancedsettings.php:167 adminpages/advancedsettings.php:187
|
571 |
#: classes/gateways/class.pmprogateway_stripe.php:222
|
572 |
#: classes/gateways/class.pmprogateway_stripe.php:249
|
573 |
#: classes/gateways/class.pmprogateway_stripe.php:281
|
574 |
+
#: classes/gateways/class.pmprogateway_stripe.php:297
|
575 |
+
#: classes/gateways/class.pmprogateway_stripe.php:298 includes/profile.php:101
|
576 |
#: includes/profile.php:105 includes/profile.php:110 includes/profile.php:117
|
577 |
#: includes/profile.php:121 includes/profile.php:123 includes/profile.php:125
|
578 |
msgid "No"
|
622 |
|
623 |
#: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:694
|
624 |
#: adminpages/paymentsettings.php:237
|
625 |
+
#: classes/gateways/class.pmprogateway_stripe.php:290 includes/profile.php:126
|
626 |
#: adminpages/advancedsettings.php:188 adminpages/advancedsettings.php:195
|
627 |
#: adminpages/advancedsettings.php:208 adminpages/advancedsettings.php:211
|
628 |
#: adminpages/advancedsettings.php:227 adminpages/membershiplevels.php:563
|
648 |
#: classes/gateways/class.pmprogateway_stripe.php:223
|
649 |
#: classes/gateways/class.pmprogateway_stripe.php:250
|
650 |
#: classes/gateways/class.pmprogateway_stripe.php:282
|
651 |
+
#: classes/gateways/class.pmprogateway_stripe.php:298
|
652 |
+
#: classes/gateways/class.pmprogateway_stripe.php:299 includes/profile.php:102
|
653 |
#: includes/profile.php:106 includes/profile.php:111 includes/profile.php:118
|
654 |
#: includes/profile.php:122 includes/profile.php:124 includes/profile.php:126
|
655 |
msgid "Yes"
|
685 |
msgid "Click here to signup for reCAPTCHA"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: adminpages/advancedsettings.php:248 adminpages/advancedsettings.php:248
|
689 |
msgid "reCAPTCHA Site Key"
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: adminpages/advancedsettings.php:251 adminpages/advancedsettings.php:251
|
693 |
msgid "reCAPTCHA Secret Key"
|
694 |
msgstr ""
|
695 |
|
813 |
|
814 |
#: adminpages/discountcodes.php:422 adminpages/discountcodes.php:719
|
815 |
#: adminpages/membershiplevels.php:322 adminpages/membershiplevels.php:663
|
816 |
+
#: adminpages/memberslist.php:164 adminpages/orders.php:1231
|
817 |
#: adminpages/reports/login.php:162 adminpages/templates/orders-email.php:46
|
818 |
#: adminpages/templates/orders-print.php:75 adminpages/discountcodes.php:306
|
819 |
#: adminpages/discountcodes.php:309 adminpages/discountcodes.php:310
|
845 |
msgid "ID"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: adminpages/discountcodes.php:423 adminpages/orders.php:394
|
849 |
#: adminpages/discountcodes.php:307 adminpages/discountcodes.php:310
|
850 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:312
|
851 |
#: adminpages/discountcodes.php:317 adminpages/discountcodes.php:382
|
857 |
msgstr ""
|
858 |
|
859 |
#: adminpages/discountcodes.php:427 adminpages/discountcodes.php:720
|
860 |
+
#: adminpages/orders.php:401 adminpages/orders.php:1232
|
861 |
#: adminpages/discountcodes.php:311 adminpages/discountcodes.php:314
|
862 |
#: adminpages/discountcodes.php:315 adminpages/discountcodes.php:316
|
863 |
#: adminpages/discountcodes.php:321 adminpages/discountcodes.php:386
|
876 |
msgid "Code"
|
877 |
msgstr ""
|
878 |
|
879 |
+
#: adminpages/discountcodes.php:465 includes/privacy.php:186
|
880 |
+
#: adminpages/discountcodes.php:349 adminpages/discountcodes.php:352
|
881 |
+
#: adminpages/discountcodes.php:353 adminpages/discountcodes.php:354
|
882 |
+
#: adminpages/discountcodes.php:359 adminpages/discountcodes.php:424
|
883 |
+
#: adminpages/discountcodes.php:465
|
884 |
msgid "Start Date"
|
885 |
msgstr ""
|
886 |
|
887 |
#: adminpages/discountcodes.php:483
|
888 |
#: classes/gateways/class.pmprogateway_braintree.php:459
|
889 |
+
#: classes/gateways/class.pmprogateway_stripe.php:621 pages/billing.php:313
|
890 |
#: pages/checkout.php:463 adminpages/discountcodes.php:367
|
891 |
#: adminpages/discountcodes.php:370 adminpages/discountcodes.php:371
|
892 |
#: adminpages/discountcodes.php:372 adminpages/discountcodes.php:377
|
913 |
#: classes/gateways/class.pmprogateway_stripe.php:570
|
914 |
#: classes/gateways/class.pmprogateway_stripe.php:597
|
915 |
#: classes/gateways/class.pmprogateway_stripe.php:613
|
916 |
+
#: classes/gateways/class.pmprogateway_stripe.php:629
|
917 |
+
#: classes/gateways/class.pmprogateway_stripe.php:630 pages/billing.php:249
|
918 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:265
|
919 |
#: pages/billing.php:268 pages/billing.php:310 pages/billing.php:316
|
920 |
#: pages/billing.php:317 pages/billing.php:319 pages/billing.php:342
|
1013 |
|
1014 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1015 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1016 |
+
#: classes/gateways/class.pmprogateway_stripe.php:679
|
1017 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1018 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1019 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
1042 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1043 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1044 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1045 |
+
#: classes/gateways/class.pmprogateway_stripe.php:688
|
1046 |
msgid "Day(s)"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1050 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1051 |
+
#: classes/gateways/class.pmprogateway_stripe.php:679
|
1052 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1053 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1054 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
1077 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1078 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1079 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1080 |
+
#: classes/gateways/class.pmprogateway_stripe.php:688
|
1081 |
msgid "Month(s)"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1085 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1086 |
+
#: classes/gateways/class.pmprogateway_stripe.php:679
|
1087 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1088 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1089 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
1112 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1113 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1114 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1115 |
+
#: classes/gateways/class.pmprogateway_stripe.php:688
|
1116 |
msgid "Week(s)"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
#: adminpages/discountcodes.php:587 adminpages/discountcodes.php:641
|
1120 |
#: adminpages/membershiplevels.php:410 adminpages/membershiplevels.php:511
|
1121 |
+
#: classes/gateways/class.pmprogateway_stripe.php:679
|
1122 |
#: adminpages/discountcodes.php:446 adminpages/discountcodes.php:466
|
1123 |
#: adminpages/discountcodes.php:467 adminpages/discountcodes.php:468
|
1124 |
#: adminpages/discountcodes.php:473 adminpages/discountcodes.php:492
|
1147 |
#: classes/gateways/class.pmprogateway_stripe.php:664
|
1148 |
#: classes/gateways/class.pmprogateway_stripe.php:671
|
1149 |
#: classes/gateways/class.pmprogateway_stripe.php:687
|
1150 |
+
#: classes/gateways/class.pmprogateway_stripe.php:688
|
1151 |
msgid "Year(s)"
|
1152 |
msgstr ""
|
1153 |
|
1385 |
msgstr ""
|
1386 |
|
1387 |
#: adminpages/discountcodes.php:789 adminpages/membershiplevels.php:696
|
1388 |
+
#: adminpages/orders.php:1360 adminpages/discountcodes.php:614
|
1389 |
#: adminpages/discountcodes.php:619 adminpages/discountcodes.php:647
|
1390 |
#: adminpages/discountcodes.php:648 adminpages/discountcodes.php:649
|
1391 |
#: adminpages/discountcodes.php:650 adminpages/discountcodes.php:655
|
1418 |
msgstr ""
|
1419 |
|
1420 |
#: adminpages/discountcodes.php:792 adminpages/membershiplevels.php:696
|
1421 |
+
#: adminpages/orders.php:1366 adminpages/discountcodes.php:617
|
1422 |
#: adminpages/discountcodes.php:622 adminpages/discountcodes.php:650
|
1423 |
#: adminpages/discountcodes.php:651 adminpages/discountcodes.php:652
|
1424 |
#: adminpages/discountcodes.php:653 adminpages/discountcodes.php:658
|
1667 |
msgstr ""
|
1668 |
|
1669 |
#: adminpages/membershiplevels.php:406
|
1670 |
+
#: classes/gateways/class.pmprogateway_stripe.php:777
|
1671 |
#: adminpages/membershiplevels.php:349 adminpages/membershiplevels.php:351
|
1672 |
#: adminpages/membershiplevels.php:370 adminpages/membershiplevels.php:372
|
1673 |
#: adminpages/membershiplevels.php:373 adminpages/membershiplevels.php:396
|
1686 |
#: classes/gateways/class.pmprogateway_stripe.php:762
|
1687 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
1688 |
#: classes/gateways/class.pmprogateway_stripe.php:785
|
1689 |
+
#: classes/gateways/class.pmprogateway_stripe.php:786
|
1690 |
msgid "per"
|
1691 |
msgstr ""
|
1692 |
|
1846 |
msgid "Save Level"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: adminpages/membershiplevels.php:540 adminpages/orders.php:894
|
1850 |
+
#: pages/billing.php:363 pages/cancel.php:84 shortcodes/pmpro_account.php:72
|
1851 |
#: adminpages/membershiplevels.php:506 adminpages/membershiplevels.php:508
|
1852 |
#: adminpages/membershiplevels.php:517 adminpages/membershiplevels.php:518
|
1853 |
#: adminpages/membershiplevels.php:530 adminpages/membershiplevels.php:540
|
1958 |
"be cancelled."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: adminpages/membershiplevels.php:696 adminpages/orders.php:1363
|
1962 |
#: adminpages/membershiplevels.php:565 adminpages/membershiplevels.php:571
|
1963 |
#: adminpages/membershiplevels.php:573 adminpages/membershiplevels.php:580
|
1964 |
#: adminpages/membershiplevels.php:600 adminpages/membershiplevels.php:660
|
1983 |
msgid "Members List"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
+
#: adminpages/memberslist.php:26 adminpages/orders.php:962
|
1987 |
#: adminpages/memberslist.php:26 adminpages/orders.php:522
|
1988 |
#: adminpages/orders.php:591 adminpages/orders.php:698
|
1989 |
#: adminpages/orders.php:727 adminpages/orders.php:833
|
1991 |
msgid "Export to CSV"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: adminpages/memberslist.php:30 adminpages/orders.php:981
|
1995 |
#: adminpages/reports/login.php:87 adminpages/reports/memberships.php:328
|
1996 |
#: adminpages/reports/sales.php:203 adminpages/memberslist.php:30
|
1997 |
#: adminpages/orders.php:603 adminpages/orders.php:710
|
2024 |
#: adminpages/reports/sales.php:216 adminpages/reports/sales.php:217
|
2025 |
#: adminpages/reports/sales.php:225 adminpages/reports/sales.php:226
|
2026 |
#: classes/class.pmproemail.php:145 classes/class.pmproemail.php:147
|
2027 |
+
#: classes/class.pmproemail.php:154 classes/class.pmproemail.php:189
|
2028 |
+
#: classes/class.pmproemail.php:192 classes/class.pmproemail.php:199
|
2029 |
msgid "All Levels"
|
2030 |
msgstr ""
|
2031 |
|
2081 |
msgid "Last Name"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: adminpages/memberslist.php:170 pages/billing.php:100 pages/checkout.php:275
|
2085 |
#: pages/confirmation.php:66 pages/invoice.php:48
|
2086 |
#: adminpages/memberslist.php:117 adminpages/memberslist.php:150
|
2087 |
#: adminpages/memberslist.php:160 adminpages/memberslist.php:170
|
2175 |
msgid "Error deleting order."
|
2176 |
msgstr ""
|
2177 |
|
2178 |
+
#: adminpages/orders.php:297 adminpages/orders.php:119
|
2179 |
#: adminpages/orders.php:169 adminpages/orders.php:270
|
2180 |
#: adminpages/orders.php:284 adminpages/orders.php:285
|
2181 |
#: adminpages/orders.php:295
|
2182 |
msgid "Order saved successfully."
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: adminpages/orders.php:300 adminpages/orders.php:124
|
2186 |
#: adminpages/orders.php:174 adminpages/orders.php:275
|
2187 |
#: adminpages/orders.php:287 adminpages/orders.php:288
|
2188 |
#: adminpages/orders.php:298
|
2189 |
msgid "Error updating order timestamp."
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: adminpages/orders.php:304 adminpages/orders.php:130
|
2193 |
#: adminpages/orders.php:180 adminpages/orders.php:281
|
2194 |
#: adminpages/orders.php:291 adminpages/orders.php:292
|
2195 |
#: adminpages/orders.php:302
|
2196 |
msgid "Error saving order."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: adminpages/orders.php:364 classes/class.memberorder.php:763
|
2200 |
#: adminpages/orders.php:195 adminpages/orders.php:245
|
2201 |
#: adminpages/orders.php:317 adminpages/orders.php:321
|
2202 |
#: adminpages/orders.php:346 adminpages/orders.php:352
|
2203 |
+
#: adminpages/orders.php:362 classes/class.memberorder.php:743
|
2204 |
+
#: classes/class.memberorder.php:746
|
2205 |
msgid "Order"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: adminpages/orders.php:366 adminpages/orders.php:197
|
2209 |
#: adminpages/orders.php:247 adminpages/orders.php:319
|
2210 |
#: adminpages/orders.php:323 adminpages/orders.php:348
|
2211 |
#: adminpages/orders.php:354 adminpages/orders.php:364
|
2212 |
msgid "New Order"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: adminpages/orders.php:413 adminpages/orders.php:220
|
2216 |
#: adminpages/orders.php:270 adminpages/orders.php:342
|
2217 |
#: adminpages/orders.php:359 adminpages/orders.php:371
|
2218 |
#: adminpages/orders.php:390 adminpages/orders.php:401
|
2219 |
msgid "Randomly generated for you."
|
2220 |
msgstr ""
|
2221 |
|
2222 |
+
#: adminpages/orders.php:418 adminpages/orders.php:225
|
2223 |
#: adminpages/orders.php:275 adminpages/orders.php:347
|
2224 |
#: adminpages/orders.php:364 adminpages/orders.php:376
|
2225 |
#: adminpages/orders.php:395 adminpages/orders.php:406
|
2226 |
msgid "User ID"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: adminpages/orders.php:432 adminpages/orders.php:234
|
2230 |
#: adminpages/orders.php:284 adminpages/orders.php:356
|
2231 |
#: adminpages/orders.php:376 adminpages/orders.php:385
|
2232 |
#: adminpages/orders.php:407 adminpages/orders.php:418
|
2233 |
msgid "Membership Level ID"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: adminpages/orders.php:447 includes/privacy.php:245 adminpages/orders.php:243
|
2237 |
#: adminpages/orders.php:293 adminpages/orders.php:365
|
2238 |
#: adminpages/orders.php:389 adminpages/orders.php:394
|
2239 |
#: adminpages/orders.php:420 adminpages/orders.php:431
|
2240 |
msgid "Billing Name"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: adminpages/orders.php:461 includes/privacy.php:249 adminpages/orders.php:251
|
2244 |
#: adminpages/orders.php:301 adminpages/orders.php:373
|
2245 |
#: adminpages/orders.php:401 adminpages/orders.php:402
|
2246 |
#: adminpages/orders.php:432 adminpages/orders.php:443
|
2247 |
msgid "Billing Street"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: adminpages/orders.php:474 includes/privacy.php:253 includes/privacy.php:358
|
2251 |
+
#: adminpages/orders.php:258 adminpages/orders.php:308
|
2252 |
+
#: adminpages/orders.php:380 adminpages/orders.php:409
|
2253 |
+
#: adminpages/orders.php:412 adminpages/orders.php:443
|
2254 |
+
#: adminpages/orders.php:454
|
2255 |
msgid "Billing City"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: adminpages/orders.php:487 includes/privacy.php:257 adminpages/orders.php:265
|
2259 |
#: adminpages/orders.php:315 adminpages/orders.php:387
|
2260 |
#: adminpages/orders.php:416 adminpages/orders.php:423
|
2261 |
#: adminpages/orders.php:454 adminpages/orders.php:465
|
2262 |
msgid "Billing State"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: adminpages/orders.php:500 includes/privacy.php:261 includes/privacy.php:360
|
2266 |
+
#: adminpages/orders.php:272 adminpages/orders.php:322
|
2267 |
+
#: adminpages/orders.php:394 adminpages/orders.php:423
|
2268 |
+
#: adminpages/orders.php:434 adminpages/orders.php:465
|
2269 |
+
#: adminpages/orders.php:476
|
2270 |
msgid "Billing Postal Code"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: adminpages/orders.php:513 includes/privacy.php:265 includes/privacy.php:362
|
2274 |
+
#: adminpages/orders.php:279 adminpages/orders.php:329
|
2275 |
+
#: adminpages/orders.php:401 adminpages/orders.php:430
|
2276 |
+
#: adminpages/orders.php:445 adminpages/orders.php:476
|
2277 |
+
#: adminpages/orders.php:487
|
2278 |
msgid "Billing Country"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: adminpages/orders.php:527 includes/privacy.php:269 adminpages/orders.php:287
|
2282 |
#: adminpages/orders.php:337 adminpages/orders.php:409
|
2283 |
#: adminpages/orders.php:438 adminpages/orders.php:457
|
2284 |
#: adminpages/orders.php:488 adminpages/orders.php:499
|
2285 |
msgid "Billing Phone"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: adminpages/orders.php:542 includes/privacy.php:273 adminpages/orders.php:296
|
2289 |
#: adminpages/orders.php:346 adminpages/orders.php:418
|
2290 |
#: adminpages/orders.php:447 adminpages/orders.php:470
|
2291 |
#: adminpages/orders.php:501 adminpages/orders.php:512
|
2292 |
msgid "Sub Total"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: adminpages/orders.php:555 adminpages/templates/orders-email.php:60
|
2296 |
+
#: adminpages/templates/orders-print.php:89 includes/privacy.php:277
|
2297 |
+
#: pages/confirmation.php:92 pages/invoice.php:74 adminpages/orders.php:304
|
2298 |
+
#: adminpages/orders.php:354 adminpages/orders.php:426
|
2299 |
+
#: adminpages/orders.php:455 adminpages/orders.php:481
|
2300 |
+
#: adminpages/orders.php:512 adminpages/orders.php:523
|
2301 |
+
#: adminpages/templates/orders-email.php:60
|
2302 |
#: adminpages/templates/orders-print.php:89 pages/confirmation.php:92
|
2303 |
#: pages/invoice.php:74 pages/invoice.php:78 pages/invoice.php:80
|
2304 |
msgid "Tax"
|
2305 |
msgstr ""
|
2306 |
|
2307 |
+
#: adminpages/orders.php:568 includes/privacy.php:281 adminpages/orders.php:312
|
2308 |
#: adminpages/orders.php:362 adminpages/orders.php:434
|
2309 |
#: adminpages/orders.php:463 adminpages/orders.php:492
|
2310 |
#: adminpages/orders.php:523 adminpages/orders.php:534
|
2311 |
msgid "Coupon Amount"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: adminpages/orders.php:582 adminpages/orders.php:1236
|
2315 |
+
#: adminpages/templates/orders-email.php:64
|
2316 |
+
#: adminpages/templates/orders-print.php:93 includes/privacy.php:285
|
2317 |
+
#: pages/confirmation.php:96 pages/invoice.php:78 adminpages/orders.php:320
|
2318 |
+
#: adminpages/orders.php:370 adminpages/orders.php:442
|
2319 |
+
#: adminpages/orders.php:471 adminpages/orders.php:504
|
2320 |
+
#: adminpages/orders.php:535 adminpages/orders.php:546
|
2321 |
+
#: adminpages/orders.php:602 adminpages/orders.php:905
|
2322 |
+
#: adminpages/orders.php:915 adminpages/orders.php:942
|
2323 |
+
#: adminpages/orders.php:971 adminpages/orders.php:1108
|
2324 |
+
#: adminpages/orders.php:1139 adminpages/orders.php:1145
|
2325 |
#: adminpages/templates/orders-email.php:64
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2326 |
#: adminpages/templates/orders-print.php:93 pages/confirmation.php:96
|
2327 |
#: pages/invoice.php:78 pages/invoice.php:82 pages/invoice.php:84
|
2328 |
msgid "Total"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
+
#: adminpages/orders.php:593 adminpages/orders.php:325
|
2332 |
#: adminpages/orders.php:375 adminpages/orders.php:447
|
2333 |
#: adminpages/orders.php:476 adminpages/orders.php:513
|
2334 |
#: adminpages/orders.php:544 adminpages/orders.php:555
|
2335 |
msgid "Should be subtotal + tax - couponamount."
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: adminpages/orders.php:598 includes/privacy.php:289 adminpages/orders.php:330
|
2339 |
#: adminpages/orders.php:380 adminpages/orders.php:452
|
2340 |
#: adminpages/orders.php:481 adminpages/orders.php:518
|
2341 |
#: adminpages/orders.php:549 adminpages/orders.php:560
|
2342 |
msgid "Payment Type"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: adminpages/orders.php:610 adminpages/orders.php:335
|
2346 |
#: adminpages/orders.php:385 adminpages/orders.php:457
|
2347 |
#: adminpages/orders.php:486 adminpages/orders.php:528
|
2348 |
#: adminpages/orders.php:559 adminpages/orders.php:570
|
2349 |
msgid "e.g. PayPal Express, PayPal Standard, Credit Card."
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: adminpages/orders.php:614
|
2353 |
#: classes/gateways/class.pmprogateway_braintree.php:446
|
2354 |
+
#: classes/gateways/class.pmprogateway_stripe.php:581 includes/privacy.php:293
|
2355 |
+
#: pages/billing.php:271 pages/checkout.php:423 adminpages/orders.php:339
|
2356 |
+
#: adminpages/orders.php:389 adminpages/orders.php:461
|
2357 |
+
#: adminpages/orders.php:490 adminpages/orders.php:532
|
2358 |
+
#: adminpages/orders.php:563 adminpages/orders.php:574
|
2359 |
#: classes/gateways/class.pmprogateway_braintree.php:291
|
2360 |
#: classes/gateways/class.pmprogateway_braintree.php:304
|
2361 |
#: classes/gateways/class.pmprogateway_braintree.php:306
|
2379 |
#: classes/gateways/class.pmprogateway_stripe.php:522
|
2380 |
#: classes/gateways/class.pmprogateway_stripe.php:549
|
2381 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
2382 |
+
#: classes/gateways/class.pmprogateway_stripe.php:589
|
2383 |
+
#: classes/gateways/class.pmprogateway_stripe.php:590 pages/billing.php:234
|
2384 |
#: pages/billing.php:238 pages/billing.php:247 pages/billing.php:250
|
2385 |
#: pages/billing.php:253 pages/billing.php:262 pages/billing.php:268
|
2386 |
#: pages/billing.php:271 pages/billing.php:274 pages/billing.php:275
|
2391 |
msgid "Card Type"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: adminpages/orders.php:624 adminpages/orders.php:344
|
2395 |
#: adminpages/orders.php:394 adminpages/orders.php:466
|
2396 |
#: adminpages/orders.php:495 adminpages/orders.php:540
|
2397 |
#: adminpages/orders.php:571 adminpages/orders.php:582
|
2398 |
msgid "e.g. Visa, MasterCard, AMEX, etc"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: adminpages/orders.php:628
|
2402 |
#: classes/gateways/class.pmprogateway_twocheckout.php:137
|
2403 |
+
#: includes/privacy.php:297 adminpages/orders.php:348 adminpages/orders.php:398
|
2404 |
#: adminpages/orders.php:470 adminpages/orders.php:499
|
2405 |
#: adminpages/orders.php:544 adminpages/orders.php:575
|
2406 |
#: adminpages/orders.php:586 adminpages/paymentsettings.php:347
|
2411 |
msgid "Account Number"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: adminpages/orders.php:639 adminpages/orders.php:353
|
2415 |
#: adminpages/orders.php:403 adminpages/orders.php:475
|
2416 |
#: adminpages/orders.php:504 adminpages/orders.php:553
|
2417 |
#: adminpages/orders.php:584 adminpages/orders.php:595
|
2418 |
msgid "Obscure all but last 4 digits."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: adminpages/orders.php:649 includes/privacy.php:301 adminpages/orders.php:358
|
2422 |
#: adminpages/orders.php:408 adminpages/orders.php:480
|
2423 |
#: adminpages/orders.php:509 adminpages/orders.php:561
|
2424 |
#: adminpages/orders.php:592 adminpages/orders.php:603
|
2425 |
msgid "Expiration Month"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: adminpages/orders.php:657 includes/privacy.php:305 adminpages/orders.php:365
|
2429 |
#: adminpages/orders.php:415 adminpages/orders.php:487
|
2430 |
#: adminpages/orders.php:516 adminpages/orders.php:569
|
2431 |
#: adminpages/orders.php:600 adminpages/orders.php:611
|
2432 |
msgid "Expiration Year"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: adminpages/orders.php:667 adminpages/orders.php:1240
|
2436 |
+
#: includes/privacy.php:202 includes/privacy.php:309 adminpages/orders.php:373
|
2437 |
+
#: adminpages/orders.php:423 adminpages/orders.php:495
|
2438 |
+
#: adminpages/orders.php:524 adminpages/orders.php:579
|
2439 |
+
#: adminpages/orders.php:606 adminpages/orders.php:610
|
2440 |
+
#: adminpages/orders.php:621 adminpages/orders.php:909
|
2441 |
+
#: adminpages/orders.php:919 adminpages/orders.php:946
|
2442 |
+
#: adminpages/orders.php:975 adminpages/orders.php:1112
|
2443 |
+
#: adminpages/orders.php:1143 adminpages/orders.php:1149
|
2444 |
msgid "Status"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: adminpages/orders.php:689 adminpages/orders.php:1238
|
2448 |
+
#: classes/class.memberorder.php:764 includes/privacy.php:313
|
2449 |
+
#: adminpages/orders.php:394 adminpages/orders.php:444
|
2450 |
+
#: adminpages/orders.php:516 adminpages/orders.php:545
|
2451 |
+
#: adminpages/orders.php:604 adminpages/orders.php:612
|
2452 |
+
#: adminpages/orders.php:643 adminpages/orders.php:654
|
2453 |
+
#: adminpages/orders.php:907 adminpages/orders.php:917
|
2454 |
+
#: adminpages/orders.php:944 adminpages/orders.php:973
|
2455 |
+
#: adminpages/orders.php:1110 adminpages/orders.php:1141
|
2456 |
+
#: adminpages/orders.php:1147 classes/class.memberorder.php:744
|
2457 |
#: classes/class.memberorder.php:747
|
2458 |
msgid "Gateway"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: adminpages/orders.php:712 adminpages/paymentsettings.php:141
|
2462 |
+
#: includes/privacy.php:317 adminpages/orders.php:411 adminpages/orders.php:461
|
2463 |
#: adminpages/orders.php:462 adminpages/orders.php:534
|
2464 |
#: adminpages/orders.php:563 adminpages/orders.php:633
|
2465 |
#: adminpages/orders.php:664 adminpages/orders.php:675
|
2469 |
msgid "Gateway Environment"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: adminpages/orders.php:724 adminpages/paymentsettings.php:145
|
2473 |
#: adminpages/orders.php:415 adminpages/orders.php:465
|
2474 |
#: adminpages/orders.php:466 adminpages/orders.php:538
|
2475 |
#: adminpages/orders.php:567 adminpages/orders.php:640
|
2480 |
msgid "Sandbox/Testing"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
+
#: adminpages/orders.php:729 adminpages/paymentsettings.php:146
|
2484 |
#: adminpages/orders.php:416 adminpages/orders.php:466
|
2485 |
#: adminpages/orders.php:467 adminpages/orders.php:539
|
2486 |
#: adminpages/orders.php:568 adminpages/orders.php:642
|
2491 |
msgid "Live/Production"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: adminpages/orders.php:737 includes/privacy.php:321 adminpages/orders.php:423
|
2495 |
#: adminpages/orders.php:473 adminpages/orders.php:474
|
2496 |
#: adminpages/orders.php:546 adminpages/orders.php:575
|
2497 |
#: adminpages/orders.php:650 adminpages/orders.php:681
|
2499 |
msgid "Payment Transaction ID"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: adminpages/orders.php:748 adminpages/orders.php:428
|
2503 |
#: adminpages/orders.php:478 adminpages/orders.php:479
|
2504 |
#: adminpages/orders.php:551 adminpages/orders.php:580
|
2505 |
#: adminpages/orders.php:659 adminpages/orders.php:690
|
2507 |
msgid "Generated by the gateway. Useful to cross reference orders."
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: adminpages/orders.php:753 classes/class.memberorder.php:765
|
2511 |
+
#: includes/privacy.php:325 adminpages/orders.php:432 adminpages/orders.php:482
|
2512 |
#: adminpages/orders.php:483 adminpages/orders.php:555
|
2513 |
#: adminpages/orders.php:584 adminpages/orders.php:664
|
2514 |
#: adminpages/orders.php:695 adminpages/orders.php:706
|
2515 |
+
#: classes/class.memberorder.php:745 classes/class.memberorder.php:748
|
2516 |
msgid "Subscription Transaction ID"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
+
#: adminpages/orders.php:765 adminpages/orders.php:437
|
2520 |
#: adminpages/orders.php:487 adminpages/orders.php:488
|
2521 |
#: adminpages/orders.php:560 adminpages/orders.php:589
|
2522 |
#: adminpages/orders.php:674 adminpages/orders.php:705
|
2524 |
msgid "Generated by the gateway. Useful to cross reference subscriptions."
|
2525 |
msgstr ""
|
2526 |
|
2527 |
+
#: adminpages/orders.php:770 adminpages/orders.php:1241 pages/invoice.php:100
|
2528 |
#: shortcodes/pmpro_account.php:127 adminpages/orders.php:442
|
2529 |
#: adminpages/orders.php:492 adminpages/orders.php:493
|
2530 |
#: adminpages/orders.php:565 adminpages/orders.php:594
|
2540 |
msgid "Date"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
+
#: adminpages/orders.php:812 adminpages/orders.php:477
|
2544 |
#: adminpages/orders.php:527 adminpages/orders.php:599
|
2545 |
#: adminpages/orders.php:628 adminpages/orders.php:716
|
2546 |
#: adminpages/orders.php:747 adminpages/orders.php:758
|
2547 |
msgid "Affiliate ID"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: adminpages/orders.php:826 adminpages/orders.php:485
|
2551 |
#: adminpages/orders.php:535 adminpages/orders.php:607
|
2552 |
#: adminpages/orders.php:636 adminpages/orders.php:728
|
2553 |
#: adminpages/orders.php:759 adminpages/orders.php:770
|
2554 |
msgid "Affiliate SubID"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
+
#: adminpages/orders.php:848
|
2558 |
+
msgid "TOS Consent"
|
2559 |
+
msgstr ""
|
2560 |
+
|
2561 |
+
#: adminpages/orders.php:865 adminpages/orders.php:495
|
2562 |
#: adminpages/orders.php:545 adminpages/orders.php:617
|
2563 |
#: adminpages/orders.php:646 adminpages/orders.php:742
|
2564 |
#: adminpages/orders.php:773 adminpages/orders.php:784
|
2565 |
msgid "Notes"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: adminpages/orders.php:893 adminpages/orders.php:510
|
2569 |
#: adminpages/orders.php:560 adminpages/orders.php:632
|
2570 |
#: adminpages/orders.php:661 adminpages/orders.php:764
|
2571 |
#: adminpages/orders.php:795 adminpages/orders.php:806
|
2572 |
msgid "Save Order"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: adminpages/orders.php:929 adminpages/orders.php:667
|
2576 |
#: adminpages/orders.php:696 adminpages/orders.php:800
|
2577 |
#: adminpages/orders.php:831 adminpages/orders.php:842
|
2578 |
msgid "Email Invoice"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: adminpages/orders.php:932 adminpages/orders.php:670
|
2582 |
#: adminpages/orders.php:699 adminpages/orders.php:803
|
2583 |
#: adminpages/orders.php:834 adminpages/orders.php:845
|
2584 |
msgid "Send an invoice for this order to: "
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: adminpages/orders.php:934 adminpages/orders.php:672
|
2588 |
#: adminpages/orders.php:701 adminpages/orders.php:805
|
2589 |
#: adminpages/orders.php:836 adminpages/orders.php:847
|
2590 |
msgid "Send Email"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
+
#: adminpages/orders.php:939 includes/adminpages.php:56
|
2594 |
#: includes/adminpages.php:172 adminpages/orders.php:520
|
2595 |
#: adminpages/orders.php:570 adminpages/orders.php:677
|
2596 |
#: adminpages/orders.php:706 adminpages/orders.php:810
|
2602 |
msgid "Orders"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: adminpages/orders.php:941 adminpages/orders.php:521
|
2606 |
#: adminpages/orders.php:571 adminpages/orders.php:678
|
2607 |
#: adminpages/orders.php:707 adminpages/orders.php:812
|
2608 |
#: adminpages/orders.php:843 adminpages/orders.php:854
|
2609 |
msgid "Add New Order"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: adminpages/orders.php:985 adminpages/orders.php:606
|
2613 |
#: adminpages/orders.php:713 adminpages/orders.php:742
|
2614 |
#: adminpages/orders.php:852 adminpages/orders.php:883
|
2615 |
#: adminpages/orders.php:894
|
2616 |
msgid "Within a Date Range"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: adminpages/orders.php:987 adminpages/orders.php:607
|
2620 |
#: adminpages/orders.php:714 adminpages/orders.php:743
|
2621 |
#: adminpages/orders.php:854 adminpages/orders.php:885
|
2622 |
#: adminpages/orders.php:896
|
2623 |
msgid "Predefined Date Range"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: adminpages/orders.php:989 adminpages/orders.php:608
|
2627 |
#: adminpages/orders.php:715 adminpages/orders.php:744
|
2628 |
#: adminpages/orders.php:856 adminpages/orders.php:887
|
2629 |
#: adminpages/orders.php:898
|
2630 |
msgid "Within a Level"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: adminpages/orders.php:991 adminpages/orders.php:609
|
2634 |
#: adminpages/orders.php:716 adminpages/orders.php:745
|
2635 |
#: adminpages/orders.php:858 adminpages/orders.php:889
|
2636 |
#: adminpages/orders.php:900
|
2637 |
msgid "Within a Status"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: adminpages/orders.php:994 adminpages/orders.php:612
|
2641 |
#: adminpages/orders.php:719 adminpages/orders.php:748
|
2642 |
#: adminpages/orders.php:861 adminpages/orders.php:892
|
2643 |
#: adminpages/orders.php:903
|
2644 |
msgid "From"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: adminpages/orders.php:1009 adminpages/orders.php:624
|
2648 |
#: adminpages/orders.php:731 adminpages/orders.php:760
|
2649 |
#: adminpages/orders.php:876 adminpages/orders.php:907
|
2650 |
#: adminpages/orders.php:918
|
2651 |
msgid "To"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: adminpages/orders.php:1022 adminpages/orders.php:636
|
2655 |
#: adminpages/orders.php:743 adminpages/orders.php:772
|
2656 |
#: adminpages/orders.php:889 adminpages/orders.php:920
|
2657 |
#: adminpages/orders.php:931
|
2658 |
msgid "filter by "
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: adminpages/orders.php:1060 adminpages/orders.php:674
|
2662 |
#: adminpages/orders.php:780 adminpages/orders.php:809
|
2663 |
#: adminpages/orders.php:932 adminpages/orders.php:963
|
2664 |
#: adminpages/orders.php:969
|
2665 |
msgid "Filter"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: adminpages/orders.php:1157 adminpages/orders.php:1160
|
2669 |
#: adminpages/orders.php:535 adminpages/orders.php:538
|
2670 |
#: adminpages/orders.php:777 adminpages/orders.php:780
|
2671 |
#: adminpages/orders.php:883 adminpages/orders.php:886
|
2676 |
msgid "Search Orders"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: adminpages/orders.php:1224 adminpages/orders.php:590
|
2680 |
#: adminpages/orders.php:893 adminpages/orders.php:903
|
2681 |
#: adminpages/orders.php:930 adminpages/orders.php:959
|
2682 |
#: adminpages/orders.php:1096 adminpages/orders.php:1127
|
2685 |
msgid "%d orders found."
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: adminpages/orders.php:1233 adminpages/reports/login.php:163
|
2689 |
#: classes/gateways/class.pmprogateway_payflowpro.php:116
|
2690 |
#: adminpages/orders.php:599 adminpages/orders.php:902
|
2691 |
#: adminpages/orders.php:912 adminpages/orders.php:939
|
2699 |
msgid "User"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: adminpages/orders.php:1235 includes/init.php:244 includes/profile.php:36
|
2703 |
#: pages/checkout.php:34 pages/confirmation.php:53 pages/confirmation.php:124
|
2704 |
#: pages/invoice.php:28 adminpages/orders.php:601 adminpages/orders.php:904
|
2705 |
#: adminpages/orders.php:914 adminpages/orders.php:941
|
2721 |
msgid "Membership Level"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: adminpages/orders.php:1237 adminpages/orders.php:1335
|
2725 |
#: adminpages/orders.php:603 adminpages/orders.php:651
|
2726 |
#: adminpages/orders.php:906 adminpages/orders.php:916
|
2727 |
#: adminpages/orders.php:943 adminpages/orders.php:954
|
2733 |
msgid "Payment"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: adminpages/orders.php:1239 adminpages/orders.php:605
|
2737 |
#: adminpages/orders.php:908 adminpages/orders.php:918
|
2738 |
#: adminpages/orders.php:945 adminpages/orders.php:974
|
2739 |
#: adminpages/orders.php:1111 adminpages/orders.php:1142
|
2741 |
msgid "Transaction IDs"
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: adminpages/orders.php:1273 adminpages/orders.php:630
|
2745 |
#: adminpages/orders.php:933 adminpages/orders.php:943
|
2746 |
#: adminpages/orders.php:972 adminpages/orders.php:1001
|
2747 |
#: adminpages/orders.php:1141 adminpages/orders.php:1172
|
2749 |
msgid "deleted"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: adminpages/orders.php:1275
|
2753 |
+
msgid "none"
|
2754 |
+
msgstr ""
|
2755 |
+
|
2756 |
+
#: adminpages/orders.php:1344 adminpages/orders.php:653
|
2757 |
#: adminpages/orders.php:956 adminpages/orders.php:974
|
2758 |
#: adminpages/orders.php:984 adminpages/orders.php:1013
|
2759 |
#: adminpages/orders.php:1042 adminpages/orders.php:1192
|
2761 |
msgid "Subscription"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: adminpages/orders.php:1366 adminpages/orders.php:664
|
2765 |
#: adminpages/orders.php:967 adminpages/orders.php:985
|
2766 |
#: adminpages/orders.php:995 adminpages/orders.php:998
|
2767 |
#: adminpages/orders.php:1027 adminpages/orders.php:1056
|
2773 |
"want to delete order %s?"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: adminpages/orders.php:1370 adminpages/orders.php:1030
|
2777 |
#: adminpages/orders.php:1059 adminpages/orders.php:1215
|
2778 |
#: adminpages/orders.php:1249 adminpages/orders.php:1255
|
2779 |
msgid "print"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: adminpages/orders.php:1374 adminpages/orders.php:1033
|
2783 |
#: adminpages/orders.php:1062 adminpages/orders.php:1219
|
2784 |
#: adminpages/orders.php:1253 adminpages/orders.php:1259
|
2785 |
msgid "email"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: adminpages/orders.php:1383 adminpages/orders.php:674
|
2789 |
#: adminpages/orders.php:977 adminpages/orders.php:995
|
2790 |
#: adminpages/orders.php:1005 adminpages/orders.php:1008
|
2791 |
#: adminpages/orders.php:1043 adminpages/orders.php:1072
|
3103 |
msgid "Sales Tax"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: adminpages/paymentsettings.php:205 pages/billing.php:117
|
3107 |
#: adminpages/paymentsettings.php:188 adminpages/paymentsettings.php:205
|
3108 |
#: adminpages/paymentsettings.php:398 adminpages/paymentsettings.php:438
|
3109 |
#: adminpages/paymentsettings.php:443 adminpages/paymentsettings.php:445
|
3546 |
"site's plugin page."
|
3547 |
msgstr ""
|
3548 |
|
3549 |
+
#: classes/class.memberorder.php:760 classes/class.memberorder.php:553
|
3550 |
#: classes/class.memberorder.php:561 classes/class.memberorder.php:564
|
3551 |
#: classes/class.memberorder.php:573 classes/class.memberorder.php:644
|
3552 |
#: classes/class.memberorder.php:697 classes/class.memberorder.php:699
|
3561 |
"active."
|
3562 |
msgstr ""
|
3563 |
|
3564 |
+
#: classes/class.memberorder.php:761 classes/class.memberorder.php:741
|
3565 |
+
#: classes/class.memberorder.php:744
|
3566 |
msgid "User Email"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
+
#: classes/class.memberorder.php:762 classes/class.memberorder.php:742
|
3570 |
+
#: classes/class.memberorder.php:745
|
3571 |
msgid "User Display Name"
|
3572 |
msgstr ""
|
3573 |
|
3579 |
#: classes/class.pmproemail.php:143 classes/class.pmproemail.php:120
|
3580 |
#: classes/class.pmproemail.php:122 classes/class.pmproemail.php:125
|
3581 |
#: classes/class.pmproemail.php:134 classes/class.pmproemail.php:136
|
3582 |
+
#: classes/class.pmproemail.php:143
|
3583 |
#, php-format
|
3584 |
msgid "Your membership at %s has been CANCELLED"
|
3585 |
msgstr ""
|
3587 |
#: classes/class.pmproemail.php:176 classes/class.pmproemail.php:142
|
3588 |
#: classes/class.pmproemail.php:144 classes/class.pmproemail.php:147
|
3589 |
#: classes/class.pmproemail.php:156 classes/class.pmproemail.php:166
|
3590 |
+
#: classes/class.pmproemail.php:169 classes/class.pmproemail.php:176
|
3591 |
#, php-format
|
3592 |
msgid "Membership for %s at %s has been CANCELLED"
|
3593 |
msgstr ""
|
3596 |
#: classes/class.pmproemail.php:173 classes/class.pmproemail.php:175
|
3597 |
#: classes/class.pmproemail.php:178 classes/class.pmproemail.php:187
|
3598 |
#: classes/class.pmproemail.php:207 classes/class.pmproemail.php:212
|
3599 |
+
#: classes/class.pmproemail.php:219
|
3600 |
#, php-format
|
3601 |
msgid "Your membership confirmation for %s"
|
3602 |
msgstr ""
|
3606 |
#: classes/class.pmproemail.php:385 classes/class.pmproemail.php:703
|
3607 |
#: classes/class.pmproemail.php:705
|
3608 |
#: classes/gateways/class.pmprogateway_braintree.php:489
|
3609 |
+
#: classes/gateways/class.pmprogateway_stripe.php:652 pages/checkout.php:70
|
3610 |
#: pages/checkout.php:76 pages/checkout.php:498 pages/confirmation.php:58
|
3611 |
#: pages/invoice.php:33 classes/class.pmproemail.php:216
|
3612 |
#: classes/class.pmproemail.php:218 classes/class.pmproemail.php:225
|
3616 |
#: classes/class.pmproemail.php:240 classes/class.pmproemail.php:246
|
3617 |
#: classes/class.pmproemail.php:249 classes/class.pmproemail.php:258
|
3618 |
#: classes/class.pmproemail.php:260 classes/class.pmproemail.php:269
|
3619 |
+
#: classes/class.pmproemail.php:276 classes/class.pmproemail.php:278
|
3620 |
+
#: classes/class.pmproemail.php:285 classes/class.pmproemail.php:287
|
3621 |
+
#: classes/class.pmproemail.php:294 classes/class.pmproemail.php:304
|
3622 |
+
#: classes/class.pmproemail.php:307 classes/class.pmproemail.php:313
|
3623 |
+
#: classes/class.pmproemail.php:316 classes/class.pmproemail.php:325
|
3624 |
+
#: classes/class.pmproemail.php:328 classes/class.pmproemail.php:334
|
3625 |
+
#: classes/class.pmproemail.php:337 classes/class.pmproemail.php:346
|
3626 |
+
#: classes/class.pmproemail.php:357 classes/class.pmproemail.php:366
|
3627 |
+
#: classes/class.pmproemail.php:369 classes/class.pmproemail.php:376
|
3628 |
+
#: classes/class.pmproemail.php:378 classes/class.pmproemail.php:385
|
3629 |
+
#: classes/class.pmproemail.php:532 classes/class.pmproemail.php:580
|
3630 |
+
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:648
|
3631 |
+
#: classes/class.pmproemail.php:657 classes/class.pmproemail.php:659
|
3632 |
+
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:696
|
3633 |
+
#: classes/class.pmproemail.php:698 classes/class.pmproemail.php:703
|
3634 |
+
#: classes/class.pmproemail.php:705
|
3635 |
#: classes/gateways/class.pmprogateway_braintree.php:349
|
3636 |
#: classes/gateways/class.pmprogateway_braintree.php:362
|
3637 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
3655 |
#: classes/gateways/class.pmprogateway_stripe.php:611
|
3656 |
#: classes/gateways/class.pmprogateway_stripe.php:638
|
3657 |
#: classes/gateways/class.pmprogateway_stripe.php:644
|
3658 |
+
#: classes/gateways/class.pmprogateway_stripe.php:660
|
3659 |
+
#: classes/gateways/class.pmprogateway_stripe.php:661 pages/checkout.php:66
|
3660 |
#: pages/checkout.php:67 pages/checkout.php:68 pages/checkout.php:70
|
3661 |
#: pages/checkout.php:75 pages/checkout.php:76 pages/checkout.php:77
|
3662 |
#: pages/checkout.php:78 pages/checkout.php:83 pages/checkout.php:85
|
3675 |
#: classes/class.pmproemail.php:243 classes/class.pmproemail.php:253
|
3676 |
#: classes/class.pmproemail.php:256 classes/class.pmproemail.php:265
|
3677 |
#: classes/class.pmproemail.php:285 classes/class.pmproemail.php:294
|
3678 |
+
#: classes/class.pmproemail.php:301 classes/class.pmproemail.php:325
|
3679 |
+
#: classes/class.pmproemail.php:328 classes/class.pmproemail.php:346
|
3680 |
+
#: classes/class.pmproemail.php:349 classes/class.pmproemail.php:358
|
3681 |
+
#: classes/class.pmproemail.php:378 classes/class.pmproemail.php:390
|
3682 |
+
#: classes/class.pmproemail.php:397 classes/class.pmproemail.php:538
|
3683 |
#: classes/class.pmproemail.php:586 classes/class.pmproemail.php:651
|
3684 |
#: classes/class.pmproemail.php:654 classes/class.pmproemail.php:663
|
3685 |
#: classes/class.pmproemail.php:665 classes/class.pmproemail.php:685
|
3686 |
+
#: classes/class.pmproemail.php:705 classes/class.pmproemail.php:712
|
3687 |
#, php-format
|
3688 |
msgid "This membership will expire on %s."
|
3689 |
msgstr ""
|
3692 |
#: classes/class.pmproemail.php:265 classes/class.pmproemail.php:275
|
3693 |
#: classes/class.pmproemail.php:278 classes/class.pmproemail.php:287
|
3694 |
#: classes/class.pmproemail.php:307 classes/class.pmproemail.php:316
|
3695 |
+
#: classes/class.pmproemail.php:323
|
3696 |
#, php-format
|
3697 |
msgid "Member Checkout for %s at %s"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
#: classes/class.pmproemail.php:414 classes/class.pmproemail.php:375
|
3701 |
#: classes/class.pmproemail.php:395 classes/class.pmproemail.php:407
|
3702 |
+
#: classes/class.pmproemail.php:414
|
3703 |
#, php-format
|
3704 |
msgid "Your billing information has been updated at %s"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:428
|
3708 |
#: classes/class.pmproemail.php:448 classes/class.pmproemail.php:461
|
3709 |
+
#: classes/class.pmproemail.php:468
|
3710 |
#, php-format
|
3711 |
msgid "Billing information has been updated for %s at %s"
|
3712 |
msgstr ""
|
3715 |
#: classes/class.pmproemail.php:430 classes/class.pmproemail.php:464
|
3716 |
#: classes/class.pmproemail.php:467 classes/class.pmproemail.php:476
|
3717 |
#: classes/class.pmproemail.php:496 classes/class.pmproemail.php:510
|
3718 |
+
#: classes/class.pmproemail.php:517
|
3719 |
#, php-format
|
3720 |
msgid "Membership Payment Failed at %s"
|
3721 |
msgstr ""
|
3724 |
#: classes/class.pmproemail.php:468 classes/class.pmproemail.php:510
|
3725 |
#: classes/class.pmproemail.php:513 classes/class.pmproemail.php:522
|
3726 |
#: classes/class.pmproemail.php:542 classes/class.pmproemail.php:557
|
3727 |
+
#: classes/class.pmproemail.php:564
|
3728 |
#, php-format
|
3729 |
msgid "Membership Payment Failed For %s at %s"
|
3730 |
msgstr ""
|
3732 |
#: classes/class.pmproemail.php:612 classes/class.pmproemail.php:508
|
3733 |
#: classes/class.pmproemail.php:557 classes/class.pmproemail.php:560
|
3734 |
#: classes/class.pmproemail.php:569 classes/class.pmproemail.php:589
|
3735 |
+
#: classes/class.pmproemail.php:605 classes/class.pmproemail.php:612
|
3736 |
#, php-format
|
3737 |
msgid "Credit Card on File Expiring Soon at %s"
|
3738 |
msgstr ""
|
3741 |
#: classes/class.pmproemail.php:548 classes/class.pmproemail.php:605
|
3742 |
#: classes/class.pmproemail.php:608 classes/class.pmproemail.php:617
|
3743 |
#: classes/class.pmproemail.php:619 classes/class.pmproemail.php:639
|
3744 |
+
#: classes/class.pmproemail.php:656 classes/class.pmproemail.php:663
|
3745 |
#, php-format
|
3746 |
msgid "INVOICE for %s membership"
|
3747 |
msgstr ""
|
3750 |
#: classes/class.pmproemail.php:611 classes/class.pmproemail.php:676
|
3751 |
#: classes/class.pmproemail.php:679 classes/class.pmproemail.php:688
|
3752 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:710
|
3753 |
+
#: classes/class.pmproemail.php:733 classes/class.pmproemail.php:740
|
3754 |
#, php-format
|
3755 |
msgid "Your trial at %s is ending soon"
|
3756 |
msgstr ""
|
3759 |
#: classes/class.pmproemail.php:645 classes/class.pmproemail.php:710
|
3760 |
#: classes/class.pmproemail.php:713 classes/class.pmproemail.php:722
|
3761 |
#: classes/class.pmproemail.php:724 classes/class.pmproemail.php:744
|
3762 |
+
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:776
|
3763 |
#, php-format
|
3764 |
msgid "Your membership at %s has ended"
|
3765 |
msgstr ""
|
3768 |
#: classes/class.pmproemail.php:670 classes/class.pmproemail.php:735
|
3769 |
#: classes/class.pmproemail.php:738 classes/class.pmproemail.php:747
|
3770 |
#: classes/class.pmproemail.php:749 classes/class.pmproemail.php:769
|
3771 |
+
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:803
|
3772 |
#, php-format
|
3773 |
msgid "Your membership at %s will end soon"
|
3774 |
msgstr ""
|
3777 |
#: classes/class.pmproemail.php:690 classes/class.pmproemail.php:755
|
3778 |
#: classes/class.pmproemail.php:758 classes/class.pmproemail.php:767
|
3779 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:789
|
3780 |
+
#: classes/class.pmproemail.php:818 classes/class.pmproemail.php:825
|
3781 |
#, php-format
|
3782 |
msgid "Your membership at %s has been changed"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#: classes/class.pmproemail.php:830 classes/class.pmproemail.php:877
|
3786 |
#: classes/class.pmproemail.php:759 classes/class.pmproemail.php:762
|
3787 |
#: classes/class.pmproemail.php:771 classes/class.pmproemail.php:773
|
3788 |
#: classes/class.pmproemail.php:793 classes/class.pmproemail.php:800
|
3789 |
#: classes/class.pmproemail.php:809 classes/class.pmproemail.php:810
|
3790 |
#: classes/class.pmproemail.php:811 classes/class.pmproemail.php:823
|
3791 |
#: classes/class.pmproemail.php:830 classes/class.pmproemail.php:863
|
3792 |
+
#: classes/class.pmproemail.php:870
|
3793 |
#, php-format
|
3794 |
msgid "The new level is %s"
|
3795 |
msgstr ""
|
3798 |
#: classes/class.pmproemail.php:696 classes/class.pmproemail.php:761
|
3799 |
#: classes/class.pmproemail.php:764 classes/class.pmproemail.php:773
|
3800 |
#: classes/class.pmproemail.php:775 classes/class.pmproemail.php:795
|
3801 |
+
#: classes/class.pmproemail.php:825 classes/class.pmproemail.php:832
|
3802 |
msgid "Your membership has been cancelled"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
+
#: classes/class.pmproemail.php:836 classes/class.pmproemail.php:884
|
3806 |
#: classes/class.pmproemail.php:651 classes/class.pmproemail.php:689
|
3807 |
#: classes/class.pmproemail.php:700 classes/class.pmproemail.php:738
|
3808 |
#: classes/class.pmproemail.php:765 classes/class.pmproemail.php:768
|
3812 |
#: classes/class.pmproemail.php:815 classes/class.pmproemail.php:816
|
3813 |
#: classes/class.pmproemail.php:817 classes/class.pmproemail.php:829
|
3814 |
#: classes/class.pmproemail.php:836 classes/class.pmproemail.php:869
|
3815 |
+
#: classes/class.pmproemail.php:876
|
3816 |
#, php-format
|
3817 |
msgid "This membership will expire on %s"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: classes/class.pmproemail.php:840 classes/class.pmproemail.php:888
|
3821 |
#: classes/class.pmproemail.php:655 classes/class.pmproemail.php:693
|
3822 |
#: classes/class.pmproemail.php:704 classes/class.pmproemail.php:742
|
3823 |
#: classes/class.pmproemail.php:769 classes/class.pmproemail.php:772
|
3827 |
#: classes/class.pmproemail.php:819 classes/class.pmproemail.php:820
|
3828 |
#: classes/class.pmproemail.php:821 classes/class.pmproemail.php:833
|
3829 |
#: classes/class.pmproemail.php:840 classes/class.pmproemail.php:873
|
3830 |
+
#: classes/class.pmproemail.php:880
|
3831 |
msgid "This membership does not expire"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: classes/class.pmproemail.php:868 includes/init.php:265
|
3835 |
+
#: includes/profile.php:48 includes/init.php:229 includes/init.php:232
|
3836 |
+
#: includes/init.php:233 includes/init.php:235 includes/init.php:237
|
3837 |
+
#: includes/init.php:245 includes/init.php:253 includes/init.php:258
|
3838 |
+
#: includes/init.php:259 includes/profile.php:37 includes/profile.php:39
|
3839 |
+
#: includes/profile.php:42 includes/profile.php:48
|
3840 |
+
msgid "None"
|
3841 |
+
msgstr ""
|
3842 |
+
|
3843 |
+
#: classes/class.pmproemail.php:872 classes/class.pmproemail.php:679
|
3844 |
#: classes/class.pmproemail.php:728 classes/class.pmproemail.php:793
|
3845 |
#: classes/class.pmproemail.php:796 classes/class.pmproemail.php:805
|
3846 |
#: classes/class.pmproemail.php:806 classes/class.pmproemail.php:807
|
3847 |
#: classes/class.pmproemail.php:826 classes/class.pmproemail.php:859
|
3848 |
+
#: classes/class.pmproemail.php:866
|
3849 |
#, php-format
|
3850 |
msgid "Membership for %s at %s has been changed"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
+
#: classes/class.pmproemail.php:879 classes/class.pmproemail.php:799
|
3854 |
#: classes/class.pmproemail.php:802 classes/class.pmproemail.php:811
|
3855 |
#: classes/class.pmproemail.php:812 classes/class.pmproemail.php:813
|
3856 |
#: classes/class.pmproemail.php:832 classes/class.pmproemail.php:865
|
3857 |
+
#: classes/class.pmproemail.php:872
|
3858 |
msgid "Membership has been cancelled"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
+
#: classes/class.pmproemail.php:919 classes/class.pmproemail.php:848
|
3862 |
#: classes/class.pmproemail.php:849 classes/class.pmproemail.php:850
|
3863 |
#: classes/class.pmproemail.php:869 classes/class.pmproemail.php:904
|
3864 |
+
#: classes/class.pmproemail.php:911
|
3865 |
msgid "Invoice for Order #: "
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: classes/class.pmproemail.php:963 classes/class.pmproemail.php:948
|
3869 |
+
#: classes/class.pmproemail.php:955
|
3870 |
msgid ""
|
3871 |
"<p>An administrator at !!sitename!! has changed your membership level.</p>\n"
|
3872 |
"\n"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
3975 |
+
#: paid-memberships-pro.php:136
|
3976 |
#: classes/gateways/class.pmprogateway_authorizenet.php:39
|
3977 |
#: paid-memberships-pro.php:122 paid-memberships-pro.php:123
|
3978 |
#: paid-memberships-pro.php:130 paid-memberships-pro.php:131
|
4062 |
msgstr ""
|
4063 |
|
4064 |
#: classes/gateways/class.pmprogateway_braintree.php:220
|
4065 |
+
#: paid-memberships-pro.php:137
|
4066 |
#: classes/gateways/class.pmprogateway_braintree.php:63
|
4067 |
#: classes/gateways/class.pmprogateway_braintree.php:76
|
4068 |
#: classes/gateways/class.pmprogateway_braintree.php:77
|
4145 |
msgstr ""
|
4146 |
|
4147 |
#: classes/gateways/class.pmprogateway_braintree.php:313
|
4148 |
+
#: classes/gateways/class.pmprogateway_stripe.php:297
|
4149 |
#: adminpages/paymentsettings.php:462 adminpages/paymentsettings.php:470
|
4150 |
#: adminpages/paymentsettings.php:503 adminpages/paymentsettings.php:509
|
4151 |
#: adminpages/paymentsettings.php:511 adminpages/paymentsettings.php:517
|
4168 |
#: classes/gateways/class.pmprogateway_stripe.php:257
|
4169 |
#: classes/gateways/class.pmprogateway_stripe.php:289
|
4170 |
#: classes/gateways/class.pmprogateway_stripe.php:305
|
4171 |
+
#: classes/gateways/class.pmprogateway_stripe.php:306
|
4172 |
msgid "Web Hook URL"
|
4173 |
msgstr ""
|
4174 |
|
4186 |
msgstr ""
|
4187 |
|
4188 |
#: classes/gateways/class.pmprogateway_braintree.php:434
|
4189 |
+
#: classes/gateways/class.pmprogateway_stripe.php:569 pages/checkout.php:411
|
4190 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
4191 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
4192 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
4210 |
#: classes/gateways/class.pmprogateway_stripe.php:499
|
4211 |
#: classes/gateways/class.pmprogateway_stripe.php:526
|
4212 |
#: classes/gateways/class.pmprogateway_stripe.php:561
|
4213 |
+
#: classes/gateways/class.pmprogateway_stripe.php:577
|
4214 |
+
#: classes/gateways/class.pmprogateway_stripe.php:578 pages/checkout.php:411
|
4215 |
#: pages/checkout.php:476 pages/checkout.php:478 pages/checkout.php:485
|
4216 |
#: pages/checkout.php:493 pages/checkout.php:494 pages/checkout.php:500
|
4217 |
#: pages/checkout.php:501 pages/checkout.php:503 pages/checkout.php:510
|
4220 |
msgstr ""
|
4221 |
|
4222 |
#: classes/gateways/class.pmprogateway_braintree.php:435
|
4223 |
+
#: classes/gateways/class.pmprogateway_stripe.php:570 pages/checkout.php:412
|
4224 |
#: classes/gateways/class.pmprogateway_braintree.php:270
|
4225 |
#: classes/gateways/class.pmprogateway_braintree.php:283
|
4226 |
#: classes/gateways/class.pmprogateway_braintree.php:285
|
4244 |
#: classes/gateways/class.pmprogateway_stripe.php:500
|
4245 |
#: classes/gateways/class.pmprogateway_stripe.php:527
|
4246 |
#: classes/gateways/class.pmprogateway_stripe.php:562
|
4247 |
+
#: classes/gateways/class.pmprogateway_stripe.php:578
|
4248 |
+
#: classes/gateways/class.pmprogateway_stripe.php:579 pages/checkout.php:412
|
4249 |
#: pages/checkout.php:476 pages/checkout.php:478 pages/checkout.php:485
|
4250 |
#: pages/checkout.php:493 pages/checkout.php:494 pages/checkout.php:500
|
4251 |
#: pages/checkout.php:502 pages/checkout.php:504 pages/checkout.php:511
|
4255 |
msgstr ""
|
4256 |
|
4257 |
#: classes/gateways/class.pmprogateway_braintree.php:455
|
4258 |
+
#: classes/gateways/class.pmprogateway_stripe.php:617 pages/billing.php:309
|
4259 |
#: pages/checkout.php:459 classes/gateways/class.pmprogateway_braintree.php:303
|
4260 |
#: classes/gateways/class.pmprogateway_braintree.php:316
|
4261 |
#: classes/gateways/class.pmprogateway_braintree.php:318
|
4278 |
#: classes/gateways/class.pmprogateway_stripe.php:565
|
4279 |
#: classes/gateways/class.pmprogateway_stripe.php:592
|
4280 |
#: classes/gateways/class.pmprogateway_stripe.php:609
|
4281 |
+
#: classes/gateways/class.pmprogateway_stripe.php:625
|
4282 |
+
#: classes/gateways/class.pmprogateway_stripe.php:626 pages/billing.php:244
|
4283 |
#: pages/billing.php:248 pages/billing.php:257 pages/billing.php:260
|
4284 |
#: pages/billing.php:263 pages/billing.php:305 pages/billing.php:311
|
4285 |
#: pages/billing.php:312 pages/billing.php:313 pages/billing.php:314
|
4290 |
msgid "Card Number"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
+
#: classes/gateways/class.pmprogateway_braintree.php:483 pages/billing.php:348
|
4294 |
#: classes/gateways/class.pmprogateway_braintree.php:340
|
4295 |
#: classes/gateways/class.pmprogateway_braintree.php:353
|
4296 |
#: classes/gateways/class.pmprogateway_braintree.php:355
|
4324 |
msgstr ""
|
4325 |
|
4326 |
#: classes/gateways/class.pmprogateway_braintree.php:484
|
4327 |
+
#: classes/gateways/class.pmprogateway_stripe.php:647 pages/billing.php:349
|
4328 |
#: pages/checkout.php:493 classes/gateways/class.pmprogateway_braintree.php:341
|
4329 |
#: classes/gateways/class.pmprogateway_braintree.php:354
|
4330 |
#: classes/gateways/class.pmprogateway_braintree.php:356
|
4347 |
#: classes/gateways/class.pmprogateway_stripe.php:603
|
4348 |
#: classes/gateways/class.pmprogateway_stripe.php:630
|
4349 |
#: classes/gateways/class.pmprogateway_stripe.php:639
|
4350 |
+
#: classes/gateways/class.pmprogateway_stripe.php:655
|
4351 |
+
#: classes/gateways/class.pmprogateway_stripe.php:656 pages/billing.php:282
|
4352 |
#: pages/billing.php:286 pages/billing.php:295 pages/billing.php:298
|
4353 |
#: pages/billing.php:302 pages/billing.php:344 pages/billing.php:352
|
4354 |
#: pages/billing.php:353 pages/billing.php:355 pages/billing.php:358
|
4361 |
msgstr ""
|
4362 |
|
4363 |
#: classes/gateways/class.pmprogateway_braintree.php:491
|
4364 |
+
#: classes/gateways/class.pmprogateway_stripe.php:654 pages/checkout.php:78
|
4365 |
#: pages/checkout.php:500 classes/gateways/class.pmprogateway_braintree.php:351
|
4366 |
#: classes/gateways/class.pmprogateway_braintree.php:364
|
4367 |
#: classes/gateways/class.pmprogateway_braintree.php:366
|
4385 |
#: classes/gateways/class.pmprogateway_stripe.php:613
|
4386 |
#: classes/gateways/class.pmprogateway_stripe.php:640
|
4387 |
#: classes/gateways/class.pmprogateway_stripe.php:646
|
4388 |
+
#: classes/gateways/class.pmprogateway_stripe.php:662
|
4389 |
+
#: classes/gateways/class.pmprogateway_stripe.php:663 pages/checkout.php:78
|
4390 |
#: pages/checkout.php:79 pages/checkout.php:80 pages/checkout.php:87
|
4391 |
#: pages/checkout.php:88 pages/checkout.php:95 pages/checkout.php:98
|
4392 |
#: pages/checkout.php:500 pages/checkout.php:551 pages/checkout.php:567
|
4424 |
msgstr ""
|
4425 |
|
4426 |
#: classes/gateways/class.pmprogateway_braintree.php:554
|
4427 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1131
|
4428 |
#: classes/gateways/class.pmprogateway_braintree.php:61
|
4429 |
#: classes/gateways/class.pmprogateway_braintree.php:406
|
4430 |
#: classes/gateways/class.pmprogateway_braintree.php:419
|
4450 |
#: classes/gateways/class.pmprogateway_stripe.php:1105
|
4451 |
#: classes/gateways/class.pmprogateway_stripe.php:1123
|
4452 |
#: classes/gateways/class.pmprogateway_stripe.php:1139
|
4453 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1140
|
4454 |
#: classes/gateways/class.pmprogateway_stripe.php:1143
|
4455 |
#: classes/gateways/class.pmprogateway_stripe.php:1176
|
4456 |
msgid "Unknown error: Initial payment failed."
|
4629 |
msgstr ""
|
4630 |
|
4631 |
#: classes/gateways/class.pmprogateway_check.php:49
|
4632 |
+
#: paid-memberships-pro.php:130 adminpages/orders.php:399
|
4633 |
#: adminpages/orders.php:449 adminpages/paymentsettings.php:157
|
4634 |
#: adminpages/paymentsettings.php:159
|
4635 |
#: classes/gateways/class.pmprogateway_check.php:48
|
4753 |
msgstr ""
|
4754 |
|
4755 |
#: classes/gateways/class.pmprogateway_paypal.php:68
|
4756 |
+
#: paid-memberships-pro.php:133
|
4757 |
#: classes/gateways/class.pmprogateway_paypal.php:57
|
4758 |
#: classes/gateways/class.pmprogateway_paypal.php:68
|
4759 |
#: paid-memberships-pro.php:119 paid-memberships-pro.php:120
|
4897 |
msgstr ""
|
4898 |
|
4899 |
#: classes/gateways/class.pmprogateway_paypal.php:201
|
4900 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:444
|
4901 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:229
|
4902 |
#: pages/checkout.php:263 classes/gateways/class.pmprogateway_paypal.php:178
|
4903 |
#: classes/gateways/class.pmprogateway_paypal.php:201
|
4915 |
msgstr ""
|
4916 |
|
4917 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
4918 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:449
|
4919 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:234
|
4920 |
#: pages/checkout.php:598 classes/gateways/class.pmprogateway_paypal.php:184
|
4921 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
4934 |
msgstr ""
|
4935 |
|
4936 |
#: classes/gateways/class.pmprogateway_paypal.php:207
|
4937 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:449
|
4938 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:234
|
4939 |
#: classes/gateways/class.pmprogateway_twocheckout.php:203
|
4940 |
#: pages/checkout.php:598 classes/gateways/class.pmprogateway_paypal.php:184
|
4957 |
msgstr ""
|
4958 |
|
4959 |
#: classes/gateways/class.pmprogateway_paypal.php:631
|
4960 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:783
|
4961 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:575
|
4962 |
#: classes/gateways/class.pmprogateway_paypal.php:385
|
4963 |
#: classes/gateways/class.pmprogateway_paypal.php:605
|
4985 |
msgstr ""
|
4986 |
|
4987 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:84
|
4988 |
+
#: paid-memberships-pro.php:132
|
4989 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:63
|
4990 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:73
|
4991 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:84
|
5006 |
msgid "To fully integrate with PayPal, be sure to set your IPN Handler URL to "
|
5007 |
msgstr ""
|
5008 |
|
5009 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:307
|
5010 |
+
#: classes/gateways/class.pmprogateway_paypalexpress.php:363
|
5011 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:268
|
5012 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:278
|
5013 |
#: classes/gateways/class.pmprogateway_paypalexpress.php:301
|
5024 |
msgstr ""
|
5025 |
|
5026 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:71
|
5027 |
+
#: paid-memberships-pro.php:135
|
5028 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:60
|
5029 |
#: classes/gateways/class.pmprogateway_paypalstandard.php:71
|
5030 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:122
|
5049 |
msgstr ""
|
5050 |
|
5051 |
#: classes/gateways/class.pmprogateway_stripe.php:201
|
5052 |
+
#: paid-memberships-pro.php:131
|
5053 |
#: classes/gateways/class.pmprogateway_stripe.php:93
|
5054 |
#: classes/gateways/class.pmprogateway_stripe.php:94
|
5055 |
#: classes/gateways/class.pmprogateway_stripe.php:104
|
5121 |
msgid "Secret Key"
|
5122 |
msgstr ""
|
5123 |
|
|
|
5124 |
#: classes/gateways/class.pmprogateway_stripe.php:285
|
|
|
|
|
|
|
|
|
5125 |
#: adminpages/paymentsettings.php:425 adminpages/paymentsettings.php:430
|
5126 |
#: adminpages/paymentsettings.php:432
|
5127 |
#: classes/gateways/class.pmprogateway_stripe.php:169
|
5135 |
#: classes/gateways/class.pmprogateway_stripe.php:245
|
5136 |
#: classes/gateways/class.pmprogateway_stripe.php:277
|
5137 |
#: classes/gateways/class.pmprogateway_stripe.php:293
|
5138 |
+
#: classes/gateways/class.pmprogateway_stripe.php:294
|
5139 |
msgid "Show Billing Address Fields"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
+
#: classes/gateways/class.pmprogateway_stripe.php:292
|
5143 |
#: adminpages/paymentsettings.php:437 adminpages/paymentsettings.php:439
|
5144 |
#: classes/gateways/class.pmprogateway_stripe.php:176
|
5145 |
#: classes/gateways/class.pmprogateway_stripe.php:177
|
5152 |
#: classes/gateways/class.pmprogateway_stripe.php:252
|
5153 |
#: classes/gateways/class.pmprogateway_stripe.php:284
|
5154 |
#: classes/gateways/class.pmprogateway_stripe.php:300
|
5155 |
+
#: classes/gateways/class.pmprogateway_stripe.php:301
|
5156 |
msgid ""
|
5157 |
"Stripe doesn't require billing address fields. Choose 'No' to hide them on "
|
5158 |
"the checkout page.<br /><strong>If No, make sure you disable address "
|
5159 |
"verification in the Stripe dashboard settings.</strong>"
|
5160 |
msgstr ""
|
5161 |
|
5162 |
+
#: classes/gateways/class.pmprogateway_stripe.php:300
|
5163 |
#: adminpages/paymentsettings.php:465 adminpages/paymentsettings.php:506
|
5164 |
#: adminpages/paymentsettings.php:512 adminpages/paymentsettings.php:514
|
5165 |
#: classes/gateways/class.pmprogateway_stripe.php:184
|
5173 |
#: classes/gateways/class.pmprogateway_stripe.php:260
|
5174 |
#: classes/gateways/class.pmprogateway_stripe.php:292
|
5175 |
#: classes/gateways/class.pmprogateway_stripe.php:308
|
5176 |
+
#: classes/gateways/class.pmprogateway_stripe.php:309
|
5177 |
msgid "To fully integrate with Stripe, be sure to set your Web Hook URL to"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
+
#: classes/gateways/class.pmprogateway_stripe.php:646 pages/checkout.php:492
|
5181 |
#: classes/gateways/class.pmprogateway_stripe.php:638
|
5182 |
+
#: classes/gateways/class.pmprogateway_stripe.php:654
|
5183 |
+
#: classes/gateways/class.pmprogateway_stripe.php:655 pages/checkout.php:492
|
5184 |
msgid "Security Code (CVC)"
|
5185 |
msgstr ""
|
5186 |
|
5187 |
+
#: classes/gateways/class.pmprogateway_stripe.php:718
|
5188 |
#: classes/gateways/class.pmprogateway_stripe.php:703
|
5189 |
#: classes/gateways/class.pmprogateway_stripe.php:710
|
5190 |
#: classes/gateways/class.pmprogateway_stripe.php:726
|
5191 |
+
#: classes/gateways/class.pmprogateway_stripe.php:727
|
5192 |
#, php-format
|
5193 |
msgid ""
|
5194 |
"%1$sNote:%2$s Subscription %3$s%4$s%5$s could not be found at Stripe. It may "
|
5195 |
"have been deleted."
|
5196 |
msgstr ""
|
5197 |
|
5198 |
+
#: classes/gateways/class.pmprogateway_stripe.php:725
|
5199 |
#: classes/gateways/class.pmprogateway_stripe.php:567
|
5200 |
#: classes/gateways/class.pmprogateway_stripe.php:568
|
5201 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
5210 |
#: classes/gateways/class.pmprogateway_stripe.php:710
|
5211 |
#: classes/gateways/class.pmprogateway_stripe.php:717
|
5212 |
#: classes/gateways/class.pmprogateway_stripe.php:733
|
5213 |
+
#: classes/gateways/class.pmprogateway_stripe.php:734
|
5214 |
msgid "Subscription Updates"
|
5215 |
msgstr ""
|
5216 |
|
5217 |
+
#: classes/gateways/class.pmprogateway_stripe.php:729
|
5218 |
#: classes/gateways/class.pmprogateway_stripe.php:571
|
5219 |
#: classes/gateways/class.pmprogateway_stripe.php:572
|
5220 |
#: classes/gateways/class.pmprogateway_stripe.php:582
|
5229 |
#: classes/gateways/class.pmprogateway_stripe.php:714
|
5230 |
#: classes/gateways/class.pmprogateway_stripe.php:721
|
5231 |
#: classes/gateways/class.pmprogateway_stripe.php:737
|
5232 |
+
#: classes/gateways/class.pmprogateway_stripe.php:738
|
5233 |
msgid ""
|
5234 |
"Subscription updates, allow you to change the member's subscription values "
|
5235 |
"at predefined times. Be sure to click Update Profile after making changes."
|
5236 |
msgstr ""
|
5237 |
|
5238 |
+
#: classes/gateways/class.pmprogateway_stripe.php:731
|
5239 |
#: classes/gateways/class.pmprogateway_stripe.php:573
|
5240 |
#: classes/gateways/class.pmprogateway_stripe.php:574
|
5241 |
#: classes/gateways/class.pmprogateway_stripe.php:584
|
5250 |
#: classes/gateways/class.pmprogateway_stripe.php:716
|
5251 |
#: classes/gateways/class.pmprogateway_stripe.php:723
|
5252 |
#: classes/gateways/class.pmprogateway_stripe.php:739
|
5253 |
+
#: classes/gateways/class.pmprogateway_stripe.php:740
|
5254 |
msgid ""
|
5255 |
"Subscription updates, allow you to change the member's subscription values "
|
5256 |
"at predefined times. Be sure to click Update User after making changes."
|
5257 |
msgstr ""
|
5258 |
|
5259 |
+
#: classes/gateways/class.pmprogateway_stripe.php:736 pages/billing.php:362
|
5260 |
#: classes/gateways/class.pmprogateway_stripe.php:578
|
5261 |
#: classes/gateways/class.pmprogateway_stripe.php:579
|
5262 |
#: classes/gateways/class.pmprogateway_stripe.php:589
|
5270 |
#: classes/gateways/class.pmprogateway_stripe.php:694
|
5271 |
#: classes/gateways/class.pmprogateway_stripe.php:721
|
5272 |
#: classes/gateways/class.pmprogateway_stripe.php:728
|
5273 |
+
#: classes/gateways/class.pmprogateway_stripe.php:744
|
5274 |
+
#: classes/gateways/class.pmprogateway_stripe.php:745 pages/billing.php:294
|
5275 |
#: pages/billing.php:298 pages/billing.php:329 pages/billing.php:338
|
5276 |
#: pages/billing.php:341 pages/billing.php:343 pages/billing.php:347
|
5277 |
#: pages/billing.php:363 pages/billing.php:364 pages/billing.php:370
|
5280 |
msgid "Update"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1127
|
5284 |
#: classes/gateways/class.pmprogateway_stripe.php:1119
|
5285 |
#: classes/gateways/class.pmprogateway_stripe.php:1135
|
5286 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1136
|
5287 |
#: classes/gateways/class.pmprogateway_stripe.php:1172
|
5288 |
msgid "Payment error: Please contact the webmaster (stripe-load-error)"
|
5289 |
msgstr ""
|
5290 |
|
5291 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1365
|
5292 |
#: classes/gateways/class.pmprogateway_stripe.php:190
|
5293 |
#: classes/gateways/class.pmprogateway_stripe.php:192
|
5294 |
#: classes/gateways/class.pmprogateway_stripe.php:199
|
5315 |
msgid "Error creating customer record with Stripe:"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1424
|
5319 |
#: classes/gateways/class.pmprogateway_stripe.php:1275
|
5320 |
#: classes/gateways/class.pmprogateway_stripe.php:1303
|
5321 |
#: classes/gateways/class.pmprogateway_stripe.php:1313
|
5332 |
msgid "Error getting subscription with Stripe:"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1580
|
5336 |
#: classes/gateways/class.pmprogateway_stripe.php:278
|
5337 |
#: classes/gateways/class.pmprogateway_stripe.php:279
|
5338 |
#: classes/gateways/class.pmprogateway_stripe.php:286
|
5367 |
msgid "Error creating plan with Stripe:"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1611
|
5371 |
#: classes/gateways/class.pmprogateway_stripe.php:294
|
5372 |
#: classes/gateways/class.pmprogateway_stripe.php:295
|
5373 |
#: classes/gateways/class.pmprogateway_stripe.php:302
|
5397 |
msgid "Error subscribing customer to plan with Stripe:"
|
5398 |
msgstr ""
|
5399 |
|
5400 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1706
|
5401 |
#: classes/gateways/class.pmprogateway_stripe.php:769
|
5402 |
#: classes/gateways/class.pmprogateway_stripe.php:770
|
5403 |
#: classes/gateways/class.pmprogateway_stripe.php:780
|
5412 |
#: classes/gateways/class.pmprogateway_stripe.php:914
|
5413 |
#: classes/gateways/class.pmprogateway_stripe.php:1698
|
5414 |
#: classes/gateways/class.pmprogateway_stripe.php:1714
|
5415 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1715
|
5416 |
msgid "Could not cancel the old subscription. Updates have not been processed."
|
5417 |
msgstr ""
|
5418 |
|
5419 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1809
|
5420 |
#: classes/gateways/class.pmprogateway_stripe.php:383
|
5421 |
#: classes/gateways/class.pmprogateway_stripe.php:389
|
5422 |
#: classes/gateways/class.pmprogateway_stripe.php:410
|
5440 |
#: classes/gateways/class.pmprogateway_stripe.php:1752
|
5441 |
#: classes/gateways/class.pmprogateway_stripe.php:1801
|
5442 |
#: classes/gateways/class.pmprogateway_stripe.php:1817
|
5443 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1818
|
5444 |
msgid "Could not cancel old subscription."
|
5445 |
msgstr ""
|
5446 |
|
5447 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1826
|
5448 |
#: classes/gateways/class.pmprogateway_stripe.php:1533
|
5449 |
#: classes/gateways/class.pmprogateway_stripe.php:1534
|
5450 |
#: classes/gateways/class.pmprogateway_stripe.php:1535
|
5465 |
#: classes/gateways/class.pmprogateway_stripe.php:1769
|
5466 |
#: classes/gateways/class.pmprogateway_stripe.php:1818
|
5467 |
#: classes/gateways/class.pmprogateway_stripe.php:1834
|
5468 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1835
|
5469 |
msgid "Could not find the customer."
|
5470 |
msgstr ""
|
5471 |
|
5472 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1986
|
5473 |
#: classes/gateways/class.pmprogateway_stripe.php:1836
|
5474 |
#: classes/gateways/class.pmprogateway_stripe.php:1837
|
5475 |
#: classes/gateways/class.pmprogateway_stripe.php:1847
|
5477 |
#: classes/gateways/class.pmprogateway_stripe.php:1921
|
5478 |
#: classes/gateways/class.pmprogateway_stripe.php:1978
|
5479 |
#: classes/gateways/class.pmprogateway_stripe.php:1994
|
5480 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1995
|
5481 |
msgid "Error: "
|
5482 |
msgstr ""
|
5483 |
|
5484 |
+
#: classes/gateways/class.pmprogateway_stripe.php:1999
|
5485 |
#: classes/gateways/class.pmprogateway_stripe.php:1849
|
5486 |
#: classes/gateways/class.pmprogateway_stripe.php:1850
|
5487 |
#: classes/gateways/class.pmprogateway_stripe.php:1860
|
5489 |
#: classes/gateways/class.pmprogateway_stripe.php:1934
|
5490 |
#: classes/gateways/class.pmprogateway_stripe.php:1991
|
5491 |
#: classes/gateways/class.pmprogateway_stripe.php:2007
|
5492 |
+
#: classes/gateways/class.pmprogateway_stripe.php:2008
|
5493 |
#, php-format
|
5494 |
msgid "Error: Unkown error while refunding charge #%s"
|
5495 |
msgstr ""
|
5496 |
|
5497 |
#: classes/gateways/class.pmprogateway_twocheckout.php:59
|
5498 |
+
#: paid-memberships-pro.php:138
|
5499 |
#: classes/gateways/class.pmprogateway_twocheckout.php:53
|
5500 |
#: classes/gateways/class.pmprogateway_twocheckout.php:59
|
5501 |
#: classes/gateways/class.pmprogateway_twocheckout.php:60
|
5574 |
msgid "Check Out with 2Checkout"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: includes/addons.php:225 includes/addons.php:222
|
5578 |
msgid ""
|
5579 |
"Important: This plugin requires a valid PMPro Plus license key to update."
|
5580 |
msgstr ""
|
5581 |
|
5582 |
+
#: includes/addons.php:278 includes/addons.php:274
|
5583 |
msgid ""
|
5584 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
5585 |
"utm_source=wp-admin&utm_pluginlink=bulkupdate\">valid PMPro Plus License "
|
5587 |
"updated:"
|
5588 |
msgstr ""
|
5589 |
|
5590 |
+
#: includes/addons.php:296 includes/addons.php:292
|
5591 |
msgid "Update Plugin"
|
5592 |
msgstr ""
|
5593 |
|
5594 |
+
#: includes/addons.php:298 includes/addons.php:294
|
5595 |
msgid ""
|
5596 |
"You must have a <a href=\"https://www.paidmembershipspro.com/pricing/?"
|
5597 |
"utm_source=wp-admin&utm_pluginlink=addon_update\">valid PMPro Plus License "
|
5598 |
"Key</a> to update PMPro Plus add ons."
|
5599 |
msgstr ""
|
5600 |
|
5601 |
+
#: includes/addons.php:301 includes/addons.php:297
|
5602 |
msgid "Return to the PMPro Add Ons page"
|
5603 |
msgstr ""
|
5604 |
|
5605 |
+
#: includes/addons.php:320 includes/addons.php:316
|
5606 |
msgid ""
|
5607 |
"You must enter a valid PMPro Plus License Key under Settings > PMPro License "
|
5608 |
"to update this add on."
|
6903 |
msgid "Vietnamese Dong"
|
6904 |
msgstr ""
|
6905 |
|
6906 |
+
#: includes/filters.php:224 includes/filters.php:217 includes/filters.php:224
|
6907 |
msgid ""
|
6908 |
"There was a potential issue while setting the 'Profile Start Date' for a "
|
6909 |
"user's subscription at checkout. PayPal does not allow one to set a Profile "
|
6920 |
"situations."
|
6921 |
msgstr ""
|
6922 |
|
6923 |
+
#: includes/filters.php:225 includes/filters.php:225
|
6924 |
#, php-format
|
6925 |
msgid ""
|
6926 |
"User: %1$s<br />Email: %2$s<br />Membership Level: %3$s<br />Order #: "
|
6928 |
"Date: %6$s<br />Trial Period: %7$s<br />Trial Frequency: %8$s<br />"
|
6929 |
msgstr ""
|
6930 |
|
6931 |
+
#: includes/filters.php:227 includes/filters.php:220 includes/filters.php:227
|
6932 |
#, php-format
|
6933 |
msgid "Profile Start Date Issue Detected and Fixed at %s"
|
6934 |
msgstr ""
|
6939 |
#: includes/functions.php:203 includes/functions.php:204
|
6940 |
#: includes/functions.php:207 includes/functions.php:243
|
6941 |
#: includes/functions.php:309 includes/functions.php:315
|
6942 |
+
#: includes/functions.php:320 includes/functions.php:321
|
6943 |
+
#: includes/functions.php:329 includes/functions.php:433
|
6944 |
#: includes/functions.php:455 includes/functions.php:464
|
6945 |
#, php-format
|
6946 |
msgid "The price for membership is <strong>%s</strong> now"
|
6951 |
#: includes/functions.php:205 includes/functions.php:206
|
6952 |
#: includes/functions.php:209 includes/functions.php:245
|
6953 |
#: includes/functions.php:311 includes/functions.php:317
|
6954 |
+
#: includes/functions.php:322 includes/functions.php:323
|
6955 |
+
#: includes/functions.php:331 includes/functions.php:435
|
6956 |
#: includes/functions.php:457 includes/functions.php:466
|
6957 |
#, php-format
|
6958 |
msgid "<strong>%s</strong> now"
|
6959 |
msgstr ""
|
6960 |
|
6961 |
+
#: includes/functions.php:330 includes/functions.php:330
|
6962 |
#, php-format
|
6963 |
msgid " and then <strong>%1$s per %2$s for %3$d more %4$s</strong>."
|
6964 |
msgstr ""
|
6965 |
|
6966 |
+
#: includes/functions.php:332 includes/functions.php:332
|
6967 |
#, php-format
|
6968 |
msgid " and then <strong>%1$s every %2$d %3$s for %4$d more payments</strong>."
|
6969 |
msgstr ""
|
6970 |
|
6971 |
+
#: includes/functions.php:335 includes/functions.php:335
|
6972 |
#, php-format
|
6973 |
msgid " and then <strong>%1$s after %2$d %3$s</strong>."
|
6974 |
msgstr ""
|
6975 |
|
6976 |
+
#: includes/functions.php:340 includes/functions.php:340
|
6977 |
#, php-format
|
6978 |
msgid "The price for membership is <strong>%1$s per %2$s</strong>."
|
6979 |
msgstr ""
|
6980 |
|
6981 |
+
#: includes/functions.php:342 includes/functions.php:342
|
6982 |
#, php-format
|
6983 |
msgid "<strong>%1$s per %2$s</strong>."
|
6984 |
msgstr ""
|
6985 |
|
6986 |
+
#: includes/functions.php:346 includes/functions.php:346
|
6987 |
#, php-format
|
6988 |
msgid "The price for membership is <strong>%1$s every %2$d %3$s</strong>."
|
6989 |
msgstr ""
|
6990 |
|
6991 |
+
#: includes/functions.php:348 includes/functions.php:348
|
6992 |
#, php-format
|
6993 |
msgid "<strong>%1$s every %2$d %3$s</strong>."
|
6994 |
msgstr ""
|
6995 |
|
6996 |
+
#: includes/functions.php:353 includes/functions.php:353
|
6997 |
#, php-format
|
6998 |
msgid " and then <strong>%1$s per %2$s</strong>."
|
6999 |
msgstr ""
|
7000 |
|
7001 |
+
#: includes/functions.php:355 includes/functions.php:355
|
7002 |
#, php-format
|
7003 |
msgid " and then <strong>%1$s every %2$d %3$s</strong>."
|
7004 |
msgstr ""
|
7008 |
#: includes/functions.php:260 includes/functions.php:261
|
7009 |
#: includes/functions.php:262 includes/functions.php:264
|
7010 |
#: includes/functions.php:267 includes/functions.php:271
|
7011 |
+
#: includes/functions.php:307 includes/functions.php:370
|
7012 |
+
#: includes/functions.php:373 includes/functions.php:379
|
7013 |
+
#: includes/functions.php:384 includes/functions.php:393 pages/levels.php:82
|
7014 |
msgid "After your initial payment, your first payment is Free."
|
7015 |
msgstr ""
|
7016 |
|
7019 |
#: includes/functions.php:264 includes/functions.php:265
|
7020 |
#: includes/functions.php:266 includes/functions.php:268
|
7021 |
#: includes/functions.php:271 includes/functions.php:275
|
7022 |
+
#: includes/functions.php:311 includes/functions.php:372
|
7023 |
+
#: includes/functions.php:377 includes/functions.php:383
|
7024 |
+
#: includes/functions.php:388 includes/functions.php:397 pages/levels.php:86
|
7025 |
#, php-format
|
7026 |
msgid "After your initial payment, your first %d payments are Free."
|
7027 |
msgstr ""
|
7031 |
#: includes/functions.php:271 includes/functions.php:272
|
7032 |
#: includes/functions.php:273 includes/functions.php:275
|
7033 |
#: includes/functions.php:278 includes/functions.php:282
|
7034 |
+
#: includes/functions.php:318 includes/functions.php:376
|
7035 |
+
#: includes/functions.php:384 includes/functions.php:390
|
7036 |
+
#: includes/functions.php:395 includes/functions.php:404 pages/levels.php:93
|
7037 |
#, php-format
|
7038 |
msgid "After your initial payment, your first payment will cost %s."
|
7039 |
msgstr ""
|
7040 |
|
7041 |
+
#: includes/functions.php:378 includes/functions.php:378
|
7042 |
#, php-format
|
7043 |
msgid "After your initial payment, your first %1$d payments will cost %2$s."
|
7044 |
msgstr ""
|
7045 |
|
7046 |
+
#: includes/functions.php:388 includes/functions.php:489
|
7047 |
#: includes/functions.php:388 includes/functions.php:489
|
7048 |
#, php-format
|
7049 |
msgid "Customers in %1$s will be charged %2$s%% tax."
|
7050 |
msgstr ""
|
7051 |
|
7052 |
+
#: includes/functions.php:446 includes/functions.php:446
|
7053 |
#, php-format
|
7054 |
msgid "<strong>%1$s per %2$s for %3$d more %4$s</strong>"
|
7055 |
msgstr ""
|
7056 |
|
7057 |
+
#: includes/functions.php:448 includes/functions.php:448
|
7058 |
#, php-format
|
7059 |
msgid "<strong>%1$s every %2$d %3$s for %4$d more payments</strong>"
|
7060 |
msgstr ""
|
7061 |
|
7062 |
+
#: includes/functions.php:451 includes/functions.php:451
|
7063 |
#, php-format
|
7064 |
msgid "<strong>%1$s after %2$d %3$s</strong>"
|
7065 |
msgstr ""
|
7066 |
|
7067 |
+
#: includes/functions.php:454 includes/functions.php:454
|
7068 |
#, php-format
|
7069 |
msgid "<strong>%1$s every %2$s</strong>"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
+
#: includes/functions.php:456 includes/functions.php:456
|
7073 |
#, php-format
|
7074 |
msgid "<strong>%1$s every %2$d %3$s</strong>"
|
7075 |
msgstr ""
|
7076 |
|
7077 |
+
#: includes/functions.php:478 includes/functions.php:478
|
7078 |
+
#: includes/functions.php:511 includes/functions.php:520
|
7079 |
msgid "Trial pricing has been applied to the first payment."
|
7080 |
msgstr ""
|
7081 |
|
7082 |
+
#: includes/functions.php:480 includes/functions.php:480
|
7083 |
+
#: includes/functions.php:513 includes/functions.php:522
|
7084 |
#, php-format
|
7085 |
msgid "Trial pricing has been applied to the first %d payments."
|
7086 |
msgstr ""
|
7087 |
|
7088 |
+
#: includes/functions.php:505 includes/functions.php:505
|
7089 |
#, php-format
|
7090 |
msgid "Membership expires after %1$d %2$s."
|
7091 |
msgstr ""
|
7092 |
|
7093 |
+
#: includes/functions.php:524 includes/functions.php:524
|
7094 |
#, php-format
|
7095 |
msgid "%1$s membership expires after %2$d %3$s"
|
7096 |
msgstr ""
|
7103 |
#: includes/functions.php:576 includes/functions.php:592
|
7104 |
#: includes/functions.php:615 includes/functions.php:694
|
7105 |
#: includes/functions.php:760 includes/functions.php:766
|
7106 |
+
#: includes/functions.php:877 includes/functions.php:945
|
7107 |
+
#: includes/functions.php:947 includes/functions.php:956
|
7108 |
msgid "User ID not found."
|
7109 |
msgstr ""
|
7110 |
|
7111 |
+
#: includes/functions.php:889 includes/functions.php:889
|
7112 |
msgid "No membership_id specified in pmpro_changeMembershipLevel."
|
7113 |
msgstr ""
|
7114 |
|
7121 |
#: includes/functions.php:596 includes/functions.php:612
|
7122 |
#: includes/functions.php:635 includes/functions.php:714
|
7123 |
#: includes/functions.php:780 includes/functions.php:786
|
7124 |
+
#: includes/functions.php:895 includes/functions.php:903
|
7125 |
#: includes/functions.php:965 includes/functions.php:967
|
7126 |
#: includes/functions.php:976
|
7127 |
msgid "Invalid level."
|
7135 |
#: includes/functions.php:600 includes/functions.php:607
|
7136 |
#: includes/functions.php:623 includes/functions.php:646
|
7137 |
#: includes/functions.php:725 includes/functions.php:791
|
7138 |
+
#: includes/functions.php:797 includes/functions.php:914
|
7139 |
+
#: includes/functions.php:976 includes/functions.php:978
|
7140 |
+
#: includes/functions.php:987
|
7141 |
msgid "not changing?"
|
7142 |
msgstr ""
|
7143 |
|
7164 |
#: includes/functions.php:815 includes/functions.php:839
|
7165 |
#: includes/functions.php:881 includes/functions.php:887
|
7166 |
#: includes/functions.php:905 includes/functions.php:911
|
7167 |
+
#: includes/functions.php:970 includes/functions.php:1017
|
7168 |
+
#: includes/functions.php:1037 includes/functions.php:1046
|
7169 |
msgid "Error interacting with database"
|
7170 |
msgstr ""
|
7171 |
|
7172 |
#: includes/functions.php:1067 includes/functions.php:907
|
7173 |
+
#: includes/functions.php:1067 includes/functions.php:1123
|
7174 |
+
#: includes/functions.php:1127 includes/functions.php:1129
|
7175 |
+
#: includes/functions.php:1138
|
7176 |
#, php-format
|
7177 |
msgid "Error interacting with database: %s"
|
7178 |
msgstr ""
|
7195 |
#: includes/functions.php:920 includes/functions.php:947
|
7196 |
#: includes/functions.php:948 includes/functions.php:953
|
7197 |
#: includes/functions.php:986 includes/functions.php:987
|
7198 |
+
#: includes/functions.php:992 includes/functions.php:1141
|
7199 |
+
#: includes/functions.php:1179 includes/functions.php:1198
|
7200 |
#: includes/functions.php:1202 includes/functions.php:1204
|
7201 |
#: includes/functions.php:1213 includes/functions.php:1237
|
7202 |
#: includes/functions.php:1241 includes/functions.php:1243
|
7211 |
#: includes/functions.php:1173 includes/functions.php:1196
|
7212 |
#: includes/functions.php:1290 includes/functions.php:1356
|
7213 |
#: includes/functions.php:1357 includes/functions.php:1362
|
7214 |
+
#: includes/functions.php:1533 includes/functions.php:1605
|
7215 |
+
#: includes/functions.php:1609 includes/functions.php:1611
|
7216 |
+
#: includes/functions.php:1620
|
7217 |
msgid "No code was given to check."
|
7218 |
msgstr ""
|
7219 |
|
7227 |
#: includes/functions.php:1166 includes/functions.php:1182
|
7228 |
#: includes/functions.php:1205 includes/functions.php:1299
|
7229 |
#: includes/functions.php:1365 includes/functions.php:1366
|
7230 |
+
#: includes/functions.php:1371 includes/functions.php:1542
|
7231 |
+
#: includes/functions.php:1614 includes/functions.php:1618
|
7232 |
+
#: includes/functions.php:1620 includes/functions.php:1629
|
7233 |
msgid "The discount code could not be found."
|
7234 |
msgstr ""
|
7235 |
|
7243 |
#: includes/functions.php:1181 includes/functions.php:1197
|
7244 |
#: includes/functions.php:1220 includes/functions.php:1314
|
7245 |
#: includes/functions.php:1380 includes/functions.php:1381
|
7246 |
+
#: includes/functions.php:1386 includes/functions.php:1557
|
7247 |
+
#: includes/functions.php:1629 includes/functions.php:1633
|
7248 |
+
#: includes/functions.php:1635 includes/functions.php:1644
|
7249 |
#, php-format
|
7250 |
msgid "This discount code goes into effect on %s."
|
7251 |
msgstr ""
|
7260 |
#: includes/functions.php:1188 includes/functions.php:1204
|
7261 |
#: includes/functions.php:1227 includes/functions.php:1321
|
7262 |
#: includes/functions.php:1387 includes/functions.php:1388
|
7263 |
+
#: includes/functions.php:1393 includes/functions.php:1564
|
7264 |
+
#: includes/functions.php:1636 includes/functions.php:1640
|
7265 |
+
#: includes/functions.php:1642 includes/functions.php:1651
|
7266 |
#, php-format
|
7267 |
msgid "This discount code expired on %s."
|
7268 |
msgstr ""
|
7277 |
#: includes/functions.php:1198 includes/functions.php:1214
|
7278 |
#: includes/functions.php:1237 includes/functions.php:1331
|
7279 |
#: includes/functions.php:1397 includes/functions.php:1398
|
7280 |
+
#: includes/functions.php:1403 includes/functions.php:1573
|
7281 |
+
#: includes/functions.php:1646 includes/functions.php:1650
|
7282 |
+
#: includes/functions.php:1652 includes/functions.php:1661
|
7283 |
msgid "This discount code is no longer valid."
|
7284 |
msgstr ""
|
7285 |
|
7293 |
#: includes/functions.php:1227 includes/functions.php:1250
|
7294 |
#: includes/functions.php:1344 includes/functions.php:1410
|
7295 |
#: includes/functions.php:1411 includes/functions.php:1416
|
7296 |
+
#: includes/functions.php:1592 includes/functions.php:1666
|
7297 |
+
#: includes/functions.php:1670 includes/functions.php:1672
|
7298 |
+
#: includes/functions.php:1681
|
7299 |
msgid "This discount code does not apply to this membership level."
|
7300 |
msgstr ""
|
7301 |
|
7309 |
#: includes/functions.php:1237 includes/functions.php:1253
|
7310 |
#: includes/functions.php:1276 includes/functions.php:1370
|
7311 |
#: includes/functions.php:1436 includes/functions.php:1442
|
7312 |
+
#: includes/functions.php:1448 includes/functions.php:1630
|
7313 |
+
#: includes/functions.php:1703 includes/functions.php:1707
|
7314 |
+
#: includes/functions.php:1709 includes/functions.php:1718
|
7315 |
msgid "This discount code is okay."
|
7316 |
msgstr ""
|
7317 |
|
7325 |
#: includes/functions.php:1278 includes/functions.php:1301
|
7326 |
#: includes/functions.php:1395 includes/functions.php:1397
|
7327 |
#: includes/functions.php:1463 includes/functions.php:1469
|
7328 |
+
#: includes/functions.php:1475 includes/functions.php:1658
|
7329 |
+
#: includes/functions.php:1730 includes/functions.php:1734
|
7330 |
+
#: includes/functions.php:1736 includes/functions.php:1745
|
7331 |
msgid "and"
|
7332 |
msgstr ""
|
7333 |
|
7342 |
#: includes/functions.php:1501 includes/functions.php:1620
|
7343 |
#: includes/functions.php:1624 includes/functions.php:1691
|
7344 |
#: includes/functions.php:1697 includes/functions.php:1703
|
7345 |
+
#: includes/functions.php:1977 includes/functions.php:2015
|
7346 |
+
#: includes/functions.php:2019 includes/functions.php:2022
|
7347 |
+
#: includes/functions.php:2024 includes/functions.php:2033
|
7348 |
+
#: includes/functions.php:2034
|
7349 |
msgid "Sign Up for !!name!! Now"
|
7350 |
msgstr ""
|
7351 |
|
7360 |
#: includes/functions.php:1507 includes/functions.php:1626
|
7361 |
#: includes/functions.php:1630 includes/functions.php:1697
|
7362 |
#: includes/functions.php:1703 includes/functions.php:1709
|
7363 |
+
#: includes/functions.php:1985 includes/functions.php:2021
|
7364 |
+
#: includes/functions.php:2025 includes/functions.php:2028
|
7365 |
+
#: includes/functions.php:2030 includes/functions.php:2039
|
7366 |
+
#: includes/functions.php:2040
|
7367 |
msgid "Please specify a level id."
|
7368 |
msgstr ""
|
7369 |
|
7370 |
+
#: includes/functions.php:1991 includes/functions.php:1991
|
7371 |
+
#: includes/functions.php:2046 includes/functions.php:2047
|
7372 |
#, php-format
|
7373 |
msgid "Level #%s not found."
|
7374 |
msgstr ""
|
7375 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7376 |
#: includes/license.php:54 includes/license.php:51 includes/license.php:54
|
7377 |
msgid "Your license key has been validated."
|
7378 |
msgstr ""
|
7506 |
"Only members of these levels will be able to view posts in this category."
|
7507 |
msgstr ""
|
7508 |
|
7509 |
+
#: includes/privacy.php:19
|
7510 |
+
msgid "Data Collected to Manage Your Membership"
|
7511 |
+
msgstr ""
|
7512 |
+
|
7513 |
+
#: includes/privacy.php:20
|
7514 |
+
msgid ""
|
7515 |
+
"At checkout, we will collect your name, email address, username, and "
|
7516 |
+
"password. This information is used to setup your account for our site. If "
|
7517 |
+
"you are redirected to an offsite payment gateway to complete your payment, "
|
7518 |
+
"we may store this information in a temporary session variable to setup your "
|
7519 |
+
"account when you return to our site."
|
7520 |
+
msgstr ""
|
7521 |
+
|
7522 |
+
#: includes/privacy.php:21
|
7523 |
+
msgid ""
|
7524 |
+
"At checkout, we may also collect your billing address and phone number. This "
|
7525 |
+
"information is used to confirm your credit card. The billing address and "
|
7526 |
+
"phone number are saved by our site to prepopulate the checkout form for "
|
7527 |
+
"future purchases and so we can get in touch with you if needed to discuss "
|
7528 |
+
"your order."
|
7529 |
+
msgstr ""
|
7530 |
+
|
7531 |
+
#: includes/privacy.php:22
|
7532 |
+
msgid ""
|
7533 |
+
"At checkout, we may also collect your credit card number, expiration date, "
|
7534 |
+
"and security code. This information is passed to our payment gateway to "
|
7535 |
+
"process your purchase. The last 4 digits of your credit card number and the "
|
7536 |
+
"expiration date are saved by our site to use for reference and to send you "
|
7537 |
+
"an email if your credit card will expire before the next recurring payment."
|
7538 |
+
msgstr ""
|
7539 |
+
|
7540 |
+
#: includes/privacy.php:23
|
7541 |
+
msgid ""
|
7542 |
+
"When logged in, we use cookies to track some of your activity on our site "
|
7543 |
+
"including logins, visits, and page views."
|
7544 |
+
msgstr ""
|
7545 |
+
|
7546 |
+
#: includes/privacy.php:35 includes/privacy.php:109
|
7547 |
+
msgid "Paid Memberships Pro Data"
|
7548 |
+
msgstr ""
|
7549 |
+
|
7550 |
+
#: includes/privacy.php:81
|
7551 |
+
msgid "1 PMPro order was retained for business records."
|
7552 |
+
msgstr ""
|
7553 |
+
|
7554 |
+
#: includes/privacy.php:83
|
7555 |
+
#, php-format
|
7556 |
+
msgid "%d PMPro orders were retained for business records."
|
7557 |
+
msgstr ""
|
7558 |
+
|
7559 |
+
#: includes/privacy.php:88
|
7560 |
+
msgid ""
|
7561 |
+
"Please note that data erasure will not cancel a user's membership level or "
|
7562 |
+
"any active subscriptions. Please edit or delete the user through the "
|
7563 |
+
"WordPress dashboard."
|
7564 |
+
msgstr ""
|
7565 |
+
|
7566 |
+
#: includes/privacy.php:160
|
7567 |
+
msgid "Paid Memberships Pro User Data"
|
7568 |
+
msgstr ""
|
7569 |
+
|
7570 |
+
#: includes/privacy.php:175 adminpages/memberslist.php:184
|
7571 |
+
#: adminpages/memberslist.php:212
|
7572 |
+
msgid "Never"
|
7573 |
+
msgstr ""
|
7574 |
+
|
7575 |
+
#: includes/privacy.php:182
|
7576 |
+
msgid "Level ID"
|
7577 |
+
msgstr ""
|
7578 |
+
|
7579 |
+
#: includes/privacy.php:190
|
7580 |
+
msgid "Date Modified"
|
7581 |
+
msgstr ""
|
7582 |
+
|
7583 |
+
#: includes/privacy.php:194
|
7584 |
+
msgid "End Date"
|
7585 |
+
msgstr ""
|
7586 |
+
|
7587 |
+
#: includes/privacy.php:198
|
7588 |
+
msgid "Level Cost"
|
7589 |
+
msgstr ""
|
7590 |
+
|
7591 |
+
#: includes/privacy.php:209
|
7592 |
+
msgid "Paid Memberships Pro Membership History"
|
7593 |
+
msgstr ""
|
7594 |
+
|
7595 |
+
#: includes/privacy.php:229
|
7596 |
+
msgid "Order ID"
|
7597 |
+
msgstr ""
|
7598 |
+
|
7599 |
+
#: includes/privacy.php:233
|
7600 |
+
msgid "Order Code"
|
7601 |
+
msgstr ""
|
7602 |
+
|
7603 |
+
#: includes/privacy.php:237
|
7604 |
+
msgid "Order Date"
|
7605 |
+
msgstr ""
|
7606 |
+
|
7607 |
+
#: includes/privacy.php:241 pages/billing.php:41 pages/cancel.php:61
|
7608 |
+
#: pages/invoice.php:102 pages/levels.php:35 shortcodes/pmpro_account.php:44
|
7609 |
+
#: shortcodes/pmpro_account.php:128 pages/account.php:12 pages/account.php:18
|
7610 |
+
#: pages/account.php:92 pages/billing.php:16 pages/billing.php:25
|
7611 |
+
#: pages/billing.php:27 pages/billing.php:28 pages/billing.php:30
|
7612 |
+
#: pages/billing.php:44 pages/billing.php:45 pages/cancel.php:52
|
7613 |
+
#: pages/cancel.php:60 pages/cancel.php:61 pages/invoice.php:89
|
7614 |
+
#: pages/invoice.php:102 pages/invoice.php:109 pages/levels.php:13
|
7615 |
+
#: pages/levels.php:35 shortcodes/pmpro_account.php:43
|
7616 |
+
#: shortcodes/pmpro_account.php:44 shortcodes/pmpro_account.php:123
|
7617 |
+
#: shortcodes/pmpro_account.php:125 shortcodes/pmpro_account.php:126
|
7618 |
+
#: shortcodes/pmpro_account.php:128
|
7619 |
+
msgid "Level"
|
7620 |
+
msgstr ""
|
7621 |
+
|
7622 |
+
#: includes/privacy.php:333
|
7623 |
+
msgid "Paid Memberships Pro Order History"
|
7624 |
+
msgstr ""
|
7625 |
+
|
7626 |
+
#: includes/privacy.php:354
|
7627 |
+
msgid "Billing First Name"
|
7628 |
+
msgstr ""
|
7629 |
+
|
7630 |
+
#: includes/privacy.php:355
|
7631 |
+
msgid "Billing Last Name"
|
7632 |
+
msgstr ""
|
7633 |
+
|
7634 |
+
#: includes/privacy.php:356
|
7635 |
+
msgid "Billing Address 1"
|
7636 |
+
msgstr ""
|
7637 |
+
|
7638 |
+
#: includes/privacy.php:357
|
7639 |
+
msgid "Billing Address 2"
|
7640 |
+
msgstr ""
|
7641 |
+
|
7642 |
+
#: includes/privacy.php:359
|
7643 |
+
msgid "Billing State/Province"
|
7644 |
+
msgstr ""
|
7645 |
+
|
7646 |
+
#: includes/privacy.php:361
|
7647 |
+
msgid "Billing Phone Number"
|
7648 |
+
msgstr ""
|
7649 |
+
|
7650 |
+
#: includes/privacy.php:363
|
7651 |
+
msgid "Credit Card Type"
|
7652 |
+
msgstr ""
|
7653 |
+
|
7654 |
+
#: includes/privacy.php:364
|
7655 |
+
msgid "Credit Card Account Number"
|
7656 |
+
msgstr ""
|
7657 |
+
|
7658 |
+
#: includes/privacy.php:365
|
7659 |
+
msgid "Credit Card Expiration Month"
|
7660 |
+
msgstr ""
|
7661 |
+
|
7662 |
+
#: includes/privacy.php:366
|
7663 |
+
msgid "Credit Card Expiration Year"
|
7664 |
+
msgstr ""
|
7665 |
+
|
7666 |
+
#: includes/privacy.php:367
|
7667 |
+
msgid "Login Data"
|
7668 |
+
msgstr ""
|
7669 |
+
|
7670 |
+
#: includes/privacy.php:368
|
7671 |
+
msgid "Visits Data"
|
7672 |
+
msgstr ""
|
7673 |
+
|
7674 |
+
#: includes/privacy.php:369
|
7675 |
+
msgid "Views Data"
|
7676 |
+
msgstr ""
|
7677 |
+
|
7678 |
+
#: includes/privacy.php:507
|
7679 |
+
#, php-format
|
7680 |
+
msgid "%s agreed to %s (ID #%d, last modified %s) on %s."
|
7681 |
+
msgstr ""
|
7682 |
+
|
7683 |
+
#: includes/privacy.php:515
|
7684 |
+
msgid "That post has since been updated."
|
7685 |
+
msgstr ""
|
7686 |
+
|
7687 |
#: includes/profile.php:45 includes/profile.php:34 includes/profile.php:36
|
7688 |
#: includes/profile.php:39 includes/profile.php:45
|
7689 |
msgid "Current Level"
|
7690 |
msgstr ""
|
7691 |
|
7692 |
+
#: includes/profile.php:74 includes/profile.php:221 includes/profile.php:268
|
7693 |
#: includes/profile.php:54 includes/profile.php:60 includes/profile.php:65
|
7694 |
#: includes/profile.php:68 includes/profile.php:74 includes/profile.php:195
|
7695 |
#: includes/profile.php:242
|
7711 |
msgid "Cancel this user's subscription at the gateway."
|
7712 |
msgstr ""
|
7713 |
|
7714 |
+
#: includes/profile.php:176
|
7715 |
+
msgid "TOS Consent History"
|
7716 |
+
msgstr ""
|
7717 |
+
|
7718 |
#: includes/updates.php:110 includes/updates.php:97 includes/updates.php:110
|
7719 |
msgid "Paid Memberships Pro Data Update Required"
|
7720 |
msgstr ""
|
7777 |
"the issues</a>."
|
7778 |
msgstr ""
|
7779 |
|
7780 |
+
#: pages/billing.php:23 pages/billing.php:14 pages/billing.php:23
|
7781 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
7782 |
#: pages/billing.php:28
|
7783 |
#, php-format
|
7784 |
msgid "Logged in as <strong>%s</strong>."
|
7785 |
msgstr ""
|
7786 |
|
7787 |
+
#: pages/billing.php:23 pages/billing.php:14 pages/billing.php:23
|
7788 |
#: pages/billing.php:25 pages/billing.php:26 pages/billing.php:27
|
7789 |
#: pages/billing.php:28
|
7790 |
msgid "logout"
|
7791 |
msgstr ""
|
7792 |
|
7793 |
+
#: pages/billing.php:43 pages/account.php:14 pages/billing.php:18
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7794 |
#: pages/billing.php:27 pages/billing.php:29 pages/billing.php:30
|
7795 |
#: pages/billing.php:32 pages/billing.php:46 pages/billing.php:47
|
7796 |
msgid "Membership Fee"
|
7797 |
msgstr ""
|
7798 |
|
7799 |
+
#: pages/billing.php:47 pages/account.php:18 pages/billing.php:22
|
7800 |
#: pages/billing.php:31 pages/billing.php:33 pages/billing.php:34
|
7801 |
#: pages/billing.php:36 pages/billing.php:50 pages/billing.php:51
|
7802 |
#: pages/levels.php:70
|
7804 |
msgid "%s every %d %s."
|
7805 |
msgstr ""
|
7806 |
|
7807 |
+
#: pages/billing.php:49 pages/account.php:20 pages/billing.php:24
|
7808 |
#: pages/billing.php:33 pages/billing.php:35 pages/billing.php:36
|
7809 |
#: pages/billing.php:38 pages/billing.php:52 pages/billing.php:53
|
7810 |
#: pages/levels.php:66
|
7812 |
msgid "%s per %s."
|
7813 |
msgstr ""
|
7814 |
|
7815 |
+
#: pages/billing.php:59 pages/account.php:25 pages/account.php:29
|
7816 |
#: pages/billing.php:29 pages/billing.php:33 pages/billing.php:42
|
7817 |
#: pages/billing.php:44 pages/billing.php:45 pages/billing.php:47
|
7818 |
#: pages/billing.php:62 pages/billing.php:63
|
7819 |
msgid "Duration"
|
7820 |
msgstr ""
|
7821 |
|
7822 |
+
#: pages/billing.php:77 pages/billing.php:39 pages/billing.php:43
|
7823 |
#: pages/billing.php:52 pages/billing.php:54 pages/billing.php:55
|
7824 |
#: pages/billing.php:57 pages/billing.php:80 pages/billing.php:81
|
7825 |
msgid ""
|
7827 |
"paypal.com\">login to PayPal here</a> to update your billing information."
|
7828 |
msgstr ""
|
7829 |
|
7830 |
+
#: pages/billing.php:104 pages/checkout.php:279 pages/billing.php:65
|
7831 |
#: pages/billing.php:69 pages/billing.php:78 pages/billing.php:81
|
7832 |
#: pages/billing.php:83 pages/billing.php:84 pages/billing.php:87
|
7833 |
#: pages/billing.php:107 pages/billing.php:108 pages/billing.php:110
|
7838 |
msgid "First Name"
|
7839 |
msgstr ""
|
7840 |
|
7841 |
+
#: pages/billing.php:108 pages/checkout.php:283 pages/billing.php:69
|
7842 |
#: pages/billing.php:73 pages/billing.php:82 pages/billing.php:85
|
7843 |
#: pages/billing.php:87 pages/billing.php:88 pages/billing.php:91
|
7844 |
#: pages/billing.php:111 pages/billing.php:112 pages/billing.php:114
|
7849 |
msgid "Last Name"
|
7850 |
msgstr ""
|
7851 |
|
7852 |
+
#: pages/billing.php:112 pages/checkout.php:287 pages/billing.php:73
|
7853 |
#: pages/billing.php:77 pages/billing.php:86 pages/billing.php:89
|
7854 |
#: pages/billing.php:91 pages/billing.php:92 pages/billing.php:95
|
7855 |
#: pages/billing.php:115 pages/billing.php:116 pages/billing.php:118
|
7860 |
msgid "Address 1"
|
7861 |
msgstr ""
|
7862 |
|
7863 |
+
#: pages/billing.php:116 pages/checkout.php:291 pages/billing.php:77
|
7864 |
#: pages/billing.php:81 pages/billing.php:90 pages/billing.php:93
|
7865 |
#: pages/billing.php:95 pages/billing.php:96 pages/billing.php:99
|
7866 |
#: pages/billing.php:119 pages/billing.php:120 pages/billing.php:122
|
7871 |
msgid "Address 2"
|
7872 |
msgstr ""
|
7873 |
|
7874 |
+
#: pages/billing.php:126 pages/checkout.php:298 pages/billing.php:87
|
7875 |
#: pages/billing.php:91 pages/billing.php:100 pages/billing.php:103
|
7876 |
#: pages/billing.php:105 pages/billing.php:106 pages/billing.php:109
|
7877 |
#: pages/billing.php:129 pages/billing.php:130 pages/billing.php:132
|
7882 |
msgid "City"
|
7883 |
msgstr ""
|
7884 |
|
7885 |
+
#: pages/billing.php:130 pages/checkout.php:302 pages/billing.php:91
|
7886 |
#: pages/billing.php:95 pages/billing.php:104 pages/billing.php:107
|
7887 |
#: pages/billing.php:109 pages/billing.php:110 pages/billing.php:113
|
7888 |
#: pages/billing.php:133 pages/billing.php:134 pages/billing.php:136
|
7893 |
msgid "State"
|
7894 |
msgstr ""
|
7895 |
|
7896 |
+
#: pages/billing.php:134 pages/checkout.php:306 pages/billing.php:95
|
7897 |
#: pages/billing.php:99 pages/billing.php:108 pages/billing.php:111
|
7898 |
#: pages/billing.php:113 pages/billing.php:114 pages/billing.php:117
|
7899 |
#: pages/billing.php:137 pages/billing.php:138 pages/billing.php:140
|
7904 |
msgid "Postal Code"
|
7905 |
msgstr ""
|
7906 |
|
7907 |
+
#: pages/billing.php:143 pages/checkout.php:311 pages/billing.php:104
|
7908 |
#: pages/billing.php:108 pages/billing.php:117 pages/billing.php:120
|
7909 |
#: pages/billing.php:122 pages/billing.php:123 pages/billing.php:126
|
7910 |
#: pages/billing.php:146 pages/billing.php:147 pages/billing.php:149
|
7915 |
msgid "City, State Zip"
|
7916 |
msgstr ""
|
7917 |
|
7918 |
+
#: pages/billing.php:196 pages/checkout.php:348 pages/billing.php:157
|
7919 |
#: pages/billing.php:161 pages/billing.php:170 pages/billing.php:173
|
7920 |
#: pages/billing.php:175 pages/billing.php:176 pages/billing.php:179
|
7921 |
#: pages/billing.php:199 pages/billing.php:200 pages/billing.php:202
|
7926 |
msgid "Country"
|
7927 |
msgstr ""
|
7928 |
|
7929 |
+
#: pages/billing.php:221 pages/checkout.php:364 pages/billing.php:182
|
7930 |
#: pages/billing.php:186 pages/billing.php:195 pages/billing.php:198
|
7931 |
#: pages/billing.php:200 pages/billing.php:201 pages/billing.php:204
|
7932 |
#: pages/billing.php:224 pages/billing.php:225 pages/billing.php:227
|
7937 |
msgid "Phone"
|
7938 |
msgstr ""
|
7939 |
|
7940 |
+
#: pages/billing.php:232 pages/checkout.php:197 pages/checkout.php:379
|
7941 |
#: pages/billing.php:193 pages/billing.php:197 pages/billing.php:206
|
7942 |
#: pages/billing.php:209 pages/billing.php:211 pages/billing.php:212
|
7943 |
#: pages/billing.php:215 pages/billing.php:235 pages/billing.php:236
|
7951 |
msgid "E-mail Address"
|
7952 |
msgstr ""
|
7953 |
|
7954 |
+
#: pages/billing.php:236 pages/checkout.php:386 pages/billing.php:197
|
7955 |
#: pages/billing.php:201 pages/billing.php:210 pages/billing.php:213
|
7956 |
#: pages/billing.php:215 pages/billing.php:216 pages/billing.php:219
|
7957 |
#: pages/billing.php:239 pages/billing.php:240 pages/billing.php:242
|
7962 |
msgid "Confirm E-mail"
|
7963 |
msgstr ""
|
7964 |
|
7965 |
+
#: pages/billing.php:259 pages/billing.php:217 pages/billing.php:221
|
7966 |
#: pages/billing.php:230 pages/billing.php:231 pages/billing.php:234
|
7967 |
#: pages/billing.php:238 pages/billing.php:244 pages/billing.php:247
|
7968 |
#: pages/billing.php:262 pages/billing.php:263 pages/billing.php:270
|
7969 |
msgid "Credit Card Information"
|
7970 |
msgstr ""
|
7971 |
|
7972 |
+
#: pages/billing.php:260 pages/billing.php:217 pages/billing.php:221
|
7973 |
#: pages/billing.php:230 pages/billing.php:232 pages/billing.php:235
|
7974 |
#: pages/billing.php:239 pages/billing.php:245 pages/billing.php:248
|
7975 |
#: pages/billing.php:263 pages/billing.php:264 pages/billing.php:271
|
7977 |
msgid "We accept %s"
|
7978 |
msgstr ""
|
7979 |
|
7980 |
+
#: pages/billing.php:378 pages/billing.php:309 pages/billing.php:313
|
7981 |
#: pages/billing.php:344 pages/billing.php:353 pages/billing.php:356
|
7982 |
#: pages/billing.php:360 pages/billing.php:364 pages/billing.php:380
|
7983 |
+
#: pages/billing.php:381 pages/billing.php:385 pages/billing.php:387
|
7984 |
+
#: pages/billing.php:408 pages/billing.php:413 pages/billing.php:417
|
7985 |
+
#: pages/billing.php:422
|
7986 |
msgid ""
|
7987 |
"This subscription is not recurring. So you don't need to update your billing "
|
7988 |
"information."
|
8322 |
msgid "← Return to Home"
|
8323 |
msgstr ""
|
8324 |
|
8325 |
+
#: paid-memberships-pro.php:129 adminpages/orders.php:398
|
8326 |
#: adminpages/orders.php:448 paid-memberships-pro.php:115
|
8327 |
#: paid-memberships-pro.php:116 paid-memberships-pro.php:123
|
8328 |
#: paid-memberships-pro.php:124 paid-memberships-pro.php:125
|
8331 |
msgid "Testing Only"
|
8332 |
msgstr ""
|
8333 |
|
8334 |
+
#: paid-memberships-pro.php:134 paid-memberships-pro.php:120
|
8335 |
#: paid-memberships-pro.php:121 paid-memberships-pro.php:128
|
8336 |
#: paid-memberships-pro.php:129 paid-memberships-pro.php:130
|
8337 |
#: paid-memberships-pro.php:131 paid-memberships-pro.php:132
|
8339 |
msgid "PayPal Payflow Pro/PayPal Pro"
|
8340 |
msgstr ""
|
8341 |
|
8342 |
+
#: paid-memberships-pro.php:139 paid-memberships-pro.php:125
|
8343 |
#: paid-memberships-pro.php:126 paid-memberships-pro.php:133
|
8344 |
#: paid-memberships-pro.php:134 paid-memberships-pro.php:135
|
8345 |
#: paid-memberships-pro.php:136 paid-memberships-pro.php:137
|
8347 |
msgid "Cybersource"
|
8348 |
msgstr ""
|
8349 |
|
8350 |
+
#: paid-memberships-pro.php:160 paid-memberships-pro.php:156
|
8351 |
#: paid-memberships-pro.php:157 paid-memberships-pro.php:158
|
8352 |
#: paid-memberships-pro.php:159 paid-memberships-pro.php:166
|
8353 |
msgid "Once a month"
|
8366 |
"moments."
|
8367 |
msgstr ""
|
8368 |
|
8369 |
+
#: preheaders/billing.php:151 preheaders/checkout.php:322
|
8370 |
#: preheaders/billing.php:145 preheaders/billing.php:147
|
8371 |
#: preheaders/billing.php:258 preheaders/billing.php:265
|
8372 |
#: preheaders/billing.php:266 preheaders/billing.php:270
|
8379 |
msgid "Please complete all required fields."
|
8380 |
msgstr ""
|
8381 |
|
8382 |
+
#: preheaders/billing.php:154 preheaders/checkout.php:330
|
8383 |
#: preheaders/billing.php:148 preheaders/billing.php:150
|
8384 |
#: preheaders/billing.php:263 preheaders/billing.php:268
|
8385 |
#: preheaders/billing.php:269 preheaders/billing.php:273
|
8392 |
msgid "Your email addresses do not match. Please try again."
|
8393 |
msgstr ""
|
8394 |
|
8395 |
+
#: preheaders/billing.php:157 preheaders/checkout.php:335
|
8396 |
#: preheaders/billing.php:151 preheaders/billing.php:153
|
8397 |
#: preheaders/billing.php:268 preheaders/billing.php:271
|
8398 |
#: preheaders/billing.php:272 preheaders/billing.php:276
|
8405 |
msgid "The email address entered is in an invalid format. Please try again."
|
8406 |
msgstr ""
|
8407 |
|
8408 |
+
#: preheaders/billing.php:161 preheaders/billing.php:155
|
8409 |
#: preheaders/billing.php:157 preheaders/billing.php:274
|
8410 |
#: preheaders/billing.php:275 preheaders/billing.php:276
|
8411 |
#: preheaders/billing.php:280 preheaders/billing.php:283
|
8413 |
msgid "All good!"
|
8414 |
msgstr ""
|
8415 |
|
8416 |
+
#: preheaders/billing.php:228 preheaders/billing.php:222
|
8417 |
#: preheaders/billing.php:224 preheaders/billing.php:340
|
8418 |
#: preheaders/billing.php:345 preheaders/billing.php:346
|
8419 |
#: preheaders/billing.php:350 preheaders/billing.php:353
|
8422 |
msgid "Information updated. <a href=\"%s\">« back to my account</a>"
|
8423 |
msgstr ""
|
8424 |
|
8425 |
+
#: preheaders/billing.php:234 preheaders/billing.php:228
|
8426 |
#: preheaders/billing.php:230 preheaders/billing.php:347
|
8427 |
#: preheaders/billing.php:351 preheaders/billing.php:352
|
8428 |
#: preheaders/billing.php:356 preheaders/billing.php:359
|
8829 |
msgid "every"
|
8830 |
msgstr ""
|
8831 |
|
|
|
|
|
|
|
|
|
8832 |
#: adminpages/pagesettings.php:73
|
8833 |
#, php-format
|
8834 |
msgid "Membership %s"
|
8967 |
"your hosting provider to enable it"
|
8968 |
msgstr ""
|
8969 |
|
8970 |
+
#: classes/gateways/class.pmprogateway_stripe.php:285
|
8971 |
+
#: classes/gateways/class.pmprogateway_stripe.php:286
|
8972 |
+
msgid "Your Secret Key appears incorrect."
|
8973 |
+
msgstr ""
|
8974 |
+
|
8975 |
#: classes/gateways/class.pmprogateway_twocheckout.php:139
|
8976 |
msgid "API Private Key"
|
8977 |
msgstr ""
|
pages/billing.php
CHANGED
@@ -1,11 +1,7 @@
|
|
1 |
<?php
|
2 |
global $wpdb, $current_user, $pmpro_msg, $pmpro_msgt, $show_paypal_link;
|
3 |
global $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth, $ExpirationYear;
|
4 |
-
|
5 |
-
if (! is_user_logged_in()) {
|
6 |
-
wp_redirect(pmpro_url('levels'));
|
7 |
-
exit();
|
8 |
-
}
|
9 |
/**
|
10 |
* Filter to set if PMPro uses email or text as the type for email field inputs.
|
11 |
*
|
1 |
<?php
|
2 |
global $wpdb, $current_user, $pmpro_msg, $pmpro_msgt, $show_paypal_link;
|
3 |
global $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth, $ExpirationYear;
|
4 |
+
|
|
|
|
|
|
|
|
|
5 |
/**
|
6 |
* Filter to set if PMPro uses email or text as the type for email field inputs.
|
7 |
*
|
paid-memberships-pro.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Paid Memberships Pro
|
4 |
Plugin URI: http://www.paidmembershipspro.com
|
5 |
Description: Plugin to Handle Memberships
|
6 |
-
Version: 1.9.
|
7 |
Author: Stranger Studios
|
8 |
Author URI: http://www.strangerstudios.com
|
9 |
Text Domain: paid-memberships-pro
|
@@ -15,7 +15,7 @@ Domain Path: /languages
|
|
15 |
*/
|
16 |
|
17 |
// version constant
|
18 |
-
define( 'PMPRO_VERSION', '1.9.
|
19 |
define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
|
20 |
define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
|
21 |
|
@@ -58,6 +58,7 @@ require_once( PMPRO_DIR . '/includes/recaptcha.php' ); // load recaptcha file
|
|
58 |
require_once( PMPRO_DIR . '/includes/cleanup.php' ); // clean things up when deletes happen, etc.
|
59 |
require_once( PMPRO_DIR . '/includes/login.php' ); // code to redirect away from login/register page
|
60 |
require_once( PMPRO_DIR . '/includes/capabilities.php' ); // manage PMPro capabilities for roles
|
|
|
61 |
|
62 |
require_once( PMPRO_DIR . '/includes/xmlrpc.php' ); // xmlrpc methods
|
63 |
|
3 |
Plugin Name: Paid Memberships Pro
|
4 |
Plugin URI: http://www.paidmembershipspro.com
|
5 |
Description: Plugin to Handle Memberships
|
6 |
+
Version: 1.9.5
|
7 |
Author: Stranger Studios
|
8 |
Author URI: http://www.strangerstudios.com
|
9 |
Text Domain: paid-memberships-pro
|
15 |
*/
|
16 |
|
17 |
// version constant
|
18 |
+
define( 'PMPRO_VERSION', '1.9.5' );
|
19 |
define( 'PMPRO_USER_AGENT', 'Paid Memberships Pro v' . PMPRO_VERSION . '; ' . site_url() );
|
20 |
define( 'PMPRO_MIN_PHP_VERSION', '5.6' );
|
21 |
|
58 |
require_once( PMPRO_DIR . '/includes/cleanup.php' ); // clean things up when deletes happen, etc.
|
59 |
require_once( PMPRO_DIR . '/includes/login.php' ); // code to redirect away from login/register page
|
60 |
require_once( PMPRO_DIR . '/includes/capabilities.php' ); // manage PMPro capabilities for roles
|
61 |
+
require_once( PMPRO_DIR . '/includes/privacy.php' ); // code to aid with user data privacy, e.g. GDPR compliance
|
62 |
|
63 |
require_once( PMPRO_DIR . '/includes/xmlrpc.php' ); // xmlrpc methods
|
64 |
|
preheaders/billing.php
CHANGED
@@ -3,8 +3,12 @@
|
|
3 |
global $wpdb, $current_user, $pmpro_msg, $pmpro_msgt;
|
4 |
global $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth, $ExpirationYear;
|
5 |
|
6 |
-
if(
|
7 |
-
|
|
|
|
|
|
|
|
|
8 |
|
9 |
//need to be secure?
|
10 |
global $besecure, $show_paypal_link;
|
3 |
global $wpdb, $current_user, $pmpro_msg, $pmpro_msgt;
|
4 |
global $bfirstname, $blastname, $baddress1, $baddress2, $bcity, $bstate, $bzipcode, $bcountry, $bphone, $bemail, $bconfirmemail, $CardType, $AccountNumber, $ExpirationMonth, $ExpirationYear;
|
5 |
|
6 |
+
if (! is_user_logged_in()) {
|
7 |
+
wp_redirect(pmpro_url('levels'));
|
8 |
+
exit();
|
9 |
+
} else {
|
10 |
+
$current_user->membership_level = pmpro_getMembershipLevelForUser($current_user->ID);
|
11 |
+
}
|
12 |
|
13 |
//need to be secure?
|
14 |
global $besecure, $show_paypal_link;
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: strangerstudios
|
3 |
Tags: membership, memberships, member, members, ecommerce, e-commerce, paypal, stripe, braintree, authorize.net, payflow, restrict access, restrict content, directory
|
4 |
Requires at least: 4
|
5 |
-
Tested up to: 4.9.
|
6 |
-
Stable tag: 1.9.
|
7 |
|
8 |
Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site.
|
9 |
|
@@ -129,7 +129,20 @@ Not sure? You can find out by doing a bit a research.
|
|
129 |
|
130 |
== Changelog ==
|
131 |
|
132 |
-
= 1.9.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
* BUG FIX: Updated the filters to extend membership levels to use the new pmpro_getSpecificMembershipLevelForUser() function to avoid bugs when MMPU is enabled.
|
134 |
* BUG FIX: Fixed cases where certain email templates were resulting in the body of the email being duplicated.
|
135 |
* BUG FIX: Fixed conflict with pmpro-email-templates when emails were disabled (the pmpro_email filter returns false). (Thanks, Mathieu Hays)
|
@@ -390,46 +403,3 @@ up the lines of text.
|
|
390 |
* ENHANCEMENT: Added the checkout_id column to the pmpro_membership_orders table. This will be used by addons and possible core in the future to track multiple orders that happen during the same checkout process.
|
391 |
* ENHANCEMENT: Added support for the Serian language. (Thanks, Sasa Trifkovic)
|
392 |
* NOTE: We are planning to remove the certificate_id and certificate_amount columns from the pmpro_membership_orders table. Please contact us if you are using this column for something to come up with a work around.
|
393 |
-
|
394 |
-
= 1.8.9.3 =
|
395 |
-
* BUG: Fixed bug introduced in 1.8.9.2 where member start and end dates weren't being set correctly. Includes an update script to fix past users affected by this.
|
396 |
-
* BUG: Fixed warnings on new order page in the dashboard.
|
397 |
-
* BUG/ENHANCEMENT: Fixed the pmpro_checkout_default_submit_button() methods of the PayPal Express to no longer check if the current gateway is a paypal one. The method is only called when the gateway is loaded anyway or when another addon (e.g. the pmpro-pay-by-check addon) adds the hook.
|
398 |
-
* BUG/ENHANCEMENT: Moved check instructions code into the check gateway class so it can be overriden by addons (e.g. an update to the pmpro-pay-by-check addon).
|
399 |
-
|
400 |
-
= 1.8.9.2 =
|
401 |
-
* BUG: Fixed SQL in pmpro_changeMembershipLevel that caused issues with some MySQL setups.
|
402 |
-
* BUG: Fixed URL PayPal Express and PayPal standard redirect to at checkout. (Although the incorrect URL was still working on the PayPal side.)
|
403 |
-
* BUG: Addon page now passes $status to the plugin_row_meta filter to fix warnings that were sometimes showing up. (Thanks, jawhite)
|
404 |
-
* BUG: Fixed typo in the pmpro_orders_csv_extra_columns filter introduced in 1.8.9.1. (Thanks, Johannes Jokelin)
|
405 |
-
|
406 |
-
= 1.8.9.1 =
|
407 |
-
* BUG: Fixed bug where some recurring orders members who checked out with Stripe in very old versions of PMPro would show up as orders with a blank user_id and membership_id. This update includes a fix for this and an update script to fix old orders affected by this.
|
408 |
-
* BUG: Fixed bug where the Stripe class activation/deactivation methods were setup too late to actually run on activation/deactivation.
|
409 |
-
* BUG: Updated the Stripe class to use the same language and markup in the Payment Information section as the default checkout.
|
410 |
-
* BUG: Now forcing pmpro_getMembershipLevelForUser() in admin change emails.
|
411 |
-
* BUG: Fixed warning in comments_array and comments_open filters. (Thanks, Mihail Chepovskiy)
|
412 |
-
* BUG: Fixed format error for dates when saving orders. (Thanks, EmreErdogan)
|
413 |
-
* BUG: Fixed bug that was causing issues in the cancellations report.
|
414 |
-
* BUG: Fixed the pmpro_cron_expiration_warnings script to properly skip deleted and already expired members.
|
415 |
-
* BUG: Reverted code to generate the CVV popup URL.
|
416 |
-
* BUG: Fixed a couple bugs in the pmpro_loadTemplate function.
|
417 |
-
* BUG/ENHANCEMENT: Updated URL used in the IPN Handler API calls to match the latest PayPal docs. (Thanks, pbaylies)
|
418 |
-
* BUG/ENHANCEMENT: Overhauled the orders list CSV export for improved performance. There is still scaling work to be done on the exports, but timeouts and memory errors will happen much less often.
|
419 |
-
* ENHANCEMENT: Added Greek (el_GR) translation. (Thanks, Alexandros Karypidis)
|
420 |
-
* ENHANCEMENT: Added $order as a parameter to the pmpro_orders_user_row_actions hook. (Thanks, SquareLines)
|
421 |
-
* ENHANCEMENT: Added a warning to backup your database to the update notice.
|
422 |
-
|
423 |
-
= 1.8.9 =
|
424 |
-
* BUG: Fixed bug with recurring orders and TwoCheckout.
|
425 |
-
* BUG: Fixed bug where some non-members (membership_id was 0 or NULL) were being processed for expiration.
|
426 |
-
* BUG: Fixed bug where the address/street wasn't showing up when printing orders from the dashboard.
|
427 |
-
* BUG: Fixed bug where the Stripe class would sometimes show its billing and payment fields even if a secondary gateway was chosen.
|
428 |
-
* BUG: Making sure $this->total is set for new orders and available to the pmpro_add_order, pmpro_added_order filters.
|
429 |
-
* BUG: Fixed bug where email templates were not being loaded out of the /paid-memberships-pro/languages/email/ directory. (Thanks, menardmam on wordpress.org)
|
430 |
-
* BUG: No longer showing a "renew" link on the membership account or membership levels pages if the user's level is not allowing sign ups.
|
431 |
-
* BUG: Fixed bug where the expiration script might try to run on deleted or expired users.
|
432 |
-
* BUG/ENHANCEMENT: Change membership shortcode to call pmpro_hasMembershipLevel when checking for level="" as well. This ensures the pmpro_has_membership_level filter runs, which some addons/etc need.
|
433 |
-
* ENHANCEMENT: Updated categories list on the edit levels page to show nested categories.
|
434 |
-
* ENHANCEMENT: Now adding a pmpro-no-access class (similar to the pmpro-has-access class) to the post element if a user doesn't have access to that post.
|
435 |
-
* ENHANCEMENT: Added pmpro_checkout_end_date filter, similar to pmpro_checkout_start_date. Takes params $enddate, $user_id, $pmpro_level, $startdate.
|
2 |
Contributors: strangerstudios
|
3 |
Tags: membership, memberships, member, members, ecommerce, e-commerce, paypal, stripe, braintree, authorize.net, payflow, restrict access, restrict content, directory
|
4 |
Requires at least: 4
|
5 |
+
Tested up to: 4.9.6
|
6 |
+
Stable tag: 1.9.5
|
7 |
|
8 |
Get Paid with Paid Memberships Pro: The most complete member management and membership subscriptions plugin for your WordPress site.
|
9 |
|
129 |
|
130 |
== Changelog ==
|
131 |
|
132 |
+
= 1.9.5 - 2018-05-24 =
|
133 |
+
* BUG FIX: Added 'error' to the list of default order statuses.
|
134 |
+
* BUG FIX: Fixed issue where PayPal recurring_payment messages with status "Pending" were treated as "Failed" by our IPN handler. (Thanks, Matt Julian)
|
135 |
+
* BUG FIX: The redirect away from the billing page needed to be in the preheader instead of the page shortcode.
|
136 |
+
* BUG FIX/ENHANCEMENT: Using the pmpro_getOrderStatuses() function in adminpages/orders.php instead of redundant code there.
|
137 |
+
* BUG FIX/ENHANCEMENT: Passing the $order as a second parameter to pmpro_after_checkout when called from the PayPal IPN handler. (The $order was being passed already for "regular" checkouts.)
|
138 |
+
* ENHANCEMENT: You can now sort by the Membership Level column added to the users list in the dashboard. (Thanks, Matt Julian)
|
139 |
+
* FEATURE: Added support for the privacy features added in WP 4.9.6. Details below.
|
140 |
+
* FEATURE: Added suggest privacy page text.
|
141 |
+
* FEATURE: Added PMPro-related user meta fields, membership history, and order history to the personal data export. You can filter which user meta fields are included in the export using the new pmpro_get_personal_user_meta_fields filter.
|
142 |
+
* FEATURE: Deleting PMPro-related personal data fields when personal data is erased. The ereaser deletes a number of user meta fields (filterable through the new pmpro_get_personal_user_meta_fields_to_erase filter). A user's membership history and order history are retained unless the user is deleted.
|
143 |
+
* FEATURE: Now saving a log of when the TOS page is agreed to at checkout. The ID and date modified of the TOS post is saved along with a timestamp of when the TOS was agreed to. This information is shown on the single order page in the admin, the orders CSV export, and on the edit user profile page in the admin. Note that this feature does not yet backport any data for existing users or ask users to re-agree to the TOS if the TOS has gone out of date.
|
144 |
+
|
145 |
+
= 1.9.4.4 - 2018-03-14 =
|
146 |
* BUG FIX: Updated the filters to extend membership levels to use the new pmpro_getSpecificMembershipLevelForUser() function to avoid bugs when MMPU is enabled.
|
147 |
* BUG FIX: Fixed cases where certain email templates were resulting in the body of the email being duplicated.
|
148 |
* BUG FIX: Fixed conflict with pmpro-email-templates when emails were disabled (the pmpro_email filter returns false). (Thanks, Mathieu Hays)
|
403 |
* ENHANCEMENT: Added the checkout_id column to the pmpro_membership_orders table. This will be used by addons and possible core in the future to track multiple orders that happen during the same checkout process.
|
404 |
* ENHANCEMENT: Added support for the Serian language. (Thanks, Sasa Trifkovic)
|
405 |
* NOTE: We are planning to remove the certificate_id and certificate_amount columns from the pmpro_membership_orders table. Please contact us if you are using this column for something to come up with a work around.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
services/ipnhandler.php
CHANGED
@@ -199,13 +199,14 @@ if ( $txn_type == "recurring_payment" ) {
|
|
199 |
//subscription payment, completed or failure?
|
200 |
if ( $_POST['payment_status'] == "Completed" ) {
|
201 |
pmpro_ipnSaveOrder( $txn_id, $last_subscr_order );
|
202 |
-
}
|
203 |
pmpro_ipnFailedPayment( $last_subscr_order );
|
|
|
|
|
204 |
}
|
205 |
} else {
|
206 |
ipnlog( "ERROR: Couldn't find last order for this recurring payment (" . $subscr_id . ")." );
|
207 |
}
|
208 |
-
|
209 |
pmpro_ipnExit();
|
210 |
}
|
211 |
|
@@ -591,7 +592,7 @@ function pmpro_ipnChangeMembershipLevel( $txn_id, &$morder ) {
|
|
591 |
}
|
592 |
|
593 |
//hook
|
594 |
-
do_action( "pmpro_after_checkout", $morder->user_id );
|
595 |
|
596 |
//setup some values for the emails
|
597 |
if ( ! empty( $morder ) ) {
|
199 |
//subscription payment, completed or failure?
|
200 |
if ( $_POST['payment_status'] == "Completed" ) {
|
201 |
pmpro_ipnSaveOrder( $txn_id, $last_subscr_order );
|
202 |
+
} elseif ( $_POST['payment_status'] == "Failed" ) {
|
203 |
pmpro_ipnFailedPayment( $last_subscr_order );
|
204 |
+
} else {
|
205 |
+
ipnlog( 'Payment status is ' . $_POST['payment_status'] . '.' );
|
206 |
}
|
207 |
} else {
|
208 |
ipnlog( "ERROR: Couldn't find last order for this recurring payment (" . $subscr_id . ")." );
|
209 |
}
|
|
|
210 |
pmpro_ipnExit();
|
211 |
}
|
212 |
|
592 |
}
|
593 |
|
594 |
//hook
|
595 |
+
do_action( "pmpro_after_checkout", $morder->user_id, $morder );
|
596 |
|
597 |
//setup some values for the emails
|
598 |
if ( ! empty( $morder ) ) {
|